From 0058dd76f9da79aca19bf49ab7b83db84fe59745 Mon Sep 17 00:00:00 2001 From: Diego Beraldin Date: Thu, 21 Sep 2023 13:21:56 +0200 Subject: [PATCH] chore: remove Firebase --- androidApp/build.gradle.kts | 3 - ....diegoberaldin.raccoonforlemmy.android.yml | 17 +- .../android/MainApplication.kt | 5 - build.gradle.kts | 2 - core-crashreport/build.gradle.kts | 59 - core-crashreport/core-crashreport.podspec | 42 - core-crashreport/core_crashreport.podspec | 39 - .../crashreport/DefaultCrashReportManager.kt | 21 - .../core/crashreport/di/CrashReportModule.kt | 13 - .../core/crashreport/CrashReportManager.kt | 7 - .../core/crashreport/di/CrashReportModule.kt | 5 - .../crashreport/DefaultCrashReportManager.kt | 17 - .../core/crashreport/di/CrashReportModule.kt | 11 - gradle/libs.versions.toml | 7 +- iosApp/PodFile | 3 - iosApp/Podfile.lock | 784 +- iosApp/Pods/Manifest.lock | 784 +- iosApp/Pods/Pods.xcodeproj/project.pbxproj | 30626 +--------------- .../Pods-iosApp-acknowledgements.markdown | 3887 -- .../Pods-iosApp-acknowledgements.plist | 3977 -- .../Pods-iosApp/Pods-iosApp.debug.xcconfig | 12 +- .../Pods-iosApp/Pods-iosApp.release.xcconfig | 12 +- iosApp/iosApp.xcodeproj/project.pbxproj | 18 - iosApp/iosApp/iOSApp.swift | 2 - settings.gradle.kts | 1 - shared/build.gradle.kts | 1 - .../raccoonforlemmy/di/DiHelper.kt | 2 - .../raccoonforlemmy/di/DiHelper.kt | 2 - 28 files changed, 88 insertions(+), 40271 deletions(-) delete mode 100644 core-crashreport/build.gradle.kts delete mode 100644 core-crashreport/core-crashreport.podspec delete mode 100644 core-crashreport/core_crashreport.podspec delete mode 100644 core-crashreport/src/androidMain/kotlin/com/github/diegoberaldin/raccoonforlemmy/core/crashreport/DefaultCrashReportManager.kt delete mode 100644 core-crashreport/src/androidMain/kotlin/com/github/diegoberaldin/raccoonforlemmy/core/crashreport/di/CrashReportModule.kt delete mode 100644 core-crashreport/src/commonMain/kotlin/com/github/diegoberaldin/raccoonforlemmy/core/crashreport/CrashReportManager.kt delete mode 100644 core-crashreport/src/commonMain/kotlin/com/github/diegoberaldin/raccoonforlemmy/core/crashreport/di/CrashReportModule.kt delete mode 100644 core-crashreport/src/iosMain/kotlin/com/github/diegoberaldin/raccoonforlemmy/core/crashreport/DefaultCrashReportManager.kt delete mode 100644 core-crashreport/src/iosMain/kotlin/com/github/diegoberaldin/raccoonforlemmy/core/crashreport/di/CrashReportModule.kt diff --git a/androidApp/build.gradle.kts b/androidApp/build.gradle.kts index 8548ef281..041018cb0 100644 --- a/androidApp/build.gradle.kts +++ b/androidApp/build.gradle.kts @@ -2,8 +2,6 @@ plugins { alias(libs.plugins.android.application) alias(libs.plugins.kotlin.android) alias(libs.plugins.compose) - alias(libs.plugins.gms) - alias(libs.plugins.crashlytics) } android { @@ -50,6 +48,5 @@ dependencies { implementation(libs.koin.android) implementation(projects.shared) - implementation(projects.coreCrashreport) implementation(projects.coreUtils) } diff --git a/androidApp/com.github.diegoberaldin.raccoonforlemmy.android.yml b/androidApp/com.github.diegoberaldin.raccoonforlemmy.android.yml index b0a4fe7a0..f3f20da86 100644 --- a/androidApp/com.github.diegoberaldin.raccoonforlemmy.android.yml +++ b/androidApp/com.github.diegoberaldin.raccoonforlemmy.android.yml @@ -1,5 +1,3 @@ -AntiFeatures: - - HopeNot Categories: - Internet - Reading @@ -7,13 +5,9 @@ License: GPL-3.0-or-later AuthorName: Diego Beraldin AuthorEmail: diego.beraldin@gmail.com AuthorWebSite: https://github.com/diegoberaldin -WebSite: SourceCode: https://github.com/diegoberaldin/RacconForLemmy IssueTracker: https://github.com/diegoberaldin/RacconForLemmy/issues -Translation: Submit a PR on GitHub or email me Changelog: https://github.com/diegoberaldin/RacconForLemmy/releases -Donate: -Bitcoin: AutoName: Raccoon for Lemmy @@ -21,15 +15,14 @@ RepoType: git Repo: git@github.com:diegoberaldin/RacconForLemmy.git Builds: - - versionName: '1.0.0-beta02' + - versionName: 1.0.0-beta02 versionCode: 12 commit: 1.0.0-beta02 - subdir: app - submodules: true + subdir: androidApp gradle: - yes -AutoUpdateMode: Version %v +AutoUpdateMode: Version UpdateCheckMode: Tags -CurrentVersion: '1.0.0-beta02' -CurrentVersionCode: 12 +CurrentVersion: 1.0.0-beta02 +CurrentVersionCode: 12 \ No newline at end of file diff --git a/androidApp/src/main/java/com/github/diegoberaldin/raccoonforlemmy/android/MainApplication.kt b/androidApp/src/main/java/com/github/diegoberaldin/raccoonforlemmy/android/MainApplication.kt index 00cea4922..e3450247c 100644 --- a/androidApp/src/main/java/com/github/diegoberaldin/raccoonforlemmy/android/MainApplication.kt +++ b/androidApp/src/main/java/com/github/diegoberaldin/raccoonforlemmy/android/MainApplication.kt @@ -2,9 +2,7 @@ package com.github.diegoberaldin.raccoonforlemmy.android import android.app.Application import com.github.diegoberaldin.racconforlemmy.core.utils.AppInfo -import com.github.diegoberaldin.raccoonforlemmy.core.crashreport.CrashReportManager import com.github.diegoberaldin.raccoonforlemmy.di.sharedHelperModule -import org.koin.android.ext.android.inject import org.koin.android.ext.koin.androidContext import org.koin.android.ext.koin.androidLogger import org.koin.core.context.startKoin @@ -20,9 +18,6 @@ class MainApplication : Application() { sharedHelperModule, ) - val crashManager: CrashReportManager by inject() - crashManager.setup() - AppInfo.versionCode = buildString { append(BuildConfig.VERSION_NAME) append(" (") diff --git a/build.gradle.kts b/build.gradle.kts index 1bdd376d2..c4f39ecd3 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -10,8 +10,6 @@ plugins { alias(libs.plugins.ksp).apply(false) alias(libs.plugins.ktorfit).apply(false) alias(libs.plugins.kotlinx.serialization).apply(false) - alias(libs.plugins.crashlytics).apply(false) - alias(libs.plugins.gms).apply(false) } tasks.register("clean", Delete::class) { diff --git a/core-crashreport/build.gradle.kts b/core-crashreport/build.gradle.kts deleted file mode 100644 index 574424cc9..000000000 --- a/core-crashreport/build.gradle.kts +++ /dev/null @@ -1,59 +0,0 @@ -plugins { - alias(libs.plugins.kotlin.multiplatform) - alias(libs.plugins.android.library) - alias(libs.plugins.native.cocoapods) -} - -@OptIn(org.jetbrains.kotlin.gradle.ExperimentalKotlinGradlePluginApi::class) -kotlin { - targetHierarchy.default() - - android { - compilations.all { - kotlinOptions { - jvmTarget = "17" - } - } - } - iosX64() - iosArm64() - iosSimulatorArm64() - - cocoapods { - summary = "Some description for the Shared Module" - homepage = "Link to the Shared Module homepage" - version = "1.0" - ios.deploymentTarget = "14.1" - framework { - baseName = "core-crashreport" - } - // pod("FirebaseAuth") - // pod("FirebaseFirestore") - } - - sourceSets { - val androidMain by getting { - dependencies { - implementation(libs.firebase.crashlytics) - } - } - val commonMain by getting { - dependencies { - implementation(libs.koin.core) - } - } - val commonTest by getting { - dependencies { - implementation(kotlin("test")) - } - } - } -} - -android { - namespace = "com.github.diegoberaldin.raccoonforlemmy.core.crashreport" - compileSdk = 33 - defaultConfig { - minSdk = 26 - } -} \ No newline at end of file diff --git a/core-crashreport/core-crashreport.podspec b/core-crashreport/core-crashreport.podspec deleted file mode 100644 index 162c07d8f..000000000 --- a/core-crashreport/core-crashreport.podspec +++ /dev/null @@ -1,42 +0,0 @@ -Pod::Spec.new do |spec| - spec.name = 'core-crashreport' - spec.version = '1.0' - spec.homepage = 'Link to the Shared Module homepage' - spec.source = { :git => "Not Published", :tag => "Cocoapods/#{spec.name}/#{spec.version}" } - spec.authors = '' - spec.license = '' - spec.summary = 'Some description for the Shared Module' - - spec.vendored_frameworks = "build/cocoapods/framework/core-crashreport.framework" - spec.libraries = "c++" - spec.module_name = "#{spec.name}_umbrella" - - spec.ios.deployment_target = '14.1' - - - - spec.pod_target_xcconfig = { - 'KOTLIN_PROJECT_PATH' => ':core-crashreport', - 'PRODUCT_MODULE_NAME' => 'core-crashreport', - } - - spec.script_phases = [ - { - :name => 'Build core-crashreport', - :execution_position => :before_compile, - :shell_path => '/bin/sh', - :script => <<-SCRIPT - if [ "YES" = "$COCOAPODS_SKIP_KOTLIN_BUILD" ]; then - echo "Skipping Gradle build task invocation due to COCOAPODS_SKIP_KOTLIN_BUILD environment variable set to \"YES\"" - exit 0 - fi - set -ev - REPO_ROOT="$PODS_TARGET_SRCROOT" - "$REPO_ROOT/../gradlew" -p "$REPO_ROOT" $KOTLIN_PROJECT_PATH:syncFramework \ - -Pkotlin.native.cocoapods.platform=$PLATFORM_NAME \ - -Pkotlin.native.cocoapods.archs="$ARCHS" \ - -Pkotlin.native.cocoapods.configuration=$CONFIGURATION - SCRIPT - } - ] -end \ No newline at end of file diff --git a/core-crashreport/core_crashreport.podspec b/core-crashreport/core_crashreport.podspec deleted file mode 100644 index c972f34bc..000000000 --- a/core-crashreport/core_crashreport.podspec +++ /dev/null @@ -1,39 +0,0 @@ -Pod::Spec.new do |spec| - spec.name = 'core_crashreport' - spec.version = '1.0' - spec.homepage = 'Link to the Shared Module homepage' - spec.source = { :http=> ''} - spec.authors = '' - spec.license = '' - spec.summary = 'Some description for the Shared Module' - spec.vendored_frameworks = 'build/cocoapods/framework/core-crashreport.framework' - spec.libraries = 'c++' - spec.ios.deployment_target = '14.1' - - - spec.pod_target_xcconfig = { - 'KOTLIN_PROJECT_PATH' => ':core-crashreport', - 'PRODUCT_MODULE_NAME' => 'core-crashreport', - } - - spec.script_phases = [ - { - :name => 'Build core_crashreport', - :execution_position => :before_compile, - :shell_path => '/bin/sh', - :script => <<-SCRIPT - if [ "YES" = "$OVERRIDE_KOTLIN_BUILD_IDE_SUPPORTED" ]; then - echo "Skipping Gradle build task invocation due to OVERRIDE_KOTLIN_BUILD_IDE_SUPPORTED environment variable set to \"YES\"" - exit 0 - fi - set -ev - REPO_ROOT="$PODS_TARGET_SRCROOT" - "$REPO_ROOT/../gradlew" -p "$REPO_ROOT" $KOTLIN_PROJECT_PATH:syncFramework \ - -Pkotlin.native.cocoapods.platform=$PLATFORM_NAME \ - -Pkotlin.native.cocoapods.archs="$ARCHS" \ - -Pkotlin.native.cocoapods.configuration="$CONFIGURATION" - SCRIPT - } - ] - -end \ No newline at end of file diff --git a/core-crashreport/src/androidMain/kotlin/com/github/diegoberaldin/raccoonforlemmy/core/crashreport/DefaultCrashReportManager.kt b/core-crashreport/src/androidMain/kotlin/com/github/diegoberaldin/raccoonforlemmy/core/crashreport/DefaultCrashReportManager.kt deleted file mode 100644 index 5ee5b5413..000000000 --- a/core-crashreport/src/androidMain/kotlin/com/github/diegoberaldin/raccoonforlemmy/core/crashreport/DefaultCrashReportManager.kt +++ /dev/null @@ -1,21 +0,0 @@ -package com.github.diegoberaldin.raccoonforlemmy.core.crashreport - -import android.content.Context -import com.google.firebase.FirebaseApp -import com.google.firebase.crashlytics.FirebaseCrashlytics - -class DefaultCrashReportManager( - private val context: Context, -) : CrashReportManager { - override fun setup() { - FirebaseApp.initializeApp(context) - } - - override fun log(message: String) { - FirebaseCrashlytics.getInstance().log(message) - } - - override fun recordException(exc: Throwable) { - FirebaseCrashlytics.getInstance().recordException(exc) - } -} \ No newline at end of file diff --git a/core-crashreport/src/androidMain/kotlin/com/github/diegoberaldin/raccoonforlemmy/core/crashreport/di/CrashReportModule.kt b/core-crashreport/src/androidMain/kotlin/com/github/diegoberaldin/raccoonforlemmy/core/crashreport/di/CrashReportModule.kt deleted file mode 100644 index 79e8b4ce1..000000000 --- a/core-crashreport/src/androidMain/kotlin/com/github/diegoberaldin/raccoonforlemmy/core/crashreport/di/CrashReportModule.kt +++ /dev/null @@ -1,13 +0,0 @@ -package com.github.diegoberaldin.raccoonforlemmy.core.crashreport.di - -import android.content.Context -import com.github.diegoberaldin.raccoonforlemmy.core.crashreport.CrashReportManager -import com.github.diegoberaldin.raccoonforlemmy.core.crashreport.DefaultCrashReportManager -import org.koin.dsl.module - -actual val crashReportModule = module { - single { - val context: Context by inject() - DefaultCrashReportManager(context) - } -} \ No newline at end of file diff --git a/core-crashreport/src/commonMain/kotlin/com/github/diegoberaldin/raccoonforlemmy/core/crashreport/CrashReportManager.kt b/core-crashreport/src/commonMain/kotlin/com/github/diegoberaldin/raccoonforlemmy/core/crashreport/CrashReportManager.kt deleted file mode 100644 index 969f84fe2..000000000 --- a/core-crashreport/src/commonMain/kotlin/com/github/diegoberaldin/raccoonforlemmy/core/crashreport/CrashReportManager.kt +++ /dev/null @@ -1,7 +0,0 @@ -package com.github.diegoberaldin.raccoonforlemmy.core.crashreport - -interface CrashReportManager { - fun setup() - fun log(message: String) - fun recordException(exc: Throwable) -} diff --git a/core-crashreport/src/commonMain/kotlin/com/github/diegoberaldin/raccoonforlemmy/core/crashreport/di/CrashReportModule.kt b/core-crashreport/src/commonMain/kotlin/com/github/diegoberaldin/raccoonforlemmy/core/crashreport/di/CrashReportModule.kt deleted file mode 100644 index 0e23cfea3..000000000 --- a/core-crashreport/src/commonMain/kotlin/com/github/diegoberaldin/raccoonforlemmy/core/crashreport/di/CrashReportModule.kt +++ /dev/null @@ -1,5 +0,0 @@ -package com.github.diegoberaldin.raccoonforlemmy.core.crashreport.di - -import org.koin.core.module.Module - -expect val crashReportModule: Module diff --git a/core-crashreport/src/iosMain/kotlin/com/github/diegoberaldin/raccoonforlemmy/core/crashreport/DefaultCrashReportManager.kt b/core-crashreport/src/iosMain/kotlin/com/github/diegoberaldin/raccoonforlemmy/core/crashreport/DefaultCrashReportManager.kt deleted file mode 100644 index bacb16357..000000000 --- a/core-crashreport/src/iosMain/kotlin/com/github/diegoberaldin/raccoonforlemmy/core/crashreport/DefaultCrashReportManager.kt +++ /dev/null @@ -1,17 +0,0 @@ -package com.github.diegoberaldin.raccoonforlemmy.core.crashreport -// import Firebase - -class DefaultCrashReportManager : CrashReportManager { - override fun setup() { - // FirebaseApp.configure() - - } - - override fun log(message: String) { - // TODO - } - - override fun recordException(exc: Throwable) { - // TODO - } -} \ No newline at end of file diff --git a/core-crashreport/src/iosMain/kotlin/com/github/diegoberaldin/raccoonforlemmy/core/crashreport/di/CrashReportModule.kt b/core-crashreport/src/iosMain/kotlin/com/github/diegoberaldin/raccoonforlemmy/core/crashreport/di/CrashReportModule.kt deleted file mode 100644 index 37a56ae7a..000000000 --- a/core-crashreport/src/iosMain/kotlin/com/github/diegoberaldin/raccoonforlemmy/core/crashreport/di/CrashReportModule.kt +++ /dev/null @@ -1,11 +0,0 @@ -package com.github.diegoberaldin.raccoonforlemmy.core.crashreport.di - -import com.github.diegoberaldin.raccoonforlemmy.core.crashreport.CrashReportManager -import com.github.diegoberaldin.raccoonforlemmy.core.crashreport.DefaultCrashReportManager -import org.koin.dsl.module - -actual val crashReportModule = module { - single { - DefaultCrashReportManager() - } -} \ No newline at end of file diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index 5db7ffceb..2539a33a3 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -5,7 +5,6 @@ android_gradle = "7.4.2" compose = "1.5.1" crashlytics = "18.4.1" crashlytics_gradle = "2.9.9" -gms_gradle = "4.3.15" kamel = "0.7.1" koin = "3.5.0" kotlin = "1.8.20" @@ -25,8 +24,6 @@ androidx_activity_compose = { module = "androidx.activity:activity-compose", ver androidx_activity = { module = "androidx.activity:activity", version.ref = "androidx.activity" } androidx_security_crypto = { module = "androidx.security:security-crypto", version.ref = "androidx.crypto" } -firebase_crashlytics = { module = "com.google.firebase:firebase-crashlytics", version.ref = "crashlytics" } - kamel = { module = "media.kamel:kamel-image", version.ref = "kamel" } markdown = { module = "org.jetbrains:markdown", version.ref = "markdown" } multiplatform_settings = { module = "com.russhwolf:multiplatform-settings", version.ref = "multiplatform.settings" } @@ -61,12 +58,10 @@ voyager_androidx = { module = "cafe.adriel.voyager:voyager-koin", version.ref = android_application = { id = "com.android.application", version.ref = "android.gradle" } android_library = { id = "com.android.library", version.ref = "android.gradle" } compose = { id = "org.jetbrains.compose", version = "1.4.1" } -crashlytics = { id = "com.google.firebase.crashlytics", version.ref = "crashlytics.gradle" } kotlin_android = { id = "org.jetbrains.kotlin.android", version.ref = "kotlin" } kotlin_multiplatform = { id = "org.jetbrains.kotlin.multiplatform", version.ref = "kotlin" } kotlinx_serialization = { id = "org.jetbrains.kotlin.plugin.serialization", version.ref = "kotlin" } ksp = { id = "com.google.devtools.ksp", version.ref = "ksp" } ktorfit = { id = "de.jensklingenberg.ktorfit", version.ref = "ktorfit.gradle" } native_cocoapods = { id = "org.jetbrains.kotlin.native.cocoapods", version.ref = "kotlin" } -moko_resources = { id = "dev.icerock.mobile.multiplatform-resources", version.ref = "moko.resources" } -gms = { id = "com.google.gms.google-services", version.ref = "gms.gradle" } \ No newline at end of file +moko_resources = { id = "dev.icerock.mobile.multiplatform-resources", version.ref = "moko.resources" } \ No newline at end of file diff --git a/iosApp/PodFile b/iosApp/PodFile index f84b992ef..c17b0fd87 100644 --- a/iosApp/PodFile +++ b/iosApp/PodFile @@ -4,7 +4,4 @@ target 'iosApp' do use_frameworks! platform :ios, '14.1' pod 'shared', :path => '../shared' - - pod 'FirebaseAuth' - pod 'FirebaseFirestore' end \ No newline at end of file diff --git a/iosApp/Podfile.lock b/iosApp/Podfile.lock index edfd320cd..d98b27597 100644 --- a/iosApp/Podfile.lock +++ b/iosApp/Podfile.lock @@ -1,798 +1,16 @@ PODS: - - abseil/algorithm (1.20220623.0): - - abseil/algorithm/algorithm (= 1.20220623.0) - - abseil/algorithm/container (= 1.20220623.0) - - abseil/algorithm/algorithm (1.20220623.0): - - abseil/base/config - - abseil/algorithm/container (1.20220623.0): - - abseil/algorithm/algorithm - - abseil/base/core_headers - - abseil/meta/type_traits - - abseil/base (1.20220623.0): - - abseil/base/atomic_hook (= 1.20220623.0) - - abseil/base/base (= 1.20220623.0) - - abseil/base/base_internal (= 1.20220623.0) - - abseil/base/config (= 1.20220623.0) - - abseil/base/core_headers (= 1.20220623.0) - - abseil/base/dynamic_annotations (= 1.20220623.0) - - abseil/base/endian (= 1.20220623.0) - - abseil/base/errno_saver (= 1.20220623.0) - - abseil/base/fast_type_id (= 1.20220623.0) - - abseil/base/log_severity (= 1.20220623.0) - - abseil/base/malloc_internal (= 1.20220623.0) - - abseil/base/prefetch (= 1.20220623.0) - - abseil/base/pretty_function (= 1.20220623.0) - - abseil/base/raw_logging_internal (= 1.20220623.0) - - abseil/base/spinlock_wait (= 1.20220623.0) - - abseil/base/strerror (= 1.20220623.0) - - abseil/base/throw_delegate (= 1.20220623.0) - - abseil/base/atomic_hook (1.20220623.0): - - abseil/base/config - - abseil/base/core_headers - - abseil/base/base (1.20220623.0): - - abseil/base/atomic_hook - - abseil/base/base_internal - - abseil/base/config - - abseil/base/core_headers - - abseil/base/dynamic_annotations - - abseil/base/log_severity - - abseil/base/raw_logging_internal - - abseil/base/spinlock_wait - - abseil/meta/type_traits - - abseil/base/base_internal (1.20220623.0): - - abseil/base/config - - abseil/meta/type_traits - - abseil/base/config (1.20220623.0) - - abseil/base/core_headers (1.20220623.0): - - abseil/base/config - - abseil/base/dynamic_annotations (1.20220623.0): - - abseil/base/config - - abseil/base/core_headers - - abseil/base/endian (1.20220623.0): - - abseil/base/base - - abseil/base/config - - abseil/base/core_headers - - abseil/base/errno_saver (1.20220623.0): - - abseil/base/config - - abseil/base/fast_type_id (1.20220623.0): - - abseil/base/config - - abseil/base/log_severity (1.20220623.0): - - abseil/base/config - - abseil/base/core_headers - - abseil/base/malloc_internal (1.20220623.0): - - abseil/base/base - - abseil/base/base_internal - - abseil/base/config - - abseil/base/core_headers - - abseil/base/dynamic_annotations - - abseil/base/raw_logging_internal - - abseil/base/prefetch (1.20220623.0): - - abseil/base/config - - abseil/base/pretty_function (1.20220623.0) - - abseil/base/raw_logging_internal (1.20220623.0): - - abseil/base/atomic_hook - - abseil/base/config - - abseil/base/core_headers - - abseil/base/errno_saver - - abseil/base/log_severity - - abseil/base/spinlock_wait (1.20220623.0): - - abseil/base/base_internal - - abseil/base/core_headers - - abseil/base/errno_saver - - abseil/base/strerror (1.20220623.0): - - abseil/base/config - - abseil/base/core_headers - - abseil/base/errno_saver - - abseil/base/throw_delegate (1.20220623.0): - - abseil/base/config - - abseil/base/raw_logging_internal - - abseil/cleanup/cleanup (1.20220623.0): - - abseil/base/config - - abseil/base/core_headers - - abseil/cleanup/cleanup_internal - - abseil/cleanup/cleanup_internal (1.20220623.0): - - abseil/base/base_internal - - abseil/base/core_headers - - abseil/utility/utility - - abseil/container/common (1.20220623.0): - - abseil/meta/type_traits - - abseil/types/optional - - abseil/container/compressed_tuple (1.20220623.0): - - abseil/utility/utility - - abseil/container/container_memory (1.20220623.0): - - abseil/base/config - - abseil/memory/memory - - abseil/meta/type_traits - - abseil/utility/utility - - abseil/container/fixed_array (1.20220623.0): - - abseil/algorithm/algorithm - - abseil/base/config - - abseil/base/core_headers - - abseil/base/dynamic_annotations - - abseil/base/throw_delegate - - abseil/container/compressed_tuple - - abseil/memory/memory - - abseil/container/flat_hash_map (1.20220623.0): - - abseil/algorithm/container - - abseil/base/core_headers - - abseil/container/container_memory - - abseil/container/hash_function_defaults - - abseil/container/raw_hash_map - - abseil/memory/memory - - abseil/container/flat_hash_set (1.20220623.0): - - abseil/algorithm/container - - abseil/base/core_headers - - abseil/container/container_memory - - abseil/container/hash_function_defaults - - abseil/container/raw_hash_set - - abseil/memory/memory - - abseil/container/hash_function_defaults (1.20220623.0): - - abseil/base/config - - abseil/hash/hash - - abseil/strings/cord - - abseil/strings/strings - - abseil/container/hash_policy_traits (1.20220623.0): - - abseil/meta/type_traits - - abseil/container/hashtable_debug_hooks (1.20220623.0): - - abseil/base/config - - abseil/container/hashtablez_sampler (1.20220623.0): - - abseil/base/base - - abseil/base/config - - abseil/base/core_headers - - abseil/debugging/stacktrace - - abseil/memory/memory - - abseil/profiling/exponential_biased - - abseil/profiling/sample_recorder - - abseil/synchronization/synchronization - - abseil/utility/utility - - abseil/container/inlined_vector (1.20220623.0): - - abseil/algorithm/algorithm - - abseil/base/core_headers - - abseil/base/throw_delegate - - abseil/container/inlined_vector_internal - - abseil/memory/memory - - abseil/container/inlined_vector_internal (1.20220623.0): - - abseil/base/core_headers - - abseil/container/compressed_tuple - - abseil/memory/memory - - abseil/meta/type_traits - - abseil/types/span - - abseil/container/layout (1.20220623.0): - - abseil/base/config - - abseil/base/core_headers - - abseil/meta/type_traits - - abseil/strings/strings - - abseil/types/span - - abseil/utility/utility - - abseil/container/raw_hash_map (1.20220623.0): - - abseil/base/throw_delegate - - abseil/container/container_memory - - abseil/container/raw_hash_set - - abseil/container/raw_hash_set (1.20220623.0): - - abseil/base/config - - abseil/base/core_headers - - abseil/base/endian - - abseil/base/prefetch - - abseil/container/common - - abseil/container/compressed_tuple - - abseil/container/container_memory - - abseil/container/hash_policy_traits - - abseil/container/hashtable_debug_hooks - - abseil/container/hashtablez_sampler - - abseil/memory/memory - - abseil/meta/type_traits - - abseil/numeric/bits - - abseil/utility/utility - - abseil/debugging/debugging_internal (1.20220623.0): - - abseil/base/config - - abseil/base/core_headers - - abseil/base/dynamic_annotations - - abseil/base/errno_saver - - abseil/base/raw_logging_internal - - abseil/debugging/demangle_internal (1.20220623.0): - - abseil/base/base - - abseil/base/config - - abseil/base/core_headers - - abseil/debugging/stacktrace (1.20220623.0): - - abseil/base/config - - abseil/base/core_headers - - abseil/debugging/debugging_internal - - abseil/debugging/symbolize (1.20220623.0): - - abseil/base/base - - abseil/base/config - - abseil/base/core_headers - - abseil/base/dynamic_annotations - - abseil/base/malloc_internal - - abseil/base/raw_logging_internal - - abseil/debugging/debugging_internal - - abseil/debugging/demangle_internal - - abseil/strings/strings - - abseil/functional/any_invocable (1.20220623.0): - - abseil/base/base_internal - - abseil/base/config - - abseil/base/core_headers - - abseil/meta/type_traits - - abseil/utility/utility - - abseil/functional/bind_front (1.20220623.0): - - abseil/base/base_internal - - abseil/container/compressed_tuple - - abseil/meta/type_traits - - abseil/utility/utility - - abseil/functional/function_ref (1.20220623.0): - - abseil/base/base_internal - - abseil/base/core_headers - - abseil/meta/type_traits - - abseil/hash/city (1.20220623.0): - - abseil/base/config - - abseil/base/core_headers - - abseil/base/endian - - abseil/hash/hash (1.20220623.0): - - abseil/base/config - - abseil/base/core_headers - - abseil/base/endian - - abseil/container/fixed_array - - abseil/functional/function_ref - - abseil/hash/city - - abseil/hash/low_level_hash - - abseil/meta/type_traits - - abseil/numeric/int128 - - abseil/strings/strings - - abseil/types/optional - - abseil/types/variant - - abseil/utility/utility - - abseil/hash/low_level_hash (1.20220623.0): - - abseil/base/config - - abseil/base/endian - - abseil/numeric/bits - - abseil/numeric/int128 - - abseil/memory (1.20220623.0): - - abseil/memory/memory (= 1.20220623.0) - - abseil/memory/memory (1.20220623.0): - - abseil/base/core_headers - - abseil/meta/type_traits - - abseil/meta (1.20220623.0): - - abseil/meta/type_traits (= 1.20220623.0) - - abseil/meta/type_traits (1.20220623.0): - - abseil/base/config - - abseil/numeric/bits (1.20220623.0): - - abseil/base/config - - abseil/base/core_headers - - abseil/numeric/int128 (1.20220623.0): - - abseil/base/config - - abseil/base/core_headers - - abseil/numeric/bits - - abseil/numeric/representation (1.20220623.0): - - abseil/base/config - - abseil/profiling/exponential_biased (1.20220623.0): - - abseil/base/config - - abseil/base/core_headers - - abseil/profiling/sample_recorder (1.20220623.0): - - abseil/base/config - - abseil/base/core_headers - - abseil/synchronization/synchronization - - abseil/time/time - - abseil/random/distributions (1.20220623.0): - - abseil/base/base_internal - - abseil/base/config - - abseil/base/core_headers - - abseil/meta/type_traits - - abseil/numeric/bits - - abseil/random/internal/distribution_caller - - abseil/random/internal/fast_uniform_bits - - abseil/random/internal/fastmath - - abseil/random/internal/generate_real - - abseil/random/internal/iostream_state_saver - - abseil/random/internal/traits - - abseil/random/internal/uniform_helper - - abseil/random/internal/wide_multiply - - abseil/strings/strings - - abseil/random/internal/distribution_caller (1.20220623.0): - - abseil/base/config - - abseil/base/fast_type_id - - abseil/utility/utility - - abseil/random/internal/fast_uniform_bits (1.20220623.0): - - abseil/base/config - - abseil/meta/type_traits - - abseil/random/internal/traits - - abseil/random/internal/fastmath (1.20220623.0): - - abseil/numeric/bits - - abseil/random/internal/generate_real (1.20220623.0): - - abseil/meta/type_traits - - abseil/numeric/bits - - abseil/random/internal/fastmath - - abseil/random/internal/traits - - abseil/random/internal/iostream_state_saver (1.20220623.0): - - abseil/meta/type_traits - - abseil/numeric/int128 - - abseil/random/internal/nonsecure_base (1.20220623.0): - - abseil/base/core_headers - - abseil/container/inlined_vector - - abseil/meta/type_traits - - abseil/random/internal/pool_urbg - - abseil/random/internal/salted_seed_seq - - abseil/random/internal/seed_material - - abseil/types/span - - abseil/random/internal/pcg_engine (1.20220623.0): - - abseil/base/config - - abseil/meta/type_traits - - abseil/numeric/bits - - abseil/numeric/int128 - - abseil/random/internal/fastmath - - abseil/random/internal/iostream_state_saver - - abseil/random/internal/platform (1.20220623.0): - - abseil/base/config - - abseil/random/internal/pool_urbg (1.20220623.0): - - abseil/base/base - - abseil/base/config - - abseil/base/core_headers - - abseil/base/endian - - abseil/base/raw_logging_internal - - abseil/random/internal/randen - - abseil/random/internal/seed_material - - abseil/random/internal/traits - - abseil/random/seed_gen_exception - - abseil/types/span - - abseil/random/internal/randen (1.20220623.0): - - abseil/base/raw_logging_internal - - abseil/random/internal/platform - - abseil/random/internal/randen_hwaes - - abseil/random/internal/randen_slow - - abseil/random/internal/randen_engine (1.20220623.0): - - abseil/base/endian - - abseil/meta/type_traits - - abseil/random/internal/iostream_state_saver - - abseil/random/internal/randen - - abseil/random/internal/randen_hwaes (1.20220623.0): - - abseil/base/config - - abseil/random/internal/platform - - abseil/random/internal/randen_hwaes_impl - - abseil/random/internal/randen_hwaes_impl (1.20220623.0): - - abseil/base/config - - abseil/base/core_headers - - abseil/numeric/int128 - - abseil/random/internal/platform - - abseil/random/internal/randen_slow (1.20220623.0): - - abseil/base/config - - abseil/base/core_headers - - abseil/base/endian - - abseil/numeric/int128 - - abseil/random/internal/platform - - abseil/random/internal/salted_seed_seq (1.20220623.0): - - abseil/container/inlined_vector - - abseil/meta/type_traits - - abseil/random/internal/seed_material - - abseil/types/optional - - abseil/types/span - - abseil/random/internal/seed_material (1.20220623.0): - - abseil/base/core_headers - - abseil/base/dynamic_annotations - - abseil/base/raw_logging_internal - - abseil/random/internal/fast_uniform_bits - - abseil/strings/strings - - abseil/types/optional - - abseil/types/span - - abseil/random/internal/traits (1.20220623.0): - - abseil/base/config - - abseil/numeric/bits - - abseil/numeric/int128 - - abseil/random/internal/uniform_helper (1.20220623.0): - - abseil/base/config - - abseil/meta/type_traits - - abseil/numeric/int128 - - abseil/random/internal/traits - - abseil/random/internal/wide_multiply (1.20220623.0): - - abseil/base/config - - abseil/numeric/bits - - abseil/numeric/int128 - - abseil/random/internal/traits - - abseil/random/random (1.20220623.0): - - abseil/random/distributions - - abseil/random/internal/nonsecure_base - - abseil/random/internal/pcg_engine - - abseil/random/internal/pool_urbg - - abseil/random/internal/randen_engine - - abseil/random/seed_sequences - - abseil/random/seed_gen_exception (1.20220623.0): - - abseil/base/config - - abseil/random/seed_sequences (1.20220623.0): - - abseil/base/config - - abseil/random/internal/pool_urbg - - abseil/random/internal/salted_seed_seq - - abseil/random/internal/seed_material - - abseil/random/seed_gen_exception - - abseil/types/span - - abseil/status/status (1.20220623.0): - - abseil/base/atomic_hook - - abseil/base/core_headers - - abseil/base/raw_logging_internal - - abseil/base/strerror - - abseil/container/inlined_vector - - abseil/debugging/stacktrace - - abseil/debugging/symbolize - - abseil/functional/function_ref - - abseil/strings/cord - - abseil/strings/str_format - - abseil/strings/strings - - abseil/types/optional - - abseil/status/statusor (1.20220623.0): - - abseil/base/base - - abseil/base/core_headers - - abseil/base/raw_logging_internal - - abseil/meta/type_traits - - abseil/status/status - - abseil/strings/strings - - abseil/types/variant - - abseil/utility/utility - - abseil/strings/cord (1.20220623.0): - - abseil/base/base - - abseil/base/config - - abseil/base/core_headers - - abseil/base/endian - - abseil/base/raw_logging_internal - - abseil/container/fixed_array - - abseil/container/inlined_vector - - abseil/functional/function_ref - - abseil/meta/type_traits - - abseil/numeric/bits - - abseil/strings/cord_internal - - abseil/strings/cordz_functions - - abseil/strings/cordz_info - - abseil/strings/cordz_statistics - - abseil/strings/cordz_update_scope - - abseil/strings/cordz_update_tracker - - abseil/strings/internal - - abseil/strings/str_format - - abseil/strings/strings - - abseil/types/optional - - abseil/types/span - - abseil/strings/cord_internal (1.20220623.0): - - abseil/base/base_internal - - abseil/base/config - - abseil/base/core_headers - - abseil/base/endian - - abseil/base/raw_logging_internal - - abseil/base/throw_delegate - - abseil/container/compressed_tuple - - abseil/container/inlined_vector - - abseil/container/layout - - abseil/functional/function_ref - - abseil/meta/type_traits - - abseil/strings/strings - - abseil/types/span - - abseil/strings/cordz_functions (1.20220623.0): - - abseil/base/config - - abseil/base/core_headers - - abseil/base/raw_logging_internal - - abseil/profiling/exponential_biased - - abseil/strings/cordz_handle (1.20220623.0): - - abseil/base/base - - abseil/base/config - - abseil/base/raw_logging_internal - - abseil/synchronization/synchronization - - abseil/strings/cordz_info (1.20220623.0): - - abseil/base/base - - abseil/base/config - - abseil/base/core_headers - - abseil/base/raw_logging_internal - - abseil/container/inlined_vector - - abseil/debugging/stacktrace - - abseil/strings/cord_internal - - abseil/strings/cordz_functions - - abseil/strings/cordz_handle - - abseil/strings/cordz_statistics - - abseil/strings/cordz_update_tracker - - abseil/synchronization/synchronization - - abseil/types/span - - abseil/strings/cordz_statistics (1.20220623.0): - - abseil/base/config - - abseil/strings/cordz_update_tracker - - abseil/strings/cordz_update_scope (1.20220623.0): - - abseil/base/config - - abseil/base/core_headers - - abseil/strings/cord_internal - - abseil/strings/cordz_info - - abseil/strings/cordz_update_tracker - - abseil/strings/cordz_update_tracker (1.20220623.0): - - abseil/base/config - - abseil/strings/internal (1.20220623.0): - - abseil/base/config - - abseil/base/core_headers - - abseil/base/endian - - abseil/base/raw_logging_internal - - abseil/meta/type_traits - - abseil/strings/str_format (1.20220623.0): - - abseil/strings/str_format_internal - - abseil/strings/str_format_internal (1.20220623.0): - - abseil/base/config - - abseil/base/core_headers - - abseil/functional/function_ref - - abseil/meta/type_traits - - abseil/numeric/bits - - abseil/numeric/int128 - - abseil/numeric/representation - - abseil/strings/strings - - abseil/types/optional - - abseil/types/span - - abseil/utility/utility - - abseil/strings/strings (1.20220623.0): - - abseil/base/base - - abseil/base/config - - abseil/base/core_headers - - abseil/base/endian - - abseil/base/raw_logging_internal - - abseil/base/throw_delegate - - abseil/memory/memory - - abseil/meta/type_traits - - abseil/numeric/bits - - abseil/numeric/int128 - - abseil/strings/internal - - abseil/synchronization/graphcycles_internal (1.20220623.0): - - abseil/base/base - - abseil/base/base_internal - - abseil/base/config - - abseil/base/core_headers - - abseil/base/malloc_internal - - abseil/base/raw_logging_internal - - abseil/synchronization/kernel_timeout_internal (1.20220623.0): - - abseil/base/core_headers - - abseil/base/raw_logging_internal - - abseil/time/time - - abseil/synchronization/synchronization (1.20220623.0): - - abseil/base/atomic_hook - - abseil/base/base - - abseil/base/base_internal - - abseil/base/config - - abseil/base/core_headers - - abseil/base/dynamic_annotations - - abseil/base/malloc_internal - - abseil/base/raw_logging_internal - - abseil/debugging/stacktrace - - abseil/debugging/symbolize - - abseil/synchronization/graphcycles_internal - - abseil/synchronization/kernel_timeout_internal - - abseil/time/time - - abseil/time (1.20220623.0): - - abseil/time/internal (= 1.20220623.0) - - abseil/time/time (= 1.20220623.0) - - abseil/time/internal (1.20220623.0): - - abseil/time/internal/cctz (= 1.20220623.0) - - abseil/time/internal/cctz (1.20220623.0): - - abseil/time/internal/cctz/civil_time (= 1.20220623.0) - - abseil/time/internal/cctz/time_zone (= 1.20220623.0) - - abseil/time/internal/cctz/civil_time (1.20220623.0): - - abseil/base/config - - abseil/time/internal/cctz/time_zone (1.20220623.0): - - abseil/base/config - - abseil/time/internal/cctz/civil_time - - abseil/time/time (1.20220623.0): - - abseil/base/base - - abseil/base/core_headers - - abseil/base/raw_logging_internal - - abseil/numeric/int128 - - abseil/strings/strings - - abseil/time/internal/cctz/civil_time - - abseil/time/internal/cctz/time_zone - - abseil/types (1.20220623.0): - - abseil/types/any (= 1.20220623.0) - - abseil/types/bad_any_cast (= 1.20220623.0) - - abseil/types/bad_any_cast_impl (= 1.20220623.0) - - abseil/types/bad_optional_access (= 1.20220623.0) - - abseil/types/bad_variant_access (= 1.20220623.0) - - abseil/types/compare (= 1.20220623.0) - - abseil/types/optional (= 1.20220623.0) - - abseil/types/span (= 1.20220623.0) - - abseil/types/variant (= 1.20220623.0) - - abseil/types/any (1.20220623.0): - - abseil/base/config - - abseil/base/core_headers - - abseil/base/fast_type_id - - abseil/meta/type_traits - - abseil/types/bad_any_cast - - abseil/utility/utility - - abseil/types/bad_any_cast (1.20220623.0): - - abseil/base/config - - abseil/types/bad_any_cast_impl - - abseil/types/bad_any_cast_impl (1.20220623.0): - - abseil/base/config - - abseil/base/raw_logging_internal - - abseil/types/bad_optional_access (1.20220623.0): - - abseil/base/config - - abseil/base/raw_logging_internal - - abseil/types/bad_variant_access (1.20220623.0): - - abseil/base/config - - abseil/base/raw_logging_internal - - abseil/types/compare (1.20220623.0): - - abseil/base/core_headers - - abseil/meta/type_traits - - abseil/types/optional (1.20220623.0): - - abseil/base/base_internal - - abseil/base/config - - abseil/base/core_headers - - abseil/memory/memory - - abseil/meta/type_traits - - abseil/types/bad_optional_access - - abseil/utility/utility - - abseil/types/span (1.20220623.0): - - abseil/algorithm/algorithm - - abseil/base/core_headers - - abseil/base/throw_delegate - - abseil/meta/type_traits - - abseil/types/variant (1.20220623.0): - - abseil/base/base_internal - - abseil/base/config - - abseil/base/core_headers - - abseil/meta/type_traits - - abseil/types/bad_variant_access - - abseil/utility/utility - - abseil/utility/utility (1.20220623.0): - - abseil/base/base_internal - - abseil/base/config - - abseil/meta/type_traits - - BoringSSL-GRPC (0.0.24): - - BoringSSL-GRPC/Implementation (= 0.0.24) - - BoringSSL-GRPC/Interface (= 0.0.24) - - BoringSSL-GRPC/Implementation (0.0.24): - - BoringSSL-GRPC/Interface (= 0.0.24) - - BoringSSL-GRPC/Interface (0.0.24) - - FirebaseAppCheckInterop (10.14.0) - - FirebaseAuth (10.14.0): - - FirebaseAppCheckInterop (~> 10.0) - - FirebaseCore (~> 10.0) - - GoogleUtilities/AppDelegateSwizzler (~> 7.8) - - GoogleUtilities/Environment (~> 7.8) - - GTMSessionFetcher/Core (< 4.0, >= 2.1) - - RecaptchaInterop (~> 100.0) - - FirebaseCore (10.14.0): - - FirebaseCoreInternal (~> 10.0) - - GoogleUtilities/Environment (~> 7.8) - - GoogleUtilities/Logger (~> 7.8) - - FirebaseCoreInternal (10.14.0): - - "GoogleUtilities/NSData+zlib (~> 7.8)" - - FirebaseFirestore (10.14.0): - - abseil/algorithm (~> 1.20220623.0) - - abseil/base (~> 1.20220623.0) - - abseil/container/flat_hash_map (~> 1.20220623.0) - - abseil/memory (~> 1.20220623.0) - - abseil/meta (~> 1.20220623.0) - - abseil/strings/strings (~> 1.20220623.0) - - abseil/time (~> 1.20220623.0) - - abseil/types (~> 1.20220623.0) - - FirebaseCore (~> 10.0) - - "gRPC-C++ (~> 1.50.1)" - - leveldb-library (~> 1.22) - - nanopb (< 2.30910.0, >= 2.30908.0) - - GoogleUtilities/AppDelegateSwizzler (7.11.5): - - GoogleUtilities/Environment - - GoogleUtilities/Logger - - GoogleUtilities/Network - - GoogleUtilities/Environment (7.11.5): - - PromisesObjC (< 3.0, >= 1.2) - - GoogleUtilities/Logger (7.11.5): - - GoogleUtilities/Environment - - GoogleUtilities/Network (7.11.5): - - GoogleUtilities/Logger - - "GoogleUtilities/NSData+zlib" - - GoogleUtilities/Reachability - - "GoogleUtilities/NSData+zlib (7.11.5)" - - GoogleUtilities/Reachability (7.11.5): - - GoogleUtilities/Logger - - "gRPC-C++ (1.50.1)": - - "gRPC-C++/Implementation (= 1.50.1)" - - "gRPC-C++/Interface (= 1.50.1)" - - "gRPC-C++/Implementation (1.50.1)": - - abseil/base/base (= 1.20220623.0) - - abseil/base/core_headers (= 1.20220623.0) - - abseil/cleanup/cleanup (= 1.20220623.0) - - abseil/container/flat_hash_map (= 1.20220623.0) - - abseil/container/flat_hash_set (= 1.20220623.0) - - abseil/container/inlined_vector (= 1.20220623.0) - - abseil/functional/any_invocable (= 1.20220623.0) - - abseil/functional/bind_front (= 1.20220623.0) - - abseil/functional/function_ref (= 1.20220623.0) - - abseil/hash/hash (= 1.20220623.0) - - abseil/memory/memory (= 1.20220623.0) - - abseil/meta/type_traits (= 1.20220623.0) - - abseil/random/random (= 1.20220623.0) - - abseil/status/status (= 1.20220623.0) - - abseil/status/statusor (= 1.20220623.0) - - abseil/strings/cord (= 1.20220623.0) - - abseil/strings/str_format (= 1.20220623.0) - - abseil/strings/strings (= 1.20220623.0) - - abseil/synchronization/synchronization (= 1.20220623.0) - - abseil/time/time (= 1.20220623.0) - - abseil/types/optional (= 1.20220623.0) - - abseil/types/span (= 1.20220623.0) - - abseil/types/variant (= 1.20220623.0) - - abseil/utility/utility (= 1.20220623.0) - - "gRPC-C++/Interface (= 1.50.1)" - - gRPC-Core (= 1.50.1) - - "gRPC-C++/Interface (1.50.1)" - - gRPC-Core (1.50.1): - - gRPC-Core/Implementation (= 1.50.1) - - gRPC-Core/Interface (= 1.50.1) - - gRPC-Core/Implementation (1.50.1): - - abseil/base/base (= 1.20220623.0) - - abseil/base/core_headers (= 1.20220623.0) - - abseil/container/flat_hash_map (= 1.20220623.0) - - abseil/container/flat_hash_set (= 1.20220623.0) - - abseil/container/inlined_vector (= 1.20220623.0) - - abseil/functional/any_invocable (= 1.20220623.0) - - abseil/functional/bind_front (= 1.20220623.0) - - abseil/functional/function_ref (= 1.20220623.0) - - abseil/hash/hash (= 1.20220623.0) - - abseil/memory/memory (= 1.20220623.0) - - abseil/meta/type_traits (= 1.20220623.0) - - abseil/random/random (= 1.20220623.0) - - abseil/status/status (= 1.20220623.0) - - abseil/status/statusor (= 1.20220623.0) - - abseil/strings/cord (= 1.20220623.0) - - abseil/strings/str_format (= 1.20220623.0) - - abseil/strings/strings (= 1.20220623.0) - - abseil/synchronization/synchronization (= 1.20220623.0) - - abseil/time/time (= 1.20220623.0) - - abseil/types/optional (= 1.20220623.0) - - abseil/types/span (= 1.20220623.0) - - abseil/types/variant (= 1.20220623.0) - - abseil/utility/utility (= 1.20220623.0) - - BoringSSL-GRPC (= 0.0.24) - - gRPC-Core/Interface (= 1.50.1) - - gRPC-Core/Interface (1.50.1) - - GTMSessionFetcher/Core (3.1.1) - - leveldb-library (1.22.2) - - nanopb (2.30909.0): - - nanopb/decode (= 2.30909.0) - - nanopb/encode (= 2.30909.0) - - nanopb/decode (2.30909.0) - - nanopb/encode (2.30909.0) - - PromisesObjC (2.3.1) - - RecaptchaInterop (100.0.0) - shared (1.0.0) DEPENDENCIES: - - FirebaseAuth - - FirebaseFirestore - shared (from `../shared`) -SPEC REPOS: - trunk: - - abseil - - BoringSSL-GRPC - - FirebaseAppCheckInterop - - FirebaseAuth - - FirebaseCore - - FirebaseCoreInternal - - FirebaseFirestore - - GoogleUtilities - - "gRPC-C++" - - gRPC-Core - - GTMSessionFetcher - - leveldb-library - - nanopb - - PromisesObjC - - RecaptchaInterop - EXTERNAL SOURCES: shared: :path: "../shared" SPEC CHECKSUMS: - abseil: 926fb7a82dc6d2b8e1f2ed7f3a718bce691d1e46 - BoringSSL-GRPC: 3175b25143e648463a56daeaaa499c6cb86dad33 - FirebaseAppCheckInterop: c87f1d5421c852413dd936b2b2340b21e62501a0 - FirebaseAuth: bd1ae3d28beb83bfe9247e50eb82688b683dd770 - FirebaseCore: 6fc17ac9f03509d51c131298aacb3ee5698b4f02 - FirebaseCoreInternal: d558159ee6cc4b823c2296ecc193de9f6d9a5bb3 - FirebaseFirestore: 808dd08cbc1c7be9052055f62ab312fdae611e37 - GoogleUtilities: 13e2c67ede716b8741c7989e26893d151b2b2084 - "gRPC-C++": 0968bace703459fd3e5dcb0b2bed4c573dbff046 - gRPC-Core: 17108291d84332196d3c8466b48f016fc17d816d - GTMSessionFetcher: e8647203b65cee28c5f73d0f473d096653945e72 - leveldb-library: f03246171cce0484482ec291f88b6d563699ee06 - nanopb: b552cce312b6c8484180ef47159bc0f65a1f0431 - PromisesObjC: c50d2056b5253dadbd6c2bea79b0674bd5a52fa4 - RecaptchaInterop: 7d1a4a01a6b2cb1610a47ef3f85f0c411434cb21 shared: 012d9212381fa85946ccfcf32536927e7dddad2a -PODFILE CHECKSUM: 2662fe3725870c3e897c6b8f2351f82b646ffe65 +PODFILE CHECKSUM: e0696394534eb165fadee8c00ca84ccb785d7848 COCOAPODS: 1.12.1 diff --git a/iosApp/Pods/Manifest.lock b/iosApp/Pods/Manifest.lock index edfd320cd..d98b27597 100644 --- a/iosApp/Pods/Manifest.lock +++ b/iosApp/Pods/Manifest.lock @@ -1,798 +1,16 @@ PODS: - - abseil/algorithm (1.20220623.0): - - abseil/algorithm/algorithm (= 1.20220623.0) - - abseil/algorithm/container (= 1.20220623.0) - - abseil/algorithm/algorithm (1.20220623.0): - - abseil/base/config - - abseil/algorithm/container (1.20220623.0): - - abseil/algorithm/algorithm - - abseil/base/core_headers - - abseil/meta/type_traits - - abseil/base (1.20220623.0): - - abseil/base/atomic_hook (= 1.20220623.0) - - abseil/base/base (= 1.20220623.0) - - abseil/base/base_internal (= 1.20220623.0) - - abseil/base/config (= 1.20220623.0) - - abseil/base/core_headers (= 1.20220623.0) - - abseil/base/dynamic_annotations (= 1.20220623.0) - - abseil/base/endian (= 1.20220623.0) - - abseil/base/errno_saver (= 1.20220623.0) - - abseil/base/fast_type_id (= 1.20220623.0) - - abseil/base/log_severity (= 1.20220623.0) - - abseil/base/malloc_internal (= 1.20220623.0) - - abseil/base/prefetch (= 1.20220623.0) - - abseil/base/pretty_function (= 1.20220623.0) - - abseil/base/raw_logging_internal (= 1.20220623.0) - - abseil/base/spinlock_wait (= 1.20220623.0) - - abseil/base/strerror (= 1.20220623.0) - - abseil/base/throw_delegate (= 1.20220623.0) - - abseil/base/atomic_hook (1.20220623.0): - - abseil/base/config - - abseil/base/core_headers - - abseil/base/base (1.20220623.0): - - abseil/base/atomic_hook - - abseil/base/base_internal - - abseil/base/config - - abseil/base/core_headers - - abseil/base/dynamic_annotations - - abseil/base/log_severity - - abseil/base/raw_logging_internal - - abseil/base/spinlock_wait - - abseil/meta/type_traits - - abseil/base/base_internal (1.20220623.0): - - abseil/base/config - - abseil/meta/type_traits - - abseil/base/config (1.20220623.0) - - abseil/base/core_headers (1.20220623.0): - - abseil/base/config - - abseil/base/dynamic_annotations (1.20220623.0): - - abseil/base/config - - abseil/base/core_headers - - abseil/base/endian (1.20220623.0): - - abseil/base/base - - abseil/base/config - - abseil/base/core_headers - - abseil/base/errno_saver (1.20220623.0): - - abseil/base/config - - abseil/base/fast_type_id (1.20220623.0): - - abseil/base/config - - abseil/base/log_severity (1.20220623.0): - - abseil/base/config - - abseil/base/core_headers - - abseil/base/malloc_internal (1.20220623.0): - - abseil/base/base - - abseil/base/base_internal - - abseil/base/config - - abseil/base/core_headers - - abseil/base/dynamic_annotations - - abseil/base/raw_logging_internal - - abseil/base/prefetch (1.20220623.0): - - abseil/base/config - - abseil/base/pretty_function (1.20220623.0) - - abseil/base/raw_logging_internal (1.20220623.0): - - abseil/base/atomic_hook - - abseil/base/config - - abseil/base/core_headers - - abseil/base/errno_saver - - abseil/base/log_severity - - abseil/base/spinlock_wait (1.20220623.0): - - abseil/base/base_internal - - abseil/base/core_headers - - abseil/base/errno_saver - - abseil/base/strerror (1.20220623.0): - - abseil/base/config - - abseil/base/core_headers - - abseil/base/errno_saver - - abseil/base/throw_delegate (1.20220623.0): - - abseil/base/config - - abseil/base/raw_logging_internal - - abseil/cleanup/cleanup (1.20220623.0): - - abseil/base/config - - abseil/base/core_headers - - abseil/cleanup/cleanup_internal - - abseil/cleanup/cleanup_internal (1.20220623.0): - - abseil/base/base_internal - - abseil/base/core_headers - - abseil/utility/utility - - abseil/container/common (1.20220623.0): - - abseil/meta/type_traits - - abseil/types/optional - - abseil/container/compressed_tuple (1.20220623.0): - - abseil/utility/utility - - abseil/container/container_memory (1.20220623.0): - - abseil/base/config - - abseil/memory/memory - - abseil/meta/type_traits - - abseil/utility/utility - - abseil/container/fixed_array (1.20220623.0): - - abseil/algorithm/algorithm - - abseil/base/config - - abseil/base/core_headers - - abseil/base/dynamic_annotations - - abseil/base/throw_delegate - - abseil/container/compressed_tuple - - abseil/memory/memory - - abseil/container/flat_hash_map (1.20220623.0): - - abseil/algorithm/container - - abseil/base/core_headers - - abseil/container/container_memory - - abseil/container/hash_function_defaults - - abseil/container/raw_hash_map - - abseil/memory/memory - - abseil/container/flat_hash_set (1.20220623.0): - - abseil/algorithm/container - - abseil/base/core_headers - - abseil/container/container_memory - - abseil/container/hash_function_defaults - - abseil/container/raw_hash_set - - abseil/memory/memory - - abseil/container/hash_function_defaults (1.20220623.0): - - abseil/base/config - - abseil/hash/hash - - abseil/strings/cord - - abseil/strings/strings - - abseil/container/hash_policy_traits (1.20220623.0): - - abseil/meta/type_traits - - abseil/container/hashtable_debug_hooks (1.20220623.0): - - abseil/base/config - - abseil/container/hashtablez_sampler (1.20220623.0): - - abseil/base/base - - abseil/base/config - - abseil/base/core_headers - - abseil/debugging/stacktrace - - abseil/memory/memory - - abseil/profiling/exponential_biased - - abseil/profiling/sample_recorder - - abseil/synchronization/synchronization - - abseil/utility/utility - - abseil/container/inlined_vector (1.20220623.0): - - abseil/algorithm/algorithm - - abseil/base/core_headers - - abseil/base/throw_delegate - - abseil/container/inlined_vector_internal - - abseil/memory/memory - - abseil/container/inlined_vector_internal (1.20220623.0): - - abseil/base/core_headers - - abseil/container/compressed_tuple - - abseil/memory/memory - - abseil/meta/type_traits - - abseil/types/span - - abseil/container/layout (1.20220623.0): - - abseil/base/config - - abseil/base/core_headers - - abseil/meta/type_traits - - abseil/strings/strings - - abseil/types/span - - abseil/utility/utility - - abseil/container/raw_hash_map (1.20220623.0): - - abseil/base/throw_delegate - - abseil/container/container_memory - - abseil/container/raw_hash_set - - abseil/container/raw_hash_set (1.20220623.0): - - abseil/base/config - - abseil/base/core_headers - - abseil/base/endian - - abseil/base/prefetch - - abseil/container/common - - abseil/container/compressed_tuple - - abseil/container/container_memory - - abseil/container/hash_policy_traits - - abseil/container/hashtable_debug_hooks - - abseil/container/hashtablez_sampler - - abseil/memory/memory - - abseil/meta/type_traits - - abseil/numeric/bits - - abseil/utility/utility - - abseil/debugging/debugging_internal (1.20220623.0): - - abseil/base/config - - abseil/base/core_headers - - abseil/base/dynamic_annotations - - abseil/base/errno_saver - - abseil/base/raw_logging_internal - - abseil/debugging/demangle_internal (1.20220623.0): - - abseil/base/base - - abseil/base/config - - abseil/base/core_headers - - abseil/debugging/stacktrace (1.20220623.0): - - abseil/base/config - - abseil/base/core_headers - - abseil/debugging/debugging_internal - - abseil/debugging/symbolize (1.20220623.0): - - abseil/base/base - - abseil/base/config - - abseil/base/core_headers - - abseil/base/dynamic_annotations - - abseil/base/malloc_internal - - abseil/base/raw_logging_internal - - abseil/debugging/debugging_internal - - abseil/debugging/demangle_internal - - abseil/strings/strings - - abseil/functional/any_invocable (1.20220623.0): - - abseil/base/base_internal - - abseil/base/config - - abseil/base/core_headers - - abseil/meta/type_traits - - abseil/utility/utility - - abseil/functional/bind_front (1.20220623.0): - - abseil/base/base_internal - - abseil/container/compressed_tuple - - abseil/meta/type_traits - - abseil/utility/utility - - abseil/functional/function_ref (1.20220623.0): - - abseil/base/base_internal - - abseil/base/core_headers - - abseil/meta/type_traits - - abseil/hash/city (1.20220623.0): - - abseil/base/config - - abseil/base/core_headers - - abseil/base/endian - - abseil/hash/hash (1.20220623.0): - - abseil/base/config - - abseil/base/core_headers - - abseil/base/endian - - abseil/container/fixed_array - - abseil/functional/function_ref - - abseil/hash/city - - abseil/hash/low_level_hash - - abseil/meta/type_traits - - abseil/numeric/int128 - - abseil/strings/strings - - abseil/types/optional - - abseil/types/variant - - abseil/utility/utility - - abseil/hash/low_level_hash (1.20220623.0): - - abseil/base/config - - abseil/base/endian - - abseil/numeric/bits - - abseil/numeric/int128 - - abseil/memory (1.20220623.0): - - abseil/memory/memory (= 1.20220623.0) - - abseil/memory/memory (1.20220623.0): - - abseil/base/core_headers - - abseil/meta/type_traits - - abseil/meta (1.20220623.0): - - abseil/meta/type_traits (= 1.20220623.0) - - abseil/meta/type_traits (1.20220623.0): - - abseil/base/config - - abseil/numeric/bits (1.20220623.0): - - abseil/base/config - - abseil/base/core_headers - - abseil/numeric/int128 (1.20220623.0): - - abseil/base/config - - abseil/base/core_headers - - abseil/numeric/bits - - abseil/numeric/representation (1.20220623.0): - - abseil/base/config - - abseil/profiling/exponential_biased (1.20220623.0): - - abseil/base/config - - abseil/base/core_headers - - abseil/profiling/sample_recorder (1.20220623.0): - - abseil/base/config - - abseil/base/core_headers - - abseil/synchronization/synchronization - - abseil/time/time - - abseil/random/distributions (1.20220623.0): - - abseil/base/base_internal - - abseil/base/config - - abseil/base/core_headers - - abseil/meta/type_traits - - abseil/numeric/bits - - abseil/random/internal/distribution_caller - - abseil/random/internal/fast_uniform_bits - - abseil/random/internal/fastmath - - abseil/random/internal/generate_real - - abseil/random/internal/iostream_state_saver - - abseil/random/internal/traits - - abseil/random/internal/uniform_helper - - abseil/random/internal/wide_multiply - - abseil/strings/strings - - abseil/random/internal/distribution_caller (1.20220623.0): - - abseil/base/config - - abseil/base/fast_type_id - - abseil/utility/utility - - abseil/random/internal/fast_uniform_bits (1.20220623.0): - - abseil/base/config - - abseil/meta/type_traits - - abseil/random/internal/traits - - abseil/random/internal/fastmath (1.20220623.0): - - abseil/numeric/bits - - abseil/random/internal/generate_real (1.20220623.0): - - abseil/meta/type_traits - - abseil/numeric/bits - - abseil/random/internal/fastmath - - abseil/random/internal/traits - - abseil/random/internal/iostream_state_saver (1.20220623.0): - - abseil/meta/type_traits - - abseil/numeric/int128 - - abseil/random/internal/nonsecure_base (1.20220623.0): - - abseil/base/core_headers - - abseil/container/inlined_vector - - abseil/meta/type_traits - - abseil/random/internal/pool_urbg - - abseil/random/internal/salted_seed_seq - - abseil/random/internal/seed_material - - abseil/types/span - - abseil/random/internal/pcg_engine (1.20220623.0): - - abseil/base/config - - abseil/meta/type_traits - - abseil/numeric/bits - - abseil/numeric/int128 - - abseil/random/internal/fastmath - - abseil/random/internal/iostream_state_saver - - abseil/random/internal/platform (1.20220623.0): - - abseil/base/config - - abseil/random/internal/pool_urbg (1.20220623.0): - - abseil/base/base - - abseil/base/config - - abseil/base/core_headers - - abseil/base/endian - - abseil/base/raw_logging_internal - - abseil/random/internal/randen - - abseil/random/internal/seed_material - - abseil/random/internal/traits - - abseil/random/seed_gen_exception - - abseil/types/span - - abseil/random/internal/randen (1.20220623.0): - - abseil/base/raw_logging_internal - - abseil/random/internal/platform - - abseil/random/internal/randen_hwaes - - abseil/random/internal/randen_slow - - abseil/random/internal/randen_engine (1.20220623.0): - - abseil/base/endian - - abseil/meta/type_traits - - abseil/random/internal/iostream_state_saver - - abseil/random/internal/randen - - abseil/random/internal/randen_hwaes (1.20220623.0): - - abseil/base/config - - abseil/random/internal/platform - - abseil/random/internal/randen_hwaes_impl - - abseil/random/internal/randen_hwaes_impl (1.20220623.0): - - abseil/base/config - - abseil/base/core_headers - - abseil/numeric/int128 - - abseil/random/internal/platform - - abseil/random/internal/randen_slow (1.20220623.0): - - abseil/base/config - - abseil/base/core_headers - - abseil/base/endian - - abseil/numeric/int128 - - abseil/random/internal/platform - - abseil/random/internal/salted_seed_seq (1.20220623.0): - - abseil/container/inlined_vector - - abseil/meta/type_traits - - abseil/random/internal/seed_material - - abseil/types/optional - - abseil/types/span - - abseil/random/internal/seed_material (1.20220623.0): - - abseil/base/core_headers - - abseil/base/dynamic_annotations - - abseil/base/raw_logging_internal - - abseil/random/internal/fast_uniform_bits - - abseil/strings/strings - - abseil/types/optional - - abseil/types/span - - abseil/random/internal/traits (1.20220623.0): - - abseil/base/config - - abseil/numeric/bits - - abseil/numeric/int128 - - abseil/random/internal/uniform_helper (1.20220623.0): - - abseil/base/config - - abseil/meta/type_traits - - abseil/numeric/int128 - - abseil/random/internal/traits - - abseil/random/internal/wide_multiply (1.20220623.0): - - abseil/base/config - - abseil/numeric/bits - - abseil/numeric/int128 - - abseil/random/internal/traits - - abseil/random/random (1.20220623.0): - - abseil/random/distributions - - abseil/random/internal/nonsecure_base - - abseil/random/internal/pcg_engine - - abseil/random/internal/pool_urbg - - abseil/random/internal/randen_engine - - abseil/random/seed_sequences - - abseil/random/seed_gen_exception (1.20220623.0): - - abseil/base/config - - abseil/random/seed_sequences (1.20220623.0): - - abseil/base/config - - abseil/random/internal/pool_urbg - - abseil/random/internal/salted_seed_seq - - abseil/random/internal/seed_material - - abseil/random/seed_gen_exception - - abseil/types/span - - abseil/status/status (1.20220623.0): - - abseil/base/atomic_hook - - abseil/base/core_headers - - abseil/base/raw_logging_internal - - abseil/base/strerror - - abseil/container/inlined_vector - - abseil/debugging/stacktrace - - abseil/debugging/symbolize - - abseil/functional/function_ref - - abseil/strings/cord - - abseil/strings/str_format - - abseil/strings/strings - - abseil/types/optional - - abseil/status/statusor (1.20220623.0): - - abseil/base/base - - abseil/base/core_headers - - abseil/base/raw_logging_internal - - abseil/meta/type_traits - - abseil/status/status - - abseil/strings/strings - - abseil/types/variant - - abseil/utility/utility - - abseil/strings/cord (1.20220623.0): - - abseil/base/base - - abseil/base/config - - abseil/base/core_headers - - abseil/base/endian - - abseil/base/raw_logging_internal - - abseil/container/fixed_array - - abseil/container/inlined_vector - - abseil/functional/function_ref - - abseil/meta/type_traits - - abseil/numeric/bits - - abseil/strings/cord_internal - - abseil/strings/cordz_functions - - abseil/strings/cordz_info - - abseil/strings/cordz_statistics - - abseil/strings/cordz_update_scope - - abseil/strings/cordz_update_tracker - - abseil/strings/internal - - abseil/strings/str_format - - abseil/strings/strings - - abseil/types/optional - - abseil/types/span - - abseil/strings/cord_internal (1.20220623.0): - - abseil/base/base_internal - - abseil/base/config - - abseil/base/core_headers - - abseil/base/endian - - abseil/base/raw_logging_internal - - abseil/base/throw_delegate - - abseil/container/compressed_tuple - - abseil/container/inlined_vector - - abseil/container/layout - - abseil/functional/function_ref - - abseil/meta/type_traits - - abseil/strings/strings - - abseil/types/span - - abseil/strings/cordz_functions (1.20220623.0): - - abseil/base/config - - abseil/base/core_headers - - abseil/base/raw_logging_internal - - abseil/profiling/exponential_biased - - abseil/strings/cordz_handle (1.20220623.0): - - abseil/base/base - - abseil/base/config - - abseil/base/raw_logging_internal - - abseil/synchronization/synchronization - - abseil/strings/cordz_info (1.20220623.0): - - abseil/base/base - - abseil/base/config - - abseil/base/core_headers - - abseil/base/raw_logging_internal - - abseil/container/inlined_vector - - abseil/debugging/stacktrace - - abseil/strings/cord_internal - - abseil/strings/cordz_functions - - abseil/strings/cordz_handle - - abseil/strings/cordz_statistics - - abseil/strings/cordz_update_tracker - - abseil/synchronization/synchronization - - abseil/types/span - - abseil/strings/cordz_statistics (1.20220623.0): - - abseil/base/config - - abseil/strings/cordz_update_tracker - - abseil/strings/cordz_update_scope (1.20220623.0): - - abseil/base/config - - abseil/base/core_headers - - abseil/strings/cord_internal - - abseil/strings/cordz_info - - abseil/strings/cordz_update_tracker - - abseil/strings/cordz_update_tracker (1.20220623.0): - - abseil/base/config - - abseil/strings/internal (1.20220623.0): - - abseil/base/config - - abseil/base/core_headers - - abseil/base/endian - - abseil/base/raw_logging_internal - - abseil/meta/type_traits - - abseil/strings/str_format (1.20220623.0): - - abseil/strings/str_format_internal - - abseil/strings/str_format_internal (1.20220623.0): - - abseil/base/config - - abseil/base/core_headers - - abseil/functional/function_ref - - abseil/meta/type_traits - - abseil/numeric/bits - - abseil/numeric/int128 - - abseil/numeric/representation - - abseil/strings/strings - - abseil/types/optional - - abseil/types/span - - abseil/utility/utility - - abseil/strings/strings (1.20220623.0): - - abseil/base/base - - abseil/base/config - - abseil/base/core_headers - - abseil/base/endian - - abseil/base/raw_logging_internal - - abseil/base/throw_delegate - - abseil/memory/memory - - abseil/meta/type_traits - - abseil/numeric/bits - - abseil/numeric/int128 - - abseil/strings/internal - - abseil/synchronization/graphcycles_internal (1.20220623.0): - - abseil/base/base - - abseil/base/base_internal - - abseil/base/config - - abseil/base/core_headers - - abseil/base/malloc_internal - - abseil/base/raw_logging_internal - - abseil/synchronization/kernel_timeout_internal (1.20220623.0): - - abseil/base/core_headers - - abseil/base/raw_logging_internal - - abseil/time/time - - abseil/synchronization/synchronization (1.20220623.0): - - abseil/base/atomic_hook - - abseil/base/base - - abseil/base/base_internal - - abseil/base/config - - abseil/base/core_headers - - abseil/base/dynamic_annotations - - abseil/base/malloc_internal - - abseil/base/raw_logging_internal - - abseil/debugging/stacktrace - - abseil/debugging/symbolize - - abseil/synchronization/graphcycles_internal - - abseil/synchronization/kernel_timeout_internal - - abseil/time/time - - abseil/time (1.20220623.0): - - abseil/time/internal (= 1.20220623.0) - - abseil/time/time (= 1.20220623.0) - - abseil/time/internal (1.20220623.0): - - abseil/time/internal/cctz (= 1.20220623.0) - - abseil/time/internal/cctz (1.20220623.0): - - abseil/time/internal/cctz/civil_time (= 1.20220623.0) - - abseil/time/internal/cctz/time_zone (= 1.20220623.0) - - abseil/time/internal/cctz/civil_time (1.20220623.0): - - abseil/base/config - - abseil/time/internal/cctz/time_zone (1.20220623.0): - - abseil/base/config - - abseil/time/internal/cctz/civil_time - - abseil/time/time (1.20220623.0): - - abseil/base/base - - abseil/base/core_headers - - abseil/base/raw_logging_internal - - abseil/numeric/int128 - - abseil/strings/strings - - abseil/time/internal/cctz/civil_time - - abseil/time/internal/cctz/time_zone - - abseil/types (1.20220623.0): - - abseil/types/any (= 1.20220623.0) - - abseil/types/bad_any_cast (= 1.20220623.0) - - abseil/types/bad_any_cast_impl (= 1.20220623.0) - - abseil/types/bad_optional_access (= 1.20220623.0) - - abseil/types/bad_variant_access (= 1.20220623.0) - - abseil/types/compare (= 1.20220623.0) - - abseil/types/optional (= 1.20220623.0) - - abseil/types/span (= 1.20220623.0) - - abseil/types/variant (= 1.20220623.0) - - abseil/types/any (1.20220623.0): - - abseil/base/config - - abseil/base/core_headers - - abseil/base/fast_type_id - - abseil/meta/type_traits - - abseil/types/bad_any_cast - - abseil/utility/utility - - abseil/types/bad_any_cast (1.20220623.0): - - abseil/base/config - - abseil/types/bad_any_cast_impl - - abseil/types/bad_any_cast_impl (1.20220623.0): - - abseil/base/config - - abseil/base/raw_logging_internal - - abseil/types/bad_optional_access (1.20220623.0): - - abseil/base/config - - abseil/base/raw_logging_internal - - abseil/types/bad_variant_access (1.20220623.0): - - abseil/base/config - - abseil/base/raw_logging_internal - - abseil/types/compare (1.20220623.0): - - abseil/base/core_headers - - abseil/meta/type_traits - - abseil/types/optional (1.20220623.0): - - abseil/base/base_internal - - abseil/base/config - - abseil/base/core_headers - - abseil/memory/memory - - abseil/meta/type_traits - - abseil/types/bad_optional_access - - abseil/utility/utility - - abseil/types/span (1.20220623.0): - - abseil/algorithm/algorithm - - abseil/base/core_headers - - abseil/base/throw_delegate - - abseil/meta/type_traits - - abseil/types/variant (1.20220623.0): - - abseil/base/base_internal - - abseil/base/config - - abseil/base/core_headers - - abseil/meta/type_traits - - abseil/types/bad_variant_access - - abseil/utility/utility - - abseil/utility/utility (1.20220623.0): - - abseil/base/base_internal - - abseil/base/config - - abseil/meta/type_traits - - BoringSSL-GRPC (0.0.24): - - BoringSSL-GRPC/Implementation (= 0.0.24) - - BoringSSL-GRPC/Interface (= 0.0.24) - - BoringSSL-GRPC/Implementation (0.0.24): - - BoringSSL-GRPC/Interface (= 0.0.24) - - BoringSSL-GRPC/Interface (0.0.24) - - FirebaseAppCheckInterop (10.14.0) - - FirebaseAuth (10.14.0): - - FirebaseAppCheckInterop (~> 10.0) - - FirebaseCore (~> 10.0) - - GoogleUtilities/AppDelegateSwizzler (~> 7.8) - - GoogleUtilities/Environment (~> 7.8) - - GTMSessionFetcher/Core (< 4.0, >= 2.1) - - RecaptchaInterop (~> 100.0) - - FirebaseCore (10.14.0): - - FirebaseCoreInternal (~> 10.0) - - GoogleUtilities/Environment (~> 7.8) - - GoogleUtilities/Logger (~> 7.8) - - FirebaseCoreInternal (10.14.0): - - "GoogleUtilities/NSData+zlib (~> 7.8)" - - FirebaseFirestore (10.14.0): - - abseil/algorithm (~> 1.20220623.0) - - abseil/base (~> 1.20220623.0) - - abseil/container/flat_hash_map (~> 1.20220623.0) - - abseil/memory (~> 1.20220623.0) - - abseil/meta (~> 1.20220623.0) - - abseil/strings/strings (~> 1.20220623.0) - - abseil/time (~> 1.20220623.0) - - abseil/types (~> 1.20220623.0) - - FirebaseCore (~> 10.0) - - "gRPC-C++ (~> 1.50.1)" - - leveldb-library (~> 1.22) - - nanopb (< 2.30910.0, >= 2.30908.0) - - GoogleUtilities/AppDelegateSwizzler (7.11.5): - - GoogleUtilities/Environment - - GoogleUtilities/Logger - - GoogleUtilities/Network - - GoogleUtilities/Environment (7.11.5): - - PromisesObjC (< 3.0, >= 1.2) - - GoogleUtilities/Logger (7.11.5): - - GoogleUtilities/Environment - - GoogleUtilities/Network (7.11.5): - - GoogleUtilities/Logger - - "GoogleUtilities/NSData+zlib" - - GoogleUtilities/Reachability - - "GoogleUtilities/NSData+zlib (7.11.5)" - - GoogleUtilities/Reachability (7.11.5): - - GoogleUtilities/Logger - - "gRPC-C++ (1.50.1)": - - "gRPC-C++/Implementation (= 1.50.1)" - - "gRPC-C++/Interface (= 1.50.1)" - - "gRPC-C++/Implementation (1.50.1)": - - abseil/base/base (= 1.20220623.0) - - abseil/base/core_headers (= 1.20220623.0) - - abseil/cleanup/cleanup (= 1.20220623.0) - - abseil/container/flat_hash_map (= 1.20220623.0) - - abseil/container/flat_hash_set (= 1.20220623.0) - - abseil/container/inlined_vector (= 1.20220623.0) - - abseil/functional/any_invocable (= 1.20220623.0) - - abseil/functional/bind_front (= 1.20220623.0) - - abseil/functional/function_ref (= 1.20220623.0) - - abseil/hash/hash (= 1.20220623.0) - - abseil/memory/memory (= 1.20220623.0) - - abseil/meta/type_traits (= 1.20220623.0) - - abseil/random/random (= 1.20220623.0) - - abseil/status/status (= 1.20220623.0) - - abseil/status/statusor (= 1.20220623.0) - - abseil/strings/cord (= 1.20220623.0) - - abseil/strings/str_format (= 1.20220623.0) - - abseil/strings/strings (= 1.20220623.0) - - abseil/synchronization/synchronization (= 1.20220623.0) - - abseil/time/time (= 1.20220623.0) - - abseil/types/optional (= 1.20220623.0) - - abseil/types/span (= 1.20220623.0) - - abseil/types/variant (= 1.20220623.0) - - abseil/utility/utility (= 1.20220623.0) - - "gRPC-C++/Interface (= 1.50.1)" - - gRPC-Core (= 1.50.1) - - "gRPC-C++/Interface (1.50.1)" - - gRPC-Core (1.50.1): - - gRPC-Core/Implementation (= 1.50.1) - - gRPC-Core/Interface (= 1.50.1) - - gRPC-Core/Implementation (1.50.1): - - abseil/base/base (= 1.20220623.0) - - abseil/base/core_headers (= 1.20220623.0) - - abseil/container/flat_hash_map (= 1.20220623.0) - - abseil/container/flat_hash_set (= 1.20220623.0) - - abseil/container/inlined_vector (= 1.20220623.0) - - abseil/functional/any_invocable (= 1.20220623.0) - - abseil/functional/bind_front (= 1.20220623.0) - - abseil/functional/function_ref (= 1.20220623.0) - - abseil/hash/hash (= 1.20220623.0) - - abseil/memory/memory (= 1.20220623.0) - - abseil/meta/type_traits (= 1.20220623.0) - - abseil/random/random (= 1.20220623.0) - - abseil/status/status (= 1.20220623.0) - - abseil/status/statusor (= 1.20220623.0) - - abseil/strings/cord (= 1.20220623.0) - - abseil/strings/str_format (= 1.20220623.0) - - abseil/strings/strings (= 1.20220623.0) - - abseil/synchronization/synchronization (= 1.20220623.0) - - abseil/time/time (= 1.20220623.0) - - abseil/types/optional (= 1.20220623.0) - - abseil/types/span (= 1.20220623.0) - - abseil/types/variant (= 1.20220623.0) - - abseil/utility/utility (= 1.20220623.0) - - BoringSSL-GRPC (= 0.0.24) - - gRPC-Core/Interface (= 1.50.1) - - gRPC-Core/Interface (1.50.1) - - GTMSessionFetcher/Core (3.1.1) - - leveldb-library (1.22.2) - - nanopb (2.30909.0): - - nanopb/decode (= 2.30909.0) - - nanopb/encode (= 2.30909.0) - - nanopb/decode (2.30909.0) - - nanopb/encode (2.30909.0) - - PromisesObjC (2.3.1) - - RecaptchaInterop (100.0.0) - shared (1.0.0) DEPENDENCIES: - - FirebaseAuth - - FirebaseFirestore - shared (from `../shared`) -SPEC REPOS: - trunk: - - abseil - - BoringSSL-GRPC - - FirebaseAppCheckInterop - - FirebaseAuth - - FirebaseCore - - FirebaseCoreInternal - - FirebaseFirestore - - GoogleUtilities - - "gRPC-C++" - - gRPC-Core - - GTMSessionFetcher - - leveldb-library - - nanopb - - PromisesObjC - - RecaptchaInterop - EXTERNAL SOURCES: shared: :path: "../shared" SPEC CHECKSUMS: - abseil: 926fb7a82dc6d2b8e1f2ed7f3a718bce691d1e46 - BoringSSL-GRPC: 3175b25143e648463a56daeaaa499c6cb86dad33 - FirebaseAppCheckInterop: c87f1d5421c852413dd936b2b2340b21e62501a0 - FirebaseAuth: bd1ae3d28beb83bfe9247e50eb82688b683dd770 - FirebaseCore: 6fc17ac9f03509d51c131298aacb3ee5698b4f02 - FirebaseCoreInternal: d558159ee6cc4b823c2296ecc193de9f6d9a5bb3 - FirebaseFirestore: 808dd08cbc1c7be9052055f62ab312fdae611e37 - GoogleUtilities: 13e2c67ede716b8741c7989e26893d151b2b2084 - "gRPC-C++": 0968bace703459fd3e5dcb0b2bed4c573dbff046 - gRPC-Core: 17108291d84332196d3c8466b48f016fc17d816d - GTMSessionFetcher: e8647203b65cee28c5f73d0f473d096653945e72 - leveldb-library: f03246171cce0484482ec291f88b6d563699ee06 - nanopb: b552cce312b6c8484180ef47159bc0f65a1f0431 - PromisesObjC: c50d2056b5253dadbd6c2bea79b0674bd5a52fa4 - RecaptchaInterop: 7d1a4a01a6b2cb1610a47ef3f85f0c411434cb21 shared: 012d9212381fa85946ccfcf32536927e7dddad2a -PODFILE CHECKSUM: 2662fe3725870c3e897c6b8f2351f82b646ffe65 +PODFILE CHECKSUM: e0696394534eb165fadee8c00ca84ccb785d7848 COCOAPODS: 1.12.1 diff --git a/iosApp/Pods/Pods.xcodeproj/project.pbxproj b/iosApp/Pods/Pods.xcodeproj/project.pbxproj index 3402bc965..10d1b438b 100644 --- a/iosApp/Pods/Pods.xcodeproj/project.pbxproj +++ b/iosApp/Pods/Pods.xcodeproj/project.pbxproj @@ -20,18707 +20,73 @@ /* End PBXAggregateTarget section */ /* Begin PBXBuildFile section */ - 0001194DC49D6353711DEBAEEBECEEFE /* thread_quota.h in Copy src/core/lib/resource_quota Private Headers */ = {isa = PBXBuildFile; fileRef = 3990D9F719024BA5F88C3712DF7C80BD /* thread_quota.h */; }; - 002280169670C4EA8E6098FFCD9D57C5 /* http_connect_handshaker.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D92DB675527154DE80F59642D7A61F3 /* http_connect_handshaker.h */; }; - 00369CDD2B68AD33D1A325BE9A34F866 /* call_push_pull.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = 9B7858D3BD36CC64D85AD7CE4C16E99C /* call_push_pull.h */; }; - 003EF96D62DADBE316CD9C07403A35B8 /* lb_policy_factory.h in Copy src/core/lib/load_balancing Private Headers */ = {isa = PBXBuildFile; fileRef = 27914A60F0F19583118D50119F0B0938 /* lb_policy_factory.h */; }; - 005328B73C5785D35988112D3CA2967B /* ssl_security_connector.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A50FA6F08C5FDFDD0B8AC25C59EE9FD /* ssl_security_connector.h */; }; - 0054756BE527896DED242636C6FC7353 /* GULSceneDelegateSwizzler_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = C8E66DBA6E2278EDB22B1572897EA96B /* GULSceneDelegateSwizzler_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0060277AD5FD035C8169EE3967CB0AAC /* bits.h in Headers */ = {isa = PBXBuildFile; fileRef = DD0CEE86A51A959D825B8F764A44135D /* bits.h */; }; - 007D479DC405A14BBC2CCC302CBDE09A /* v3_pcia.c in Sources */ = {isa = PBXBuildFile; fileRef = 4F0CC3773A16DF5ACA6C98DD1929579F /* v3_pcia.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 008B84642F9A2ED21B91BBEE47EDD400 /* FIRFieldValue.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8CEEC39FCEB85AFEEC26A5CF82BDF1AA /* FIRFieldValue.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; - 00A4E6CD2C6FDF612E0ABBF2978F35CF /* sync_abseil.cc in Sources */ = {isa = PBXBuildFile; fileRef = D7C0DA1668222216C7A0781EC177BEBE /* sync_abseil.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 00AB4E24D89D31DDB000A318061F0E5E /* callback_common.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = EF1AE0561328D311F6A1B5B54D1213EA /* callback_common.h */; }; - 00AE4D7FE385E77D0090B0DCA68F717B /* x_name.c in Sources */ = {isa = PBXBuildFile; fileRef = 2E01D681F72796048F614E01B39FAA2B /* x_name.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 00B0EA90AAC9A5403418BE1E83899588 /* binder_stream.h in Copy src/core/ext/transport/binder/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 0D48EEAB7CA7BCA59CECC34B0A589F33 /* binder_stream.h */; }; - 00B20E557FB4C8C5FC0BDBAC1E09668F /* cpu-arm.c in Sources */ = {isa = PBXBuildFile; fileRef = 67AFD862A626ADDFAC91C835F3EEFDD7 /* cpu-arm.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 00CAD21F81DAD6BDF4800CCEEAAD5A86 /* poly1305.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 73754E1FF526269575ADF5D491D5B8D6 /* poly1305.h */; }; - 00CD2B3B03A09EEEDFD1D9EDFE7D7C0C /* wakeup_fd_pipe.h in Headers */ = {isa = PBXBuildFile; fileRef = 882FA820A914F9DB47B274DBD324DB86 /* wakeup_fd_pipe.h */; }; - 00CE1AF6B5B219CF212AB2C9D1A0CCC7 /* sleep.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = 954DE2846E6D97CCB538E7A20E709212 /* sleep.h */; }; - 00DDDCE4C2E8BB0968F5C7849464D18D /* internal.h in Copy crypto/fipsmodule/des Private Headers */ = {isa = PBXBuildFile; fileRef = 65175563D9654EA9D6A6449CB1821E95 /* internal.h */; }; - 00F127D38B17CD1F0975E962A1C39A8E /* json_decode.c in Sources */ = {isa = PBXBuildFile; fileRef = D7D723544AABBBF00C348CA1D81E4750 /* json_decode.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 00FFB95CC98A7F4F58905A49BCA0E24B /* tsan_mutex_interface.h in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = BA4DB91A6D868983A1E3BEF6678933C7 /* tsan_mutex_interface.h */; }; - 010F3270DFD134EFD377731191306942 /* container.h in Copy algorithm Public Headers */ = {isa = PBXBuildFile; fileRef = F582DAD6A25A9B67645A1AD78C1FC072 /* container.h */; }; - 011CE64749F341B9BBC7DC3CC5BD8E19 /* bound.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0E64064E9501CEE071C07450987CBA40 /* bound.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 0125744E2AA05511A7990B9C5CA38542 /* table.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 2E8628A56468D58FC7C1FA03B6DADFC0 /* table.h */; }; - 012966AF8F45E539F2EBAEE3A49110B5 /* semantic_version.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = ECDE38B3FC4AB9E9C47D6B2239B43128 /* semantic_version.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 012A68306F665824FDB7111DB4BF9B7A /* trace.h in Copy src/core/lib/debug Private Headers */ = {isa = PBXBuildFile; fileRef = 6A87E9C209C3BD82B43A7A406C094F41 /* trace.h */; }; - 0137828BB6009BD65E2B7589F2A09DE8 /* common.upb.h in Copy src/core/ext/upb-generated/envoy/config/tap/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = A83744DCEBD753A2CAB7F3D09FE8EB0A /* common.upb.h */; }; - 013D772A418C47A62E8B4C0A50B8FA8C /* pmbtoken.c in Sources */ = {isa = PBXBuildFile; fileRef = 6AD9E348E15D54BAC1AC120FF71600E6 /* pmbtoken.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 0142254483E247C4764E1A9D64E2FAD8 /* ecdsa.c in Sources */ = {isa = PBXBuildFile; fileRef = EA761F6527AF29892549BF05EF502954 /* ecdsa.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 014E055A3B799CC8EB55C63E2CFD412A /* percent.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = F395F8D79F57649DFC66E0C99EDA7BF9 /* percent.upbdefs.h */; }; - 015B67D266DBAB91F2D87EA251E59ED1 /* composite_credentials.h in Copy src/core/lib/security/credentials/composite Private Headers */ = {isa = PBXBuildFile; fileRef = C931BBD1054EB919B3359D742C0417E6 /* composite_credentials.h */; }; - 016C9948CB7F158437C47CD9F66DF1A4 /* compression_internal.h in Copy src/core/lib/compression Private Headers */ = {isa = PBXBuildFile; fileRef = 4E404FD8A1A3C08A58DD5BC4CE9E5CE1 /* compression_internal.h */; }; - 016EDD3A0E29DEBB2E3D4A2B19EAC0BD /* http_uri.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 9EF465CAD0FADB19364000A1504383C1 /* http_uri.upb.h */; }; - 017144CF3108AB4859B76F6618AB92CF /* sysinfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 5718EBD3D052E008DE6E5C38BFF4DADB /* sysinfo.h */; }; - 017BFBD1194107F3ACE27023D44348D0 /* pid_controller.h in Headers */ = {isa = PBXBuildFile; fileRef = B121D70EF92B043A1A1584C579548A52 /* pid_controller.h */; }; - 018EB7754C9EE466E3C90AE34DF85FAE /* range.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 86041FC67937CCFD550726ACF722A663 /* range.upbdefs.h */; }; - 01927659B134C647769A09795D0FFF70 /* context_params.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 262C592EC3A0F8789C886B2CD3283C19 /* context_params.upb.h */; }; - 019B20CF7503B53C39F21F016B3DF06A /* overload.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 77D8F136B6E55F05B32C578235C79550 /* overload.upbdefs.h */; }; - 01BB2E7A02698FD0EC183995A839A719 /* upb.hpp in Copy third_party/upb/upb Private Headers */ = {isa = PBXBuildFile; fileRef = 892B3166A4777892545AD11693713149 /* upb.hpp */; }; - 01BBAABD19CD1519C622D10FC8C7E90D /* strutil.h in Copy third_party/re2/util Private Headers */ = {isa = PBXBuildFile; fileRef = FD25CA17182899DC1BC62F676BC68B55 /* strutil.h */; }; - 01BD7505B96580E45403073721614294 /* set.cc in Sources */ = {isa = PBXBuildFile; fileRef = 93E1D2292491007E908DD9F0596831C0 /* set.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 01BF9A18D1107CC9ACC6270734F73E85 /* FIRLibrary.h in Headers */ = {isa = PBXBuildFile; fileRef = 09588FEDA69EEC5C3508F7FB7E8B887D /* FIRLibrary.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 01C1A238137829C760598C901725AD3F /* bitset.h in Headers */ = {isa = PBXBuildFile; fileRef = E86590AAAF5E98E26B6123D6AA0894F3 /* bitset.h */; }; - 01E16DCF4C1A364D1CFF8C87DE5F7D37 /* hpack_parser.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = B367AE0FD2DF019465999B0AB60B270A /* hpack_parser.h */; }; - 01EC67C7EB67B22788E73EF543C21791 /* channel_ping.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0BB9D5F28D73B100CB9692C701BA83A4 /* channel_ping.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 01F555FFC51F1DA36B3C6FC377897BFA /* blocking_counter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 797BF28F287A56D71DAD6FF3C7497BD8 /* blocking_counter.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 01F9A475952537FD47E261799C81CF2D /* path_transformation.upb.h in Copy src/core/ext/upb-generated/envoy/type/http/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = C70DE610B652B0BC84B7971098EA83C3 /* path_transformation.upb.h */; }; - 02061F4BE2E53FB959CC11E32E190DF4 /* sorted_container.cc in Sources */ = {isa = PBXBuildFile; fileRef = AF92C376592500644AC18868B1DD51BA /* sorted_container.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 020729203182674925120342D960D679 /* pollset_set.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = B7C3000EA46587728528978ACF048E10 /* pollset_set.h */; }; - 02095AE757838441A6DC4BAC51E656CC /* time_util.cc in Sources */ = {isa = PBXBuildFile; fileRef = 38DB8290A9A9A619338D360EE034C48C /* time_util.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 020B073E0B9914E5722100777CB82E5D /* wide_multiply.h in Copy random/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 0E19542F1435FD16914CCB6487A661A8 /* wide_multiply.h */; }; - 0213D2FDADA107F3672599CC776F8955 /* v3_enum.c in Sources */ = {isa = PBXBuildFile; fileRef = 330671DD8D31C61CE7777FBACC562941 /* v3_enum.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 02167C9F6F50687F0A7CA0BB606B2386 /* cord_data_edge.h in Copy strings/internal Public Headers */ = {isa = PBXBuildFile; fileRef = F1D34EC25933F1E16CDE0854AFE95EE0 /* cord_data_edge.h */; }; - 0226F0DA5D252F430280B46FA6CAD630 /* iomgr_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 209DD28460CC2D690016A18981695D8C /* iomgr_internal.h */; }; - 02290B0A5EC9C935D00D55940C48D883 /* port.h in Headers */ = {isa = PBXBuildFile; fileRef = AB76D999C9ABCA718FC360F0332E0F9C /* port.h */; }; - 023345B6F4CEEC5BD44574E3EB75949A /* FIRGetRecaptchaConfigResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 056118C3B185466E4A9338B768DCC007 /* FIRGetRecaptchaConfigResponse.m */; }; - 0260A8770B4C07A07C92B47380636FCC /* cord_rep_btree_reader.h in Copy strings/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 59B0AF343FAA29A9C7CA47B8E3C375A8 /* cord_rep_btree_reader.h */; }; - 0268B262E297C8BF8BDEE00839E1520C /* default_health_check_service.h in Copy src/cpp/server/health Private Headers */ = {isa = PBXBuildFile; fileRef = 796F416D6CCC7BC4CEC63082B6931C3B /* default_health_check_service.h */; }; - 026B0E2A5112281FB5BBA6D3CE81DDC1 /* slice_buffer.cc in Sources */ = {isa = PBXBuildFile; fileRef = C45DF6B1C0ACD716FC0B0ECE837BCDB2 /* slice_buffer.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 026B8427795D508EB098B718B1178B43 /* frame_ping.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = B35983469D31AEDCD7C27AAB48A6D5E3 /* frame_ping.h */; }; - 02713998D8BCDF149AB6019C7D9273FE /* flat_hash_map.h in Headers */ = {isa = PBXBuildFile; fileRef = 86C3FE000E429114CF2087D59A39C587 /* flat_hash_map.h */; }; - 0274658DAFE463DA51B7910F2C1D1891 /* pem.h in Headers */ = {isa = PBXBuildFile; fileRef = BB62C2AA60E865911D2E87B2236182A8 /* pem.h */; }; - 0275ECAF9DAA1D93EE9213196DC12C9B /* grpclb.h in Copy src/core/ext/filters/client_channel/lb_policy/grpclb Private Headers */ = {isa = PBXBuildFile; fileRef = 19BFDA34A5393E1F5CE1D6E761BAA658 /* grpclb.h */; }; - 02824E593A141A28A0DCEB3265F7F88C /* resolver.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 084247E0555A377384C1F32187EC33E0 /* resolver.upbdefs.h */; }; - 028422302345DE5CFE5FB6EC29528382 /* cert.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = EB687A1C0E258E86C833917065296818 /* cert.upbdefs.h */; }; - 02A6B7DA130EA728B524E8CC3B065370 /* str_cat.cc in Sources */ = {isa = PBXBuildFile; fileRef = B9D937566AA9967FC5C4F7EF4E86D684 /* str_cat.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 02AB50ABA598932874E61C2666DBA201 /* resource.upb.h in Copy src/core/ext/upb-generated/envoy/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = 7CF9C3C087CFA7A8AD1B20EC33C89758 /* resource.upb.h */; }; - 02B74FC4AA516D028A9F14E5D4DA662D /* seq.h in Headers */ = {isa = PBXBuildFile; fileRef = 42451DEB71FC64F850C3832CF5A3E213 /* seq.h */; }; - 02CC5C385AA431B10C058DE9C9291234 /* log_severity.h in Copy base Public Headers */ = {isa = PBXBuildFile; fileRef = 06DCCCBA38736B0AB76BC0E3DDE92FC5 /* log_severity.h */; }; - 02D3D4B2775C0EB72A80ED26AEDB4FA8 /* map.h in Copy third_party/upb/upb Private Headers */ = {isa = PBXBuildFile; fileRef = 7E653BFDE8DE075AA70ACDF346590386 /* map.h */; }; - 02D9422B39B6874E426677B23B3B14C7 /* wrappers.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = 1E1C9FD5EF1187307DC346C3FCC240A2 /* wrappers.upbdefs.h */; }; - 02E6121874C16F128330CF339C259DC5 /* hpack_constants.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C1AFCB9A8411B20F1D6034A95257D48 /* hpack_constants.h */; }; - 02F25DA05C5334F456E1F358C7220BB0 /* router.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = D3FF5E74E6E0C03FA96EE34164092E74 /* router.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 030C717E9E9B948657307781747E131F /* FIRAuthDispatcher.m in Sources */ = {isa = PBXBuildFile; fileRef = D0D4438B8D4B117D3A23F1DEF9F6F035 /* FIRAuthDispatcher.m */; }; - 030F4AF3066955233F90015038CB51A1 /* config.h in Copy base Public Headers */ = {isa = PBXBuildFile; fileRef = 2E577A9C81666A9F91FA34C74874730A /* config.h */; }; - 0323A159C9335E8961B056FFC9D77684 /* local_security_connector.h in Headers */ = {isa = PBXBuildFile; fileRef = B2F955487CA513935758ED59C953D3B9 /* local_security_connector.h */; }; - 032A3576FB1E1D11C3D031B7884F1D90 /* RecaptchaInterop-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 8E5A4A62A40CCF7F553E607246FCEC7E /* RecaptchaInterop-dummy.m */; }; - 032DB839E5B464552BB67F30B911E6EF /* time.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6C996D1632B933D118AAED87CCB1967E /* time.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 0333D89DB2AF71760B13044FB06FEE00 /* handle_containers.h in Copy src/core/lib/event_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 717036DF4B82F7C432B925261402AD15 /* handle_containers.h */; }; - 033B43E7D29924D1FD901FCFADF57D8D /* channelz_registry.h in Headers */ = {isa = PBXBuildFile; fileRef = A7FDC40B27C34AEE930A9E902411346C /* channelz_registry.h */; }; - 0347581A956820D144DC04D69CA8BDA7 /* polling_resolver.h in Headers */ = {isa = PBXBuildFile; fileRef = D8412D9A52A20CC9C5F2A71CCDA54E26 /* polling_resolver.h */; }; - 03495516BE6675DA7A58B9FF69BAC6BE /* config_source.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = E10A46004BAC723BCFA4A70A47C3F1B3 /* config_source.upbdefs.h */; }; - 0353309CC0F0FD622E4D731BFC1E186B /* errno_saver.h in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 8C4402D5341D22672D9FDE780779B8D3 /* errno_saver.h */; }; - 035DDE26E04375BF486C84016658FC1D /* jwt_verifier.cc in Sources */ = {isa = PBXBuildFile; fileRef = 86243431F0B72F796DEEFDF6B79C37F2 /* jwt_verifier.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 0368636B58A2485FB023176DB55C164F /* listener.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 86E7F2F92FEDBF61B8FB23DA53631F8A /* listener.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 0381DD598A7751F9B20D292A1ACDAACA /* cordz_functions.h in Copy strings/internal Public Headers */ = {isa = PBXBuildFile; fileRef = B289C64090D6632B6C6BB85E9A040BC5 /* cordz_functions.h */; }; - 0391AFA8D94BA20D69056BC0448ED390 /* abseil-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E677EB36E010F5FFAEA2E4D4CBA7BA8 /* abseil-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 039CA1E9B6A2351F6BE1C84616AF4A4C /* varint.h in Headers */ = {isa = PBXBuildFile; fileRef = FD0F8ABA6CBB494DAFD5088EEBE221CE /* varint.h */; }; - 039F0C0DA8427AA0BA3A102D1C77A233 /* frame.h in Headers */ = {isa = PBXBuildFile; fileRef = F7E90EBDCB985F811CEC408095BA0528 /* frame.h */; }; - 03A84DB583FC0B524DA8B029AC08F8A1 /* xxhash.h in Copy third_party/xxhash Private Headers */ = {isa = PBXBuildFile; fileRef = 6D3102995018AB50A9C3FE3706120CA9 /* xxhash.h */; }; - 03C159B4A73CE38578F41D23D1008CAD /* thread_quota.cc in Sources */ = {isa = PBXBuildFile; fileRef = BDC41B78FC9E2C366BA662F26F7CE207 /* thread_quota.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 03C4DBA4EC7A355958139B920B725191 /* sockaddr_utils_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 654935D1135F3D751C672E6CE4D65125 /* sockaddr_utils_posix.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 03C50D346DC5E18CC297ED004EDFF38B /* path.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = EE3349D76C260DC8862FA0BA21E82D68 /* path.upbdefs.h */; }; - 03D80337826CD00C6C86EB15FD281808 /* number.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = D2346A851A8D274E0726A3ACED92086D /* number.upbdefs.h */; }; - 03D8435020395630ECD7F105CA87172A /* global_subchannel_pool.h in Headers */ = {isa = PBXBuildFile; fileRef = 62D2CB7539315C4667F8DB4B16A53781 /* global_subchannel_pool.h */; }; - 03D849243EF3DA36FDD6E8421B3121E6 /* grpcpp.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = D805DA07D57F7C56E150A22AE107A97A /* grpcpp.h */; }; - 03E3430A0FF37153F99F2C4A2C6B909C /* circuit_breaker.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = D233121D59236ACA301AB2AB209F9418 /* circuit_breaker.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 03FB75EB23C87FBFF55D3EBF9B357E5D /* v3_lib.c in Sources */ = {isa = PBXBuildFile; fileRef = 8EF141D491924B08F34E88D960B9A6F9 /* v3_lib.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 03FDF2D2F706911EEEED680AEA17E179 /* endpoint.h in Headers */ = {isa = PBXBuildFile; fileRef = DBF7F5424980678425CAE8B733E6707A /* endpoint.h */; }; - 03FEE7E7E5A88F96DE7593AAC1115C51 /* socket.c in Sources */ = {isa = PBXBuildFile; fileRef = 94DA34A697B449807BA291012F7C7B98 /* socket.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 040B1E70468AFEE11DD07C33B979E310 /* FIRAggregateSource.h in Headers */ = {isa = PBXBuildFile; fileRef = F69772E8C3385C117EE1CC68367EE646 /* FIRAggregateSource.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 040D82E46A472E182D7B25CCB9AAA1EB /* channel_stack_builder_impl.h in Copy src/core/lib/channel Private Headers */ = {isa = PBXBuildFile; fileRef = 71D4822EF1AB4BA6BDC5D95395236A78 /* channel_stack_builder_impl.h */; }; - 040E92DACB0C607A26EFCFEF159ACE55 /* bad_variant_access.h in Copy types Public Headers */ = {isa = PBXBuildFile; fileRef = 0AC7F295A9BF96E551BD821B01F32EE9 /* bad_variant_access.h */; }; - 04112E4F99BB7F6F68F0E87B671E7BAF /* certificate_provider_registry.h in Headers */ = {isa = PBXBuildFile; fileRef = C16BA8733C7B297294E7CE39AE15BA5C /* certificate_provider_registry.h */; }; - 0416697039CA0FF3965C92721815F80F /* iocp_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7D61E4E9469260047E68EA523CEB4102 /* iocp_windows.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 0418D403B9183EBA0D06B8BFCA062BBB /* versioning.upb.h in Copy src/core/ext/upb-generated/udpa/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = BE6F32D7B91C009D5CF7524E41EA06D1 /* versioning.upb.h */; }; - 0419528B88CF95241094C105D240B0BB /* fault.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = CBF7DB1368D4171C4C5394EEC861BDA4 /* fault.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 0426333E03CA1B5B315FC6A7183B597D /* uniform_int_distribution.h in Copy random Public Headers */ = {isa = PBXBuildFile; fileRef = 859BB94E68D3ECA7149DE29BA6B59C5D /* uniform_int_distribution.h */; }; - 042B70D5C5447D7B476FC64FA39C6140 /* per_thread_sem.cc in Sources */ = {isa = PBXBuildFile; fileRef = 733E790616C1A048CAA297626C8D4143 /* per_thread_sem.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 0438FA78DBF97FDE2B0DAEFE02A58F52 /* stacktrace_powerpc-inl.inc in Headers */ = {isa = PBXBuildFile; fileRef = 90D7736E94865F980E6231AEC7072DAB /* stacktrace_powerpc-inl.inc */; }; - 044F3DB0C061346DDB36999071A54060 /* socket_factory_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B104D9BB962879A60523880A0C8E931 /* socket_factory_posix.h */; }; - 0450CA37FC5AF251C6CE03CAB0ED18AB /* FIRTransactionOptions.h in Headers */ = {isa = PBXBuildFile; fileRef = 1EEDB472AB5EEE70306A12A1E8007342 /* FIRTransactionOptions.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 04626F8C67DECD0243AB6C98CC90F71B /* zipf_distribution.h in Copy random Public Headers */ = {isa = PBXBuildFile; fileRef = 88D392182C0832BCEA0334B0DCD6F074 /* zipf_distribution.h */; }; - 04690071C3AC02149B2A882E1F975B0B /* a_utctm.c in Sources */ = {isa = PBXBuildFile; fileRef = F13C371FD182590CD1FC7A09A020CC4F /* a_utctm.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 0492027A636FE830E4BF1420660A9C2B /* datastore.cc in Sources */ = {isa = PBXBuildFile; fileRef = 35BEDE946D34A49E78AEF7756E6D8F29 /* datastore.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 04950E12EBAF33407DA228A7E4B2F4A9 /* grpclb_client_stats.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C10BF10D5BDF891B6B35151DC10D2A9 /* grpclb_client_stats.h */; }; - 049C59A90D4C4D990F2051C21D9093DF /* lightstep.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = EEBC5465EBE0C03BD5F5DADAD8169B15 /* lightstep.upbdefs.h */; }; - 04A3FC67FB0EE1EDE991D299272B8D8B /* xds_server_builder.h in Headers */ = {isa = PBXBuildFile; fileRef = F3C99539B1683DFA20FED6B1599CAB6A /* xds_server_builder.h */; }; - 04CC4808FD96CB116099F8EDFD03A2D0 /* GTMSessionFetcher.h in Headers */ = {isa = PBXBuildFile; fileRef = C6ACCEC076904379AE523C1A509EDC5E /* GTMSessionFetcher.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 04D40BCBE65FFEFE677FF7ACA84AF102 /* matcher.upb.h in Copy src/core/ext/upb-generated/xds/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 87B93940D10F0576FE285EEFCCEE374E /* matcher.upb.h */; }; - 04E741C372BF0ED68A2DCEE4B9781C8B /* subchannel_interface_internal.h in Copy src/core/ext/filters/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = 1995FCF1B624CAA490E946B40CCD18FB /* subchannel_interface_internal.h */; }; - 04F0F9A594FA597D89B3F252701DD232 /* call_tracer.h in Headers */ = {isa = PBXBuildFile; fileRef = 00C6704DCCCD6335315E13B45707908B /* call_tracer.h */; }; - 04F1EEC671E038B78C50A06AD1315F8B /* iocp_windows.h in Headers */ = {isa = PBXBuildFile; fileRef = A642B9AD423A215C5CA785F2D238C99F /* iocp_windows.h */; }; - 05257621AB531A08E8E3C7294EFD596A /* json_token.h in Headers */ = {isa = PBXBuildFile; fileRef = FE9D702E233466F09D9CD2490AE6DCD7 /* json_token.h */; }; - 05289EB07AE5201FE43CB1969C2B008F /* p256_table.h in Copy crypto/fipsmodule/ec Private Headers */ = {isa = PBXBuildFile; fileRef = 607ADFCCBAC72296AAF834D6CBA3945C /* p256_table.h */; }; - 0530BC65BA513A93A44904F83EE35EDD /* sync.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = C3762F9BDD426D3B4E59E305CE021E54 /* sync.h */; }; - 0548939D63D177ADD620F933D803E952 /* outlier_detection.upb.h in Copy src/core/ext/upb-generated/envoy/config/cluster/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 6AF76257FF1A395CC8E9C356BF46F73B /* outlier_detection.upb.h */; }; - 054C4D3CBA07BD949EA3C25DE76F7C9E /* FIROptionsInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 5ABA285C7A4F0F7172CD67574178B910 /* FIROptionsInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 05553EE5ACA61DE6C1301C46F6E4D4DE /* service.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 51D2CF91FBDFA49F8EE3313584DBAEE7 /* service.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 0563546F6F48912D6C11AD5DACA14638 /* tasn_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 815D417A78A5084D6A23C2F7423B0AC6 /* tasn_enc.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 0587C3FF79E446B89CB3765B260EF04A /* decode_fast.c in Sources */ = {isa = PBXBuildFile; fileRef = FADBA76EF5B7A55ECDC0528EC9587921 /* decode_fast.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 059045E649306A9EBE7D82B9CE400E33 /* config_selector.h in Headers */ = {isa = PBXBuildFile; fileRef = FEC2B325C6194885028E0EED01110199 /* config_selector.h */; }; - 0596C09A7F14F25A80AC042943FA400F /* stacktrace.h in Headers */ = {isa = PBXBuildFile; fileRef = 5647BFEE8075FF69E7F5ACF7D1500170 /* stacktrace.h */; }; - 05982475A646714BF5518F2C9998EF7D /* hash_policy.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = BFE7591AA4338D3FCE2C27204AA3F325 /* hash_policy.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 059EED82F674F15EBA741168A2F5F8F2 /* resolver_registry.h in Copy src/core/lib/resolver Private Headers */ = {isa = PBXBuildFile; fileRef = EAA01727A243EF6136E41EBB402E4A78 /* resolver_registry.h */; }; - 05A5D5F037B4484278137878979EC9F1 /* binder_security_policy.cc in Sources */ = {isa = PBXBuildFile; fileRef = D0892E758BF3D06403494F7B9B718A96 /* binder_security_policy.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 05A9DBA33D8DDD4E87693377E8FC9929 /* FIRAuthAPNSTokenType.h in Headers */ = {isa = PBXBuildFile; fileRef = 190AA77CBDFD209C001B1E1D4FECA0CD /* FIRAuthAPNSTokenType.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 05C099C2333C8F399A75DDEE378320A2 /* slice.h in Headers */ = {isa = PBXBuildFile; fileRef = 844AB3682B0B824BC3FBF06C48AE2E57 /* slice.h */; }; - 05C9155E35195B59BCB82D3D0AF6EA7F /* FBLPromise+Recover.h in Headers */ = {isa = PBXBuildFile; fileRef = E478955BCA73AF89E2A24E9016E72E34 /* FBLPromise+Recover.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 05CCBF0B501B9733A7BCF48B897F4FBF /* GULNetworkURLSession.h in Headers */ = {isa = PBXBuildFile; fileRef = 9769E01143F79CE7C4CBBFAEBE44E840 /* GULNetworkURLSession.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 05D009478A70B7200CE2F48E769DD422 /* struct.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 61C198A4B5670386EC74AA48413C6D88 /* struct.upb.h */; }; - 05E6247F02593CE9DD952EF427EE4509 /* socket_notifier.h in Headers */ = {isa = PBXBuildFile; fileRef = A600817231945A583370FABE0FC9D9BF /* socket_notifier.h */; }; - 05E6BBA270D289F7AF22FDC02496A48F /* listener.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/listener/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = B56B5D1506B37C17CF57B56E7684516E /* listener.upbdefs.h */; }; - 05FA5B56BCDE2EFB8887D2FED48FC2ED /* alts_tsi_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 61A38FC5D9BACE9C0F57BB794239CBFF /* alts_tsi_utils.h */; }; - 060587B965728AA9C3F2F91B0F90774F /* host_port.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 33D32CF9DD8FF148548D1DB3F5F6BFC4 /* host_port.h */; }; - 060680804EA789521894B41B5348D925 /* map.h in Headers */ = {isa = PBXBuildFile; fileRef = 545AD2F6F656B8D054032F185659B4DD /* map.h */; }; - 06226C7C7003C73EA07981F62AB066E7 /* bin_encoder.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 915CBB4C8E3DF85B5720CB4944C7FB30 /* bin_encoder.h */; }; - 0622DB18D3FF69B12D0F4CFA6354C701 /* memory.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 825D8B270ADAEB8E8B610CE88F6D0DFB /* memory.upb.h */; }; - 062EE735A565A6FD8C01FD3F9D0B5A61 /* hpack_parser.h in Headers */ = {isa = PBXBuildFile; fileRef = B28A6E10C0B793A03D24AC91C9F9C108 /* hpack_parser.h */; }; - 063818E232C37C9D666F49BC28A0D689 /* hash.cc in Sources */ = {isa = PBXBuildFile; fileRef = E8D8F2E3960BC3C1749044499B36B668 /* hash.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 063C578727684DC1D57569F31F09FD57 /* json_args.h in Copy src/core/lib/json Private Headers */ = {isa = PBXBuildFile; fileRef = 14C1624B89A6149ABC322C5237980C8B /* json_args.h */; }; - 063E4FA9C10BC55CFC711B9678B5D528 /* authorization_policy_provider.h in Headers */ = {isa = PBXBuildFile; fileRef = A8CE24F6E2CE893BDB9D00AECBEF5F21 /* authorization_policy_provider.h */; }; - 06480BFA155440663B78E40B722AD6B5 /* hrss.h in Headers */ = {isa = PBXBuildFile; fileRef = 69564087DDBD14EEBF809B204844C59F /* hrss.h */; }; - 065B916939453B545A2BD8A76D3E62F1 /* tls1.h in Headers */ = {isa = PBXBuildFile; fileRef = B15B9D94519D0FCDA83D340CD3D8F013 /* tls1.h */; }; - 0660A17CFEB8CD7A70B56307F90DEE6A /* backend_metric_data.h in Copy src/core/ext/filters/client_channel/lb_policy Private Headers */ = {isa = PBXBuildFile; fileRef = 0EBA18879F5395AA869BF779A0CD70A7 /* backend_metric_data.h */; }; - 066DBA468565FB72FBE5A0E7F8AD0B30 /* timestamp.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A312DABDC0469C0664D6E045F608BF1 /* timestamp.upb.h */; }; - 067C6BA6C56666E46BBD9E2B42D4111E /* grpc.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 4FCD21CE47988D7EB1ED3DFB211733DB /* grpc.h */; }; - 06881B3328074BB9915C3119337F6E92 /* pretty_function.h in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = B60FE234DAC8C841A1D7B482A81C468A /* pretty_function.h */; }; - 06AB76A92C9AAA0915A7C0C76567FDBA /* json_util.h in Headers */ = {isa = PBXBuildFile; fileRef = 121A4E59D9471F015794CB52DB461D07 /* json_util.h */; }; - 06B841B7FCDE20F3011F3D23351324F2 /* cord_analysis.h in Copy strings Public Headers */ = {isa = PBXBuildFile; fileRef = 10CAD5E37211F3AB267A47CCD83A7516 /* cord_analysis.h */; }; - 06BAA95E20E345EF957B2B9E084BB0F5 /* gethostname_sysconf.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7DDA02EA73C9DD8A6C2C4AC85423BA63 /* gethostname_sysconf.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 06BEF24306841AFE3EA3F70D538E77CA /* cord_rep_consume.h in Copy strings/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 7ACA7464C4F5BABD1BF795C156500911 /* cord_rep_consume.h */; }; - 06C03404022F7A2EBA2A14F7602DB0F8 /* dynamic_ot.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 81DEB8B9EB08A87AC92E5FA190E87955 /* dynamic_ot.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 06C45797EFB095CDB25990B80DC6D591 /* engine.c in Sources */ = {isa = PBXBuildFile; fileRef = 7A81ADAB7EA0CD77184B4A15DDCFC577 /* engine.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 06D3062409A854F2D0A722A9684DC1F4 /* fork.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = FDF05055FAF2AEF32BF075AEAFF1F223 /* fork.h */; }; - 06E39983DBAFEA542BEDF36AE875C4C5 /* evp_ctx.c in Sources */ = {isa = PBXBuildFile; fileRef = 39C1E7B3AB66A85AEB91EEFE7847AA26 /* evp_ctx.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 06F3998D610DA8730151E7FE7286F174 /* delegating_channel.h in Headers */ = {isa = PBXBuildFile; fileRef = 264C03A93FE6C91CECEA391487DD658D /* delegating_channel.h */; }; - 06FBE71AF4CE85B9E712088B34E58382 /* channelz_registry.h in Headers */ = {isa = PBXBuildFile; fileRef = CD48AC94385B20DFD0E96B95B8D64973 /* channelz_registry.h */; }; - 070BC16089B6A3FF5EF7EB77DEF48A6E /* FBLPromise+Wrap.m in Sources */ = {isa = PBXBuildFile; fileRef = 73C9FA249A5F6F6BC7427B9F84A0E7EF /* FBLPromise+Wrap.m */; }; - 0715B29F2BA356AFEDE56D85BF76DF8A /* ex_data.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 1C29221990192A22A718DC6094646990 /* ex_data.h */; }; - 0723CB1BACBAF1A74F9BC0DEFDFEB3CD /* trace.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = B4506DB31A7BECF90EFC74D9C93C44AC /* trace.upbdefs.h */; }; - 072B4692D9DD98B0FA1C6EA61CBC229F /* wrr_locality.upb.h in Copy src/core/ext/upb-generated/envoy/extensions/load_balancing_policies/wrr_locality/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = F10A4554F7A5BB1826B7D655C53D7B49 /* wrr_locality.upb.h */; }; - 07307997364BE4A06E4C10A96F7C935E /* oob_backend_metric.h in Copy src/core/ext/filters/client_channel/lb_policy Private Headers */ = {isa = PBXBuildFile; fileRef = E4866A1273C33A17D1CC8DD6F80BCE92 /* oob_backend_metric.h */; }; - 07524025B3B44D61AF35C34DF4E13D91 /* tls_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = B02CAC738AA3AA440CC9D3147CCAFF94 /* tls_credentials.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 0752CA303FF6B30D71DB57E3DE2C19A8 /* leveldb-library-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1326DA35ED700A0AD3AD884629AE89EF /* leveldb-library-dummy.m */; }; - 07582F3916B940F5F2911F877DEBBABC /* frame_goaway.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 33C4A96A5DE21D1E08DA02F702FF5916 /* frame_goaway.h */; }; - 075CFB67A9148CCEBEAD3C2E3A45C708 /* env.h in Headers */ = {isa = PBXBuildFile; fileRef = F732DEB26E19EF8BEF2FF13131FD2338 /* env.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 076B6985A408F658978C896FBED07B9F /* alts_grpc_privacy_integrity_record_protocol.cc in Sources */ = {isa = PBXBuildFile; fileRef = 13E6E5D6A8EB1C7978814C690D699652 /* alts_grpc_privacy_integrity_record_protocol.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 076B73B934311850C5C98E1B58732FD7 /* cord_data_edge.h in Headers */ = {isa = PBXBuildFile; fileRef = F1D34EC25933F1E16CDE0854AFE95EE0 /* cord_data_edge.h */; }; - 076DA34FD5C57727501D08CFB80C1111 /* http_server_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = CB4B811E1AC9778827BD8B2BD4C89243 /* http_server_filter.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 0774418F99F5103E565DE81A65F430C6 /* health_check.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 74A7D590E09F3AE855E4BCB46D832A02 /* health_check.upbdefs.h */; }; - 07857C37F59D609BE25EB375B412D712 /* resource_name.upbdefs.h in Copy src/core/ext/upbdefs-generated/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 9A8BC20F54E5F3266ECE7402547E83D3 /* resource_name.upbdefs.h */; }; - 079277DB479AC5B556DB491CB5C8B114 /* pollset.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 762C8F07AACD976E8C989F77F571079A /* pollset.h */; }; - 079327763D9B55632F9B114ECD79FB76 /* stack.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = A89BBF14588035900CC1C96427D7C9CE /* stack.h */; }; - 07B3BA8B2E3E8E6E6EC8A4EF2225B907 /* substitution_format_string.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 36BB80B8E1EA2FF2786F608B078DA8EF /* substitution_format_string.upbdefs.h */; }; - 07BD1C0BB95C0B0ED771DBFD4B41B2CD /* span.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = EEE2A3C886CF68A2EEF0802CFD94F04F /* span.h */; }; - 07CBFD116C59094D39D3F01929004574 /* endpoint_pair_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = 28B8DEEEBD1DD676F586D66C68680207 /* endpoint_pair_windows.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 07D46E2933683B5284A665C756E68655 /* ratelimit_unit.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 3F875EF5A8C7D0F1203F455C6888424A /* ratelimit_unit.upbdefs.h */; }; - 07DA4239E18ABDBE543E027A26C72BFD /* padding.c in Sources */ = {isa = PBXBuildFile; fileRef = 203ADC867E690929F957ED926E57349B /* padding.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 07DBBB1A64D93264FB83CCE4DE8638EC /* cookie.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/http/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 628C96061E1534AD017000BA1E3336BC /* cookie.upbdefs.h */; }; - 07DF031BFA65F28994881FA4C7B62FD6 /* event_engine.h in Headers */ = {isa = PBXBuildFile; fileRef = D99D39F258998421D7A1C6589A219C93 /* event_engine.h */; }; - 07E28CF59397430936A5A8D18BBD31E2 /* config_dump_shared.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 42B765F8AC321C2481AE576B5F714863 /* config_dump_shared.upbdefs.h */; }; - 07E8A35D331A10820B86FAF7768EEBFB /* alts_zero_copy_grpc_protector.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7E13CF13E4A1EBE968FB72C6DA1CFCFE /* alts_zero_copy_grpc_protector.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 07EF818097977102454B5B7747B24F24 /* protocol.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = F69932F6D1F2F4D3ABFBDE3B9821360D /* protocol.upbdefs.h */; }; - 07F4F2DDD89DE403F7503B3A35F9D9C3 /* memory.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 4BC4D6BBC1F78503A39459F50DD1BAB1 /* memory.upbdefs.h */; }; - 081126C69E552FFD51CC6EA506DCCF13 /* subchannel_stream_client.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E728DF3C719A431532FBD088134BA75 /* subchannel_stream_client.h */; }; - 081246F69A0BB0661CA7DDAB0007535E /* xds_endpoint.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A552E6FC0373E664B44E522495B4F78 /* xds_endpoint.h */; }; - 08168C417EED249899D9427CDECD7104 /* client_channel.h in Headers */ = {isa = PBXBuildFile; fileRef = 55C2F375DFC523DF473B83E3BD26B18A /* client_channel.h */; }; - 08178B7EDE2F59407B34EC555F946640 /* coding.h in Headers */ = {isa = PBXBuildFile; fileRef = 55664534FA5CEA84E23501867A8233A8 /* coding.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 081DD6EAEE951EF052D1A457C97E3067 /* handshaker.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6A57EBD664F1A3009FCA9192C3943553 /* handshaker.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 082263CF509DBC9A027640166B97B9DD /* asn1_mac.h in Headers */ = {isa = PBXBuildFile; fileRef = BAE032884A1B3DFC7B5C8EA43753BE97 /* asn1_mac.h */; }; - 0823BD485466CD4F60EA3CAD5DBD1504 /* v3_ia5.c in Sources */ = {isa = PBXBuildFile; fileRef = C1998EA49015D214A15F9E797456C0EA /* v3_ia5.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 08283EBCFB47A68406BFF1DD7250F78B /* address.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = EF53589CB5D78A98F3E32898B9D0B479 /* address.upb.h */; }; - 08419D9AE2203C27E8C07BF172975BD0 /* call_combiner.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 344ACC36B17FC8167067E434D8405371 /* call_combiner.h */; }; - 084779C04646C8F32FEA1F72BB308FB8 /* lb_policy_registry.h in Headers */ = {isa = PBXBuildFile; fileRef = 897042239EB3DCA0DEDBB17D1D5F3FDD /* lb_policy_registry.h */; }; - 08477F117B4F4E9E9F4F95A5F8E2B120 /* cpu-arm-linux.h in Headers */ = {isa = PBXBuildFile; fileRef = 559A054F40CF91467BADF1F1E2E432A3 /* cpu-arm-linux.h */; }; - 0857EE4335E4CAE50C5A27E7C8770BA4 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = F85DE9BF32D8BA891F129029BC36039C /* internal.h */; }; - 085D08FDBB16B0A7FB4F703F5CB27DC4 /* http2_settings.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 65416ED0373A4CA19EB0B6CF4D732370 /* http2_settings.h */; }; - 085E9EF41748C0D957C2DC677E621214 /* pollset_set.h in Headers */ = {isa = PBXBuildFile; fileRef = BF0703816100982D11C66479B5F34F9E /* pollset_set.h */; }; - 087A169E3BAEBBD73A1C30A1C3493A75 /* slice_refcount.h in Copy src/core/lib/slice Private Headers */ = {isa = PBXBuildFile; fileRef = AD1DFC597DB1D5020134118190C806FC /* slice_refcount.h */; }; - 0881612FB13F152DB2368E442E1BBCA0 /* tls.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = F5CB26C269447AD1FD0CC5F6254275D3 /* tls.upbdefs.h */; }; - 0882FE22B03B5F521EF7DE7C44ABC58B /* local_serializer.cc in Sources */ = {isa = PBXBuildFile; fileRef = 29358633BC6F5396A7AECA8A735D3C8D /* local_serializer.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 08883641DBA98756ECF6047B1233BD4B /* format.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8D853E2C84D43EB18E0BD10DC7CC36B7 /* format.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 088F2B7DF6D10ABF2A2AB3FB242E27C9 /* rbac_service_config_parser.h in Headers */ = {isa = PBXBuildFile; fileRef = EDC3268A11BAB8910C0B456E264503E2 /* rbac_service_config_parser.h */; }; - 089F54E25FDAE55720AE0DE71D673A23 /* memory.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 204A3E762E76090C27AAC197A417C4AB /* memory.upb.h */; }; - 08B297FB1E948F3FB0455A7F70CCD56B /* index.nanopb.cc in Sources */ = {isa = PBXBuildFile; fileRef = C9888343E3C5CD7CD0C3AEBA508A84EB /* index.nanopb.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 08B5ADB7C711AE04E7C7DCC518823A87 /* thread_manager.h in Headers */ = {isa = PBXBuildFile; fileRef = 270A610065256330E8535BA38ADAE627 /* thread_manager.h */; }; - 08C74F636398CB141EAEE7E6F367DFB1 /* check_gcp_environment.h in Headers */ = {isa = PBXBuildFile; fileRef = 398DB00B926B8A795F11AA30BB9744C1 /* check_gcp_environment.h */; }; - 08E5E06A6623649B08A4ADE762708C81 /* number.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 921D6F5945B42258494ABDFE97F57662 /* number.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 08E7AACC1BCAD3CA5B1948150477C86F /* timestamp.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = BF67D8E88F34C35D3AF370D64825472F /* timestamp.upbdefs.h */; }; - 08F3094563D2D302DE73BDCC352D127D /* type_check.h in Headers */ = {isa = PBXBuildFile; fileRef = 85C6556189D5572177565DD94F6659A3 /* type_check.h */; }; - 08F402B987F8DD6089D9ED3F3AAC4F51 /* http_server_filter.h in Copy src/core/ext/filters/http/server Private Headers */ = {isa = PBXBuildFile; fileRef = 7BD30968630904054326F045A4E67DAB /* http_server_filter.h */; }; - 09018BFE34D2A4029AAD43EEE7B62F8A /* dh_asn1.c in Sources */ = {isa = PBXBuildFile; fileRef = AD7290A378677F09E776020533165350 /* dh_asn1.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 0908820947E21BA670249896E50851A2 /* FIRLibrary.h in Headers */ = {isa = PBXBuildFile; fileRef = 458AADF755A03242A04A379635F670D3 /* FIRLibrary.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0913D2C34DF02DAEC40B32E93D908414 /* metadata_batch.h in Headers */ = {isa = PBXBuildFile; fileRef = 24C06396F64238BBD1E2DC57621EA8F2 /* metadata_batch.h */; }; - 095867195866CF862EA1623E4C00DB3C /* FIRSecureTokenService.h in Headers */ = {isa = PBXBuildFile; fileRef = 878ECAC366B38262533620EA19B646DA /* FIRSecureTokenService.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0961F7138BD9D4DC04A8359ECAABA06A /* asn1_gen.c in Sources */ = {isa = PBXBuildFile; fileRef = 6F2B5796739CF1E7FBB02EE5E0690939 /* asn1_gen.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 096A29FF0031167E5A997EDD99F90235 /* alts_counter.h in Copy src/core/tsi/alts/frame_protector Private Headers */ = {isa = PBXBuildFile; fileRef = E2816B4D12C694A24AF3924582465DC8 /* alts_counter.h */; }; - 096A6DC23D08C4E94EAF8EE16C503034 /* server_info.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = BB84EF334CC943D709C94E8C14AC38BE /* server_info.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 096B38513CA957C26B8287E8FA995AF0 /* pollset_set.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = BF0703816100982D11C66479B5F34F9E /* pollset_set.h */; }; - 096C9BC944A080F38C31617A76439EE7 /* config_dump.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 3EA8343325E1E8A0CF13F57C9ABBF03D /* config_dump.upbdefs.h */; }; - 09715484AAE5CD1EE5324687C52E5E44 /* service.upb.h in Copy src/core/ext/upb-generated/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = E7CD78EC04F62235CC090B79192B34BF /* service.upb.h */; }; - 09716863A2065A287EB9865D63AFD799 /* sensitive.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = EA3E1D2993A0CA183D8605B0191C217F /* sensitive.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 0971912A324C30386943859378E126DA /* gsec.h in Copy src/core/tsi/alts/crypt Private Headers */ = {isa = PBXBuildFile; fileRef = 1CB7C53AC46E13F5F5F946BA6080DB57 /* gsec.h */; }; - 09801099000879547FA654DDDA9B794E /* connected_channel.h in Copy src/core/lib/channel Private Headers */ = {isa = PBXBuildFile; fileRef = 9571519B462BAFB1775DF31A4958FA56 /* connected_channel.h */; }; - 098361F5049315921A1D981CD14443CD /* call_once.h in Copy base Public Headers */ = {isa = PBXBuildFile; fileRef = 0B4E4385D6FBAA28BFA45C6352F71818 /* call_once.h */; }; - 0986C0FE63C587AD6F872C2496F69639 /* port.h in Headers */ = {isa = PBXBuildFile; fileRef = 75DD5BF750D5530177B5F59F481087EF /* port.h */; }; - 098E4A786BF33FB3B97FD04EC6191185 /* api_listener.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = EC23DFC8A8AF7E565DD21186A66EBA6C /* api_listener.upb.h */; }; - 09988642890B65584FC4D1A04DC0B20C /* filesystem_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = A37DF15936EC92D785824A9FA60C8B5F /* filesystem_posix.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 09A6195547BCB57F26991415E8FCDF14 /* low_level_hash.h in Headers */ = {isa = PBXBuildFile; fileRef = 8427E458E2FFA55DF78F4A63F9C0B73D /* low_level_hash.h */; }; - 09AE993A744811D886C3CA2B1892D8EF /* alts_frame_protector.h in Copy src/core/tsi/alts/frame_protector Private Headers */ = {isa = PBXBuildFile; fileRef = 382CF00AC9B3E3B0FEBA9B1A38D76AEF /* alts_frame_protector.h */; }; - 09B176D41C00008110E6A6601E10283C /* empty.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = D8CF7C8B1E6ADC4E5F75D68482B743CA /* empty.upbdefs.h */; }; - 09B5F097A9FC5C48AFEFB37FD8C63902 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 7367A46F3574E5BC0ACD2772358A2752 /* internal.h */; }; - 09C739DB1C9FB40091E30DEC7BC1F292 /* bloom_filter.nanopb.cc in Sources */ = {isa = PBXBuildFile; fileRef = CA6DEE1A50B012C48D139A8060A8433F /* bloom_filter.nanopb.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 09CE51C701495CDD96155EAB1F819867 /* serialization_traits.h in Headers */ = {isa = PBXBuildFile; fileRef = E5CEB58737BE690A784E875E176DCB77 /* serialization_traits.h */; }; - 09D3E52CD3AC4D073F899661F540EFC9 /* frame_rst_stream.h in Headers */ = {isa = PBXBuildFile; fileRef = 02A83991F374E71998EA0408354704D2 /* frame_rst_stream.h */; }; - 09DD5F52E81B6802684FA5571C30C22C /* binder_connector.cc in Sources */ = {isa = PBXBuildFile; fileRef = 561A2718AFFF8B6389B2BFC4D66CC8A6 /* binder_connector.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 09E22D61DDC322CF3CF3FF6CAE6783A6 /* async_generic_service.h in Copy generic Public Headers */ = {isa = PBXBuildFile; fileRef = A79AAE49FF4B97318D57FAE267F533E7 /* async_generic_service.h */; }; - 09E95F623D76D3425861D060D65D2C11 /* timestamp_internal.cc in Sources */ = {isa = PBXBuildFile; fileRef = 88D557EEB312146E3D810D761D5A19BE /* timestamp_internal.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 09F372CC31E501CC9825DF5E6E879FDE /* randen_traits.h in Copy random/internal Public Headers */ = {isa = PBXBuildFile; fileRef = B9C1D0132E95573FF582F483DAF2B64A /* randen_traits.h */; }; - 0A0AEB0EA2BDF1E21FC5484FC0B22880 /* is_boringssl.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 59A55275A82EC3577A8D3E5E0C72691D /* is_boringssl.h */; }; - 0A0F0D54734E38BCD2CDECD3AC44F145 /* credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 7431FBBE1490F4C247C92516BD41EB6F /* credentials.h */; }; - 0A1055746106EE9882F0B720D12F5407 /* client_channel_factory.h in Headers */ = {isa = PBXBuildFile; fileRef = 2320BAE9A767F4158C5A2B3815D00EA3 /* client_channel_factory.h */; }; - 0A1111B440B7142E9E54CD2A2B4926AE /* completion_queue_tag.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = C011F9D37C3D96DDF9A2FEB5226A2400 /* completion_queue_tag.h */; }; - 0A1BD66E4C853D11D2221CB6EF638003 /* call_test_only.h in Headers */ = {isa = PBXBuildFile; fileRef = 91C87991687926E42F3A2F6676B593F3 /* call_test_only.h */; }; - 0A23197308D3F82957CDD6F85F5049E7 /* listener_components.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 091869829B459C88E13334F509715B47 /* listener_components.upb.h */; }; - 0A263D5BC638EF1AF204ABFB303E860E /* chttp2_server.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7AAD95C465D1F26E9A1F878C9315B462 /* chttp2_server.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 0A2B24A71BBC6F590C764FBF7462ABF2 /* router.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = EC4D635B0901B8E654F574D03D4FD14B /* router.upbdefs.h */; }; - 0A3AC3E0285AA9421FA3AD39CEDBB4CD /* route_components.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/route/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = C13C90FDC55076EE7DCDF8671941AEAD /* route_components.upbdefs.h */; }; - 0A3BA1C3991779C29DF59701214D309D /* aws_request_signer.h in Headers */ = {isa = PBXBuildFile; fileRef = 2DE4D9390896EA9A69B43A1DA59D3439 /* aws_request_signer.h */; }; - 0A3F3D5B28FA85DDB5E618DA7478AB66 /* serializer.cc in Sources */ = {isa = PBXBuildFile; fileRef = 76A6549D7C1AD5DEEE265DD4DE21E0DA /* serializer.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 0A48F551965D27612A7D98545CFD5D71 /* config_dump.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 97AB33F99060C2497419B3756D1A6289 /* config_dump.upb.h */; }; - 0A5B913D4EE8189CFAEED952F75FCBAC /* resolver.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 0B4F5E6C381AE1487BF4F78354B290E5 /* resolver.upb.h */; }; - 0A6A3D190998AA16733940EA75CC65AC /* config_dump.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 444BE1385FA3DEC4EFDA000A2A73B075 /* config_dump.upbdefs.h */; }; - 0A88E47B66E78035445B3AF8B9417F77 /* posix_engine.cc in Sources */ = {isa = PBXBuildFile; fileRef = 31DA655DF3D6FCCBCDCFB2B6676BDE95 /* posix_engine.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 0A8F2F8ED73DDC0F5C70EC9C3D393715 /* sync.h in Headers */ = {isa = PBXBuildFile; fileRef = 0263F571A4B0EFEE1AF6452C0E09133F /* sync.h */; }; - 0A9C5A6C800E09F4044F4B712F48EAE0 /* civil_time.cc in Sources */ = {isa = PBXBuildFile; fileRef = A232EE144505410341763F9EB7451C87 /* civil_time.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 0A9FFB2C3F28CE9BBD37D8987A8A242E /* x_pubkey.c in Sources */ = {isa = PBXBuildFile; fileRef = E5A1DE4BFDA5B14E481B37EE53652152 /* x_pubkey.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 0AB2055D7C55BF9BB6FAA0DB62B6FF92 /* FIRAuthCredential_Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = BF2160B131D602AF866AEC110F349653 /* FIRAuthCredential_Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0AB515B7E40ADC486A10C65979A0FDA7 /* matcher.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 6D1721044615940636635073A9994CE8 /* matcher.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 0AB708A3A9642E0627C01D0D15853D5C /* poller.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F25EB5B636A25FE646304BB73DCCEDF /* poller.h */; }; - 0AC04A30DAA43DCC577B51A904A190E0 /* array.h in Copy third_party/upb/upb Private Headers */ = {isa = PBXBuildFile; fileRef = 2913ED9CFC98345166BD46004FDB9F04 /* array.h */; }; - 0AC3D6DDCFD43B87D9706A355DF37D1A /* obj_mac.h in Headers */ = {isa = PBXBuildFile; fileRef = 5F0893E574A1F0E0E5383E10AC78F47A /* obj_mac.h */; }; - 0AC7D12F3353DD42A5E16717150B1BC5 /* event_service_config.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 214FD45FE01F1593CBD2EA29CADBB22E /* event_service_config.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 0AD5EF299F3CE67D2B1646D4EF3067E6 /* demangle.h in Headers */ = {isa = PBXBuildFile; fileRef = 6ACCBAA84DA46799CCB6C74A930FB5D0 /* demangle.h */; }; - 0ADBBC5D1721C1D20B47C0718774A02F /* FIROAuthProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 44F14B9CF128B252894BFB64D8BF6743 /* FIROAuthProvider.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 0ADE9BE834A20A74044F7290ADAC7BF2 /* auth_filters.h in Headers */ = {isa = PBXBuildFile; fileRef = 10B23199AFE7B3BEA038A34B76D43A53 /* auth_filters.h */; }; - 0AE85F866CF7F154BDDF7EF6A03EA8D7 /* client_interceptor.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 6FAC080419F83AC07DAE2537628EDB12 /* client_interceptor.h */; }; - 0AECE45F1CA9B98F3B9FCFB7DF5D96FE /* listener.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 57BF870F526EAE355673A38DCBDD7512 /* listener.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 0B103CCF6DFD891CB177BF11DA762B1B /* arena_promise.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = 287D082E25B9600B7A06EDE1A3F80F43 /* arena_promise.h */; }; - 0B10C650453550B669986DAB67B391DC /* rls_config.upbdefs.h in Copy src/core/ext/upbdefs-generated/src/proto/grpc/lookup/v1 Private Headers */ = {isa = PBXBuildFile; fileRef = 91831D44DBD7E8C63116361B4F889A01 /* rls_config.upbdefs.h */; }; - 0B190F88ABC234D4EEADE2836E47561F /* alts_tsi_handshaker_private.h in Headers */ = {isa = PBXBuildFile; fileRef = 6BB08DEE40295FB1B35B53590B045040 /* alts_tsi_handshaker_private.h */; }; - 0B19D4E631F997D3F81F2A7F70EBD519 /* ndk_binder.h in Headers */ = {isa = PBXBuildFile; fileRef = EEC1B76CA7CDC02026B54E4E2CF13CD3 /* ndk_binder.h */; }; - 0B238114A558B226D3BA87456AAA6ED8 /* FIRQuerySnapshot.mm in Sources */ = {isa = PBXBuildFile; fileRef = 758153589BA41E4E823046BB674A6DF6 /* FIRQuerySnapshot.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; - 0B244B389913FA66474715132FAB3A0A /* versioning.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 96376842707628BA781C9D941D12F7C9 /* versioning.upbdefs.h */; }; - 0B3370CAB092322000E27BE3DD7103A7 /* grpc_alts_credentials_client_options.cc in Sources */ = {isa = PBXBuildFile; fileRef = 60F06674CC66FBC7B3158AE708C81303 /* grpc_alts_credentials_client_options.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 0B52392FF18F1110DC789DF09C5E7C55 /* sorted_pack.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 1AC51CD662C33BBD4B460B884DE307C8 /* sorted_pack.h */; }; - 0B54DB2700B8A04B3416618D83524F10 /* error_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = C8EF21AE6BD70BA1C29767FB9060DD93 /* error_utils.h */; }; - 0B661844307BFF17C601DD838580C169 /* opentelemetry.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = D1EB4D937CC7BD7F39667353D663C319 /* opentelemetry.upbdefs.h */; }; - 0B6E05E9ED5F977911C876A4602F8194 /* init_internally.h in Headers */ = {isa = PBXBuildFile; fileRef = 9700E39B5C094BD84430EAB572665FDD /* init_internally.h */; }; - 0B8923A469BC009E72BBF07DB059E63B /* dsa_asn1.c in Sources */ = {isa = PBXBuildFile; fileRef = 368C22818757BD00841F71BECA39CBE1 /* dsa_asn1.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 0B896E0BFDCA9CF62282066ECBFDB62C /* http_inputs.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 0F2A72C75104DE72BD562457BB12D077 /* http_inputs.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 0B8D1529FDE745E5B4F955D8F1309C34 /* decode_fast.h in Copy third_party/upb/upb Private Headers */ = {isa = PBXBuildFile; fileRef = 6E16A03CF7448FBAA9F0083B7C8370D8 /* decode_fast.h */; }; - 0B9A231243A4249F09F2AE495402CF13 /* service_config_parser.h in Copy src/core/ext/filters/fault_injection Private Headers */ = {isa = PBXBuildFile; fileRef = 3817AA49B807F526FC21E3DD84ADC8AA /* service_config_parser.h */; }; - 0BA19C7AEA95E86FE15EDEA5FE42BB81 /* completion_queue.h in Copy src/core/lib/surface Private Headers */ = {isa = PBXBuildFile; fileRef = 60776B8F1DE8EB37CB8BE7600C64C808 /* completion_queue.h */; }; - 0BA999FEA6BDDB5DBB53ADD471901E16 /* deadline_filter.h in Copy src/core/ext/filters/deadline Private Headers */ = {isa = PBXBuildFile; fileRef = 45F12C68E6AA6CE8860D74166036B9A9 /* deadline_filter.h */; }; - 0BB79644B9E3EC27B907622C5DB4F4F2 /* security_handshaker.h in Copy src/core/lib/security/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 46A1A3F35E5D70C2DD82E1F1B67BC469 /* security_handshaker.h */; }; - 0BD8F342651461981E46E99240EBC53B /* checked.upb.h in Copy src/core/ext/upb-generated/google/api/expr/v1alpha1 Private Headers */ = {isa = PBXBuildFile; fileRef = 0F8DF8F2E63FC5F767A9EFA03E995FE4 /* checked.upb.h */; }; - 0BDAA3CBA2458350D59DDD47C135BB70 /* symbolize.h in Copy debugging Public Headers */ = {isa = PBXBuildFile; fileRef = B52C2F45E2557F39C51976497B8EAAAA /* symbolize.h */; }; - 0BE7962E0EF10FFD50A0A13654DC9B60 /* charconv.cc in Sources */ = {isa = PBXBuildFile; fileRef = 85274F47BB234FC78CDFF31266B0A43B /* charconv.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 0C0E46C1779C8202E10A693A7AB94C2D /* http_server_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 7BD30968630904054326F045A4E67DAB /* http_server_filter.h */; }; - 0C1B24AD958B132DDDF1CF22670BBF85 /* FIRWithdrawMFARequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 6E94E96F0B0F15A8E137A78E024317CC /* FIRWithdrawMFARequest.m */; }; - 0C314EE1B78B8DAA7ED0E18EABB273A1 /* socket_mutator.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = A92B31043C7B1DAC7957E5068CE99A7A /* socket_mutator.h */; }; - 0C36B9A3D25C7D0DFF5136F64F481835 /* t_crl.c in Sources */ = {isa = PBXBuildFile; fileRef = 9F6E7C8AEC0AFADFE3396C008AAFE8F3 /* t_crl.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 0C3C5152A46EEF1E407319E3B7A31676 /* lrs.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/service/load_stats/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = DD5743D0B76AA8D7B60617CCE1C28F68 /* lrs.upbdefs.h */; }; - 0C4F1A42416D1124EE99988500F08D56 /* two_level_iterator.h in Headers */ = {isa = PBXBuildFile; fileRef = B38A8CF708F3933C660CFE758F59FED8 /* two_level_iterator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0C5AD7F1C907CBC906E639F6AC0338F5 /* inproc_transport.h in Copy src/core/ext/transport/inproc Private Headers */ = {isa = PBXBuildFile; fileRef = B840396FE97FBC4BCAD0FA85500E8DD5 /* inproc_transport.h */; }; - 0C61F8667248CEDC3E53FCD7265B105E /* xds_client_grpc.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = E9BD16718BBC907203D2A917F8413F87 /* xds_client_grpc.h */; }; - 0C62E66BC2802A4E4396E94A52E587BA /* gcm_nohw.c in Sources */ = {isa = PBXBuildFile; fileRef = 04E42307F08965EE6D44D9A9659712C3 /* gcm_nohw.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 0C698419B2533797BE73CA191E589B38 /* GTMSessionUploadFetcher.m in Sources */ = {isa = PBXBuildFile; fileRef = 487B71059510806925E3175A83F23958 /* GTMSessionUploadFetcher.m */; }; - 0C6E37A644B20B6D0B2D4C148020BC5B /* block_builder.h in Headers */ = {isa = PBXBuildFile; fileRef = D6CED0D63EC4CC614FEE9A3E71AA696A /* block_builder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0C840EC98A6937D9479C6E8D14D60E0A /* pool_urbg.h in Copy random/internal Public Headers */ = {isa = PBXBuildFile; fileRef = DDD0ECC2DFF834BA66AF17E2A60A69A2 /* pool_urbg.h */; }; - 0C970AE76BD90694787081866016F3B2 /* rbac_service_config_parser.h in Copy src/core/ext/filters/rbac Private Headers */ = {isa = PBXBuildFile; fileRef = EDC3268A11BAB8910C0B456E264503E2 /* rbac_service_config_parser.h */; }; - 0C9B3EFDF53902CB002182DE8B90455D /* sockaddr_windows.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 0ADE706F501C583FD117E2F804E2B02D /* sockaddr_windows.h */; }; - 0CA1413E405A8A23B3F08C0BF3D279AB /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6E336DC2534E1E69B7828F6012B874C6 /* Foundation.framework */; }; - 0CB9FA73E1BAFCB9E98DA366C66C7DA8 /* fault.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/extensions/filters/common/fault/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 3575F8D3ABA823BD4E0C775B378CAD64 /* fault.upbdefs.h */; }; - 0CC01C6BEE2099E6E4B57FD44BD7A916 /* hpke.c in Sources */ = {isa = PBXBuildFile; fileRef = D8BC9C6F88F909F577BD345F6DBB06BC /* hpke.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 0CCC62CDD7559F96BC4E2062E13E4F84 /* node.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = C47A59563F05D4A639ED3413322CA0F9 /* node.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 0CD2B5C8BEA333DA79BC21CFA8B2A19B /* http.nanopb.cc in Sources */ = {isa = PBXBuildFile; fileRef = 491BDBC48B11ACBEB7CCE9D1D87E8275 /* http.nanopb.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 0CD54766E8B109EE039880F8AFA9353E /* salted_seed_seq.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C06CF13668131D55179FE7481870EA8 /* salted_seed_seq.h */; }; - 0CD9EF9F63565D27147916B4FD741BEC /* GTMSessionFetcherLogging.h in Headers */ = {isa = PBXBuildFile; fileRef = F98FABE335D60E76BC9CF8089E5A4D0C /* GTMSessionFetcherLogging.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 0CDF49B28667344FD9BE273364BC2E3A /* atm_gcc_sync.h in Headers */ = {isa = PBXBuildFile; fileRef = B8A7DF3B1DFB1D310EDDB11F03A20D59 /* atm_gcc_sync.h */; }; - 0CF5B8F6B0FDD8E2212A8AAA785FBABA /* socket_option.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 70D5EA727A8D7BA42C15BA41689F03B4 /* socket_option.upbdefs.h */; }; - 0CF8A84060AF9975B434DDDB047DAEFC /* promise_based_filter.h in Copy src/core/lib/channel Private Headers */ = {isa = PBXBuildFile; fileRef = 561368502117315E1C8C52B9F44F8750 /* promise_based_filter.h */; }; - 0CF9AC82BA7FE64826FA5825FCA36947 /* config_dump_shared.upb.h in Copy src/core/ext/upb-generated/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 22970C50F288FFBD9CC888E8B27B049D /* config_dump_shared.upb.h */; }; - 0CFE005E24718D2C7D74A2A212674E54 /* no_destruct.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = FCE3BBBBF2008B1FFAEE2EF21D1D4BCE /* no_destruct.h */; }; - 0D0E04992162B88665C49C01B902BEE1 /* trust_token.c in Sources */ = {isa = PBXBuildFile; fileRef = D9F58945E636EFD97E15B109DF3768DA /* trust_token.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 0D1BCB1D1EBA750A4AC221A2AEA77E33 /* ads.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/service/discovery/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = DACE2DB445C20AFA2C26835146371E81 /* ads.upbdefs.h */; }; - 0D1BEF0B38886D58F84C9C27294446F2 /* message_value.h in Copy third_party/upb/upb Private Headers */ = {isa = PBXBuildFile; fileRef = 2A4F60BAABA2723922AF3791A7AFC5D8 /* message_value.h */; }; - 0D20CE6E68D4068F28CE79A86D702180 /* certificate_provider_factory.h in Headers */ = {isa = PBXBuildFile; fileRef = EF91967570044091C2A4037BEAA4D19E /* certificate_provider_factory.h */; }; - 0D295B6F8CD189749306C73B8D5D5C3C /* descriptor.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 372FE16E9F9B80CB1F1BF5874A89F8A3 /* descriptor.upbdefs.h */; }; - 0D3A9FB3878C12B6FC4C5806A61AA4FE /* http_client_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 86DC1D98A5477E0CD9A2A00A6C585F55 /* http_client_filter.h */; }; - 0D48EB34C9FEC3D37F15E0FF1A7BA1CD /* beta_distribution.h in Copy random Public Headers */ = {isa = PBXBuildFile; fileRef = 9DB099F422DEAE5C9819AC7ADB0AF1B7 /* beta_distribution.h */; }; - 0D52858DA6015DCD1D02967E64525F01 /* auth_context.h in Copy impl/codegen/security Public Headers */ = {isa = PBXBuildFile; fileRef = BE09DCA32BE3F5B9ADE90E9C36CC20ED /* auth_context.h */; }; - 0D5CE091F0B19CA23C54E74945535053 /* time_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = F2DBFD9C0D907FDDE3A8F2168792AA23 /* time_windows.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 0D637CB6FBC29D7324F19F55EFCEDCBE /* GTMSessionFetcherLogging.m in Sources */ = {isa = PBXBuildFile; fileRef = 9E2B71EB42B8967FD5D1D75AB263CFEC /* GTMSessionFetcherLogging.m */; }; - 0D782805B419B6BE36E2BB62213DDC59 /* FIRTOTPSecret.m in Sources */ = {isa = PBXBuildFile; fileRef = 9F85FCE31E767636A1E88490BC7A2D91 /* FIRTOTPSecret.m */; }; - 0D794555EDBB40FFADB527449F1F3861 /* string_ref.h in Headers */ = {isa = PBXBuildFile; fileRef = FA4176136B81AAF1733F149A4BE6557C /* string_ref.h */; }; - 0D83F3799A0F55255F18E8986E79DD8F /* cpu_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 11F728C2D75FF71255DF68685DC56BE1 /* cpu_posix.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 0D8A8619FCA1CA2D49DC0F9D08B52416 /* user_data.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0B24AF1DA82E7EB9FBE61A111EF2A013 /* user_data.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 0D971EDB80FB8388855E69CCEE46AF93 /* csds.upb.h in Copy src/core/ext/upb-generated/envoy/service/status/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 642ACDB1EA8365F1ACF3CCD7B4654AF3 /* csds.upb.h */; }; - 0D99E39B248848D4DE7BF73B16110535 /* FIRCreateAuthURIResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 8508FD92179D0458B3F09BE8065DADDE /* FIRCreateAuthURIResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0DA0C8A842289606ECF0345620D8BFA0 /* service_config_parser.h in Headers */ = {isa = PBXBuildFile; fileRef = 38AFFF99F7E583F7A5049E6FE6826FB0 /* service_config_parser.h */; }; - 0DC34C9F7EF7B2B652D19B6BD3F9ECB6 /* certs.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = EFE26B08110609F263FBFEE200189021 /* certs.upbdefs.h */; }; - 0DDB7C43640555A333E81424DCF791D7 /* call_finalization.h in Headers */ = {isa = PBXBuildFile; fileRef = C427A5024BD0C5565DFC74DC86D2E541 /* call_finalization.h */; }; - 0DE8279D9B5AEE40167C10088864DC7F /* init.h in Copy src/core/lib/surface Private Headers */ = {isa = PBXBuildFile; fileRef = 2CFCEFB76B73C3019203ACBE144E2235 /* init.h */; }; - 0DFA10EF9F7FE623B14E16474AA35A27 /* dbformat.h in Headers */ = {isa = PBXBuildFile; fileRef = A149C4194B8716206EBB246F45BFE527 /* dbformat.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0E22D207DDB7098C12CDDEA64543689F /* ec.c in Sources */ = {isa = PBXBuildFile; fileRef = 465739B1B6CD8C59738290F3F0EF9275 /* ec.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 0E28FC4449B227DC54AA1CAF5075699F /* xds_channel_stack_modifier.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = BDF943B7A09E38058DA9A9B22C24FE6E /* xds_channel_stack_modifier.h */; }; - 0E2D4B0A98CF23F8DFC49D682B39A326 /* hpack_parser.cc in Sources */ = {isa = PBXBuildFile; fileRef = E6882AF9BDC993AF61E63050FCA11EE4 /* hpack_parser.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 0E4537A7F25188FFDA24C457315A429B /* alloc.h in Copy src/core/lib/gpr Private Headers */ = {isa = PBXBuildFile; fileRef = 52E5C10E762C42015A754510026EB4A0 /* alloc.h */; }; - 0E482596FE092AB441A286F20D88086D /* message_compress.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6BD1FAD72ABB4C8649C089B5DF34FD63 /* message_compress.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 0E5E658110729B8B1D3E425F0290978C /* prime.c in Sources */ = {isa = PBXBuildFile; fileRef = B86CC9FC010BE5341AE85E8D9917285F /* prime.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 0E66E5B1C6135BD3323C611C786E9DA6 /* cookie.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/http/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 1A27EFEF109F68AD716D9F3A83FD6445 /* cookie.upbdefs.h */; }; - 0E6A2409DFD596A57E3DE71CF9DC2BF8 /* tls_certificate_provider.h in Copy security Public Headers */ = {isa = PBXBuildFile; fileRef = CC90D2B2F21BA630BFBDC9EF4507A7B5 /* tls_certificate_provider.h */; }; - 0E6BB571FB6B30FA854C885AAA280AE5 /* socket_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = E485EBCBA1B7994599078CEFAABED88B /* socket_windows.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 0E6BF79AF24C408901EF59C980649D0F /* timer_heap.h in Headers */ = {isa = PBXBuildFile; fileRef = 6382414CC02CB218E2363A66E296F53B /* timer_heap.h */; }; - 0E8141F1613AB051C7E3EC325B64276A /* platform.h in Headers */ = {isa = PBXBuildFile; fileRef = 831031F7036CCD0A97E949AD5CEACC34 /* platform.h */; }; - 0E82E4772BEF0519BF0A996898D6A957 /* per_thread_tls.h in Headers */ = {isa = PBXBuildFile; fileRef = 87E1C791227E9E7062B1B73382E79D90 /* per_thread_tls.h */; }; - 0E999B2DE1992CB8E188E60B6C3D4FBE /* ssl_types.h in Copy src/core/tsi Private Headers */ = {isa = PBXBuildFile; fileRef = 1EB1444C130BA5DED98284F1AF09AA5B /* ssl_types.h */; }; - 0EA2BA26256CC2670973C36DCD8EE1A3 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 86E7CB4E12E01A21640549092E27EDAD /* internal.h */; }; - 0EA8B96F6EDB5673C5A3292B6A702662 /* x509_vfy.c in Sources */ = {isa = PBXBuildFile; fileRef = 246F5CBFA37B5BA4FE6897A4B605AA4A /* x509_vfy.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 0EAD627898F9EB363470EC4B0BAF0575 /* slice.h in Headers */ = {isa = PBXBuildFile; fileRef = B04E871C896FF4C4D8656751B122BED1 /* slice.h */; }; - 0EB09B0ADE36A3C6BD398619AD6562F0 /* string_ref.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = FA4176136B81AAF1733F149A4BE6557C /* string_ref.h */; }; - 0EB91DBDB0EEDAC12753851A29FFD3A9 /* zipkin.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 6C9B8D4D905A6C0BBB20FB6A1F4DDA97 /* zipkin.upbdefs.h */; }; - 0EBF3590ABB612A02F379D7E6AE61CD2 /* security.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = ADCD8DFE593A8790EF8DF76D7659EFE8 /* security.upb.h */; }; - 0EDB3C9A2F0A9C1444C1A1133BF30FE8 /* buf.h in Headers */ = {isa = PBXBuildFile; fileRef = 579A2429C6C7C7DFF8A90E17A9C23E1E /* buf.h */; }; - 0EDBBAD590AF9F23146FA248310DD5C9 /* sync_custom.h in Headers */ = {isa = PBXBuildFile; fileRef = 91BF4E6074A0720B29BEE759CEF640AF /* sync_custom.h */; }; - 0EE5A052DADCE4240A70B4F5670CEF70 /* circuit_breaker.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 8879FF114F646378D6353C355300E510 /* circuit_breaker.upbdefs.h */; }; - 0EE63A6CC5B9995449C8671D06149210 /* zipkin.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 67E521E952D8AF471EF259499F53A6AA /* zipkin.upbdefs.h */; }; - 0EEEFC8E48E9B27E84B4BAC1E0A7648F /* transport_security.h in Copy src/core/tsi Private Headers */ = {isa = PBXBuildFile; fileRef = 507D4D4C69EAA3402BC276141C61F415 /* transport_security.h */; }; - 0F00C7EB072C1A204BEC12943C2DE472 /* exec_ctx.h in Headers */ = {isa = PBXBuildFile; fileRef = C5895A4042C8187B7199258368A2D678 /* exec_ctx.h */; }; - 0F07BF000C0FDACEF7EC932DA91CACEC /* base.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 98911173E6D763FC2A1AE50A476ED439 /* base.upb.h */; }; - 0F0C9B5BC00F8F018E366ADA11CD1658 /* range.upb.h in Copy src/core/ext/upb-generated/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 4B677005586E12690055682B28A8BA34 /* range.upb.h */; }; - 0F1A4DCBD9D577E648D95A3BFC2F1C76 /* str_split.h in Headers */ = {isa = PBXBuildFile; fileRef = 88E3D434F82A78109CF36FE993070682 /* str_split.h */; }; - 0F1EF1F8900095CE95EB12598BF8DBA3 /* activity.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = D3E7BE352B35AC6630DEA115CFA2D853 /* activity.h */; }; - 0F215969A1FABC1505FE5635AFA845E1 /* load_report.upb.h in Copy src/core/ext/upb-generated/envoy/config/endpoint/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 5B40A95164ADF4F451EBCF0470A9B272 /* load_report.upb.h */; }; - 0F284879C3C82EA3552678DB2F59436A /* compression.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 1CD2F0292B8E1ACA99BBDAFAE560D126 /* compression.h */; }; - 0F2CABD3F8BF3ECFF04F41D02A993F84 /* alts_grpc_record_protocol.h in Copy src/core/tsi/alts/zero_copy_frame_protector Private Headers */ = {isa = PBXBuildFile; fileRef = 1F6BDF55ADB595DCF7949D3FD6750F6E /* alts_grpc_record_protocol.h */; }; - 0F2CE6CA3ACF9ABE892E57A6E90E09DE /* ec_key.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = FA30B7E3AEA2E3020F37A3C84D2B3D04 /* ec_key.h */; }; - 0F354CAA16AB2F5819EBF8BDDD67BD67 /* tcp_windows.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = F99A33B60C6433761912B85D85A09CF2 /* tcp_windows.h */; }; - 0F37C5AE1C501B49FA38B1639C3D9E82 /* udp_listener_config.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/listener/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 3B2BBBCA2A334A2B5A286924E8C390CC /* udp_listener_config.upbdefs.h */; }; - 0F4187701E01D54BF299F87ECF9DE883 /* ring_hash.h in Copy src/core/ext/filters/client_channel/lb_policy/ring_hash Private Headers */ = {isa = PBXBuildFile; fileRef = C16B783CCDF675B2068FC1A52AB09D53 /* ring_hash.h */; }; - 0F467038D733F57C8983483A72547C6C /* regex.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = E15820FD15877D9E1361FEC1F50F0B95 /* regex.upb.h */; }; - 0F5D4D2AF7A2EC9110C30B7850187A7C /* tsi_error.h in Copy src/core/lib/security/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 70F33EABDE05FFEA3C2E977415873D1A /* tsi_error.h */; }; - 0F5F082BE59961CA847573B72C803F7D /* dtls_record.cc in Sources */ = {isa = PBXBuildFile; fileRef = 86B9C5C3A5119EC1E5888212FE0D38E6 /* dtls_record.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 0F6154889BC9271070B11ADBCDEFF59A /* FIRFinalizeMFAEnrollmentResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = CC9CD830A4043A1DFE20CA5F84D46357 /* FIRFinalizeMFAEnrollmentResponse.m */; }; - 0F7FE2CA1852F17E491BDE3F8160261E /* memory_persistence.cc in Sources */ = {isa = PBXBuildFile; fileRef = 15E98AF11ADBA9A2C942B9E7B067A2D9 /* memory_persistence.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 0F896CC1338C311F19136B83D74F9EBF /* status_helper.h in Headers */ = {isa = PBXBuildFile; fileRef = A10CFFEC42056D53EFA828DD8DDF9758 /* status_helper.h */; }; - 0F9C08A5E90731FEB34B5C589646A4A3 /* stream_map.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = BADB32D388C4921A668EDC5E1DA0AD17 /* stream_map.h */; }; - 0FBBDC34DED48A3EA2227255444EE627 /* x_sig.c in Sources */ = {isa = PBXBuildFile; fileRef = B2EC5A53D980C125D4F0C459966566EA /* x_sig.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 0FE72F2D0E69EAB91424AFDB25E381EB /* hash.h in Copy hash Public Headers */ = {isa = PBXBuildFile; fileRef = A5D25A97771ACA3EF86878E4A7E37A9F /* hash.h */; }; - 100F87B37FE5D11A2A4036825B414100 /* outlier_detection.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 6AF76257FF1A395CC8E9C356BF46F73B /* outlier_detection.upb.h */; }; - 100FA8458104807C67A476DB18E314B2 /* status_util.h in Headers */ = {isa = PBXBuildFile; fileRef = B1C19B402B6BD2FE38CAB50FEF085788 /* status_util.h */; }; - 100FD43E0C8BFB954FAA4EE3B9582D9D /* ex_data.c in Sources */ = {isa = PBXBuildFile; fileRef = 068979B021F3FE38872390BBFF12ECE7 /* ex_data.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 101B16B0DCE8AC06EC61178DB7515319 /* GULSceneDelegateSwizzler.m in Sources */ = {isa = PBXBuildFile; fileRef = 1F920C49AFE9E9A591BEE53A41863C71 /* GULSceneDelegateSwizzler.m */; }; - 1029E4BFC437C05004C7977814C40135 /* pb_common.h in Headers */ = {isa = PBXBuildFile; fileRef = 8BE1B22595B00D49F90DDCB06D605521 /* pb_common.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 1068C22565A0C8FA5D1104B1DAF41277 /* route_components.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = E2B47A4F01F2C91755352C78B324DCC0 /* route_components.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 106C93DE17024887A9EF4130004D39FA /* local_security_connector.h in Copy src/core/lib/security/security_connector/local Private Headers */ = {isa = PBXBuildFile; fileRef = 586943017A008DAFEAFE5AB044FEB5FC /* local_security_connector.h */; }; - 1078BFBB703A1B81D77028D899D824A8 /* authority.upb.h in Copy src/core/ext/upb-generated/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 4C9174E0D172985BACA90A52616E8757 /* authority.upb.h */; }; - 1078C1FE5A1989361161AF501356F60A /* http_connection_manager.upb.h in Copy src/core/ext/upb-generated/envoy/extensions/filters/network/http_connection_manager/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = E099D98B5084FC92BE40EEA0F7951682 /* http_connection_manager.upb.h */; }; - 107E378948DF85C39DA9A6C203C3FE14 /* iterator.h in Headers */ = {isa = PBXBuildFile; fileRef = 32E34A099A30234EF389724235213746 /* iterator.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 10876529C4A8D3B9ECD459ADA1AE3C2F /* xds_transport_grpc.h in Headers */ = {isa = PBXBuildFile; fileRef = 10D6B330AF38EF6E0473A1D898D0581E /* xds_transport_grpc.h */; }; - 10A1E04D2B4AFA015973F97CD550D49C /* bytestring.h in Headers */ = {isa = PBXBuildFile; fileRef = 558664D36082923D6E87CEB773269977 /* bytestring.h */; }; - 10A270E6964F3809FA2F80040E38D0CE /* FIRAuth.h in Headers */ = {isa = PBXBuildFile; fileRef = 95F96AEF02E8EAA91FD76A1233916660 /* FIRAuth.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 10AF8836945810FA3816F6956F523AF1 /* memory.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 4BC4D6BBC1F78503A39459F50DD1BAB1 /* memory.upbdefs.h */; }; - 10B1E0E21D362B0055FCFC5776251FC5 /* call.cc in Sources */ = {isa = PBXBuildFile; fileRef = B86A23F50D4471684FAADB1BE1B6BC95 /* call.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 10B474B9B11E67A98F31DF82A49B0C48 /* thread_pool.h in Copy src/core/lib/event_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 028AB0B787DB2506AFC3C767B60CE71D /* thread_pool.h */; }; - 10C0AF6CD332A1D6B7CA7F1FF6542715 /* xds_server_config_fetcher.cc in Sources */ = {isa = PBXBuildFile; fileRef = EBC7E0CA1EA85E74F4185A939AA44639 /* xds_server_config_fetcher.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 10CD033C7431E2F34AF7BCEA967CBE87 /* FIREmailAuthProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = B3FC3D27A98630B220769C0809334C8A /* FIREmailAuthProvider.m */; }; - 10CD8835F4DA2E195D212E4944D28C66 /* fault_injection_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = C818BD8463F1EFE1920ACF20C9F11B58 /* fault_injection_filter.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 10D02FC86AE374B7FB73A9A7550CA5F2 /* server_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = B71AFCFCF16FCD25AEA7F4DF265E25BB /* server_credentials.h */; }; - 10E30EF1B46ECE7D1439A4689F6ECD60 /* composite_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 12920A46440C58D493C61B3924E1D855 /* composite_filter.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 10E5DB75006DB9B9ADF451682103E391 /* descriptor.upb.h in Copy src/core/ext/upb-generated/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = 3CDB38CC3A2723099BA584C7552B5450 /* descriptor.upb.h */; }; - 10E80FEB59958DC538915E779435C84B /* alts_grpc_record_protocol_common.cc in Sources */ = {isa = PBXBuildFile; fileRef = AE84CF73D366FB2E5DB175CDC0CBC947 /* alts_grpc_record_protocol_common.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 10F2F36DC2DFBDA2EF3E8EA37FFA7B7D /* route.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 86889066EC0EFD4D6845ABF42DA762F6 /* route.upbdefs.h */; }; - 10FDFCBC766D8C930AFEA1F122BAA689 /* vsnprintf_compat.h in Headers */ = {isa = PBXBuildFile; fileRef = B231D2929E392D3F03B896A4B35EA36D /* vsnprintf_compat.h */; }; - 10FE4FBE6F1B3C9104EF51D6D3178A17 /* status_internal.h in Copy status/internal Public Headers */ = {isa = PBXBuildFile; fileRef = AE1AEDA0D286A91F35AFB762DB76FEF4 /* status_internal.h */; }; - 10FE7C7FC89AB03495B092FA0F3BD768 /* tcp_client_posix.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 59915C66E81FA26B40805A8DB514E1F2 /* tcp_client_posix.h */; }; - 11082BB596E4273ED910C25C8DDC0201 /* internal.h in Copy crypto/fipsmodule/rsa Private Headers */ = {isa = PBXBuildFile; fileRef = 86E7CB4E12E01A21640549092E27EDAD /* internal.h */; }; - 1111A4B73011E0CB21B1E42059EB6886 /* closure.h in Headers */ = {isa = PBXBuildFile; fileRef = F00AA832B7F043897DDC2F8EDACEE8DD /* closure.h */; }; - 1125F40B3876452752B26A43030419E7 /* http_connection_manager.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D9940E9ABA90994FDA72E1ED2DBB8F3 /* http_connection_manager.upbdefs.h */; }; - 1129EC0DF1D246C05E5C23FAA99938C1 /* upb.hpp in Copy third_party/upb/upb Private Headers */ = {isa = PBXBuildFile; fileRef = 26726BD74B1CA97DF8A4C36E829B7BCB /* upb.hpp */; }; - 1136EE33412702AF7A3AB335762FACB8 /* pb_decode.c in Sources */ = {isa = PBXBuildFile; fileRef = E095E0056BB1FA23991BDE1522D0FCFB /* pb_decode.c */; settings = {COMPILER_FLAGS = "-fno-objc-arc -fno-objc-arc"; }; }; - 1138C5CD9EBE2BB50971EDC39DEE8614 /* iam_credentials.h in Copy src/core/lib/security/credentials/iam Private Headers */ = {isa = PBXBuildFile; fileRef = 54A02406232C8593A4CD231CBFFF9EF4 /* iam_credentials.h */; }; - 113C4F62D3B5DDEF035FF71680764A70 /* number.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 0CC8FEB777ED475C57683441DCC2299B /* number.upb.h */; }; - 113E7E538B2319BAF26412973BEE595E /* FIRLocalCacheSettings.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C71CA419C025097B9A9DC1ED54FD1A2 /* FIRLocalCacheSettings.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 114A1454C07D30EEB8B3F9791ECC2FAD /* ring_hash.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B1D8FB1EDBCEA242BE829963D723BA4 /* ring_hash.h */; }; - 1157B49E016A8FBBBE21DF689173D34C /* http_inputs.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = AA05F56DBB63581A22057AACB9767BF1 /* http_inputs.upb.h */; }; - 115981B1A50BC236E6B6FA0A95047EB5 /* time_util.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = D58250B67622E0885735B8E68B74D8F6 /* time_util.h */; }; - 1168403E11D805E3941AD332FA596C9D /* channel_stack_type.h in Copy src/core/lib/surface Private Headers */ = {isa = PBXBuildFile; fileRef = E244AB962170375248B1E3D35BED0501 /* channel_stack_type.h */; }; - 116E9B3B4CCC2A1D56889598186AA9AC /* FIRGameCenterAuthCredential.h in Headers */ = {isa = PBXBuildFile; fileRef = F6DA966579875852B5C78CB77EFC387D /* FIRGameCenterAuthCredential.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 11708DEFAC9BF0E2A559E199CF23CABF /* alts_crypter.h in Copy src/core/tsi/alts/frame_protector Private Headers */ = {isa = PBXBuildFile; fileRef = E36841E7A85701ADF90619D125F555AE /* alts_crypter.h */; }; - 1179AC59FD8DF996E504881749B3C986 /* alts_frame_protector.cc in Sources */ = {isa = PBXBuildFile; fileRef = 612EA281157C51DCCBA7761FF7AA1501 /* alts_frame_protector.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 1179D50815C38DF045C8316B29563967 /* dual_ref_counted.h in Headers */ = {isa = PBXBuildFile; fileRef = C87994181FC0239F0402A13AE7CBDCF2 /* dual_ref_counted.h */; }; - 118646AEBE91A1D28F0CEEC485846F31 /* frame_ping.h in Headers */ = {isa = PBXBuildFile; fileRef = AFB7197165C2DFB1FBB0863F43B633FF /* frame_ping.h */; }; - 118C557022613CD354BBC0684EC3A8BB /* grpclb_balancer_addresses.h in Headers */ = {isa = PBXBuildFile; fileRef = 7A975C29D1C091CE98CA0DD58F266FE1 /* grpclb_balancer_addresses.h */; }; - 118E810C5ECE4B4A55D66E9798026D54 /* message_value.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A4F60BAABA2723922AF3791A7AFC5D8 /* message_value.h */; }; - 11ADC20F268E57A6CD79C3646B36E74F /* arena.h in Headers */ = {isa = PBXBuildFile; fileRef = 806FFFE5B67D1D312258AB06EF0F64CC /* arena.h */; }; - 11B5E00509A7DBCC18864C0EECEC3D27 /* quic_config.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/listener/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = CCBA53384179788957D9FEDAAD78A656 /* quic_config.upbdefs.h */; }; - 11B97C7057871005E0F19D7098040F8B /* health_check_service_interface.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 661B937FC5674347933097C3C8FFEAAD /* health_check_service_interface.h */; }; - 11BCD2E0562E34E764B834CE824F704A /* cds.cc in Sources */ = {isa = PBXBuildFile; fileRef = 70CFE7FE871E740984C67E7A9A4292A7 /* cds.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 11C1940F2C501D68CE3760020A17B914 /* socket_windows.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C706862ED66421F97CA47041AED9E69 /* socket_windows.h */; }; - 11C41DE0AA3DED8D4BFF17BBDD150957 /* context_params.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = CCB2958F6F7D8A67E45E8BFB64E8FED9 /* context_params.upbdefs.h */; }; - 11CE29012AD9AE596629763F6D22E15B /* pid_controller.cc in Sources */ = {isa = PBXBuildFile; fileRef = D005F18DB7324E48E8BF8E13BF3F5D30 /* pid_controller.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 11D999C001B1A8AC19A8FD07B82D05D3 /* file_watcher_certificate_provider_factory.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 05C30974CC0A6B3414D949618B032940 /* file_watcher_certificate_provider_factory.h */; }; - 11E26A706CF6FF9EF6C770A5EFCAD699 /* atm_gcc_sync.h in Headers */ = {isa = PBXBuildFile; fileRef = 325E0FC0BEB3C5BD5613692259DC18A9 /* atm_gcc_sync.h */; }; - 11ECED71F2D7A5DD82AE26BDD68662C3 /* e_aesccm.c in Sources */ = {isa = PBXBuildFile; fileRef = 48605680A04A6A06D364C18AEA49FACA /* e_aesccm.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 11ED38BB90E3C9B9E1F79DE41D2730FC /* buffer_list.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 411E840D505791211DA2011F66A84A06 /* buffer_list.h */; }; - 11F4BAB9D3C1AC563A691B35BA929135 /* parser.h in Copy src/core/lib/http Private Headers */ = {isa = PBXBuildFile; fileRef = C774AE36A045DF2B7CCDF735B23EE88A /* parser.h */; }; - 11F5F085695232ED021DFE6047909E39 /* service_type.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D3F2916FC95DE50EEDDDBCAAA3CCFEB /* service_type.h */; }; - 1218C68820D449B71E9408094A4482F1 /* cpu_iphone.cc in Sources */ = {isa = PBXBuildFile; fileRef = 06B98EBD5D8AB3DF97F8878EB789DD4B /* cpu_iphone.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 121BD89B4F2AD942D6794A71C6840F31 /* migrate.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 7AABB31E3ACDAB7BA8770E683BCCABC0 /* migrate.upb.h */; }; - 122082CDD7BA4048A21BED21D4A5A143 /* dh.c in Sources */ = {isa = PBXBuildFile; fileRef = 75C26F76DDF7736D5F71470DBDAD8BB4 /* dh.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 12263868AB8D1264313037AED026556A /* percent.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 41CD127B3C489332BA557C830355417D /* percent.upbdefs.h */; }; - 122D37B38B08D4DE237F98CA7A1850B5 /* ssl_lib.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3794EF5B2603668BC5F5F4D774C65E8C /* ssl_lib.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 1232B1CD66CB2D7E79F5A880D31818F8 /* stats_data.h in Copy src/core/lib/debug Private Headers */ = {isa = PBXBuildFile; fileRef = 1D598A2C214CD177CFE95CEB5B1784DF /* stats_data.h */; }; - 1248E04E4AC2FE2A14F77BB024B98A0B /* call_finalization.h in Copy src/core/lib/channel Private Headers */ = {isa = PBXBuildFile; fileRef = A93317B5FC473C4C08B66C151A1349FA /* call_finalization.h */; }; - 124EF8FEAC95C8D9FB4E2524C97CD46F /* stats.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 2FBFB689B8154175D5E4803A6C1F5C57 /* stats.upbdefs.h */; }; - 125868A0707A8D4DC9EE0819E5D564A2 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 52C08D56756499F2949727A978D74B60 /* internal.h */; }; - 126A98473732996B4915E02CBB7A3906 /* pcg_engine.h in Copy random/internal Public Headers */ = {isa = PBXBuildFile; fileRef = B5B9A4DBF9C375779C98F1F46154BBBE /* pcg_engine.h */; }; - 1282F8686D763233CFFA4FA2DB8D1847 /* config_dump_shared.upb.h in Copy src/core/ext/upb-generated/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = AED0B8E01D505F3709886D52684EE68F /* config_dump_shared.upb.h */; }; - 1288E05FE229296FAA1AADD8382C95DB /* range.upb.h in Copy src/core/ext/upb-generated/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 26E37CF61271230304E3FE3E5625764F /* range.upb.h */; }; - 129EAEBD84A59F516B78AB241D4D4657 /* chacha.h in Headers */ = {isa = PBXBuildFile; fileRef = E2CDD2CAD7BF8D3904FCB525D6896108 /* chacha.h */; }; - 12BF8C588BF4E9DF122A90F865785721 /* compression_internal.h in Copy src/core/lib/compression Private Headers */ = {isa = PBXBuildFile; fileRef = AF382EF6840FA526675A7CABD667963A /* compression_internal.h */; }; - 12C11F2DC464C311B8C326A723EDEF13 /* chunked_vector.h in Headers */ = {isa = PBXBuildFile; fileRef = 8BC80525CCF79271C5C8B1A58A3CD6E9 /* chunked_vector.h */; }; - 12C4D902AAFE2D2AF905983923B8DC5E /* array_contains_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = B560252D576C493BEB4E15246E57F509 /* array_contains_filter.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 12C7366A526A8C9BB1BA5B024E907059 /* value.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 4630CCD35443096D1E2FEEED400B0C29 /* value.upbdefs.h */; }; - 12CF873D4A6A16B353D0E08B4F4EFF54 /* timer_generic.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5493500EEFD797D756FFA833C0471765 /* timer_generic.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 12DA19DD12A93CB2E3E968B136B02155 /* tcp_client_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 71945B90F81F84D5200AB10AAE155E89 /* tcp_client_posix.h */; }; - 12DC07723321811AF7B8C23DC16C7FC5 /* http2_settings.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0BCFE6FA6F1C01423EE009DD6713DC6A /* http2_settings.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 12EF7490664B0D588B23BD9107B017C1 /* FIRConfigurationInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = FAA87742812B17126B4DAB52086E00B5 /* FIRConfigurationInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 12FA09703924796745221083EDEDE201 /* builtins.h in Headers */ = {isa = PBXBuildFile; fileRef = 95D1B5F8323CAC1E42ED70309D6EFBBA /* builtins.h */; }; - 1303D110178EEE75FE37EE46362F3AE1 /* cord.h in Copy strings Public Headers */ = {isa = PBXBuildFile; fileRef = E49B91EBADD885860BFBD5956A2B9BAC /* cord.h */; }; - 13087ABD23306E38FD2CF429861BFBB9 /* cpu.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 79C0C6E9286973AAD930A1477B7F9D90 /* cpu.h */; }; - 13144568170DFBC5A6C1181369B3F3F0 /* ref_counted_ptr.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = AB0542540352019915F6C28BB23262D4 /* ref_counted_ptr.h */; }; - 1315F4BD3AAA2BA066D8B4427210DAFC /* stub_options.h in Headers */ = {isa = PBXBuildFile; fileRef = D68C067A853F7AD5970D4C7E16DD4CAB /* stub_options.h */; }; - 1319AEA017FBA9191A17EB4772AC8377 /* status.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8519B5F22D8B6E937D18D8467520D5C7 /* status.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 1332B14BBFE891E5FD9458AFA5F4BEDE /* address.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A94685383E599EC13870BDEE0198082 /* address.upbdefs.h */; }; - 134CBB055406B89F93CEA3E1B4B7D47F /* periodic_update.cc in Sources */ = {isa = PBXBuildFile; fileRef = 20CDBE5F9BCABD9B5B94B363740EF479 /* periodic_update.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 134E6F339AB5EFA443A34D4849B5537C /* sockaddr_utils.cc in Sources */ = {isa = PBXBuildFile; fileRef = F2018B38817CCDF1AB3ACE7EC6778396 /* sockaddr_utils.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 1353C1B590669DC13BD1039CFAE17FEF /* latch.h in Headers */ = {isa = PBXBuildFile; fileRef = 33664FDD4141A7A76BA7C6B80E5B2234 /* latch.h */; }; - 136B5FA1B61F4DF2ED1DB9397E1223EF /* strutil.h in Headers */ = {isa = PBXBuildFile; fileRef = FD25CA17182899DC1BC62F676BC68B55 /* strutil.h */; }; - 137CB3C1A80697F91AE458168909D049 /* insecure_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2ADEC484067163ABE5C58AC26B2F0F7E /* insecure_credentials.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 137D4B9201E68D36E3B768C4E42E2BD7 /* config.h in Headers */ = {isa = PBXBuildFile; fileRef = 94346C8CBF02031E36C76E7552E5D9F9 /* config.h */; }; - 137F0F809BD7B0F25BBEEB511324288A /* rbac_policy.h in Headers */ = {isa = PBXBuildFile; fileRef = E887EC5107F3C13FDED59A34E7463859 /* rbac_policy.h */; }; - 1383B61AEDAF50FE30E75D692FC8C685 /* FIRAuthProtoFinalizeMFAPhoneResponseInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C89BCD7E0BED75B1C6FF63BFFACADA2 /* FIRAuthProtoFinalizeMFAPhoneResponseInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1383FEB16447A4335A8054D9D8D10BEE /* asn1t.h in Headers */ = {isa = PBXBuildFile; fileRef = 53AA960E3E8C8CB8A6BF667D234082A9 /* asn1t.h */; }; - 138416BA01B326BAD735A79B06F32201 /* timer.h in Copy src/core/lib/event_engine/posix_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 27EB496AE59B13641472D4659A50D875 /* timer.h */; }; - 1395738F5AEBBC9B2599B74A35C45567 /* obj.c in Sources */ = {isa = PBXBuildFile; fileRef = 752AA4AF3911C891B9834E4887BEFB66 /* obj.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 1396D8F25CB2458D2922B0D79E84BD63 /* grpc_tls_certificate_distributor.h in Headers */ = {isa = PBXBuildFile; fileRef = 36F0DCAEBD3D688E3154982FBE823F25 /* grpc_tls_certificate_distributor.h */; }; - 13A14F54607D20814269EA451A39FE7F /* resource_locator.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = FFAD1CE099250D9211ABB625047FE804 /* resource_locator.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 13A90A5DFC67BDD4CCACFAF32A366BD2 /* FirebaseCoreInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 3909D3F6B40E48F42C11E9F67FAE0688 /* FirebaseCoreInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 13ACB9AC10EDEF3E9C6789024EF36154 /* value.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 9CF06E83F78E512F1380511B03AAD8FF /* value.upbdefs.h */; }; - 13B6619ED6AEBDF2454C48C498372A86 /* init.h in Headers */ = {isa = PBXBuildFile; fileRef = C56A4EF2680A1388E08E912698C3D039 /* init.h */; }; - 13D7105DC9ADA96D6FCF51FB6D939B55 /* intercepted_channel.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = AB94A709C35A711A9889E89C75561F6B /* intercepted_channel.h */; }; - 13E029C2EB2F62235C5DDA52B3359800 /* method_handler.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = FBB39E85D4CC09AD338E735C86D59F95 /* method_handler.h */; }; - 13F4455AF598E8DA76CE69196333A490 /* call_push_pull.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B7858D3BD36CC64D85AD7CE4C16E99C /* call_push_pull.h */; }; - 13FBCEA002F71D07CB3095E6995C60A8 /* mutex_stats.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 2BCC60AE22AEC1BDBEEB1812F8CD2131 /* mutex_stats.upbdefs.h */; }; - 13FD43BBE8BE45C5898A7CDDD1C85D4C /* udp_socket_config.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 12AC982ED3D08ADC9F04D5E3E67A676C /* udp_socket_config.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 13FF6CD758422FF1D1ADDA422A08140D /* extension.upbdefs.h in Copy src/core/ext/upbdefs-generated/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = FECFA730A80621E7DB12C564525649FD /* extension.upbdefs.h */; }; - 1405FE05B36E5C961B232C7B6E6F7E96 /* ssl_session_cache.cc in Sources */ = {isa = PBXBuildFile; fileRef = E8CF2B976FE5F0B462615A64145E0932 /* ssl_session_cache.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 14062A603311239323904281CE33E1E3 /* xds_client.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 0712CA2B4CBEFC0340A8265E9A81BB84 /* xds_client.h */; }; - 141BA400E1CCFEF386945E84875099E9 /* frame_rst_stream.h in Headers */ = {isa = PBXBuildFile; fileRef = CAB0F8A65AE5476329220A0184EC3515 /* frame_rst_stream.h */; }; - 142DE2F7E86CFC242D118196690ED208 /* channel.h in Copy src/core/lib/surface Private Headers */ = {isa = PBXBuildFile; fileRef = 742B356C761207A4316CE78B54794B5F /* channel.h */; }; - 14308EA35B77FEEA8940CB242461DF3E /* GTMSessionFetcherService+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 90325FF1BB2B0D56DA50309AADB0D377 /* GTMSessionFetcherService+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1444136078D5850A2EACC7B88ADD224A /* resource.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = CA0795DE4A8B195D345BD674EDD26A0B /* resource.upbdefs.h */; }; - 144B632CBFB1BBCE70528A460015A7A3 /* trace_config.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 54740C790D97AC79FC6E71BFC679C950 /* trace_config.upb.h */; }; - 1463FAF26FA18964923D118F91C9BCB7 /* extension.cc in Sources */ = {isa = PBXBuildFile; fileRef = F3B763DCF8CB08D84096801A966D1A68 /* extension.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 1465D34877AC58C33231841BCBA6FD4B /* binder_server.h in Copy src/core/ext/transport/binder/server Private Headers */ = {isa = PBXBuildFile; fileRef = BD9BAC017C5EF0EA3195A89371FB1D71 /* binder_server.h */; }; - 147683E1B91A40257079A127334A8D92 /* protocol.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 67AFE159430D49510A65B94BAB6602DB /* protocol.upb.h */; }; - 1476D95A0F8EEFC07DB3DE1FAF26343E /* cfstream_handle.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1EB4CD6A457FDF73D733D18642481915 /* cfstream_handle.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 1477FB5D416269DFA6418BECAD762209 /* FIRVerifyCustomTokenResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 99839EB82CFF9B836FB3D2EDFE379660 /* FIRVerifyCustomTokenResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 148AD02CB01290245FE064C5CAD4A75D /* token_bucket.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = B71CF98D12C01499736E4252929498F4 /* token_bucket.upb.h */; }; - 1492475F0AAFC6E745A00549F73D08A0 /* curve25519_tables.h in Copy crypto/curve25519 Private Headers */ = {isa = PBXBuildFile; fileRef = FBA213433EBA04FA3ECC6FC3FB0908FD /* curve25519_tables.h */; }; - 14AB680A4F1C8D2CCCB12DE25260B6C9 /* useful.h in Copy src/core/lib/gpr Private Headers */ = {isa = PBXBuildFile; fileRef = 054466AB0EC45613E8C82A662860D431 /* useful.h */; }; - 14B9BDAC6BF4E4C4F4210606B398C770 /* string_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = EBCFFE7A064D5E3A3EF6ED6E611656B4 /* string_windows.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 14BD8C7EC54FA36EBB6FA541AAF2E135 /* construct_destruct.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 275AFB3AFE5471B08DD0F988AA12C351 /* construct_destruct.h */; }; - 14BDB52A020676FECDAE6BDE51F112B5 /* channel_creds_registry.h in Headers */ = {isa = PBXBuildFile; fileRef = 84FDBF0688626CD2DE06E87491D25C98 /* channel_creds_registry.h */; }; - 14BF6D35D1ED6CBD26BE7B20B6444FE1 /* mutex_stats.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 7678CC800F699E19F1FC72CCA01979D3 /* mutex_stats.upb.h */; }; - 14DE8B38906E4F881C1E690D7D9DA13C /* evp_errors.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = DEC8F05DF24A0FFE32C6C26836CC2EDD /* evp_errors.h */; }; - 14E918485EBCCB7ED256C63C68876888 /* futex.h in Copy synchronization/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 61A876D516AEC1CF9D7CB38D19213911 /* futex.h */; }; - 14EF646636A8B41D78404CA3F969B856 /* transaction_runner.cc in Sources */ = {isa = PBXBuildFile; fileRef = 903C51085931C5089DC145495DC79220 /* transaction_runner.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 14F003737F56A55DC206ED5E6B772661 /* clusters.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = CE98F97EDE314F0ECE7A6CB802EA2D71 /* clusters.upbdefs.h */; }; - 14F4F6FF70DEA4AEA4E5CD3711DD8B91 /* pollset_set_windows.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = CCC58D8BC16C091215A5A467E37379FF /* pollset_set_windows.h */; }; - 14F85A5E9C10D32090BA8F39958E715B /* GULAppEnvironmentUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = 615D5ADB743B4244EBAD71C4B506214A /* GULAppEnvironmentUtil.m */; }; - 150A2B73FB693FC52740EE12D2780E9A /* tls_spiffe_validator_config.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = EC5F3AFDE0651C5F2482CF9FFB8310CB /* tls_spiffe_validator_config.upbdefs.h */; }; - 150A347A53F3EC1E47F176101DED791B /* tcp_client_cfstream.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8BCDBD85F63ACCA4D6B97297946CA543 /* tcp_client_cfstream.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 15192E441EE4A7C24CB61F42A14EAE57 /* aead.h in Headers */ = {isa = PBXBuildFile; fileRef = E78A65C63086E99EA695849D617A83ED /* aead.h */; }; - 1520085EF964C275F87DD323372041A0 /* sync_stream.h in Headers */ = {isa = PBXBuildFile; fileRef = 76525149F01A88CDEB67CC781DE077C6 /* sync_stream.h */; }; - 15286AAA27CF19A7C92A44719C2F2E0C /* ssl_types.h in Headers */ = {isa = PBXBuildFile; fileRef = 10B2E2A67BFD5580AC1757E458797646 /* ssl_types.h */; }; - 152B82A3487D51FFF15AD5FD0D420377 /* context_list.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2591DD30E2ADF43D6390F34666E771F0 /* context_list.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 153E53EE18A35DC1929B0371A8C63665 /* grpclb.h in Copy src/core/ext/filters/client_channel/lb_policy/grpclb Private Headers */ = {isa = PBXBuildFile; fileRef = E699520FAE0C8EBAB84E309418FFAD30 /* grpclb.h */; }; - 1540DFBAC273FB723CAB7661408F4D12 /* create_channel_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7359680098E536BB7359CC7B1E667E05 /* create_channel_posix.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 15645393B5A237F5FE96FAC4572D982A /* basic_seq.h in Copy src/core/lib/promise/detail Private Headers */ = {isa = PBXBuildFile; fileRef = 76EAB1E72F583B1553C9C2A8347B5F8E /* basic_seq.h */; }; - 1565F5E883CF1A138FF04993486C430D /* idle_filter_state.h in Copy src/core/ext/filters/channel_idle Private Headers */ = {isa = PBXBuildFile; fileRef = B6EC01A4C798811DD73CDE4FB1F74608 /* idle_filter_state.h */; }; - 1580E740B845A15ED375D36C7B0F4E32 /* metadata.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 3922CFD54B85B0F45E8F44EA32F09DD7 /* metadata.upbdefs.h */; }; - 1591F420E81B998559D270A0560B08F2 /* FIRAuthProtoStartMFAPhoneRequestInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = ECDC60235DD818DF78E2E89B9961A26B /* FIRAuthProtoStartMFAPhoneRequestInfo.m */; }; - 15965AEA9D2C862E884DBC43D6E49908 /* wire_reader_impl.cc in Sources */ = {isa = PBXBuildFile; fileRef = F1A1D7DC3E8AE3C71CCDBCB96406AEE3 /* wire_reader_impl.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 1596BE90314F596FA90C7D0A72A7865D /* tcp_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 2DCFEB02E1188E6E7B3C7BC6744C8280 /* tcp_posix.h */; }; - 15A761859FE0954AFC0747601B804AEA /* fault_injection_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = F60EA2893EE7CECD46335B2320B8D9A7 /* fault_injection_filter.h */; }; - 15A8C3D3C6C0A0C5124F175F0CE68012 /* migrate.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = C5E9743D4AEF90449ABE247424A8F86F /* migrate.upb.h */; }; - 15AB5A4659E7849C03FA7EEC8AE4B725 /* xds_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = FC77134EB051265501BF65EC2F3BE4A4 /* xds_credentials.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 15B14EF8E7FD549E668E17DFD3469A39 /* comparator.h in Headers */ = {isa = PBXBuildFile; fileRef = C5250BCB1D6CA849E4B4A8DA094B318A /* comparator.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 15B6DE16C317754312CD5E705071970E /* rbac_service_config_parser.h in Headers */ = {isa = PBXBuildFile; fileRef = ECBA7AE330D5D7E661566908E3186D97 /* rbac_service_config_parser.h */; }; - 15B914A4FD66310CFEA430CEBDA3B7FE /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 6806EE93DA3A5F6092FA3DDE23A02A83 /* internal.h */; }; - 15C773B406134450AB6973329A92896A /* substitution_format_string.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = A186B0CB5F97B50221217601950819E9 /* substitution_format_string.upbdefs.h */; }; - 15CA38FFFFC1EF79FA3DBD4967A07D29 /* load_balancer_api.h in Copy src/core/ext/filters/client_channel/lb_policy/grpclb Private Headers */ = {isa = PBXBuildFile; fileRef = 346080040C30E4053AA2A7299F46A5C2 /* load_balancer_api.h */; }; - 15CFF7158AF4701A15C67B1DE041807F /* path_transformation.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = C11C481C8C910821E3B96E1B3284787F /* path_transformation.upb.h */; }; - 15D112ED64E36F0A70F13C3701BE4484 /* proxy_mapper_registry.h in Headers */ = {isa = PBXBuildFile; fileRef = FC8AA6D2A84ABF0D286C16E664E6303E /* proxy_mapper_registry.h */; }; - 15D6D72BDBD79772119E81A22DF4E627 /* debug_location.h in Headers */ = {isa = PBXBuildFile; fileRef = EF5B18F7561A6ED9B99528D0F16C7EB0 /* debug_location.h */; }; - 15FDA1228B1FE138C5182463894CA8C4 /* transport_security.h in Copy src/core/tsi Private Headers */ = {isa = PBXBuildFile; fileRef = 889289290E4C2097E30A53E9751D3313 /* transport_security.h */; }; - 1603064782569C92A1B2BB28C6E18BFE /* ostringstream.h in Copy strings/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 0B3CF4491472F38C5859F81F7DC14EA0 /* ostringstream.h */; }; - 16266C0D830AC8F45A85A3BC0C3BA7E5 /* FIRFirestoreVersion.mm in Sources */ = {isa = PBXBuildFile; fileRef = 044E1846DE5BE1E69494B3A0BCA176AF /* FIRFirestoreVersion.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; - 162E22280EA5901DB4A168CF708AF3E9 /* chttp2_server.h in Copy src/core/ext/transport/chttp2/server Private Headers */ = {isa = PBXBuildFile; fileRef = BAE09CAC8D64864773B942C42AECA757 /* chttp2_server.h */; }; - 163A752ED428F7A1655C118A4172027E /* ec_derive.c in Sources */ = {isa = PBXBuildFile; fileRef = D8AAE302BEB79ED68FF6B9CC96B79FED /* ec_derive.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 1641A60BA254F8EF2DECF9EA40F1492F /* stack.h in Headers */ = {isa = PBXBuildFile; fileRef = A89BBF14588035900CC1C96427D7C9CE /* stack.h */; }; - 1648AFBF3F46EA2CE18B66448C4F6F63 /* load_balancer_api.h in Copy src/core/ext/filters/client_channel/lb_policy/grpclb Private Headers */ = {isa = PBXBuildFile; fileRef = 305069D0B7CDB47BA21D29D33129734B /* load_balancer_api.h */; }; - 16568D22491997EB5930F81B65A72C54 /* a_i2d_fp.c in Sources */ = {isa = PBXBuildFile; fileRef = 10AE08A07525149A26BFCFDB121E1864 /* a_i2d_fp.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 1658D3A37C4286B88203E05A01243144 /* xds_lb_policy_registry.h in Headers */ = {isa = PBXBuildFile; fileRef = E80D6440B217AA6D91C35A25792CFAD2 /* xds_lb_policy_registry.h */; }; - 165AF1DA9AABCA5355B0E6D835133DBD /* builder.h in Headers */ = {isa = PBXBuildFile; fileRef = 18BCC3A2772B3C874715414C19A4FBC0 /* builder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 165B0DC8028C1CE17EF18A82F8873AB7 /* custom_tag.upb.h in Copy src/core/ext/upb-generated/envoy/type/tracing/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 25B91D6C55401E8CF9FFBEFB973218AF /* custom_tag.upb.h */; }; - 168B98BB915BC3EBDC429C147432E072 /* completion_queue_factory.h in Headers */ = {isa = PBXBuildFile; fileRef = D716CAAD51AAAC24816F01ECD8E4895E /* completion_queue_factory.h */; }; - 16914ECAE7AB7E8D4041F70AFED99719 /* bootstrap.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/bootstrap/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = BE62B0F7FF80B367DE2B224425E3AFB3 /* bootstrap.upbdefs.h */; }; - 16A588F869DC5767F0BFA27ECD3E0C74 /* local_subchannel_pool.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6DC173CD0D05A7E57916E74D9C2A6343 /* local_subchannel_pool.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 16A794A564327B73131D7B95E9F5179B /* dual_ref_counted.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 19A09BADB75E70F63D955FE33A967D98 /* dual_ref_counted.h */; }; - 16AA3D4C900482F11D5C38CF641198F5 /* xds_lb_policy_registry.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 3F5790C6D4AA210C8AE0821F86AB2270 /* xds_lb_policy_registry.h */; }; - 16BADFF3681E5E3DD03832F82401FF8B /* opentelemetry.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 2EE8E21BA32861296FB6B8FCB845190A /* opentelemetry.upbdefs.h */; }; - 16BF947CF17C45674068CD92A499ABBE /* service_config_call_data.h in Copy src/core/lib/service_config Private Headers */ = {isa = PBXBuildFile; fileRef = 41E6988F82084782CE70EB824E643991 /* service_config_call_data.h */; }; - 16C09606B9E57B58F4D4E1B5BC6A9992 /* bad_optional_access.h in Copy types Public Headers */ = {isa = PBXBuildFile; fileRef = 7486561260BC6EF2495B7F1101256252 /* bad_optional_access.h */; }; - 16CE42E8C8ABAB7F3EAA239BFAEDDBC5 /* call_finalization.h in Headers */ = {isa = PBXBuildFile; fileRef = A93317B5FC473C4C08B66C151A1349FA /* call_finalization.h */; }; - 16D9554918C1B2779869F8C711FEA1FC /* health_check.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 74A7D590E09F3AE855E4BCB46D832A02 /* health_check.upbdefs.h */; }; - 16FAB6AB40626066E70657EB267D9CE2 /* client_context.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B5CDD833547C48509D8ED94ED2548BD /* client_context.h */; }; - 17294DD1CD9192B1A95504806C0705DF /* slice.h in Copy src/core/lib/slice Private Headers */ = {isa = PBXBuildFile; fileRef = 31538717DE44174F76E7921728F0ECFF /* slice.h */; }; - 173BF10ECA8400F00AB97547363F539F /* print.c in Sources */ = {isa = PBXBuildFile; fileRef = 39EABC4334216A0DDD5A81B7BF40C50F /* print.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 1759D3E6A1699A446DB3D0BA2C4CF7D6 /* memory.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 05BF01215F209396550559B62C9520CF /* memory.upbdefs.h */; }; - 1776CC8AD218A37AF9E788A0A8E909CC /* cpu-arm-linux.c in Sources */ = {isa = PBXBuildFile; fileRef = 91413E3AE1E69BB40C5DD5A94334F345 /* cpu-arm-linux.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 177D08FB9352749736D0CE5E1F9396B0 /* percent.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = FC75457071D2B686EDB22D32C0E6E6E1 /* percent.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 178239EF12057A8C54E1FEB8313BF89B /* tmpfile.h in Copy src/core/lib/gpr Private Headers */ = {isa = PBXBuildFile; fileRef = 86D3BC6CAB304C97FBCEFBD958CB7DB9 /* tmpfile.h */; }; - 1794096BE04B7719DFBC425E04A46DA5 /* rls_config.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = EDF35D4254DB55A51CB46A690EE0DE40 /* rls_config.upb.h */; }; - 179E04D6C7EFFF36957204FF38D8F30A /* json.h in Copy src/core/lib/json Private Headers */ = {isa = PBXBuildFile; fileRef = FA52D2E5477461E22C25E7B4889C26CE /* json.h */; }; - 17AF82D237C6FF715E504B1681C32D4D /* secret.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 1F13B65A25AAC2D139846A8BD9C33817 /* secret.upb.h */; }; - 17C14CF70D515A2659D1075FF99B5A1E /* health_check.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = D7C12B9B63B58E03CDCF04954F3C9F42 /* health_check.upb.h */; }; - 17C5390DC815367FB94F6E0BA0A401EE /* stats.upb.h in Copy src/core/ext/upb-generated/envoy/config/metrics/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = F721AC5581D35C86FFD072B5144336D1 /* stats.upb.h */; }; - 17D3D462D9E2DCA159EF8265942A8D1C /* ring_hash.upb.h in Copy src/core/ext/upb-generated/envoy/extensions/load_balancing_policies/ring_hash/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 03A419906CDB4D0A8F5F17D59C294D63 /* ring_hash.upb.h */; }; - 17D5CE14DC89AF7F6F6E014CF0701944 /* asn_pack.c in Sources */ = {isa = PBXBuildFile; fileRef = 07F82A1D332CA1B09252974C55DC728E /* asn_pack.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 17E1C763D2E04309C71786A2C2BE1F49 /* RCARecaptchaProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = E4B1B1F57B01885D631BCD5331D6D8C6 /* RCARecaptchaProtocol.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 17ED09D3AA0E5F0EC7C628B29F17D9BE /* channel_args.h in Copy src/core/lib/channel Private Headers */ = {isa = PBXBuildFile; fileRef = 1B2F8B601960C5232B9ED3108E1D50FF /* channel_args.h */; }; - 17F0911A9C4A5D45C69BD954CEC69EB1 /* connector.h in Copy src/core/ext/filters/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = 97A8B6A71D866E223B119390FC306B89 /* connector.h */; }; - 18038D9EC36D2541A4EAFBF9F5A340F4 /* throw_delegate.cc in Sources */ = {isa = PBXBuildFile; fileRef = 57A2DA839D5033E675A3AEFE5174D189 /* throw_delegate.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 180EA9E0D5B9737C9C6562BDE529F8A5 /* channel_cc.cc in Sources */ = {isa = PBXBuildFile; fileRef = A3A3BB5145813C69CE03F98D951F5089 /* channel_cc.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 181796B1801005228304D9250B068CAA /* security_policy_setting.h in Headers */ = {isa = PBXBuildFile; fileRef = B308F0294D589DF651EB712562FF1C15 /* security_policy_setting.h */; }; - 18218BEA26803223B7E0FA4E8957C195 /* dumpfile.h in Headers */ = {isa = PBXBuildFile; fileRef = BCB895D2E1B07A296B7F094F5358AE7E /* dumpfile.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 182222051FD8CEA315E80DF86A6FDBC7 /* gRPC-C++-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 47C519F120B972BAA62C106CDD15F9B4 /* gRPC-C++-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 1827BE086E236B5E8DE1D63A8886D42E /* index_entry.cc in Sources */ = {isa = PBXBuildFile; fileRef = 133B0BF0F4D04A48625AB32CCE640CAF /* index_entry.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 183375FE65EE463AF0190980AE6D6BED /* local_credentials.h in Copy src/core/lib/security/credentials/local Private Headers */ = {isa = PBXBuildFile; fileRef = D884D988617672049A1922CF12E24247 /* local_credentials.h */; }; - 184601F44FF723ED0D3874CD10F77EA1 /* skywalking.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = A310544C60E5C221BF27C5CE95CC0CFE /* skywalking.upbdefs.h */; }; - 184D657A6B587E7EC9CE29A7508AB347 /* FIRComponentContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = B3825847244B114C7033F46305CC36B3 /* FIRComponentContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 186C5BC0B8E798906088D2B04D6710A8 /* validate.upb.h in Copy src/core/ext/upb-generated/validate Private Headers */ = {isa = PBXBuildFile; fileRef = BDFC0385DCCBC982A4EA400406D8904B /* validate.upb.h */; }; - 186F8E2217A9C39475FCD7807FCAA094 /* x_x509a.c in Sources */ = {isa = PBXBuildFile; fileRef = A1B2C3E8E92E1207FC1075E053AFE661 /* x_x509a.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 187A5FC5970D9613A394EF5A17000E1A /* init_dump.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = A6D4F9E4F86E576A29E4646C9CF2EE9C /* init_dump.upbdefs.h */; }; - 188B7949FE1453A6DB2E2F530FDBF6AF /* FBLPromise+Async.h in Headers */ = {isa = PBXBuildFile; fileRef = 1F85AC87B6B1AA44555EE31427B6CA0D /* FBLPromise+Async.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 189A6CAE7828507A99CDD96214B5DE8D /* ec.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = A09DE1080290FF60E871CD128A3781C8 /* ec.h */; }; - 189DBFE0B821DAA4D7FB557265495E05 /* certs.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 20DEA631C30BE8FAEE1EE0E44327D9BD /* certs.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 18A08E0739CB6823976780DDEFC2C91B /* spinlock_linux.inc in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 2B32D26986FD325538594D0BF3A8C178 /* spinlock_linux.inc */; }; - 18A9770DE1BD620805F0C1F9B643D675 /* internal.h in Copy crypto/ec_extra Private Headers */ = {isa = PBXBuildFile; fileRef = EDB95363DDD5E8939C4889DF0FBC44FB /* internal.h */; }; - 18AEE739BB711912A713F5B69A5A8254 /* matchers.h in Headers */ = {isa = PBXBuildFile; fileRef = 927E1197D70B241B45BEB7573DC0F4F7 /* matchers.h */; }; - 18AFCCA41DFFF658A7685B93405EB19C /* substitution_format_string.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 2D476990B3136475ADE67B7391B07406 /* substitution_format_string.upb.h */; }; - 18AFF6037ACD19B5A87DFC99A0D709FE /* interceptor.h in Headers */ = {isa = PBXBuildFile; fileRef = CE191F7288D78851159F6BF80E9E9437 /* interceptor.h */; }; - 18BFFA66CAA634E39FFA79903FF85FD0 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = B06D149729259497190264A5BEFF6EEF /* internal.h */; }; - 18C9DF0341F143327F096D4C311AF811 /* alts_seal_privacy_integrity_crypter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 06FBFA4E7B6DE6CFD33BFB3E6CBC4A71 /* alts_seal_privacy_integrity_crypter.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 18D890B1BA6055E800AF4282A13E6F33 /* http.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = C0D79936BA25E779C2F4E378A8DA5B8E /* http.upbdefs.h */; }; - 18E1FCA61E25412162516661AE6B3205 /* inproc_plugin.cc in Sources */ = {isa = PBXBuildFile; fileRef = C901CE59BC9613758F7DE662246F93FE /* inproc_plugin.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 18ECE16574376DE14F8E689CD4422660 /* FIRLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = FCDB429977FBFE702FBAEEBDBC12BF65 /* FIRLogger.m */; }; - 18EF5A13728B159946307AB4EC887B12 /* address.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = B395450B5E121A8BA726F4DB019F913A /* address.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 18F81F88D631ED119F832240F14A9877 /* deadline_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C4BF08538BF564BE1A81112221DDE88 /* deadline_filter.h */; }; - 18FBCB5B87EAF94BAC8E8AF542A0C3FE /* des.h in Headers */ = {isa = PBXBuildFile; fileRef = 3411A1A42B2A46331D1100D65DC7A9CD /* des.h */; }; - 1918A8F2CC8BCDF0DA86737B37B5631A /* internal.h in Copy crypto/fipsmodule/sha Private Headers */ = {isa = PBXBuildFile; fileRef = CE27F3353CCDE20EEA1967F59A73B2AF /* internal.h */; }; - 19241E0DD7A6C233634A3B6293CC821F /* endpoint.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 626C1127ECEC310CAA6FED22EDCC4AE3 /* endpoint.h */; }; - 1928C52AC3B97F29A607FF3FD722D869 /* service_config.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D2B5932D59CF896AF331C7455E83E87 /* service_config.h */; }; - 192D015AA92B940D6320E531409C2388 /* poll.h in Headers */ = {isa = PBXBuildFile; fileRef = 7861E0AF527F94E380FBD0B0C77150D5 /* poll.h */; }; - 194E4300F45867F70E2934B014767D74 /* resolve_address_posix.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = DCFABC7B0A109ED157376A4007E12140 /* resolve_address_posix.h */; }; - 195FEB7F8200204DCD909396066757A9 /* log.cc in Sources */ = {isa = PBXBuildFile; fileRef = F57890FEFBD05AF3DE45A43ED38FDC1B /* log.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 196060600A0946F3284449CACF48066D /* socket_windows.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 08B3E4C96B4854DEB61D4D1C85C5E33F /* socket_windows.h */; }; - 19631044917DE84BDA93823BC94C5E8B /* cleanup.h in Copy cleanup/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 9402DC9EEBC82A8B50F21346EFE3825B /* cleanup.h */; }; - 1972F8A53B4BCDE0FD0086A286D09F9E /* sha.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B9712CF6CEEB8C86B40E7AC5BA07E98 /* sha.h */; }; - 1978656ACFAAB990B32117CC9C8CEF6F /* message_decompress_filter.h in Copy src/core/ext/filters/http/message_compress Private Headers */ = {isa = PBXBuildFile; fileRef = 22ECEDC0ACF605625183D0EBEC36F1A9 /* message_decompress_filter.h */; }; - 19824C58048176EEBE5AF89860391889 /* clusters.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = CE98F97EDE314F0ECE7A6CB802EA2D71 /* clusters.upbdefs.h */; }; - 1988833C017D8F37BEE7C95AFB859580 /* insecure_credentials.h in Copy src/core/lib/security/credentials/insecure Private Headers */ = {isa = PBXBuildFile; fileRef = 77D42D6840037D4539C5FF947541197C /* insecure_credentials.h */; }; - 199ECC429CFA1E502DAF097461993B6C /* migrate.upbdefs.h in Copy src/core/ext/upbdefs-generated/udpa/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = 74DE2F57D7262CB92985AD1FF806B49B /* migrate.upbdefs.h */; }; - 19A5E4B2BDF5C7B48415FC32B9A96919 /* tasn_fre.c in Sources */ = {isa = PBXBuildFile; fileRef = 4B0EBFAF80EECAF41BCCF91E669104EF /* tasn_fre.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 19A97801F5A1DE68D26AD4740E658505 /* mpscq.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 7710D072640D96C2B7AA385F0A0D6BA0 /* mpscq.h */; }; - 19B3E588B1ED83483C2B9AB6048EB2DD /* alts_grpc_privacy_integrity_record_protocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 029A52B57DE5EB5D739AC0FCE0EED0C6 /* alts_grpc_privacy_integrity_record_protocol.h */; }; - 19C783FC23A17182D6203DCEDD659B4B /* regex.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 673177F4971544C9C1FBF552C282F599 /* regex.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 19CDB873E8B20B7BF37208C52CA054F4 /* local_subchannel_pool.h in Copy src/core/ext/filters/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = 9327E2DFDF1E55E93E51E2EB2D5BEB30 /* local_subchannel_pool.h */; }; - 19E5CDF1D8DF6D42E9DA1CB910473FD9 /* metrics_service.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 27566AA7F1C7633BE555A957B2DBD4C2 /* metrics_service.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 19F76D11200AFBE5E8F8814AD6C97183 /* outlier_detection.upb.h in Copy src/core/ext/upb-generated/envoy/config/cluster/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 327583D1AE50D855A5DC66860F098F72 /* outlier_detection.upb.h */; }; - 19FD74909E64D85706EF15CF8887BA4B /* FIRAuthProtoFinalizeMFATOTPEnrollmentResponseInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 8BE75FF40E37F53EEAB7334875B89C78 /* FIRAuthProtoFinalizeMFATOTPEnrollmentResponseInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1A00F28DCB0B2105E7049E670E502CC4 /* resolver.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 7D5B6E3AA3455C88892C51CD0863D1E5 /* resolver.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 1A1004CAADB0021A52D1AEF46FB576D8 /* struct.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = FD8D010B341CD186B2702FB0FE810381 /* struct.upbdefs.h */; }; - 1A12A19B450F44756C95F0EF280DBE92 /* file_watcher_certificate_provider_factory.cc in Sources */ = {isa = PBXBuildFile; fileRef = CDB52B5501BB8A154719A60F17DAB6C8 /* file_watcher_certificate_provider_factory.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 1A22017256680BD9487113421159D4B7 /* opentelemetry.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = D1EB4D937CC7BD7F39667353D663C319 /* opentelemetry.upbdefs.h */; }; - 1A242E57678EC7D568B553A53D98C2F4 /* FIROptions.h in Headers */ = {isa = PBXBuildFile; fileRef = E5613AE04DD9A8188293551C4FB93DDC /* FIROptions.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 1A2F2B98A423023F02707B440CDF0E90 /* http_client_filter.h in Copy src/core/ext/filters/http/client Private Headers */ = {isa = PBXBuildFile; fileRef = 86DC1D98A5477E0CD9A2A00A6C585F55 /* http_client_filter.h */; }; - 1A38A609A7598C878F6F499975EDB44E /* GULURLSessionDataResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = ED210BD64123997BDED35DC5866134E8 /* GULURLSessionDataResponse.m */; }; - 1A51E1155073746D0D73FCF431378173 /* xds_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 6FA47BDDF869028EF54071F0C5696B47 /* xds_credentials.h */; }; - 1A566E10CF04AC90691AE059CCCCD9BE /* FIRMultiFactorInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = DBA6780286A2D35A81D54A4672B137F2 /* FIRMultiFactorInfo.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 1A5B2F5B74B56C0F051D89D9047F891F /* sensitive.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 2EBFEB9706D13970EED7D6DED48D25C4 /* sensitive.upbdefs.h */; }; - 1A5EEAFA2414194E5BAF97CBEBF182E6 /* table_cache.cc in Sources */ = {isa = PBXBuildFile; fileRef = 47D69B97D5406D465A8A99DDCD6DB090 /* table_cache.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 1A6D3E0E06BBD5B1FBC99BC051EC4719 /* endpoint_components.upb.h in Copy src/core/ext/upb-generated/envoy/config/endpoint/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 25D4892CDBD1534D500D0B2572174E58 /* endpoint_components.upb.h */; }; - 1A6EC3FD5549EE4B4E8D2AF0A8B9C0A4 /* slice.h in Headers */ = {isa = PBXBuildFile; fileRef = BB29A937E17D63490AFE0FC9C83EADFD /* slice.h */; }; - 1A776CBDC11F5376126699EEB65E765F /* stacktrace_unimplemented-inl.inc in Headers */ = {isa = PBXBuildFile; fileRef = 2E16B574F95739FBFF8A149BA59B53A6 /* stacktrace_unimplemented-inl.inc */; }; - 1A79CCC02CF14D8E55C42FC8A202777D /* timestamp.nanopb.cc in Sources */ = {isa = PBXBuildFile; fileRef = 241881A0BD85AA4472D622E8B5D1F159 /* timestamp.nanopb.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 1A86B4311219115622BF5053E696E2D2 /* node.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 0324C9E6C1FD05080C7F876478AC50CB /* node.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 1A94BAD597F91BD542A33540F7910A0A /* server.h in Copy src/core/lib/surface Private Headers */ = {isa = PBXBuildFile; fileRef = 67086824536AD3BA315A8B5E49F55B8E /* server.h */; }; - 1A98FB47F5278669C041EC9B4C8C1562 /* str_join_internal.h in Copy strings/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 68A82223FFE7CB8C76ED7DABA9BEA2BB /* str_join_internal.h */; }; - 1AA80E240BF54C099EDD1C2A62F2D0E9 /* plugin_credentials.h in Copy src/core/lib/security/credentials/plugin Private Headers */ = {isa = PBXBuildFile; fileRef = 3D1494E98F37D17D3FCBC3C238573961 /* plugin_credentials.h */; }; - 1AAEA5787D2A28CE78301BDBC293AABE /* FIRMultiFactorAssertion.m in Sources */ = {isa = PBXBuildFile; fileRef = 2479511CF957DB2ADC98139CEB4F1917 /* FIRMultiFactorAssertion.m */; }; - 1AB50DEFC5EC00E9038EC006F52CB55F /* memory_allocator.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3CDDE1765E0F260A558CC6E99E6C0A20 /* memory_allocator.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 1AC914F9C7F739C1417E5E6CB7DB56EF /* http_connect_handshaker.cc in Sources */ = {isa = PBXBuildFile; fileRef = B0AA96ED24026283CB89DC532E0E5D93 /* http_connect_handshaker.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 1AEBA91E2CE35A2236A61C13F1E050BE /* gethostname_host_name_max.cc in Sources */ = {isa = PBXBuildFile; fileRef = B033259C1AF5F2E0237DC97DB4094FAD /* gethostname_host_name_max.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 1AFD1A4BCBADCA1755E2DF910B73FDDF /* dynamic_filters.h in Headers */ = {isa = PBXBuildFile; fileRef = D36CE396F016FDF4D6C77741982FF14B /* dynamic_filters.h */; }; - 1AFD928117A25546F3C7ED7B556B32F9 /* resolver_result_parsing.cc in Sources */ = {isa = PBXBuildFile; fileRef = FFF0C979AF8E5F953479DE4EFA0C60E6 /* resolver_result_parsing.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 1AFDA8E30A535171648BF6372D71184F /* path_transformation.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/http/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 07420C5C2EEECDCB1364153BFAA66BF1 /* path_transformation.upbdefs.h */; }; - 1AFFF74248DF962D79109ABB30B8B689 /* matchers.h in Copy src/core/lib/matchers Private Headers */ = {isa = PBXBuildFile; fileRef = 5E64D0B8B12B69B0C836CA639796945E /* matchers.h */; }; - 1B146D72CEFE8D20E2632A891445CFF7 /* file_external_account_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = A4E8417897D5A65D9CC998A8B44A461A /* file_external_account_credentials.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 1B19AFDD1F21D7C46D76E6E1C064A8A5 /* regex.upb.h in Copy src/core/ext/upb-generated/xds/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 592900DA030AC4A58A4883B28D648DBE /* regex.upb.h */; }; - 1B1C0478AA329BA9059AF7E8BCFBE4D4 /* port_undef.inc in Headers */ = {isa = PBXBuildFile; fileRef = 4173C2AB943154E8F5FD8DE826DAA61B /* port_undef.inc */; }; - 1B25B6852C001600242E4E52DE360A53 /* string_view.cc in Sources */ = {isa = PBXBuildFile; fileRef = BFAFC543BE8D9C2794C361304FD30B83 /* string_view.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 1B2C02A9548D918E78241CCE7AA755E4 /* onepass.cc in Sources */ = {isa = PBXBuildFile; fileRef = C3089F3773483F41D2BB1B33487C8617 /* onepass.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 1B32547CB2A472E077A0A0D9E9FDF4B7 /* auth_context.h in Headers */ = {isa = PBXBuildFile; fileRef = 64F88E052E243C4DAB957F2FFA7D1AA1 /* auth_context.h */; }; - 1B3EC8C5F174C93EC4B0E42AA070EF0C /* health_check_service.cc in Sources */ = {isa = PBXBuildFile; fileRef = C2275F8533F3E3E0BBA39909FD04563C /* health_check_service.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 1B4442484B4F2483516F736ABE1DC163 /* server_interceptor.h in Headers */ = {isa = PBXBuildFile; fileRef = BF0CEB606C8C1E4923B757CE76460C9C /* server_interceptor.h */; }; - 1B4D62A70402B0CCC068EADFBC442D3C /* slice_refcount.h in Copy src/core/lib/slice Private Headers */ = {isa = PBXBuildFile; fileRef = A5AAD1B37ECC49505758A64FDF845AA2 /* slice_refcount.h */; }; - 1B57B8BA0F7BACF9015F84C8D8E4E1BF /* sha1.c in Sources */ = {isa = PBXBuildFile; fileRef = AF1F20D24A49CB3A1A6F9B6A5741B837 /* sha1.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 1B5929FA7DD15800B4417D4720B63479 /* FIRGitHubAuthProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 41271B628A9A0446764BAE8A1E03A160 /* FIRGitHubAuthProvider.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 1B68F512ED998D9ACDC2E3506B6B22E9 /* generic_stub.h in Headers */ = {isa = PBXBuildFile; fileRef = AC1B666B0C9BB3B3CC5A3C2EA4879727 /* generic_stub.h */; }; - 1B7F451757829C6DD7FA94AC55497758 /* cmp.c in Sources */ = {isa = PBXBuildFile; fileRef = A9594DA8778FFE481253A96661820EEC /* cmp.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 1B81712DD3D94134B69E45B630EAFF90 /* util.h in Copy third_party/re2/util Private Headers */ = {isa = PBXBuildFile; fileRef = B944562E9BF9745B4B33DC7322BEF315 /* util.h */; }; - 1B91250BF40A883D414327518BEB00E6 /* dynamic_annotations.h in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 0269E7C1031CBBABBD46E7ABBC01BE03 /* dynamic_annotations.h */; }; - 1B9D62CF3A175077DA3D202DDCF959D9 /* resource_path.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1DEE40E82837740E374C5DD2172EF7F8 /* resource_path.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 1BA1F3AB1612CA8DD201A47BBA70CA12 /* binder_transport.h in Headers */ = {isa = PBXBuildFile; fileRef = 8846655D53EF79DF7810F861DB129C2E /* binder_transport.h */; }; - 1BA416B3E26FF177DE91C9B340E09C89 /* hmac.c in Sources */ = {isa = PBXBuildFile; fileRef = 4FA00014B160F0B395455EE9B18DA7AF /* hmac.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 1BA7469E77BF7A4453AC61C5F30947AF /* RingBuffer.swift in Sources */ = {isa = PBXBuildFile; fileRef = DC2F52A1C7842D2B32F4B40562BF57CB /* RingBuffer.swift */; }; - 1BAA8F7F08155FA6E0F028031376AA7A /* grpc_types.h in Headers */ = {isa = PBXBuildFile; fileRef = 8811C842AD76140DDB7EEEF636AE8492 /* grpc_types.h */; }; - 1BB622A13F85519BD733BB912F7937BB /* resolve_address_windows.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F47CA234DE2F4DEA3B22F1B83CA00EB /* resolve_address_windows.h */; }; - 1BD5E21D5FBBBFF3C9101A38A3AA520F /* rls_config.upbdefs.h in Copy src/core/ext/upbdefs-generated/src/proto/grpc/lookup/v1 Private Headers */ = {isa = PBXBuildFile; fileRef = 7F68B66FA26669911A340D622679C840 /* rls_config.upbdefs.h */; }; - 1BFC3C850A065917A3225068D2023A92 /* socket_mutator.h in Headers */ = {isa = PBXBuildFile; fileRef = A92B31043C7B1DAC7957E5068CE99A7A /* socket_mutator.h */; }; - 1C045E23C714D37EFBB7E9A2242350B7 /* time_zone_if.h in Headers */ = {isa = PBXBuildFile; fileRef = DAC3411B948A79F674993F64945111A7 /* time_zone_if.h */; }; - 1C08C3A519404AF7F733B2CEA6625911 /* http_connection_manager.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/extensions/filters/network/http_connection_manager/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = E0EDBDD3D6684AD9C71F6B95BD8AAEAD /* http_connection_manager.upbdefs.h */; }; - 1C19B48A755D1986E78D86118B168F14 /* rls.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 9205C24B2F9D4090414E476A661067F8 /* rls.upb.h */; }; - 1C1CEB4B6065F9A2892819795E4DD8FD /* checked.upb.h in Copy src/core/ext/upb-generated/google/api/expr/v1alpha1 Private Headers */ = {isa = PBXBuildFile; fileRef = 6F26CD13BAEDACE19DE844F05CD88E89 /* checked.upb.h */; }; - 1C3DFA3392DCBB5EFF56B720B452EEEA /* xds_http_fault_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 85847520DD5BC143BD0B6E0F3170A705 /* xds_http_fault_filter.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 1C42B420D9E1FD88FACAF40209ABC60F /* random.h in Headers */ = {isa = PBXBuildFile; fileRef = 84A9C03A9C314381842226B672C30D2C /* random.h */; }; - 1C49DB1B11C4B055592A6C5AFE32CCBE /* discovery.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = BAA174C2F975F9193DFC8A9F2A8F4E91 /* discovery.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 1C4EC4F054FFBFF1788B2B2A69CF1320 /* call_hook.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B7216370FB72A5F5AC3267F6B9CC9A0 /* call_hook.h */; }; - 1C8E767F9D7B179D06A38BC4F97B0CF0 /* status_conversion.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 499C98641AC653051E58F37C56DFDC90 /* status_conversion.h */; }; - 1CA5E2007C211D1E2D696B11AA3C330D /* trace_config.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 388D0DC6537080711BCB27B8221D4AD6 /* trace_config.upbdefs.h */; }; - 1CB7F722F9CA4D14BFF054BFB92F97B0 /* FIRGetProjectConfigResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 9B946F1663177E7C03CACF9020496875 /* FIRGetProjectConfigResponse.m */; }; - 1CB9E2D7DA1C65B658C88AF6E0C0A050 /* FIRTwitterAuthProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 5B26EE68C8AA205B525CB8D50F64FC91 /* FIRTwitterAuthProvider.m */; }; - 1CBDC2AFBA5FD159FD00D6A11E22EB58 /* dsa.h in Headers */ = {isa = PBXBuildFile; fileRef = CE90D8B6D6A4CC76FC090F64F7E6723E /* dsa.h */; }; - 1CBE4E1EC5BA9E4E049A3780F78B7CBD /* pem_pkey.c in Sources */ = {isa = PBXBuildFile; fileRef = CD01D16CCC21FEE2500C91275CC8792B /* pem_pkey.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 1CD51F02A6945064DD11701DEA3EF9CB /* resolver.h in Copy src/core/lib/resolver Private Headers */ = {isa = PBXBuildFile; fileRef = 1F11F8643585D41931E1577B6B6525DD /* resolver.h */; }; - 1CDA2A94EAACF03CE955E826D7BD51D5 /* randen_slow.h in Headers */ = {isa = PBXBuildFile; fileRef = 769E14872A275CC5B96A858FD0E1683E /* randen_slow.h */; }; - 1CE0E1AA9D0CC33ED8BAFDDE58770F85 /* FBLPromise+Do.h in Headers */ = {isa = PBXBuildFile; fileRef = A0D6F30A1027F876001E369F423D2CFB /* FBLPromise+Do.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 1CE59A9F37807E0CA7DDE22C059DE868 /* int128.h in Copy numeric Public Headers */ = {isa = PBXBuildFile; fileRef = 08B3811AFAFC25361E9E0A7FBB7C7FDC /* int128.h */; }; - 1CE7F954994F1D0C7C82E0C4C2FB2177 /* xray.upb.h in Copy src/core/ext/upb-generated/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = F34657DF2A6C31F7680C4F583734BD95 /* xray.upb.h */; }; - 1CF4FA4487997DEA76D3D80A9F63F7E3 /* FIRComponent.m in Sources */ = {isa = PBXBuildFile; fileRef = 528027506D85A397F6562989C0C2F59A /* FIRComponent.m */; }; - 1CF54E0A148F448F35DD45D6CB31B9D3 /* proxy_mapper_registry.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5E09020B5D3C183A7C47AC81BF64505C /* proxy_mapper_registry.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 1CFA5A2BD2D350E99DD95FE62F89A4CE /* subchannel_pool_interface.h in Copy src/core/ext/filters/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = CAF8524A716D611F8A5581F107F52FBD /* subchannel_pool_interface.h */; }; - 1CFC535B7F51437D83E0665151456CB8 /* filter.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = FA4EB41B6297FEE97DD0036187524930 /* filter.upb.h */; }; - 1CFF2A7F9FDF287A21A533BB24E23848 /* poly1305.c in Sources */ = {isa = PBXBuildFile; fileRef = 1A8A044AF8C10F2D388A7764DEFDDAE9 /* poly1305.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 1D04BFC00266A978FE5C28036C1908B2 /* thread_identity.h in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 5B6FEFCF5951CCB876A05DED38B16567 /* thread_identity.h */; }; - 1D075A0864271B579194D648633CA54F /* mini_table.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 42293DF2129D34926EC4828CE92E6912 /* mini_table.hpp */; }; - 1D1144959068F52DA21A388464A16691 /* xds_resource_type_impl.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 2E49450A0245D82B48D393C7F99C7DDC /* xds_resource_type_impl.h */; }; - 1D1351F186326A8800F93DA4609C6700 /* stacktrace_powerpc-inl.inc in Copy debugging/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 90D7736E94865F980E6231AEC7072DAB /* stacktrace_powerpc-inl.inc */; }; - 1D2CF0EA4C75E3798743874A87828D50 /* nanopb_util.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2A7ECDB06B3BBD0B7404CD558EDCE7CB /* nanopb_util.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 1D3CA4CA439D23BA144F4B259CC48BB2 /* sync.h in Headers */ = {isa = PBXBuildFile; fileRef = 9D0E86CEBDDB31540D17980B39256929 /* sync.h */; }; - 1D4941587E28943EC86847105CB5B8F5 /* GULReachabilityChecker.h in Headers */ = {isa = PBXBuildFile; fileRef = 50AF9E86FF5C2CDFFCF1D849A09DA1D2 /* GULReachabilityChecker.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 1D5F78CA241F686E6A5EE2A947E40AA8 /* wrappers.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B685F791560C3DC98995CBC0FAE3369 /* wrappers.upb.h */; }; - 1D6BCD7B6797CA6384EB6F6523682245 /* randen_slow.h in Copy random/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 769E14872A275CC5B96A858FD0E1683E /* randen_slow.h */; }; - 1D71CC0DC2594B8B0877D295C9B9D8C5 /* check_gcp_environment.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1812A735373A742DFA5CAE2600CED9F5 /* check_gcp_environment.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 1D79F1C7639DD4C773106B7167574F96 /* client_unary_call.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = B92B339C719AD7AA78B972D6543CB4C0 /* client_unary_call.h */; }; - 1D7B30282A986E250142A7F487836431 /* per_thread_tls.h in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 87E1C791227E9E7062B1B73382E79D90 /* per_thread_tls.h */; }; - 1D7BAAD4CDE6D09F41AB163DFE875CC0 /* server_callback.h in Headers */ = {isa = PBXBuildFile; fileRef = 7EE0654A2D4205A029F1A28C61017E50 /* server_callback.h */; }; - 1D839D093AC26C7F4991C408FF3C5A6B /* socket_factory_posix.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 7B104D9BB962879A60523880A0C8E931 /* socket_factory_posix.h */; }; - 1D8DE4E13EC69519611FCC752CC2D95A /* default_event_engine.h in Copy src/core/lib/event_engine Private Headers */ = {isa = PBXBuildFile; fileRef = CAE79D362F367389D47EEB66B9BA5638 /* default_event_engine.h */; }; - 1D922C2B119C6F4DCBAC4970DE2613BC /* certificate_provider_store.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 4C4D5A755BD5FCD21AB8C2D0ADB8873B /* certificate_provider_store.h */; }; - 1D9A2B516AFE580896F7756A44DE832C /* server_address.h in Copy src/core/lib/resolver Private Headers */ = {isa = PBXBuildFile; fileRef = F4AB0837D6154CD500F86D65966EC78D /* server_address.h */; }; - 1DA2B46FCFB95514E95D97F3213A89D5 /* security_handshaker.h in Copy src/core/lib/security/transport Private Headers */ = {isa = PBXBuildFile; fileRef = AC8B515E9882F2F80A27025C3F996B38 /* security_handshaker.h */; }; - 1DADCA7C6F11A6DAAD9023BB3875F0E5 /* time_util.h in Copy src/core/lib/event_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 4B1407F033A3518A8532DD705304F466 /* time_util.h */; }; - 1DD84BC0171F3269C31B7C983F90FEB6 /* ascii.cc in Sources */ = {isa = PBXBuildFile; fileRef = 94429DD60C08A900494A34C3D055A24B /* ascii.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 1DD9E2B4C96E0C5A768B273996357DA5 /* slice_refcount.h in Headers */ = {isa = PBXBuildFile; fileRef = AD1DFC597DB1D5020134118190C806FC /* slice_refcount.h */; }; - 1DE28C57A98B363C0F72308E9C2B42C4 /* async_generic_service.h in Headers */ = {isa = PBXBuildFile; fileRef = 19D405D76CF303CD18D241AE0DC046D8 /* async_generic_service.h */; }; - 1DE6D191BA274C5CFC8C523EFB66FC2C /* endpoint.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/endpoint/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 2E2C52ECE094E306EF5F0FB83EBEC007 /* endpoint.upbdefs.h */; }; - 1DEB74353AFE8F17A009938E202FC704 /* ctrdrbg.c in Sources */ = {isa = PBXBuildFile; fileRef = 34BF075FFDAF54CC4899F95E304AB3DF /* ctrdrbg.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 1E03DA0BC6C4790C1836379734A99462 /* xds_credentials.h in Copy src/core/lib/security/credentials/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 6FA47BDDF869028EF54071F0C5696B47 /* xds_credentials.h */; }; - 1E18CCD59432F8C0BABF8CEB9F45CF77 /* client_authority_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 4862B1E05E14E6DAA2870C9F290C2DE6 /* client_authority_filter.h */; }; - 1E1E0917FD0763CE8BA181DDA10858E2 /* cord_rep_btree_navigator.cc in Sources */ = {isa = PBXBuildFile; fileRef = A7E87EB86AC3EA8C6BFD1B2659FC508E /* cord_rep_btree_navigator.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 1E221C82AE16E1BDB4FDFA80917D1CA7 /* sockaddr_windows.h in Headers */ = {isa = PBXBuildFile; fileRef = 0ADE706F501C583FD117E2F804E2B02D /* sockaddr_windows.h */; }; - 1E24E8A86E2C1CC878A1D1C179B05822 /* atomic_hook.h in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = F85FE6920780DD093E151110B93BC095 /* atomic_hook.h */; }; - 1E5A83DE94BD19B1E006B26DF607047D /* alpn.h in Headers */ = {isa = PBXBuildFile; fileRef = EC1CFEC3F8A7F7198561BD45C3EC28D8 /* alpn.h */; }; - 1E5C09C83F67AC393847BDC600687459 /* subchannel_stream_client.h in Copy src/core/ext/filters/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = 2E728DF3C719A431532FBD088134BA75 /* subchannel_stream_client.h */; }; - 1E5C5FD951EC6EB42B3A31813765EFB1 /* sparse_array.h in Copy third_party/re2/re2 Private Headers */ = {isa = PBXBuildFile; fileRef = AD20F6FD78E5B375E7410117E248CD3F /* sparse_array.h */; }; - 1E635B2060E2E68BF83E181195B61889 /* xds_transport.h in Headers */ = {isa = PBXBuildFile; fileRef = 71F8D8801DF0CED87D136EBDCF27594D /* xds_transport.h */; }; - 1E6E5565F3744D6D3D2FC0807288BC8B /* FIRHeartbeatLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 02ABA4F510562E5E7622ABAA7CCE5DC2 /* FIRHeartbeatLogger.m */; }; - 1E6F4D2FFFFE915F85354FF7D41B57A0 /* server_builder.cc in Sources */ = {isa = PBXBuildFile; fileRef = CDB237D93D58DA037C3FA09CC826A6D7 /* server_builder.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 1E813F1F463E6FADB338A92D281E7A5B /* internal.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 36169A9BB6EA80ECA2B79CE6743341F2 /* internal.h */; }; - 1E82797F633590F896702819363DF188 /* FIRAuthExceptionUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 34DFB8830092F41584F56A2DF3BD27D9 /* FIRAuthExceptionUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1E8467F8C6C3587513506B3E7EE13A1F /* x509_att.c in Sources */ = {isa = PBXBuildFile; fileRef = 1A3C947C609F3B0AD0A39538E07DB66A /* x509_att.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 1E8C27A0E71874BB47019E9CEDB4083C /* cluster.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/cluster/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = D0F264205FC248E97089541A953C9FCE /* cluster.upbdefs.h */; }; - 1E908333966CF562CECAD79EF5F83E69 /* bitset.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = E86590AAAF5E98E26B6123D6AA0894F3 /* bitset.h */; }; - 1E9300298DC23546AD984ACFF6602572 /* custom_tag.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/tracing/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 2897E521EAEF034519181E7343AA6455 /* custom_tag.upbdefs.h */; }; - 1E996295F957C6FE72509894A3C9B1A6 /* internal.h in Copy crypto/fipsmodule/md5 Private Headers */ = {isa = PBXBuildFile; fileRef = 890A94859AE094DAC6FF2DBDFC7E89FC /* internal.h */; }; - 1E9F1510C735962381BB3E257EBEB637 /* exponential_biased.h in Headers */ = {isa = PBXBuildFile; fileRef = AFC43F118AA2CD9ACEF0DB3854781958 /* exponential_biased.h */; }; - 1EA50DF4B3E5C570B164EDC732C6F241 /* try_seq.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = 045D682F705DE385F3D68839734D5F7D /* try_seq.h */; }; - 1EB828B3951E6221D5401DF0CB96CA6A /* wakeup_fd_posix.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 27A9E6A0806AF85250E525868F402413 /* wakeup_fd_posix.h */; }; - 1EBADF6B736DB9BC658F71AB1DBF348C /* tls_utils.cc in Sources */ = {isa = PBXBuildFile; fileRef = C33EA0BB9E10F7B3CE0BC2F228ECC601 /* tls_utils.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 1EBB57C07AFB605F1E5073C225BD9D3F /* call_op_set_interface.h in Headers */ = {isa = PBXBuildFile; fileRef = 3282F1AEF772ECEA9B2DA45B3C8B1706 /* call_op_set_interface.h */; }; - 1EC0AD9507225F02D75F1FFC9333C3A6 /* transport_impl.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 32D2E6A16B9A52394281683B7706D5EC /* transport_impl.h */; }; - 1EC43F3FFE724B0C4270C46BE2A0ED76 /* grpc_library.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 955582FAC5286853B8BA2A661AA785BD /* grpc_library.h */; }; - 1EC5D9A86F1B63928B3ABFC2DB2BAD14 /* construct_destruct.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 9004A695FBA223A06055F99A886D4754 /* construct_destruct.h */; }; - 1ECDCEC9E8F72C9BE16ABEBAE1D3148C /* slice_refcount.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8B98D303E753456A60A4B7F70B4839A8 /* slice_refcount.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 1ED9E63E750AF0235303BB2367A1EAC8 /* event_engine.h in Copy event_engine Public Headers */ = {isa = PBXBuildFile; fileRef = D99D39F258998421D7A1C6589A219C93 /* event_engine.h */; }; - 1EDFB4679A03F648A371325E62349EE0 /* sockaddr_posix.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = AA8EA63598435068637EB92513E25E03 /* sockaddr_posix.h */; }; - 1EDFC3228D09656D11BF345B7213AB10 /* testutil.h in Headers */ = {isa = PBXBuildFile; fileRef = D78A423A547DD66CD091A24BF7AFEFE1 /* testutil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1EF3FC9464ACE0B4EC18E8F8A96CBCE4 /* hpack_parser_table.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 5522275A83A2EADD2BC0674F6A044070 /* hpack_parser_table.h */; }; - 1EFDB4DC6B6B9DC52C3F56E8705CF309 /* charmap.h in Headers */ = {isa = PBXBuildFile; fileRef = 62BDE3839255CDE399FFECF78A2EC3E5 /* charmap.h */; }; - 1F0EB31ED5870B1F5E4403C51EDEED1F /* quic_config.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = A2DA81D2FC2D25A5355AB178D9492634 /* quic_config.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 1F0ED82E335DFB117956DE43A02C2065 /* scoped_route.upb.h in Copy src/core/ext/upb-generated/envoy/config/route/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 8DCD8FDB6C0B0A668BDEB79033E83308 /* scoped_route.upb.h */; }; - 1F107BF51D4BCD1C55BCCAFD606E23B8 /* sensitive.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = B8C2F93CF0342E109E495F55C29543EE /* sensitive.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 1F14A3CAC1D01080D07EC5BD36B6CABD /* cord_rep_crc.cc in Sources */ = {isa = PBXBuildFile; fileRef = F76EAC263C6C4F2DE4A954284A60BAE1 /* cord_rep_crc.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 1F16EBA03234A79239946551EB3EB88D /* migrate.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 1C2977F76C81A65C72F697F2AB533F71 /* migrate.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 1F18A92103702A9C4E2C54C3D0839840 /* health_check_client.h in Copy src/core/ext/filters/client_channel/health Private Headers */ = {isa = PBXBuildFile; fileRef = 5D552113FF9E586AB23A27E8E4EFB64B /* health_check_client.h */; }; - 1F18FC35AE704A5409128F252FBCB992 /* FIRAuthRPCResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 85643CD824BEC180F5284881B578EC58 /* FIRAuthRPCResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1F1D649A8CF85803EF14B8D1BF6B087F /* authorization_policy_provider.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C6D13BBFEE108524A320463E20DE7C5 /* authorization_policy_provider.h */; }; - 1F2A38A1120FC593BA3C2EBCC5D0AD32 /* service_type.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 8BA441E380A71E80E9C27DC42C69A28E /* service_type.h */; }; - 1F2FBAF11DC13D6A701475ED0DC6D6D1 /* arena.h in Headers */ = {isa = PBXBuildFile; fileRef = B590C877CCD070677A526E14A553AB66 /* arena.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1F33CE791769660F5259A9193E00D5A3 /* transaction.cc in Sources */ = {isa = PBXBuildFile; fileRef = AC3504771F4D31B13FEC676FAD30D6FA /* transaction.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 1F344977C108018C48168C5D9B49CC2D /* overload.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/overload/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 77D8F136B6E55F05B32C578235C79550 /* overload.upbdefs.h */; }; - 1F37AC4C20816AFAF705DF103F56D88A /* env_linux.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4CFE7AE761289C6E26F2B422D627F66F /* env_linux.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 1F387A11685186156734CE86CAF3E410 /* resource_name.upb.h in Copy src/core/ext/upb-generated/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 70E75CFB34BB17695D4A4C128671B513 /* resource_name.upb.h */; }; - 1F432C8BEF746E9FAA19369E1838D3ED /* jwt_verifier.h in Copy src/core/lib/security/credentials/jwt Private Headers */ = {isa = PBXBuildFile; fileRef = 9312C96DC21ACDBA4B7BC1892CB6EA04 /* jwt_verifier.h */; }; - 1F481438FDBBA3272C5400FF5EB51E1F /* maybe_document.nanopb.cc in Sources */ = {isa = PBXBuildFile; fileRef = 63D3114D176A6F166DCC21725B75E26E /* maybe_document.nanopb.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 1F4FD909E7C04542D96A90994D0CE513 /* FIRVerifyClientResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = E978F7C9894DE631F90D94AC9141DF4A /* FIRVerifyClientResponse.m */; }; - 1F50F8537D80C63587FE9B0667EA9631 /* grpc_alts_credentials_options.h in Copy src/core/lib/security/credentials/alts Private Headers */ = {isa = PBXBuildFile; fileRef = 75C66052B609A65DD80D56D52385135D /* grpc_alts_credentials_options.h */; }; - 1F66B0F04E5390E81D2BBAD11624BC27 /* rbac_policy.h in Copy src/core/lib/security/authorization Private Headers */ = {isa = PBXBuildFile; fileRef = E887EC5107F3C13FDED59A34E7463859 /* rbac_policy.h */; }; - 1F7346AC6FF395A7DCA5226DB84CFFF8 /* FIRFirebaseUserAgent.m in Sources */ = {isa = PBXBuildFile; fileRef = FDE0DE004BED00EA46222108331A7C6F /* FIRFirebaseUserAgent.m */; }; - 1F7BA7258D715981F747497329586EFD /* FIRMultiFactorInfo+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 047BF6A39A0C9563AF0E682586D2F0D0 /* FIRMultiFactorInfo+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1F8276681CD558F811326D6D683C170C /* stream_map.h in Headers */ = {isa = PBXBuildFile; fileRef = BADB32D388C4921A668EDC5E1DA0AD17 /* stream_map.h */; }; - 1F85045541BE957EAECBD9A8AF511514 /* plugin_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 00AAA4DD02F35853A27F6E5CA59DEF06 /* plugin_credentials.h */; }; - 1F944DD95D802A5585358F808F58E256 /* slice_string_helpers.h in Headers */ = {isa = PBXBuildFile; fileRef = 24AB50486C6C94BC8CAA3E17B315EB10 /* slice_string_helpers.h */; }; - 1F98BAAA1D4B6E6F53D6ABCAA4029FAF /* xds_route_config.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7AEF9EA0ABC52D672DE5210707B2E3A6 /* xds_route_config.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 1F995EAD0FD9AE1C63B4C37DB22C89F7 /* csds.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 8B7AD78760F690032AD25D0A94C25C1D /* csds.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 1F9D2E31E7B7B28884AAA953ED9C7959 /* ssl_key_logging.h in Headers */ = {isa = PBXBuildFile; fileRef = EE6CE92A5E94BB910E4A068B8A7F7A9B /* ssl_key_logging.h */; }; - 1FA758209BE120B90816BA1A4790F4E1 /* bootstrap.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = A9E23F975C14BCCBF33D6F98C8545911 /* bootstrap.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 1FA835D2EF6A3849E30EE653EFDE4995 /* create_thread_identity.h in Headers */ = {isa = PBXBuildFile; fileRef = 991FFDEDE586C37A4A55FCF5CCEAF8C8 /* create_thread_identity.h */; }; - 1FB8B34482A1F45FE237CDCE01CF11E0 /* frame_settings.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 83CBE129F5D534768D4E8452DFA15CD6 /* frame_settings.h */; }; - 1FBDF80504C34C4EB10F77AC8F113BD8 /* bitstate.cc in Sources */ = {isa = PBXBuildFile; fileRef = 50CB5656CAF0BE54637FDD8AFBEE29EE /* bitstate.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 1FC43B9FDA5F1794FFCBC84BF52CCBAA /* hash.h in Copy hash/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 8D3FF9734DC721CEC53FCD4ED190B6EB /* hash.h */; }; - 1FDC0B23787FCB927AEFD3707444AAD2 /* parse_address.h in Copy src/core/lib/address_utils Private Headers */ = {isa = PBXBuildFile; fileRef = 99CF4CDA14EC4A7168828C7E2F70B482 /* parse_address.h */; }; - 1FE1B0B2CBA2BA04EDFE1953F2767243 /* channel_interface.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 8E589F26721EC7A5AB17EEDA47AB0017 /* channel_interface.h */; }; - 1FE34B4928D3BC203A6D86BB49367A2F /* udp_socket_config.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = DA32A10DB6DD5193293193AF26A75732 /* udp_socket_config.upb.h */; }; - 1FE84DEDA6A3EEA968F2F6084579B87B /* internal.h in Copy crypto/x509 Private Headers */ = {isa = PBXBuildFile; fileRef = C56CAD6FEF4D5B0C413772E8CAED7FD5 /* internal.h */; }; - 1FEECAB343136C3C292E19A6323989C7 /* grpc_ares_wrapper_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = E8FAA516E3128F65A8CB75FE9F3DB4DF /* grpc_ares_wrapper_posix.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 1FFB7CA138B6C842E3280B41DD89AC41 /* hpack_encoder_table.cc in Sources */ = {isa = PBXBuildFile; fileRef = 66F6DE563A446AA08317343F90BDE250 /* hpack_encoder_table.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 200655848B759115FABBA19C48B6EDA7 /* address_filtering.h in Headers */ = {isa = PBXBuildFile; fileRef = BBE328C0669C8E4A2B9DFC4F77E17208 /* address_filtering.h */; }; - 20081D3CBEE5677763AAF43A8680BF6B /* FIRSendVerificationCodeRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 1850D2EDCB2F7328D519DD4FA0263608 /* FIRSendVerificationCodeRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 202546BC4235999619B373CD72A1C3CA /* executor.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 38A1DCA3064BA8F96D1E9127F712BDA3 /* executor.h */; }; - 20260E83DFB2EC5B42FFDCC4A9D51E59 /* cycleclock.cc in Sources */ = {isa = PBXBuildFile; fileRef = F1817909D65C66B8A298477E33056178 /* cycleclock.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 2027B9D7B8036F4EF578CA6E6C5E97FD /* int128_have_intrinsic.inc in Copy numeric Public Headers */ = {isa = PBXBuildFile; fileRef = 5220BA4693B0224BC4F12CF8D5D39683 /* int128_have_intrinsic.inc */; }; - 20378404337BC5476BDF10E93298E7A1 /* ripemd.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 738776B6AB209E4658F5EE8069597D8E /* ripemd.h */; }; - 204CC361DF81E54839125D35B30E17AB /* grpc_method_list.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 35B968D638FD8203F0A649B8655020C3 /* grpc_method_list.upbdefs.h */; }; - 204F91E5A07B4D948580B7BD83E6682E /* threaded_executor.h in Headers */ = {isa = PBXBuildFile; fileRef = EA3A681265106D73B652EF155DCDF403 /* threaded_executor.h */; }; - 205EDF0D8E24A35F6CB00B2E08C24286 /* hashtablez_sampler.cc in Sources */ = {isa = PBXBuildFile; fileRef = 776D2FB5E8842DB96ECEFA9532B7EF40 /* hashtablez_sampler.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 20627A0834DE7BB9A5FC5195D96F72C8 /* rls_config.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = B42B8DBF43B5A3C26DFCADF175BD42A0 /* rls_config.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 2062FE972B1782956CD595F4E094D92A /* ndk_binder.h in Copy src/core/ext/transport/binder/utils Private Headers */ = {isa = PBXBuildFile; fileRef = EEC1B76CA7CDC02026B54E4E2CF13CD3 /* ndk_binder.h */; }; - 206691447753BA7552187CB7CEF8B605 /* json_encode.h in Headers */ = {isa = PBXBuildFile; fileRef = A37408BF6A75E1D7E40AD112CEEEE18A /* json_encode.h */; }; - 2076038830A932208A7857CE31FE6F8C /* create_thread_identity.cc in Sources */ = {isa = PBXBuildFile; fileRef = C913BAEE461360A3FE8E176E51029E39 /* create_thread_identity.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 208679B3878E938D48D8A5015A725AA1 /* zone_info_source.h in Copy time/internal/cctz/include/cctz Public Headers */ = {isa = PBXBuildFile; fileRef = B0B59AFDC6C12D9FA86D8AA989D3C521 /* zone_info_source.h */; }; - 208F2C660B9882821548966EF6D677AA /* block.cc in Sources */ = {isa = PBXBuildFile; fileRef = 872831EAA9A59AC69B0D7E2F29E40137 /* block.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 208FF31957D0FAE439585F57CC5631D8 /* outlier_detection.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 03C409E8C1E26CFB8C9B9624C788EFF1 /* outlier_detection.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 209C170E476C5B51B5FBBC54F86BDBE7 /* status.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 2FFCF45E8C2CC492873013C2661F5E3B /* status.upbdefs.h */; }; - 20A2C080CF69EA521EF1380856D725C3 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 19BE17B876B955A416B4318AAFD28C30 /* internal.h */; }; - 20A7CBC42B3DB7378E2F1075111C390B /* alts_handshaker_client.h in Copy src/core/tsi/alts/handshaker Private Headers */ = {isa = PBXBuildFile; fileRef = 351B2E3C11F7CC74ABB0F11C776740BC /* alts_handshaker_client.h */; }; - 20B37F9D676B877C25F66CE09A3DB583 /* xds_routing.h in Headers */ = {isa = PBXBuildFile; fileRef = 3FFFAF029ABF7DCE2482970E72A6FDD0 /* xds_routing.h */; }; - 20B675A46A6AE4F6C417D5347327CB3D /* connection_id_generator.h in Headers */ = {isa = PBXBuildFile; fileRef = 6735B6C3344D159A3FE8C55D29177ED5 /* connection_id_generator.h */; }; - 20BAE330A1792842B23924E82291725B /* tsi_error.h in Headers */ = {isa = PBXBuildFile; fileRef = 70F33EABDE05FFEA3C2E977415873D1A /* tsi_error.h */; }; - 20BBADBBCB74EBDCF8C3B90DB66DAC4D /* completion_queue_tag.h in Headers */ = {isa = PBXBuildFile; fileRef = C011F9D37C3D96DDF9A2FEB5226A2400 /* completion_queue_tag.h */; }; - 20C6FD8A23A259D3ABBBA68A5ED6F795 /* dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C97BE2BF7776F29BA3B3C3B70B0CD309 /* dummy.m */; }; - 20E4C4E0C08E33571EE0CBBF11531B97 /* external_account_credentials.h in Copy src/core/lib/security/credentials/external Private Headers */ = {isa = PBXBuildFile; fileRef = D097F292BB0365B72A3F3B17A0F346F2 /* external_account_credentials.h */; }; - 20F5809C7D54579FA45465E447FD7EE4 /* cord_rep_btree_navigator.h in Headers */ = {isa = PBXBuildFile; fileRef = FA710C181C8CD7CC6E931CF73955AE3C /* cord_rep_btree_navigator.h */; }; - 20F8D04C33818A2B1FF909BE0795D322 /* bio.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 9E2BE82371FDAC1C2C07A492AED9D349 /* bio.h */; }; - 210BFFD7681E5AB529B0F8F0F3D04F43 /* alts_handshaker_client.cc in Sources */ = {isa = PBXBuildFile; fileRef = A395E66AD536C7C62165F35507EBFB9E /* alts_handshaker_client.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 212FDD8BECC26238DE14435AD0112136 /* civil_time_detail.h in Copy time/internal/cctz/include/cctz Public Headers */ = {isa = PBXBuildFile; fileRef = 3FB8A10139A04EDFB7C1D53279E7647A /* civil_time_detail.h */; }; - 213508C832F15259C0E01DDA0010CF95 /* cluster.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = A0CECF743559AED98CAE7D08D03A85BA /* cluster.upb.h */; }; - 213DE200D121D71562642C1210748A29 /* tasn_new.c in Sources */ = {isa = PBXBuildFile; fileRef = 7442ED3A651A4EC5B77AEECECC312F09 /* tasn_new.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 214F73B6D5BB26B9B14FF98B600C984F /* config_dump.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 3EA8343325E1E8A0CF13F57C9ABBF03D /* config_dump.upbdefs.h */; }; - 21531BB3D35F8626DC6A6EE867D004E3 /* avl.h in Headers */ = {isa = PBXBuildFile; fileRef = B2DC7787F065075B8A2E11EA70C1C60B /* avl.h */; }; - 2153CF30F2F5596EE2572BC5106A21A4 /* sync_windows.h in Headers */ = {isa = PBXBuildFile; fileRef = 23C8EE2D4BF4383E917F1E72CB0BA495 /* sync_windows.h */; }; - 215F5D612EA109FFD15093C7500AF6A2 /* document_set.cc in Sources */ = {isa = PBXBuildFile; fileRef = 503DDB1054A207F8BBA5812C745A121F /* document_set.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 2165A460718E72EA12C8D38F4717312F /* client_channel_channelz.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F92C856A59D62760DE32F1288F77A1F /* client_channel_channelz.h */; }; - 21695455A56FE1FB53C6A7D0B95E21C5 /* check_gcp_environment.h in Headers */ = {isa = PBXBuildFile; fileRef = C242FF702C027D94383C1DBC3CBADA06 /* check_gcp_environment.h */; }; - 21718F264DFD0D48459090E2EC2D57BB /* variant.h in Copy types Public Headers */ = {isa = PBXBuildFile; fileRef = ACFF85EC359F9CD76D234DBD92933B9C /* variant.h */; }; - 217912D80295CC5CD7E829BAB6D9AB52 /* timestamp.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 149B3AB286928B969D3A87E8AEA583E2 /* timestamp.upb.h */; }; - 2179B066E3F95DF433F3417D23D02E53 /* lb_policy.h in Headers */ = {isa = PBXBuildFile; fileRef = C6F57F507A6E16FB3791725C5CBECBE9 /* lb_policy.h */; }; - 217A472B8A51E2074AF991A482F2B9D3 /* FIRAuthGlobalWorkQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = D3516839E43F02BA8A6034CB227E0D38 /* FIRAuthGlobalWorkQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 21846496CFE3CE2588090E5B2EA1E9E5 /* x_val.c in Sources */ = {isa = PBXBuildFile; fileRef = 0819A5898230424794C1944D987B6AB7 /* x_val.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 2191D22B111E3040D1A87A54DF6A61C1 /* rsa.c in Sources */ = {isa = PBXBuildFile; fileRef = 8C424CD3ACB65E2A762CFAB11BDC4839 /* rsa.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 2195F72AE3D105C05B2AB7FCBFA069DD /* stacktrace_arm-inl.inc in Copy debugging/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 318C501DFBECF4348CBECADB26186D34 /* stacktrace_arm-inl.inc */; }; - 219F2E72A1BB6C7DFF78FF8F91E8660A /* config.h in Headers */ = {isa = PBXBuildFile; fileRef = 209D2899C8189B79A159CEB805EB127D /* config.h */; }; - 21AE845BFE1308253E8602DC7E5FF1B3 /* time_zone_fixed.h in Headers */ = {isa = PBXBuildFile; fileRef = 9969F035A2907BA0E98792F1005BFA12 /* time_zone_fixed.h */; }; - 21B31BCD7D6624625D9307E21ACF8BA6 /* stream_map.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 14CDDB904C6B91A2BBDFD2ACDC7957CF /* stream_map.h */; }; - 21C26BE9119D3D1830192208ECB5FEEA /* json_util.cc in Sources */ = {isa = PBXBuildFile; fileRef = 262A5AA2E7052E637C97B4264931FBCF /* json_util.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 21E284BAA4F140877704DCAEBFEE0FDE /* randen_engine.h in Copy random/internal Public Headers */ = {isa = PBXBuildFile; fileRef = FC3C2890BCDB5519C0FDB4C3BC83DC67 /* randen_engine.h */; }; - 21E38327BDFAFA041E239768A0E17386 /* frame_window_update.h in Headers */ = {isa = PBXBuildFile; fileRef = AAE2393B71DBAF6E4370F754FAC3C3AC /* frame_window_update.h */; }; - 21F49CA586BEEECCC64A102EA3267260 /* wrappers.nanopb.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5DDD87C0B789B20353B0AAD2340A1C59 /* wrappers.nanopb.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 21FE4BA123285FA0848FA1A1891176A0 /* extension_registry.h in Copy third_party/upb/upb Private Headers */ = {isa = PBXBuildFile; fileRef = 2FAC688AA5AB810052F128AACBE1289A /* extension_registry.h */; }; - 21FF350A0BA4D8F90171CFBDB62EF552 /* FIRAggregateQuery.h in Headers */ = {isa = PBXBuildFile; fileRef = 24016B4D793056CA94111FCC1E463716 /* FIRAggregateQuery.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 2209C4B303292D24641149D94E9B4287 /* status_helper.cc in Sources */ = {isa = PBXBuildFile; fileRef = 026B23DDD049ABB351FD2EB88450346D /* status_helper.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 223D3198AA24C6D58BCBA9A907ED2C8F /* memory_quota.cc in Sources */ = {isa = PBXBuildFile; fileRef = B976E5F7DD90B10B7D0169C21B5E33AF /* memory_quota.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 223F6BCA01C24718B77679EFC6105BBD /* call_op_set.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 7A0E2510288A22D24D6A9DB28DA8ED2C /* call_op_set.h */; }; - 22452452E07699F67B3F134AC572A169 /* metadata.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 3922CFD54B85B0F45E8F44EA32F09DD7 /* metadata.upbdefs.h */; }; - 22567F87BDD7D8DAA2C3B4543246448C /* rpc_service_method.h in Copy impl Public Headers */ = {isa = PBXBuildFile; fileRef = 01D027ED4A430C8DCB4AF625FA7089F5 /* rpc_service_method.h */; }; - 2261B66672A958AA3E51344D932655D7 /* checked.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = C8F9BD48AED4FF4EC42CDE0F45E6C48E /* checked.upbdefs.h */; }; - 22632383954C38DB1F76E68B15837B60 /* duration.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 2A22C5B2AD4B67D84884CB584F3C61C9 /* duration.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 226EA31DE9555FD664D37029F3D84220 /* proxy_protocol.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 648DB80FB60129CA418F4346506E0F4D /* proxy_protocol.upb.h */; }; - 227CAC273AD1887ED0610A383F0F25A2 /* opencensus.upb.h in Copy src/core/ext/upb-generated/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = F2AC53E9D2081A7384529307D6E5D848 /* opencensus.upb.h */; }; - 22A225BF09C82BBC9B12FFA8DBF489D6 /* v3_alt.c in Sources */ = {isa = PBXBuildFile; fileRef = F07BD3A85368A33DCA4019065EE2C1B7 /* v3_alt.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 22BB1F1F19F8212DDBA9D178AAA12F2F /* extension.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = F0DDB1000478CE78FA09A7582B95753B /* extension.upbdefs.h */; }; - 22C11A96A7E6AE074B189183BE6236FA /* internal.h in Copy crypto/conf Private Headers */ = {isa = PBXBuildFile; fileRef = E73F026274DE9CA09BD13E67522C63CE /* internal.h */; }; - 22C46D4051BBD826776408B96F2C1645 /* local_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F4C1DA0086D63908548B978FF04C4C7 /* local_credentials.h */; }; - 22C4EDBF6E3CC30DD47BE9ECA8160438 /* a_digest.c in Sources */ = {isa = PBXBuildFile; fileRef = A872AE21ECB2A584308F52D65B485D25 /* a_digest.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 22D0160715B09ACE3358AD7489B090A0 /* function_ref.h in Headers */ = {isa = PBXBuildFile; fileRef = 69EBA31AEB067C068C6DDB66943A2C61 /* function_ref.h */; }; - 22DAF01AAEE523BF233D485856F58AFA /* channelz.cc in Sources */ = {isa = PBXBuildFile; fileRef = A19D659C5049DB8C9844CE6EBE35917D /* channelz.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 22DF469AF9BAA129BF3684071C888DB2 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 7160177A88ED22AABA4724ACEB368EB8 /* internal.h */; }; - 22E8237FA7B3516779F1C1C55071F93C /* accesslog.upb.h in Copy src/core/ext/upb-generated/envoy/config/accesslog/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 8F9143CDE90519AB42C652F71A040D17 /* accesslog.upb.h */; }; - 23283F8A9F386ACCF42D3D146FDFD976 /* http_tracer.upb.h in Copy src/core/ext/upb-generated/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 29D1C34FC7947809E87213616C12289A /* http_tracer.upb.h */; }; - 2346BB375D69F03C2CD6DCEDEE09A2E4 /* field_path.cc in Sources */ = {isa = PBXBuildFile; fileRef = A4B20B3F09227B3FED1D0B403D986DD5 /* field_path.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 234F3A98CF0CBCEFA19EAFC859599D1B /* tls_security_connector.h in Headers */ = {isa = PBXBuildFile; fileRef = 48EC2AC596C611471E1B80C9DF097C54 /* tls_security_connector.h */; }; - 236D220029CF23C8A9AED1211BF8D706 /* init_dump.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = EDCEE61CD3587D7EE03F0775F3CA9716 /* init_dump.upbdefs.h */; }; - 236E5CB6E52CBA511E2B94FE710D5690 /* status.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 74F2EF95FDEF519CE85D84228040B69B /* status.upbdefs.h */; }; - 237AB6A5646B86BD73C0653C3FD9440A /* FIRAdditionalUserInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 4EF8D8725746F14A8B061129CFAF2C4C /* FIRAdditionalUserInfo.m */; }; - 237F51F8541528D5812B1FF28ACBB764 /* frame_window_update.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = AAE2393B71DBAF6E4370F754FAC3C3AC /* frame_window_update.h */; }; - 238BADA363A7DFC001C3FBA386296E53 /* path_transformation.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = FE3CFA78AF13AB77CD8C1CAF9DBDA77F /* path_transformation.upbdefs.h */; }; - 23AB0E0CA6788FF970EA509C55A4761A /* FIRUser.m in Sources */ = {isa = PBXBuildFile; fileRef = 926F0100CFEC69D4A60131931842E39C /* FIRUser.m */; }; - 23B64622A4AAE1525FD1966BAE8527EB /* sleep.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = E972D2002937D3DDC13EA710BAF777FD /* sleep.h */; }; - 23B7C4D262044C2E1B31ED1C16FDF45E /* time.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = 78F591500BE24B5FBAFEE4930FD4FBEB /* time.h */; }; - 23BADAB9D4822708AB78784F7E6F240A /* fake_security_connector.h in Copy src/core/lib/security/security_connector/fake Private Headers */ = {isa = PBXBuildFile; fileRef = 58E5F9881F917BE0F51C8DE05FCE722B /* fake_security_connector.h */; }; - 23BEAF4B97D6208DFCE7B9161EDFCC55 /* bundle_reader.cc in Sources */ = {isa = PBXBuildFile; fileRef = BB3BC1656D86F62EAE3407693EFA7E82 /* bundle_reader.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 23BF86B7290C1805D677525F73601370 /* loop.h in Headers */ = {isa = PBXBuildFile; fileRef = 7EDE1BD86074D7CA9C51E550793862B8 /* loop.h */; }; - 23DEAB7A4FBE83D0C7EEA34A37A295BD /* alts_handshaker_client.h in Copy src/core/tsi/alts/handshaker Private Headers */ = {isa = PBXBuildFile; fileRef = 4B071A7B2CD93C95C6619E13D709E0ED /* alts_handshaker_client.h */; }; - 23FA5B650223242A435F55B848A6F747 /* trace.cc in Sources */ = {isa = PBXBuildFile; fileRef = E66899670A89292100F25478C3E2A1CC /* trace.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 24054239951D92574762C25A93DA6F27 /* server_context.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 6E8A62DEE58FE2266D3CA59FA37D734E /* server_context.h */; }; - 240DEC935DB3FBCFB2BA66C1973FE381 /* load_report.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A05B002E1C2350C88136402F7C62FA2 /* load_report.upbdefs.h */; }; - 2418E9C682C8C2DBD8B51AC54E31BED4 /* internal.h in Copy crypto/fipsmodule/ecdsa Private Headers */ = {isa = PBXBuildFile; fileRef = CA6CC875C1875CF542F5EC00EC7C49B1 /* internal.h */; }; - 241D71E14F2EC6E0175BF5C5E5A61E0E /* sha1-altivec.c in Sources */ = {isa = PBXBuildFile; fileRef = 489B3CE59D241BF44E0D80C4FC220E1A /* sha1-altivec.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 241EF2ABEB6AF3DBCFBD0B981537C4A9 /* leveldb_bundle_cache.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D26C801CC5160BB4E2C02B5ECB2E5D8 /* leveldb_bundle_cache.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 242311EFC286F11D12DA8F9FBCE91508 /* call_test_only.h in Copy src/core/lib/surface Private Headers */ = {isa = PBXBuildFile; fileRef = 91C87991687926E42F3A2F6676B593F3 /* call_test_only.h */; }; - 24322671F4F7618428AA9DED38269B72 /* srtp.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 23DC30A6F13758839F0A7B225B6E34BD /* srtp.h */; }; - 2441CCDBB04E9C7B625F98996C23A916 /* decode.h in Copy third_party/upb/upb Private Headers */ = {isa = PBXBuildFile; fileRef = 17E051142539D39490A629C7F0E012D8 /* decode.h */; }; - 2458BB746FD849E8F5D10ACF08235E0D /* HeartbeatLoggingTestUtils.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4A76AC70FA6B5188711B6BCDEC09AAEF /* HeartbeatLoggingTestUtils.swift */; }; - 247009079B889811E02812CDEA83996D /* health.upb.h in Copy src/core/ext/upb-generated/src/proto/grpc/health/v1 Private Headers */ = {isa = PBXBuildFile; fileRef = 5F3800C8FCB9B8F81FECF69F59AC7AA7 /* health.upb.h */; }; - 247109C5A4727A2299E52D07037F359A /* alts_zero_copy_grpc_protector.h in Headers */ = {isa = PBXBuildFile; fileRef = D48DF17F9EAF85A53E7A9EF267D8E354 /* alts_zero_copy_grpc_protector.h */; }; - 247A677A6471E5B89C7BA034B736BC19 /* custom_tag.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 25B91D6C55401E8CF9FFBEFB973218AF /* custom_tag.upb.h */; }; - 247D986A529D6803EB0738F24DC57D48 /* v3_conf.c in Sources */ = {isa = PBXBuildFile; fileRef = 9744F2DE66F986F22E33B09468BE5DC6 /* v3_conf.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 248438F6ADB4CB71363110CDA14F689B /* empty.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = D8CF7C8B1E6ADC4E5F75D68482B743CA /* empty.upbdefs.h */; }; - 2488D3A229F8FC1F04A2CD13A1C67E35 /* any.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 04AA242262A0F3748A18170440020F85 /* any.upb.h */; }; - 2495F57FD1BC15250C6B647AA8362390 /* clock.h in Headers */ = {isa = PBXBuildFile; fileRef = CEECDDEE06D52B6CF871DDC2EFE96A13 /* clock.h */; }; - 24A4E46679E546B76A52324B47E3C6E2 /* load_balancer.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 0286AD1737C7A52B8606497313F87F76 /* load_balancer.upb.h */; }; - 24AB80E0F999C23FFEB2DCC18F1DF249 /* health.upb.h in Copy src/core/ext/upb-generated/src/proto/grpc/health/v1 Private Headers */ = {isa = PBXBuildFile; fileRef = ECC6581A78E2AAFC64C8381B726790A9 /* health.upb.h */; }; - 24AE39461A1B0D149052288A54C359B8 /* compression_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = AF382EF6840FA526675A7CABD667963A /* compression_internal.h */; }; - 24B436FC5C3350B6A90E4D8C98DCFA74 /* insecure_credentials.h in Copy src/core/lib/security/credentials/insecure Private Headers */ = {isa = PBXBuildFile; fileRef = 6A6426894FF97110F947FFF60F1AE9BB /* insecure_credentials.h */; }; - 24B957D17F1956E255F07BB6A1AD7C05 /* builder.cc in Sources */ = {isa = PBXBuildFile; fileRef = 45B0142DE952F1627CF2AFACF03990F9 /* builder.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 24BD66D4C80F23AC86724C1AB30417CC /* trace.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 952BED7892FA7334C72EC7D1A48BC9FE /* trace.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 24D1D41D3476A6158EFC42AD9825839B /* range.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 26E37CF61271230304E3FE3E5625764F /* range.upb.h */; }; - 24D5244AD29424B05E5BD200B357F8D7 /* curve25519_32.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B2695022ADEC049C2EC78CC26BD764F /* curve25519_32.h */; }; - 24DBFEFD4E08617C74DA8DAE8D9EC20F /* dns_resolver_selection.h in Copy src/core/ext/filters/client_channel/resolver/dns Private Headers */ = {isa = PBXBuildFile; fileRef = DD3F2CD1E901F009F1FFA495FF9C878B /* dns_resolver_selection.h */; }; - 24DDBB36CB3D112A1993B0AA99F07C51 /* http_status.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 00DFA7E80F27D4F09FB74E5AEE1BE4C1 /* http_status.upbdefs.h */; }; - 24FC25F65317F02830B868FCE8B409F8 /* ev_poll_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0E9FC9BFBBF679606F71D9CE46EFD5A6 /* ev_poll_posix.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 250D1AAFE1C284D1620FE8876612C7FA /* FIRConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = 2B2D414CA7624F038046DDB7FE5ADCB4 /* FIRConfiguration.m */; }; - 250DDA97571BDECF74B481086A419825 /* xds_bootstrap_grpc.h in Headers */ = {isa = PBXBuildFile; fileRef = 77219182BFDEF6186E5BC5DB15F3CD6D /* xds_bootstrap_grpc.h */; }; - 251000F0D046355BBD2A1DB1172645A4 /* ssl_privkey.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7EBBF1669A85B83534B046B5B8950F30 /* ssl_privkey.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 25120329A8F762D35DA60A387C2AB4E3 /* alpn.h in Copy src/core/ext/transport/chttp2/alpn Private Headers */ = {isa = PBXBuildFile; fileRef = EC1CFEC3F8A7F7198561BD45C3EC28D8 /* alpn.h */; }; - 25161A708C8544E70B7672719B496110 /* FIRGetProjectConfigResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F40BC40D176CAFB977DB33584326086 /* FIRGetProjectConfigResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 25169E4F693CC6A0DA2DE57AC7F2CA72 /* bdp_estimator.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = EBD654524DEB3AE452BAC741C6525356 /* bdp_estimator.h */; }; - 25230AF68F8A0B565F894BF22B67B27A /* service_config_impl.h in Copy src/core/lib/service_config Private Headers */ = {isa = PBXBuildFile; fileRef = 1A36D9C035BCFD1324F484913C6463A7 /* service_config_impl.h */; }; - 2526F101AED75A9587065391E729227A /* version_cc.cc in Sources */ = {isa = PBXBuildFile; fileRef = 74EFCA2DF419196BC78BC76A2B6E0B2B /* version_cc.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 252D18F82CB40392B3FF160DFC51F8C4 /* checked.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F8DF8F2E63FC5F767A9EFA03E995FE4 /* checked.upb.h */; }; - 252E0D66EB8CDF80D2C7A7CE72E6226C /* string.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = C04C4C41919DDFD8256619CA343CF213 /* string.upb.h */; }; - 252F184E690A38BFAB62A488BD3BD732 /* frame_settings.h in Headers */ = {isa = PBXBuildFile; fileRef = D3617CAB29D76AC20D363E3887C98908 /* frame_settings.h */; }; - 253011D848E2934D05A7F9C2FFEE9161 /* extension.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = CCBED0E7B64E2480AF72F56A4A4DA665 /* extension.upb.h */; }; - 253AA3F9EB4EB2A40AAFA7A6FF334CD8 /* numbers.h in Copy strings Public Headers */ = {isa = PBXBuildFile; fileRef = E0E2C551A32FD85EDD5152E5EEA11059 /* numbers.h */; }; - 254471EC87BD5F6793A0D72DAB35B28B /* completion_queue_cc.cc in Sources */ = {isa = PBXBuildFile; fileRef = 55F11C5F7973DBA687B26BEF19DB834C /* completion_queue_cc.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 25476A7A01827B73E152CE927584E200 /* wakeup_fd_pipe.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = E12BA41198BA4031424EB611B0130794 /* wakeup_fd_pipe.h */; }; - 254F0A719D2A067BA9CC97C4249B8A53 /* token_bucket.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 82C9B6412B8932479735E94CC934DDCB /* token_bucket.upbdefs.h */; }; - 25557E83C1126C3A5C6D43B8D71CD966 /* def.c in Sources */ = {isa = PBXBuildFile; fileRef = 0C09B35EF0EA7DCC3DB8FDC30EF22EA6 /* def.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 2558381DA7AF453CC62FD6592E70FD76 /* load_reporting.h in Headers */ = {isa = PBXBuildFile; fileRef = 661CA9BDF111176627DB5C230CBCD051 /* load_reporting.h */; }; - 255A821B0895063A475C536E4D0D04C0 /* inlined_vector.h in Copy container/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 9BAB1D78A738E6B11192431A9C1C1EB4 /* inlined_vector.h */; }; - 25646DC1C9E7A4B96C01D03BD91C99A4 /* byte_string.cc in Sources */ = {isa = PBXBuildFile; fileRef = 73276BA2E2BB80FC5390223933E3BF08 /* byte_string.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 256C1B2EFA2EEA8A4629F283EF399F2C /* struct.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 31BB11A7E6D72A36B63D01368E38939A /* struct.upbdefs.h */; }; - 2585F20137FCA86F45FC3811B4524F87 /* macros.h in Headers */ = {isa = PBXBuildFile; fileRef = D81F43302CC5D354B4770DFE0448EB60 /* macros.h */; }; - 2589A503A9879C10580B20DA03C49D3D /* http_status.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 00DFA7E80F27D4F09FB74E5AEE1BE4C1 /* http_status.upbdefs.h */; }; - 2589D1965DD28E43C75614490C567679 /* sockaddr_posix.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 39D3E28102BBB1AF3E1D37D90C92A1EE /* sockaddr_posix.h */; }; - 25A8ABC0F5E3B30592903713D5A1C379 /* error.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = D0D12080D00C45CAB5B22C55FC74A193 /* error.h */; }; - 25AA1B4E86D0B2611CCED52851C1CB49 /* load_report.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = C4103AE6B7B3E375603532FB4A073D9E /* load_report.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 25BBDC54A7028D31D240AEA12B9A4F6A /* alts_counter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7717906D59E1D412A3D887E11C4B0D04 /* alts_counter.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 25BD342A26810E5DCD334A322E12988D /* udp_socket_config.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = D724F02EF09EE34EC463D3C411E9EA42 /* udp_socket_config.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 25BE22A2AAB74518207B55427F8A6A29 /* ossl_typ.h in Headers */ = {isa = PBXBuildFile; fileRef = 37AE5488268F3775770C2248293FA676 /* ossl_typ.h */; }; - 25BF49F0E3FCCBB380C04551A33B45A9 /* fault.upb.h in Copy src/core/ext/upb-generated/envoy/extensions/filters/http/fault/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = D596344E8F39FAF00FD3C8A5D2E4956D /* fault.upb.h */; }; - 25CA9CD59FCE5D6BAB2A97497CB2AF04 /* xds_transport_grpc.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2A6B9E5C5F11DB7BBE067926A33F97FA /* xds_transport_grpc.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 25D14F19B62E1AA9182E6ED6C5376A10 /* rand.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B8F111B82846B568159073F077790CB /* rand.h */; }; - 25D8CD1D759B6E7F9DB9149A0FDA1F86 /* cordz_handle.h in Copy strings/internal Public Headers */ = {isa = PBXBuildFile; fileRef = B79406B18FCC00F1BE74F82B2B71486E /* cordz_handle.h */; }; - 25DA765563D84F49AE982AE2E7D0A64C /* percent.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 41CD127B3C489332BA557C830355417D /* percent.upbdefs.h */; }; - 25EFF992C3668BD223FDF892A037A591 /* cluster.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 11346C016A41BB95CC7B9B15C0C25A0C /* cluster.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 25F4FA1DB594441A273E36B30DCEC3C0 /* context_params.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = AD066F04F8319E8B9845548928A99F15 /* context_params.upb.h */; }; - 25FB1E61087AD0E628D0548EBD24DD9D /* metrics.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 083654ED2F2CEBA320970FF6FB8267A2 /* metrics.upbdefs.h */; }; - 26200129B7D860762DD35CD3F8935236 /* listener.upb.h in Copy src/core/ext/upb-generated/envoy/config/listener/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 465C992A00DF734E450EA64547316D35 /* listener.upb.h */; }; - 2629660D10B021C85DE82E818509C63C /* grpc_ares_ev_driver_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = 20F734CF5F8A2EDB1B0DC83C8A4012CF /* grpc_ares_ev_driver_windows.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 2630AF0D526AB1DE86E1990D93CD7D78 /* buffer_list.h in Headers */ = {isa = PBXBuildFile; fileRef = 411E840D505791211DA2011F66A84A06 /* buffer_list.h */; }; - 263E654BACF3513EB9C711BF9069361F /* endpoint.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/endpoint/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 6303FB2E62D7556F5DB77DD3A5EC121F /* endpoint.upbdefs.h */; }; - 2652E40D852B89E1EE2B042F92873840 /* unix_sockets_posix_noop.cc in Sources */ = {isa = PBXBuildFile; fileRef = B2E7ED6487BCC2D9D79700D17624973A /* unix_sockets_posix_noop.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 26590B70CBC1652D6CF2777395A6FB2C /* message_compress_filter.h in Copy src/core/ext/filters/http/message_compress Private Headers */ = {isa = PBXBuildFile; fileRef = 1ECDEDF4C82FCA27BEA956A79DF33F9C /* message_compress_filter.h */; }; - 2661D057603EEA3B3FA2F3660454738A /* vsnprintf_compat.h in Headers */ = {isa = PBXBuildFile; fileRef = E844888B644DF497E4517D69113F6341 /* vsnprintf_compat.h */; }; - 266CF0635188928A6133DE4B1B959BAE /* xds_route_config.h in Headers */ = {isa = PBXBuildFile; fileRef = 2357F4805073EC8381563D69EF59E164 /* xds_route_config.h */; }; - 2678AD370BE5133723153900100F44A4 /* options.h in Copy base Public Headers */ = {isa = PBXBuildFile; fileRef = 24BA90FFDCA5A2EF40F57CAF3466DB8C /* options.h */; }; - 26AE8871EEF3E58E99603FA799EBA151 /* security.upbdefs.h in Copy src/core/ext/upbdefs-generated/xds/annotations/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = A8D2EBDBC6DB283DC7EDE9455670FED6 /* security.upbdefs.h */; }; - 26CADE986E4B93FD5051A6A38DBDC603 /* log_android.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4BA6BC4089EA085298C7D968A50DEFF2 /* log_android.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 26FED990194872686057463B3CA28397 /* fake_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 50364AA3C7DE7E4E42D2A8708F52F0D1 /* fake_credentials.h */; }; - 26FF072BED1FD98712A6F4F862485814 /* typed_struct.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 24ABC9D764EB1572F47819BB2E9FDC18 /* typed_struct.upb.h */; }; - 2719D8CDAF14878DA4A5635300473149 /* dynamic_ot.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = DF50BEC38AF2EC847F9659CCFED5AD89 /* dynamic_ot.upb.h */; }; - 2723E66D36E0C9CCE11FE8A905063574 /* prefilter.h in Copy third_party/re2/re2 Private Headers */ = {isa = PBXBuildFile; fileRef = 7F8F68011599A37679C69A6BC10FB9E8 /* prefilter.h */; }; - 272F7494AFAB86664BA369C62AF30FBD /* forkable.h in Copy src/core/lib/event_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 69710F8E722FA67AA07F795BFE22C367 /* forkable.h */; }; - 2748B2A8786D43F4C6BAF8FABE571160 /* handoff.cc in Sources */ = {isa = PBXBuildFile; fileRef = AB4AE245EC81A7D129C46D9AE9B81DF6 /* handoff.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 275A20821229A2CA4EF680F8DC0DEF68 /* dynamic_annotations.h in Headers */ = {isa = PBXBuildFile; fileRef = 49390ED3B202EAAD55CB4A2272AC14CD /* dynamic_annotations.h */; }; - 276BB4DA6A4FB1EC129297548B373636 /* bio_ssl.cc in Sources */ = {isa = PBXBuildFile; fileRef = D11EA877B7F2112C14CF9B28899F60D0 /* bio_ssl.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 277010596E4D4CE349A92E700E8BA6DA /* status.cc in Sources */ = {isa = PBXBuildFile; fileRef = 01B83F8319266F0CB5F003D7EE703C95 /* status.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 2780C543B21248ACF27C945D5BFDC9CF /* boringssl_prefix_symbols.h in Headers */ = {isa = PBXBuildFile; fileRef = A92B78475FEC0A38FF26D0B1326DDA4B /* boringssl_prefix_symbols.h */; }; - 278BED29FCFCCD9185AAD7E36380A639 /* atomic_utils.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = B224191A057319667DF0E6A1CBD7D0A3 /* atomic_utils.h */; }; - 27AE495C81069E36DDB1FDD60B773E58 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 890A94859AE094DAC6FF2DBDFC7E89FC /* internal.h */; }; - 27BAB5EF6DE66AEF77AAA4FAEF135F64 /* pool.h in Headers */ = {isa = PBXBuildFile; fileRef = C906C0D8C324DF20573A0BDB06754FEB /* pool.h */; }; - 27C983CBBDA03DA9B95BC625642295D0 /* scoped_route.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = A588888A7CBD9E880A3787089F49BAFD /* scoped_route.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 27E50E30874E93596F29DC303B402EEB /* ssl_session_cache.h in Copy src/core/tsi/ssl/session_cache Private Headers */ = {isa = PBXBuildFile; fileRef = F3C81E35007D1F699291632281EB5C27 /* ssl_session_cache.h */; }; - 27E89C10747476E26711614C429E34A1 /* patch_mutation.cc in Sources */ = {isa = PBXBuildFile; fileRef = 67D181297C71AC703F9DCC6B73E79FAA /* patch_mutation.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 27EEAD2AD45CBBBFB4D314D4210BAA4E /* error_cfstream.cc in Sources */ = {isa = PBXBuildFile; fileRef = 90B11AE02C7594A58A7EB5C514183147 /* error_cfstream.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 2803C15069786BFF50544B56769FA2FE /* ssl_utils.h in Copy src/core/lib/security/security_connector Private Headers */ = {isa = PBXBuildFile; fileRef = 164DBA11BE7F19B1765886A7011DDCD8 /* ssl_utils.h */; }; - 2808AB7FD3FC27335187EF953BDD10A2 /* config.h in Copy src/core/lib/experiments Private Headers */ = {isa = PBXBuildFile; fileRef = CA5FFAB144207DF2E74DC466FFCF6FB7 /* config.h */; }; - 280E26B35F40742DE6938DBF75CDE723 /* global_config_custom.h in Headers */ = {isa = PBXBuildFile; fileRef = A8E438A2D1EC2135495CEE14C1854BAA /* global_config_custom.h */; }; - 28106CAE3C2DABF2A3D0C99EB9A13AEA /* versioning.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 76ED2E2CD50298210F7EC0A1152463D0 /* versioning.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 2811DBAA1FBC2E0D547EF9273D9A9243 /* resource.upb.h in Copy src/core/ext/upb-generated/envoy/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = 5660127BA17F0342C2293D076477DE32 /* resource.upb.h */; }; - 281EE591AE66AA98F8FB69CED0D2F9EC /* a_bitstr.c in Sources */ = {isa = PBXBuildFile; fileRef = FABD292CA2CA606D8218B3D8C9894EB0 /* a_bitstr.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 281F4165C53FC53D7A1DB3803925A1C7 /* client_interceptor.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = F118631D1D347A3F4D5DBCCAB7258A89 /* client_interceptor.h */; }; - 28212C3E9653A24588AC43A537FBD5F1 /* aes.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 244E092A553497D1F248B5FB13893A07 /* aes.h */; }; - 28360371AC6A8E83AFFBC7449E78817E /* proxy_mapper_registry.h in Copy src/core/lib/handshaker Private Headers */ = {isa = PBXBuildFile; fileRef = 55B36CCF75E31146A3418F3C8397AEA0 /* proxy_mapper_registry.h */; }; - 28411696A877A3D9C41D09B76D3A309B /* FIRAuthWebUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 98F9361D778A28D472065DFD8ACF3731 /* FIRAuthWebUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2845592E9D9CB5B3BF3C11F52EE9A9CD /* json_util.h in Copy src/core/lib/security/util Private Headers */ = {isa = PBXBuildFile; fileRef = 121A4E59D9471F015794CB52DB461D07 /* json_util.h */; }; - 2852A71DA54E54C11D2F4C5E597287E5 /* intra_activity_waiter.h in Headers */ = {isa = PBXBuildFile; fileRef = 909BD7402DFE6D0D50EF17F47E6FD290 /* intra_activity_waiter.h */; }; - 285895EAE8524ED4A82A281FEE1AF579 /* path_transformation.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = C70DE610B652B0BC84B7971098EA83C3 /* path_transformation.upb.h */; }; - 286553151595FF0230A09DDF5F38B5F6 /* evp.h in Headers */ = {isa = PBXBuildFile; fileRef = 3AB2D2578787D1977C2A086623DF4E6D /* evp.h */; }; - 287232145125209EB88D98138C0B844E /* executor.h in Headers */ = {isa = PBXBuildFile; fileRef = 38A1DCA3064BA8F96D1E9127F712BDA3 /* executor.h */; }; - 287AF6600FA5E09784D10690CC5771D4 /* tls.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = A174B32346BC7E5E49B52038764DE210 /* tls.upb.h */; }; - 28844BA95A2A3D055C93770ADFB2660F /* table.h in Headers */ = {isa = PBXBuildFile; fileRef = 487BA1CB8FAB8A6FD229DD996EF9AB9A /* table.h */; }; - 289073842B30E1931760818C9BEDAF4A /* http.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 6639E77A5114D12B8C11237BB1CE9F7E /* http.upbdefs.h */; }; - 2890D6622D22855D476BBB74A730A889 /* alts_grpc_integrity_only_record_protocol.h in Copy src/core/tsi/alts/zero_copy_frame_protector Private Headers */ = {isa = PBXBuildFile; fileRef = 9B902B5BE988BB8142472BFF9824BC4E /* alts_grpc_integrity_only_record_protocol.h */; }; - 289F924E53CFC2F6A1455527D0B307F7 /* mimics_pcre.cc in Sources */ = {isa = PBXBuildFile; fileRef = CB4F32F184CF0D27310BF47688F7BACE /* mimics_pcre.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 28A7C748446015789D74182BC0AB9DBF /* xds_cluster_specifier_plugin.cc in Sources */ = {isa = PBXBuildFile; fileRef = C36E642798AFAFA1CCFCE10AF5268803 /* xds_cluster_specifier_plugin.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 28AE52D2747008869744BAB98FB3937F /* udp_socket_config.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = C1CA4D9AB57BCCF6939312976EB4046F /* udp_socket_config.upbdefs.h */; }; - 28BF48AE8594AAAAAE4476FE52E25E65 /* client_load_reporting_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = A861397642F26D9B3A2B8A8734D25B2F /* client_load_reporting_filter.h */; }; - 28BFEC91F949A42EBDF64B3B474793DE /* executor.h in Headers */ = {isa = PBXBuildFile; fileRef = 6AEEF1079C748B1A1D312DF8A4AC1AE0 /* executor.h */; }; - 28C1420B942E1E43191159FCA466F0B3 /* table_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F1852BA1E97745C409E9B029D50E8FA /* table_internal.h */; }; - 28C3C339A23E9597D336258B1C9A26AB /* uniform_helper.h in Headers */ = {isa = PBXBuildFile; fileRef = 96E82519BC47272FA3E2117D8958D8AA /* uniform_helper.h */; }; - 28C554E84B197C1A48D2B54BD92F2474 /* sensitive.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 889D49C30222A0127ADFF219895821BD /* sensitive.upb.h */; }; - 28C846B2157061EA45E3F01121DD5368 /* utils.h in Copy src/core/lib/event_engine Private Headers */ = {isa = PBXBuildFile; fileRef = F9AF8D57E2EBDD88C22CAF0527AE5DEA /* utils.h */; }; - 28CAA024A2B0C6D98075780EEA32B4E8 /* metrics.upb.h in Copy src/core/ext/upb-generated/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 523794809B51B648FD57064BA081DC90 /* metrics.upb.h */; }; - 28D144829ADC2F3592C85EEE11CA69E7 /* binder_resolver.cc in Sources */ = {isa = PBXBuildFile; fileRef = FFF5B3524AE72B6D9F6F447FA0DDDFA5 /* binder_resolver.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 28D17BDAFAF828855335EAE7C46C691A /* simplify.cc in Sources */ = {isa = PBXBuildFile; fileRef = C21A7FEE31E6587E7339326CDF570EE9 /* simplify.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 28D436AF187D58780E8C57AE04F48545 /* health_check_service_server_builder_option.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D26254D99475D263C91C35A23C96262 /* health_check_service_server_builder_option.h */; }; - 28D4745FB87A957C26FA46DC88A94E22 /* subchannel_list.h in Headers */ = {isa = PBXBuildFile; fileRef = 00609AE4E4C3184533D744B9A30CC431 /* subchannel_list.h */; }; - 28E18CA3D4210ECF2FD1E80A43BA7592 /* xray.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = A0E28086AF387A070B6E22BC4E0C2A86 /* xray.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 28E6B5A47170A902AFD75BAB1CBA6895 /* flow_control.h in Headers */ = {isa = PBXBuildFile; fileRef = A106A8FB735171799A9E7BD055E14D43 /* flow_control.h */; }; - 28F433FDEA13684030FFA44B62CF67D9 /* pb.h in Headers */ = {isa = PBXBuildFile; fileRef = 821137577DAEA4C7075A7C045529E49A /* pb.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 28F55515508FA602CF679E91FEB3F8BD /* FIRListenerRegistration.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2A443F4D337DBD49A78521A00D970EC5 /* FIRListenerRegistration.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; - 28FCC60EBE745CCD0B4B1714F4E04099 /* log_severity.cc in Sources */ = {isa = PBXBuildFile; fileRef = C1767C24E8B45DA6D9E61647C9E391C8 /* log_severity.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 28FDB15489FA50FC923DEB1D7F9A1ED9 /* polling_resolver.h in Headers */ = {isa = PBXBuildFile; fileRef = 71F44072C383AE765E4AC606419FE99C /* polling_resolver.h */; }; - 290830254BF61D5F34A8FE124B2F90BA /* message_decompress_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = C18E5DC69D465D64F2FB51DD2D29CECC /* message_decompress_filter.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 29098143AAD2C59F74E98B4B713181E3 /* tsi_error.h in Copy src/core/lib/security/transport Private Headers */ = {isa = PBXBuildFile; fileRef = BEF81379C1125C914DABE47F631A3E5B /* tsi_error.h */; }; - 292EDFDF632F4531A1B0052B8DBD1F24 /* flow_control.h in Headers */ = {isa = PBXBuildFile; fileRef = AF10B33C822A9966AA391F128E3E64CA /* flow_control.h */; }; - 294193CD2BBF50AC6EA3675193A68B48 /* FIRAuthStoredUserManager.h in Headers */ = {isa = PBXBuildFile; fileRef = CEA4E8111655C0795A3AB6C9051E1847 /* FIRAuthStoredUserManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 29453E18E3C6AE473101576C6CB3A3C0 /* http_status.upb.h in Copy src/core/ext/upb-generated/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 746B021D9784A2252490A4C64CC51995 /* http_status.upb.h */; }; - 294623AB8222F3444452CAFED25D1EDB /* status_errno.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7F260F31E641E952A5E954B4FE17B822 /* status_errno.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 294CC1BA7F8FA672125F905E46933655 /* cordz_update_tracker.h in Headers */ = {isa = PBXBuildFile; fileRef = 2CD0F3AEDFF9D0F52F0CD48386F44BF2 /* cordz_update_tracker.h */; }; - 294DA9A192EC5272AF5EA979189C192E /* FIRUserMetadata_Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 54AB70879F3962A9188A1875D333A5B5 /* FIRUserMetadata_Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2960FA6E3925898E9EF43D581F67CA75 /* test.h in Headers */ = {isa = PBXBuildFile; fileRef = 017A1CC21502A56709FACABB0263B6F1 /* test.h */; }; - 2964934DE8AFF21AF1C8701C3C613672 /* url_external_account_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = F70D4DDD4E03477375B2623017F8D993 /* url_external_account_credentials.h */; }; - 2966A7F959440FFE0C2E2998D67AA077 /* FBLPromise+All.m in Sources */ = {isa = PBXBuildFile; fileRef = 1FF793B9627F482170B778D0008FA182 /* FBLPromise+All.m */; }; - 296A7D84DE2D215EA55C21F0B1C6FCC8 /* insecure_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 77D42D6840037D4539C5FF947541197C /* insecure_credentials.h */; }; - 2979C8D25564BE37FD7AF88B016025C1 /* FIRSecureTokenRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 0914BC8906B234A1BB722E25A834DC2B /* FIRSecureTokenRequest.m */; }; - 29826125B545F2B31E47F92F3B351D9C /* stacktrace_config.h in Headers */ = {isa = PBXBuildFile; fileRef = 22B3497FF0239A23460FD10F6FFB3AB4 /* stacktrace_config.h */; }; - 29894954DDB3F1E81FD42647C24E2B77 /* global_config.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = E0510B678915413BEE59D289B8272894 /* global_config.h */; }; - 29961C9E53DA6F18797F6382B7A7DAB5 /* stat.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 6EFDBF5DA1A166873F6C081E2010E6BB /* stat.h */; }; - 2999BD051F02E3C982CAFBAA1FE51771 /* cord_rep_btree_reader.h in Headers */ = {isa = PBXBuildFile; fileRef = 59B0AF343FAA29A9C7CA47B8E3C375A8 /* cord_rep_btree_reader.h */; }; - 29AD0D3EC70BE8B69283F9D81BCAC320 /* time_util.h in Headers */ = {isa = PBXBuildFile; fileRef = 22301206311EA22AD5A3ADF53892E791 /* time_util.h */; }; - 29BB0E4A333854B93F4B229B411F8C01 /* check_gcp_environment.h in Copy src/core/lib/security/credentials/alts Private Headers */ = {isa = PBXBuildFile; fileRef = 398DB00B926B8A795F11AA30BB9744C1 /* check_gcp_environment.h */; }; - 29BE50D6824D64A5B1085CCD98C8F72A /* timestamp.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = C2F7791B7CDFEC5662CD6A4FAEAC3055 /* timestamp.upbdefs.h */; }; - 29BE8F9A954B4EDF798097CCF9D4DA35 /* typed_struct.upb.h in Copy src/core/ext/upb-generated/xds/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 781A9EE810CA2662BE472692A5214E8B /* typed_struct.upb.h */; }; - 29C9FC0DED431DA2D4A524536D7BCD34 /* decode.h in Copy third_party/upb/upb/internal Private Headers */ = {isa = PBXBuildFile; fileRef = F520AAA3206BD5E98CAE1F4221BDC63A /* decode.h */; }; - 29E19B978856762817806A6C4E2D7D89 /* FIRAppCheckTokenResultInterop.h in Headers */ = {isa = PBXBuildFile; fileRef = A4E0F0C61DAC9CA7ADFFE5630F048666 /* FIRAppCheckTokenResultInterop.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 29E3BFD527F564039175BD1004B96FF2 /* health_check_client.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D552113FF9E586AB23A27E8E4EFB64B /* health_check_client.h */; }; - 29E3FDBF0579966943AD37D30698A1B6 /* listeners.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = E293A05816875A96AB28A6A0F0963823 /* listeners.upbdefs.h */; }; - 29EA5BB052B7003F9E43919613BC73D0 /* service_config_channel_arg_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = D8C03E0DE47940C09661BE8868F5A062 /* service_config_channel_arg_filter.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 29F4F3F9382BA4BB3AD79AA4B6A38E8F /* time_zone_posix.h in Copy time/internal/cctz/src Public Headers */ = {isa = PBXBuildFile; fileRef = A2FBB82FC4992CA4C6AD9D537DDBB59A /* time_zone_posix.h */; }; - 29FDF510DACBCE2AE28292AB675FA7C0 /* health_check.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = CE8D67FB0C068057B70161D489B5E496 /* health_check.upb.h */; }; - 2A00BC6F27211E0EDFB1E4FFFFBF4EA6 /* unix_sockets_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C1845A415116CF020FD93791AEDD185 /* unix_sockets_posix.h */; }; - 2A160B78AE0443F61D7437EC18945735 /* lightstep.upb.h in Copy src/core/ext/upb-generated/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 3D2E7E57DF93DAE54FABFA6DEA74E15B /* lightstep.upb.h */; }; - 2A1BEBC6A71D6D8EE6D36E0BDD9D30AD /* d1_both.cc in Sources */ = {isa = PBXBuildFile; fileRef = C1E64045A9C855533FA67EA5CBB232D8 /* d1_both.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 2A28CB7C6BA6AC5FB5CF8D5F013CBCAF /* zone_info_source.h in Headers */ = {isa = PBXBuildFile; fileRef = B0B59AFDC6C12D9FA86D8AA989D3C521 /* zone_info_source.h */; }; - 2A2B2C9A7291F4D8C882E127A3D6E4E5 /* api_listener.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/listener/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 7EC3E788B98B48709CD46214BEF89B27 /* api_listener.upbdefs.h */; }; - 2A2C77144D217B59EAF854945E007588 /* lb_policy.cc in Sources */ = {isa = PBXBuildFile; fileRef = BF86619C004700FB0949C3F9EDA23A9E /* lb_policy.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 2A3C5D3A1C159FEC3811E2510A23A406 /* resolve_address.h in Headers */ = {isa = PBXBuildFile; fileRef = B1A0FBFBAFCD557B8C8791CCFE1AADD2 /* resolve_address.h */; }; - 2A4792614D9646077A64E0EDBF545F69 /* alts_security_connector.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F9676DFBB10CF6E003DE27398F7901B /* alts_security_connector.h */; }; - 2A5124BA246FB0250924DE33F58F09DA /* altscontext.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F9A4FE4ADAB11BFF4D07BDAC28193BA /* altscontext.upb.h */; }; - 2A52EF88BA25B36B3257D7B217C4DD5B /* pollset_set_windows.h in Headers */ = {isa = PBXBuildFile; fileRef = CCC58D8BC16C091215A5A467E37379FF /* pollset_set_windows.h */; }; - 2A5D577BF7C61D1E700898279BB240B1 /* throw_delegate.h in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 8465EF2068ABF85475AE2C2B2E95FBCA /* throw_delegate.h */; }; - 2A746110007B9AAC5CE86B9360AD2154 /* validate.upbdefs.h in Copy src/core/ext/upbdefs-generated/validate Private Headers */ = {isa = PBXBuildFile; fileRef = 3E4BAFF6F02A834FB12A45458BEC9303 /* validate.upbdefs.h */; }; - 2A763C292724E5FEBD32CB0065138218 /* int128_no_intrinsic.inc in Copy numeric Public Headers */ = {isa = PBXBuildFile; fileRef = 03CE50D6563B82561D831B251B9E65D3 /* int128_no_intrinsic.inc */; }; - 2A8470C8EB113DEE482E9ED1761A00CD /* deprecation.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = DB3815E8FB98651CA91C5C3E9A37387D /* deprecation.upbdefs.h */; }; - 2A8BCDBE38CDC15025251B6AC93C49B6 /* route.upb.h in Copy src/core/ext/upb-generated/envoy/config/route/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = D45D22553C3851EB16BA74482301FA4C /* route.upb.h */; }; - 2A8C5AEC1B64F670F59BAD514FAC91CE /* bn_asn1.c in Sources */ = {isa = PBXBuildFile; fileRef = D69EEF42A61B477CED29AA2AE5C2809B /* bn_asn1.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 2AA625FBBDB2615C0E09527087CB5F9F /* route_components.upb.h in Copy src/core/ext/upb-generated/envoy/config/route/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 206FC3208C8924001449698166E3F536 /* route_components.upb.h */; }; - 2AACB7D01E1CCE7F279614E7C635E693 /* map.c in Sources */ = {isa = PBXBuildFile; fileRef = 2BCF8215E4EC3E538910C877778AFA4B /* map.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 2AD54EA457B2328451F50B1176CFD07E /* fault.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = E841734C707E2407CA03444C44E459EA /* fault.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 2AD89AAFB7DEA7731B3940DDF439E79F /* server_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = 66BE8DF3EC4C835B625C0E96B49E1971 /* server_credentials.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 2AE2DA938F11063B930AB683E9A52D3D /* altscontext.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D094DEAB2BA05B268581BC9C17415D2 /* altscontext.upb.h */; }; - 2AE64306366E2E92F6C0B872C2DD8B52 /* FIRAuthProtoFinalizeMFAPhoneRequestInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B3B45B67C989FAAE41DD5FDCDA593E9 /* FIRAuthProtoFinalizeMFAPhoneRequestInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2AEC2A0DDE4608BE593E529DB3A1E7CC /* udp_listener_config.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = CC5346AB4C544CA23E5DF78E30C5D807 /* udp_listener_config.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 2AEED858DF1CB5EB6AE050A488C5E519 /* hpack_encoder_table.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = BC4204713C26DB397A8AAC24089CC49B /* hpack_encoder_table.h */; }; - 2AEF1F868A7779F288C2701EE14B1204 /* overlay.cc in Sources */ = {isa = PBXBuildFile; fileRef = D32755048BC1DC73A90FB0E9EBCF54B8 /* overlay.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 2AF8AECAEC4E4FDCAC73F2ABE4155215 /* str_join.h in Headers */ = {isa = PBXBuildFile; fileRef = 8824A6B84FA98AC5943EF5B1ADC853C0 /* str_join.h */; }; - 2B022FC261BEF496389E8A8386D24C8E /* FIRAuth_Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = C24B3975446E3A9F4D166590847B0850 /* FIRAuth_Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2B0884277250376D6A654C3F37523BFC /* http_server_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = A8C4B1712BE80B5A9D88261EE2DCB11E /* http_server_filter.h */; }; - 2B08A8F1A72287159144A11DCE1059DF /* xray.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 0CF05BC16C7BE6FE9772893C78E0FEA4 /* xray.upbdefs.h */; }; - 2B1AD45BEC3C2D2CD37A81213E28AF93 /* rpc_service_method.h in Headers */ = {isa = PBXBuildFile; fileRef = 01D027ED4A430C8DCB4AF625FA7089F5 /* rpc_service_method.h */; }; - 2B224EC90DF450ACBD7B1CAC802236C1 /* hmac.h in Headers */ = {isa = PBXBuildFile; fileRef = 325C32E742636F03939C351FC1830DD3 /* hmac.h */; }; - 2B2D908C65FB40531D05231341AFD0E0 /* FIRAuthWebViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 9D063408EDD751B2BBB099FF9994FD82 /* FIRAuthWebViewController.m */; }; - 2B3773F24D2759DB2FADF1AE8C41AB7F /* time_precise.h in Copy src/core/lib/gpr Private Headers */ = {isa = PBXBuildFile; fileRef = CE02D107B5C581A98AB1F9B66822C0B0 /* time_precise.h */; }; - 2B4117FBC544AA2E6DF3BBBF59A9A819 /* wrappers.upb.h in Copy src/core/ext/upb-generated/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = 5B685F791560C3DC98995CBC0FAE3369 /* wrappers.upb.h */; }; - 2B467DA0C064BE0C154595015741F53A /* symbolize_win32.inc in Copy debugging Public Headers */ = {isa = PBXBuildFile; fileRef = EB78ED5DC25B9D2E1D5497D7B62C1330 /* symbolize_win32.inc */; }; - 2B4B77CEE8DA9A66788356F2E573F8D9 /* tls13_enc.cc in Sources */ = {isa = PBXBuildFile; fileRef = C964136FA450E29CD17FC316B6B81186 /* tls13_enc.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 2B6C78B7903EFD264C741DD5FFE6E801 /* msg.h in Headers */ = {isa = PBXBuildFile; fileRef = 77A51F4925ECF7FF164BD21B92E5706C /* msg.h */; }; - 2B72CF4E7F6AEF6C4EBE380EEBB16F84 /* cert.upb.h in Copy src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 8C15C272B5C4DAAA2BE416AB48275ADC /* cert.upb.h */; }; - 2B765D56525968D1FFBE1385D1CE0A81 /* layout.h in Headers */ = {isa = PBXBuildFile; fileRef = 05218FB6CA186A4EF0EA1D5DCE406677 /* layout.h */; }; - 2B89D6A27F2FB53E05B5846B28089601 /* service.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = F03AB99DB75B087CA03DAE5446FE6764 /* service.upbdefs.h */; }; - 2B93F23AAC9B5697C8AF11D2FCDD35F3 /* validation_errors.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 759551F43C7E542874248022F236FC75 /* validation_errors.h */; }; - 2B96C44D6E27BB679BE38D281D33F70B /* traits.h in Headers */ = {isa = PBXBuildFile; fileRef = D01EF5D6975F05F6DCCE20E325E16661 /* traits.h */; }; - 2B974F238650D429DFD642E97D39A47E /* json_token.h in Headers */ = {isa = PBXBuildFile; fileRef = 4539744A379524A0BD27344ABCDCB411 /* json_token.h */; }; - 2BB960B1FA87DEF1C9A441E2F1FCDD89 /* rsa_asn1.c in Sources */ = {isa = PBXBuildFile; fileRef = A123F5437BA27AE9E439579D89B314BF /* rsa_asn1.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 2BCF0EEA4BACE1A7450A249370769A57 /* parser.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3FAEE96EAC5733AF3960575410373416 /* parser.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 2BD237BF4B1ECAFFB96FC485D2DF02E3 /* fork_detect.h in Headers */ = {isa = PBXBuildFile; fileRef = 443E99F27A9B6F2B778BB81A9F04D53E /* fork_detect.h */; }; - 2BD31AA3193EB2CA26CB55819C574D7D /* atm_gcc_atomic.h in Headers */ = {isa = PBXBuildFile; fileRef = 666C927E519CFBBC9CB01F7B0137F582 /* atm_gcc_atomic.h */; }; - 2BD6A05F25020F9D79CE25910FF2758A /* message_compress.h in Copy src/core/lib/compression Private Headers */ = {isa = PBXBuildFile; fileRef = 18645A2EFEF4D8BFB9451944F15E6A3D /* message_compress.h */; }; - 2BDF0D87C9435DA213620055DF13E313 /* utf8.h in Headers */ = {isa = PBXBuildFile; fileRef = FE9601343DBA66A3E6452AE34A8E9C22 /* utf8.h */; }; - 2BF7059D8006B97E4F72418ADBBC2A71 /* wrappers.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = D4BD039695D91B8F4568550A944C135C /* wrappers.upbdefs.h */; }; - 2C18FA65802216A229DEB8649830D8E8 /* init_dump.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 09EA71DD90F518445968BAF87D9DF498 /* init_dump.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 2C19430555D910C3C081365C8B8A24E7 /* orca.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = F633EB092FB1130E77B7D06D7F8C5E9F /* orca.upb.h */; }; - 2C1A7E619BB11F238A8057518F673598 /* resolver_registry.h in Copy src/core/lib/resolver Private Headers */ = {isa = PBXBuildFile; fileRef = 4CDE79020F08EFE07D8A5C7A08EB8F50 /* resolver_registry.h */; }; - 2C2527899539ADD75BE39FE92DA34A6E /* randen_slow.cc in Sources */ = {isa = PBXBuildFile; fileRef = A45272F65493ACA4073FD05BED34A1D4 /* randen_slow.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 2C374D4316B8C39002AB49AE4A9297D1 /* lightstep.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = EEBC5465EBE0C03BD5F5DADAD8169B15 /* lightstep.upbdefs.h */; }; - 2C4C35325B3C692920665C994C97C0FB /* str_split_internal.h in Copy strings/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 4D9AD7EB3568EDB85941E58DD7A083B3 /* str_split_internal.h */; }; - 2C592B9F0549C7A0D52EE109BEB1DFEF /* grpc_tls_certificate_distributor.h in Copy src/core/lib/security/credentials/tls Private Headers */ = {isa = PBXBuildFile; fileRef = 4C320D5290B6783F300E8614462C946E /* grpc_tls_certificate_distributor.h */; }; - 2C64F2EC92B8E1463C2AFA531DBD8B8B /* base.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 98911173E6D763FC2A1AE50A476ED439 /* base.upb.h */; }; - 2C77EE0AC1F7B4F55336C4F5D08DBA04 /* transport.cc in Sources */ = {isa = PBXBuildFile; fileRef = 556F3182402F68F408EA0C94B7CE40DB /* transport.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 2C7824990696DB27D6B62B0D2D02010C /* xds.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A77CACF24E2E68E9FE8D4A93DF64164 /* xds.h */; }; - 2C8218CC375A2ED7F3B3381911E7C328 /* a_strnid.c in Sources */ = {isa = PBXBuildFile; fileRef = 6EF89D92821E1E6ED51825B51B320284 /* a_strnid.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 2C95AFF9020F19F6D8398B6A6C7D1DF4 /* any.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 1CD401271C3860EF454268A51B4C91FC /* any.upbdefs.h */; }; - 2C9F6C82142B5CAC9B181FD889366950 /* FIRVerifyCustomTokenResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = BC86C4E961F3098D19E20F9CEEC62726 /* FIRVerifyCustomTokenResponse.m */; }; - 2CAC0BC3532655CA613C5140B78CAAC0 /* inline_variable.h in Headers */ = {isa = PBXBuildFile; fileRef = A3B6B704338E1D9AB7E752CFB91F4C63 /* inline_variable.h */; }; - 2CB4D8E916B020DA080AB063D063B8D6 /* prefilter_tree.cc in Sources */ = {isa = PBXBuildFile; fileRef = B28FBAF2D85D461314A6D7B1558FE22D /* prefilter_tree.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 2CB4E91C60388162758C614DAC3C0EEC /* interceptor_common.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = D70F9BCB20D2D297FE29FBD3FA60BDB2 /* interceptor_common.h */; }; - 2CBCEEECB23259DF910E27BFC386C8EB /* lb_policy_registry.h in Copy src/core/lib/load_balancing Private Headers */ = {isa = PBXBuildFile; fileRef = 0DD1E48A70177D9B7B939D8AFB93066F /* lb_policy_registry.h */; }; - 2CC7E7D44AE02142631C9EB2B7CA8CE0 /* parsed_metadata.h in Headers */ = {isa = PBXBuildFile; fileRef = D75CBA9AA71EC8444D8E502366C231E3 /* parsed_metadata.h */; }; - 2CCB89F55A520210394F6C2FB89F88F9 /* raw_hash_set.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B99E72B942642C3141EA4555B2D804C /* raw_hash_set.h */; }; - 2CD1F947E68434BD9BDD0722CC99A0C2 /* FIRFinalizeMFASignInRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 7E9624EA43F21CC24239E900ED7689D8 /* FIRFinalizeMFASignInRequest.m */; }; - 2CD215F457B27BFBD25709583B694314 /* alloc.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = 0B8DF3E2F22B6B008556B1DD76AD00F4 /* alloc.h */; }; - 2CE1286AC7C4A108CF5635DFF5F256FE /* versioning.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 17485351CF313B46A05549E8FD2DC7DA /* versioning.upbdefs.h */; }; - 2CE201F3AC6A3AE6749B0D42D6C6A9BC /* certificate_provider_registry.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9DBC0EE54F9A78A83BA87BFA1B6FB680 /* certificate_provider_registry.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 2CFDC3AC3393619B446976FF57F98733 /* iomgr.h in Headers */ = {isa = PBXBuildFile; fileRef = 7DFD1FD2827DBEFDD11DB028326CEBAD /* iomgr.h */; }; - 2D0160192619159ACF30FCFF1B7EBC25 /* crc32c.h in Headers */ = {isa = PBXBuildFile; fileRef = E04D0699A741420496FFB8D186AB8A07 /* crc32c.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2D128BFEDB853BF2C7A9B8B5670E531C /* resource.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = 0CFA724637CB489D5E948BA722221A43 /* resource.upbdefs.h */; }; - 2D3145C4D1E68F1CF6BD9C94A20A66BD /* x_req.c in Sources */ = {isa = PBXBuildFile; fileRef = E022695BE2169CDE9B21D45337106BE1 /* x_req.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 2D3204837BB47476C42F2903D9E01443 /* bitmap256.h in Copy third_party/re2/re2 Private Headers */ = {isa = PBXBuildFile; fileRef = 056BF016156B3FBB28C6A4BC43BE4099 /* bitmap256.h */; }; - 2D54BAF9A24AE90562D5F85B3FF60BC8 /* datadog.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = A20142CF651CE7EB218D259ACC1A0602 /* datadog.upbdefs.h */; }; - 2D55637E5A2F7302E43C322B07920A95 /* protocol.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 0FF54C24FCA429B0CD45ABFA725B27B1 /* protocol.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 2D5F196ED959820AC19ACBA6ED70020E /* dns_resolver_selection.h in Copy src/core/ext/filters/client_channel/resolver/dns Private Headers */ = {isa = PBXBuildFile; fileRef = 2073F50B0FAF1F4D0E37DE1766BDCB54 /* dns_resolver_selection.h */; }; - 2D6488FCB3A813824774B48672E72304 /* metadata.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = CD7EBF5FB7364063B984A7B4471F6301 /* metadata.upb.h */; }; - 2D907781AAB296587D70A79C71755821 /* pollset_set_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = FF7572C0D633D81B8EB3959C7489B056 /* pollset_set_windows.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 2D953EC55CF99C9114BF94FCE8D24DCF /* xds_certificate_provider.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 28A15E10BAACFA7CBF7DE5D45A81919E /* xds_certificate_provider.h */; }; - 2D9C0997B81CE21E2D04BD39472C9BF3 /* nonsecure_base.h in Copy random/internal Public Headers */ = {isa = PBXBuildFile; fileRef = E4884CAB7203FFDAF568C34AF1228BA8 /* nonsecure_base.h */; }; - 2DA356E1EA9C2C3F737F34EF6B671155 /* resource.upb.h in Copy src/core/ext/upb-generated/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = E22400E2C3B291528F27D2FC946B3B9A /* resource.upb.h */; }; - 2DA618756B84B5DCB8ABDB1B80FB7231 /* seed_gen_exception.h in Headers */ = {isa = PBXBuildFile; fileRef = D2A15356298BCB0D3A917E36B5EA7370 /* seed_gen_exception.h */; }; - 2DA87657BDD4B210EBD27D4652F56FD0 /* string_view.h in Headers */ = {isa = PBXBuildFile; fileRef = B42D3C0B1482F30DD407F98E931ABA41 /* string_view.h */; }; - 2DBB7B3E9336A8BAD8AE7F24CCAEFF3C /* listener_components.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A6111432424CD3F01FD6FB5E3A39986 /* listener_components.upbdefs.h */; }; - 2DBD0591CCA058CFF60B9BEE4DB41543 /* migrate.upbdefs.h in Copy src/core/ext/upbdefs-generated/xds/annotations/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 042C092FB084ACFCBCA3250BE9F76EDF /* migrate.upbdefs.h */; }; - 2DBD90D430A7F109B826DA8A59434C67 /* FBLPromiseError.h in Headers */ = {isa = PBXBuildFile; fileRef = 65B152465368906722D6829E6B49574F /* FBLPromiseError.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 2DC06BF5161FD044FA0C82D1020957D3 /* err_data.c in Sources */ = {isa = PBXBuildFile; fileRef = 923841783C0151DC50C1AED63E4909B0 /* err_data.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 2DC522CC32F2297D5349513D539DF27F /* tzfile.h in Copy time/internal/cctz/src Public Headers */ = {isa = PBXBuildFile; fileRef = 1023D207CA9A892BC0F1ADF3F866AC62 /* tzfile.h */; }; - 2DC722925C47CD1F34001476AC6E7323 /* credentials_generic.cc in Sources */ = {isa = PBXBuildFile; fileRef = 481EBC83D9774AEA967E2C144AD5698A /* credentials_generic.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 2DC8709A744E95CB5F9E5E6492042403 /* pollset_windows.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 6F81FF239BF2881CBED9B53AF5145E5F /* pollset_windows.h */; }; - 2DCA6932F61B1B159351C99A3ED95AF9 /* FIRPhoneMultiFactorAssertion.h in Headers */ = {isa = PBXBuildFile; fileRef = 997F156319E448AC0DC82F7CE2DF5C4A /* FIRPhoneMultiFactorAssertion.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 2DCC844D29F239EEB59F9DDC39C48ED6 /* global_config_generic.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = DE39FD8649367557E651B574AE32E4BD /* global_config_generic.h */; }; - 2DE27B428A473AA2E604FC608258B047 /* typed_struct.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = A0E95C733269FFF7CEFEAC57EE5F5AEA /* typed_struct.upbdefs.h */; }; - 2DE3D5A43FFC78B432ECEED1B191E750 /* resolved_address.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 352F9E41B868B9B610A5B0D14B6A34F5 /* resolved_address.h */; }; - 2DE3F6B7271D752A4E770C63BB301F37 /* buffer_list.h in Headers */ = {isa = PBXBuildFile; fileRef = D8291D10622727BF5085FBB44D8D3A1E /* buffer_list.h */; }; - 2DE96DCE0B18805FF89A93584D47165F /* grpc_library.h in Headers */ = {isa = PBXBuildFile; fileRef = 955582FAC5286853B8BA2A661AA785BD /* grpc_library.h */; }; - 2DED0F00A954C3D4A190A4DCBFAE67D7 /* FIRPhoneMultiFactorAssertion.m in Sources */ = {isa = PBXBuildFile; fileRef = 7668CEE5CBA5BCDE91A5DC73C912562E /* FIRPhoneMultiFactorAssertion.m */; }; - 2DF031137767DEB1D1B93CDDDF3A6204 /* packed_table.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = B741B5E1D0A54476A498636D5106EC42 /* packed_table.h */; }; - 2DFA71F9917FFE5B9473B32A1143DCAF /* FBLPromise+Reduce.m in Sources */ = {isa = PBXBuildFile; fileRef = 79709D5E1343CAC8CC88A7D66F06F15D /* FBLPromise+Reduce.m */; }; - 2DFE77AE983E9527D042F655B6B0B302 /* quic_config.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 4503E8A7899D86D8E705BCA82EAEBC4C /* quic_config.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 2E05BECFD28992CEA7C68F830D8B5B3A /* grpc_completion.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0F056D0C31F69C2B7C1EA6E245ECE2C6 /* grpc_completion.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 2E1FEE5502FA52901C28A0F03DE609AD /* scrypt.c in Sources */ = {isa = PBXBuildFile; fileRef = 5E1843A17296FD38C7D38AD8FF0FAC5D /* scrypt.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 2E268BF126761B448D30FD784C716E1D /* transport.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = C2E088B258034C4DDF834BD794150DC7 /* transport.h */; }; - 2E29F144997223594A05A10908C341D6 /* common.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A0CCD0F14D2B262C384C2A7A09C71BB /* common.upb.h */; }; - 2E2EC998B6995458AE9DED86D81B30BE /* byte_buffer.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 8FAADD74A4CEAAF0041BBE766FF7D54D /* byte_buffer.h */; }; - 2E3B8B9623E91585E9A8C738869BE495 /* common.upb.h in Copy src/core/ext/upb-generated/envoy/config/tap/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 0A0CCD0F14D2B262C384C2A7A09C71BB /* common.upb.h */; }; - 2E430BE558D878700A3384CCE7BBF361 /* fault.upb.h in Copy src/core/ext/upb-generated/envoy/extensions/filters/common/fault/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = B4644D5212C8676DF04A9B175EBF659D /* fault.upb.h */; }; - 2E4AA68502701E9327DE6B84F0A47AEA /* collection_entry.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 5570AB8FE5E3E47A62CC39563159EFE8 /* collection_entry.upbdefs.h */; }; - 2E54AC9416D824FE5FF19565D2A2E68E /* sysinfo.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7800076DC8BACF12725A116059C93253 /* sysinfo.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 2E5904081FA45A6D9C0B78AA64EA23F3 /* tasn_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 76FE6D3EF6BB0D862242967671862EF8 /* tasn_dec.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 2E5E346E9A1892187526522F37A193B8 /* base.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 81EF8E3FD3C08D9097FE26B2804BB630 /* base.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 2E6299DB825DF694D8CF4135D223D39A /* reflection.h in Headers */ = {isa = PBXBuildFile; fileRef = 5144E0B838F00F833911BAAFAEE6D784 /* reflection.h */; }; - 2E641476DF7110DD1B1EC3215058DB94 /* outlier_detection.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/cluster/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 0F618F5684F180033349C90FCDC87A68 /* outlier_detection.upbdefs.h */; }; - 2E6C882D6CF534DAB8B2FF596EE9D3E0 /* status.h in Headers */ = {isa = PBXBuildFile; fileRef = 1844EBE4FC14781156F8093B134BFFD1 /* status.h */; }; - 2E764B6576463408B25F7CFDCBA76D6D /* empty.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = 03A8FEA26C43557304E9347251306D00 /* empty.upbdefs.h */; }; - 2E786DDFEBDA81EFB572D7985B2BBFBE /* token_bucket.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 0DA72163BFFE545A8CD1251DACC2E4B8 /* token_bucket.upbdefs.h */; }; - 2E7F4C78F621FAEAB52F87C9768FCB7C /* urandom.c in Sources */ = {isa = PBXBuildFile; fileRef = 2860503C26A5DA2F0B1A219480BABDE1 /* urandom.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 2E81774258298375303F9B97AE96EBFC /* cordz_statistics.h in Copy strings/internal Public Headers */ = {isa = PBXBuildFile; fileRef = CCF241C45EC44BAF57F498C01A697084 /* cordz_statistics.h */; }; - 2E86B1DDC19085B69D9674578291E57C /* ev_posix.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 64A786F90353B5C190F0C469477587E4 /* ev_posix.h */; }; - 2E895AD0EE4CA17EF941BCD0046FBA26 /* subchannel_interface_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = E0793C1837002EA46022CE503C1FBC39 /* subchannel_interface_internal.h */; }; - 2E89710C386D99F7F15E23BABE9B4843 /* clock.cc in Sources */ = {isa = PBXBuildFile; fileRef = BBC953EDDD752A7AE8E97DFABA5D24CC /* clock.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 2E918DDE4F8743160C921EF72EAA8451 /* rls_config.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 52FCEA7EC52A43FDFEFFA090EF7DD356 /* rls_config.upb.h */; }; - 2EC6E222F8C115F517429EC58282E798 /* civil_time.h in Copy time/internal/cctz/include/cctz Public Headers */ = {isa = PBXBuildFile; fileRef = 39CA2812BFD62B232487F55ED0915306 /* civil_time.h */; }; - 2ECFB7757831C20716B0EDF668A42357 /* pick_first.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2BA606250839500CF6864FAC5B98EC3B /* pick_first.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 2ED447AE2C82DC4371BBAAF11C546C30 /* listener.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/listener/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = B6D9D636FF397C68E6B0CF8DEF9245C0 /* listener.upbdefs.h */; }; - 2ED92571C0B3A57DC2DE247EC7D1EEA8 /* descriptor.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = 57B9BF3CF08822683DDCABC109ADD823 /* descriptor.upbdefs.h */; }; - 2EDAED7CFC0FD5CD4748AB981016DD7A /* ref_counted_ptr.h in Headers */ = {isa = PBXBuildFile; fileRef = AB0542540352019915F6C28BB23262D4 /* ref_counted_ptr.h */; }; - 2EDD88E4B5A7EA2F6CA9575F8077381B /* FIRMultiFactorConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = B1DC38359A4C4E210408DCA124BECC3F /* FIRMultiFactorConstants.m */; }; - 2EE5ABEDC767D177361637E3C65E8DDC /* status.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/rpc Private Headers */ = {isa = PBXBuildFile; fileRef = 34F53D5BE1F3C538EB74CE713C2D673D /* status.upbdefs.h */; }; - 2EEC791DBE5F22B6C8B5FC45EDFEB3DF /* annotations.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E44BC60564F2559251179498E12EAA0 /* annotations.upb.h */; }; - 2EFBFE2388CCB4DC71C4201DA702F4C7 /* ssl_session.cc in Sources */ = {isa = PBXBuildFile; fileRef = 53BF0ACFA3332B5020ECC2862EE12B66 /* ssl_session.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 2F01B9EB3342EC9778E6CA57519B2872 /* url_external_account_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = 36148282188F1893905C3FDEEF53B382 /* url_external_account_credentials.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 2F07BB5810D75EE7B76C3A417D8899B2 /* backup_poller.h in Copy src/core/ext/filters/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = 30883659BB3EA13CFA7312B5A23F0217 /* backup_poller.h */; }; - 2F0CF8E2C7337D7219EB130342A303EF /* avl.h in Copy src/core/lib/avl Private Headers */ = {isa = PBXBuildFile; fileRef = B2DC7787F065075B8A2E11EA70C1C60B /* avl.h */; }; - 2F0EA0D2EFFFA658E75F5A2C8895F384 /* stats.h in Headers */ = {isa = PBXBuildFile; fileRef = 2DEFEFBC6DA2130ADB90992ADBA6042C /* stats.h */; }; - 2F22500F1B7E18F0658C903F9447A5F4 /* channel_args.cc in Sources */ = {isa = PBXBuildFile; fileRef = 74AE65ED474C08AC123856FE11F55035 /* channel_args.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 2F3220F2E7CFD83495B911A94F05DF1E /* murmur_hash.h in Copy src/core/lib/gpr Private Headers */ = {isa = PBXBuildFile; fileRef = 3AF63EDD6806BF6A876B63EA55CBA64E /* murmur_hash.h */; }; - 2F36B35572B100C8B307C12557B504DF /* wakeup_fd_nospecial.cc in Sources */ = {isa = PBXBuildFile; fileRef = 25D478F279D9CF329222F0B4E3DB8169 /* wakeup_fd_nospecial.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 2F3A5A9388C6F820361FFF997518B77F /* ssl_versions.cc in Sources */ = {isa = PBXBuildFile; fileRef = F4129A29BA2B97B2F876F1C716F738A7 /* ssl_versions.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 2F3B60BF27A7AC76BB306F160DCE8AB8 /* iomgr_fwd.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 8354E6BBB5B8A3E785119E033C2760AD /* iomgr_fwd.h */; }; - 2F441FF49E27B0AE782C42A1FF0C0FCB /* grpclb_balancer_addresses.cc in Sources */ = {isa = PBXBuildFile; fileRef = C9DF9AE9FE3593ADAB199CA826A3FCFF /* grpclb_balancer_addresses.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 2F47E1316AE35D2A374EB7B351D4056C /* FIRAuthProtoFinalizeMFAPhoneRequestInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 0A9FEE752CA6928AD0326A9F883D5086 /* FIRAuthProtoFinalizeMFAPhoneRequestInfo.m */; }; - 2F4A89E11A067DA68BAF2E4A599F8909 /* timestamp.cc in Sources */ = {isa = PBXBuildFile; fileRef = 66583862B20E51C44ABA6DF0559A62FD /* timestamp.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 2F55654C7688233B02FF0BF79B9B7843 /* huffsyms.cc in Sources */ = {isa = PBXBuildFile; fileRef = E48BC5EF1B8782C48B19D00F9027C36A /* huffsyms.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 2F6D830A040D272D96B4BBA4D298EFBB /* workaround_list.h in Headers */ = {isa = PBXBuildFile; fileRef = 9725ACBD4D543CB07FE0A3B3D941A259 /* workaround_list.h */; }; - 2F89451F38B5DE88E21E8BC43F9CB559 /* p256-x86_64-table.h in Headers */ = {isa = PBXBuildFile; fileRef = A7C76F815BA1ACCF51948FA141EE6306 /* p256-x86_64-table.h */; }; - 2F9BC54C17E8E993CFACA05CE37FF5F5 /* external_account_credentials.h in Copy src/core/lib/security/credentials/external Private Headers */ = {isa = PBXBuildFile; fileRef = E8BC8950CF0E6BF62C84F441193AB580 /* external_account_credentials.h */; }; - 2FAE967E380B475D2B4785E336F7CE0D /* status_conversion.h in Headers */ = {isa = PBXBuildFile; fileRef = B0D6BEFD9528010EECB07970CB425B0E /* status_conversion.h */; }; - 2FB011D3109CB53E5EEE17FDDAC782E7 /* timer_heap.h in Headers */ = {isa = PBXBuildFile; fileRef = 340B5E56498E6EF7492DAC663857867E /* timer_heap.h */; }; - 2FCC1BDE607CA65DE4DFFAC157E13EC5 /* mini_table.h in Copy third_party/upb/upb Private Headers */ = {isa = PBXBuildFile; fileRef = 80385C8C2256402D3B2A4EAB15E588F6 /* mini_table.h */; }; - 2FF3C0F987D4F78016F0B7D250C835DD /* rpc_method.h in Headers */ = {isa = PBXBuildFile; fileRef = 018EBBDF9E92975681447908246114B0 /* rpc_method.h */; }; - 2FFA70D66F7D66F9C02CF058E000D725 /* FBLPromise+Retry.h in Headers */ = {isa = PBXBuildFile; fileRef = 910FAB6E3C21C0E2C2674AC3C15DA542 /* FBLPromise+Retry.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 301FDB0A9B80F9C6960F138914EC6803 /* slice_buffer.h in Copy event_engine Public Headers */ = {isa = PBXBuildFile; fileRef = 4F0934EBA9CBCBBD3607760701C315AA /* slice_buffer.h */; }; - 3032EDF195E3780B045A01903EA3B1A0 /* slice.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = BB29A937E17D63490AFE0FC9C83EADFD /* slice.h */; }; - 3037EE69D7D8B5F8274ED6063078FB3D /* target_id_generator.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1A70DB7E797A2289D2EA4F62C1E14CDC /* target_id_generator.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 3038BFCF0B2AF5E22BCE3C4B3256D967 /* alts_credentials.h in Copy src/core/lib/security/credentials/alts Private Headers */ = {isa = PBXBuildFile; fileRef = A90CD0E35EB42BC9F1C27E7052F7765A /* alts_credentials.h */; }; - 30592A5EB9B54A507DEEE6E91BA2E215 /* ssl.h in Headers */ = {isa = PBXBuildFile; fileRef = 993AA317356A486F0CA104D0DE838092 /* ssl.h */; }; - 305BE9BD20B8DAE4AB8F30CA671572A1 /* load_balancer.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 96734CF1A7E306BD829CE1305ACC65EE /* load_balancer.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 309337D96C54354485D71878672DA459 /* cast.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = B03CB1DB20B18AA82985C8183F6E1764 /* cast.h */; }; - 309341AF266A1785C76FF702415FA900 /* overload.upb.h in Copy src/core/ext/upb-generated/envoy/config/overload/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = DC57842BE8C900E9F93A3705967815CC /* overload.upb.h */; }; - 30A0060F8B8BBAECB029B446129CF03E /* random.c in Sources */ = {isa = PBXBuildFile; fileRef = 061483508AA99914CAF8A34833DF920F /* random.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 30A8B2A7B94DAF6AD6ECDE93CD77980B /* grpc_security.h in Headers */ = {isa = PBXBuildFile; fileRef = FF37696428EE1051ADDBBD9AE3B8FEA5 /* grpc_security.h */; }; - 30B1BE0FC27681A2D496875C884ADA91 /* local_security_connector.h in Headers */ = {isa = PBXBuildFile; fileRef = 586943017A008DAFEAFE5AB044FEB5FC /* local_security_connector.h */; }; - 30BC3121C9BA05DCC4237F1255FCE756 /* pcre.h in Headers */ = {isa = PBXBuildFile; fileRef = DBE408820750FA7C8A0F46359A6DEE21 /* pcre.h */; }; - 30CC356F6204461411BFAC5BCDF2D0B6 /* v3_utl.c in Sources */ = {isa = PBXBuildFile; fileRef = AAE83E33C1AAF30615809B215BFFC870 /* v3_utl.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 30FA29FE5139C62B84AC767B706A8A42 /* method_handler.h in Headers */ = {isa = PBXBuildFile; fileRef = E8762939BDDE72BF12A981968EC8D732 /* method_handler.h */; }; - 30FDA6B73968ACBACAAE6A186750D717 /* ratelimit_unit.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 1518A275EF5F14FE540310B7DEAB1853 /* ratelimit_unit.upb.h */; }; - 310055657070CCAE1D213934CC42C843 /* channel_args_preconditioning.h in Copy src/core/lib/channel Private Headers */ = {isa = PBXBuildFile; fileRef = D3B31847D58BA8571768E446EC7B50C1 /* channel_args_preconditioning.h */; }; - 3102174C796DCF25A738EF3DF9602A83 /* bio.c in Sources */ = {isa = PBXBuildFile; fileRef = 4FC17DECA4A5369AB8660F9A127AEAA5 /* bio.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 31132810B7C37E75A3AA5666E4B42ECB /* port_def.inc in Headers */ = {isa = PBXBuildFile; fileRef = 122E87EF55AA4ADE54F922C772FDE9AB /* port_def.inc */; }; - 31170F212754E132B07B6041839F1258 /* sync.h in Headers */ = {isa = PBXBuildFile; fileRef = D241217DEE1757179523A5124F7785C3 /* sync.h */; }; - 31277802ECC8077ECCD027B49F99A7E0 /* fork_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = D73DAD8FF8C710E630817A5235D07290 /* fork_windows.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 31289015456EF688C8031ECF7539D58B /* httpbody.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/api Private Headers */ = {isa = PBXBuildFile; fileRef = E6E248615E4DCE3DCD24AC35677A4249 /* httpbody.upbdefs.h */; }; - 312A0FC88730331D478AFD0CA09A0975 /* writer.cc in Sources */ = {isa = PBXBuildFile; fileRef = FFAFC8C2618D263E14545259858C17E1 /* writer.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 3135A9BBE3CF4759D83CE89E7E3D340D /* generate_real.h in Copy random/internal Public Headers */ = {isa = PBXBuildFile; fileRef = A2FA0A77E1FA58E2684AEBD1111E43A4 /* generate_real.h */; }; - 3136F4C972E032FE85F924AFCD4CE9EC /* FBLPromise+Testing.m in Sources */ = {isa = PBXBuildFile; fileRef = 59D62B24DC860D53550EFABCF1159A6D /* FBLPromise+Testing.m */; }; - 31389C25B6B9A7D77F5A27C0E9D1FE99 /* raw_hash_set.cc in Sources */ = {isa = PBXBuildFile; fileRef = AACA6C35EF1C0FE17FA11109E6C36055 /* raw_hash_set.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 313B5E940C9D6B2D7FDB9E59F5A55999 /* block_annotate.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E73586FCC03ED1B3303A48E00AFF265 /* block_annotate.h */; }; - 3148A9A90CB466EED239BF05FF4AB1E6 /* threaded_executor.cc in Sources */ = {isa = PBXBuildFile; fileRef = 62BA6FE22AEDDAFDEB9C2B233BA1140A /* threaded_executor.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 314B2EBDCCF5336548136774E1246DAC /* status_code_enum.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = FA4A130BD4C04098FE57D03A2216FC10 /* status_code_enum.h */; }; - 3151259B453D8014EAAA7BF6FD408204 /* lightstep.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 70F9723A8FED976CF0866ADF9BD27168 /* lightstep.upbdefs.h */; }; - 3156D0BE8542CFAA10825724CEB07711 /* versioning.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = BE6F32D7B91C009D5CF7524E41EA06D1 /* versioning.upb.h */; }; - 315B0F8329543736500E9FF3F1297434 /* error.h in Headers */ = {isa = PBXBuildFile; fileRef = D0D12080D00C45CAB5B22C55FC74A193 /* error.h */; }; - 316654C22F962BBE71DA111D82650747 /* ratelimit_unit.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 839DD14D9ACEC67FBD86E1F203C200C2 /* ratelimit_unit.upbdefs.h */; }; - 3177E2CF2695B6498FBE6499CA8BD1C0 /* p_ec.c in Sources */ = {isa = PBXBuildFile; fileRef = F9E30025564CB9BE63DE329664C1B3A3 /* p_ec.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 317CB9D0F91E6C29CCFCC6D56B1BB460 /* dualstack_socket_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = C7E6AE563516302E113B94128B9B58E9 /* dualstack_socket_posix.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 318F19ADFFDA776FFF721B04F7DEB648 /* FIRSecureTokenResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 142764120D04DD908496CDD66BC02A0D /* FIRSecureTokenResponse.m */; }; - 3196C7E14448AED556A1D3D311BD1415 /* any.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 583427480B637D6CF0F3B433F4D15A7F /* any.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 319B6B4E4A245130AD97A11FDFE3A499 /* resource_name.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 70E75CFB34BB17695D4A4C128671B513 /* resource_name.upb.h */; }; - 31BD645BB113446B37A8FA08DFCB58DA /* FBLPromises.h in Headers */ = {isa = PBXBuildFile; fileRef = 2410B066B2D0EE6C2450765410C2ED56 /* FBLPromises.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 31BEDABF1A3B9F53567B8F488EFC1C6C /* str_split.h in Copy strings Public Headers */ = {isa = PBXBuildFile; fileRef = 88E3D434F82A78109CF36FE993070682 /* str_split.h */; }; - 31C47293C257A9363FC5F69C721EB205 /* metrics.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 083654ED2F2CEBA320970FF6FB8267A2 /* metrics.upbdefs.h */; }; - 31C4A692A728FEDB978F8A8C45A44F7A /* zipkin.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C9B8D4D905A6C0BBB20FB6A1F4DDA97 /* zipkin.upbdefs.h */; }; - 31D24F8FB79F8D8F4DB14F3575E76531 /* service_config_parser.cc in Sources */ = {isa = PBXBuildFile; fileRef = EA6A13B8B269F58F9B357025D0FA683A /* service_config_parser.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 31D3893A9E9CBB2F5C78611AC3C5D6C0 /* http.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 77560720BEAB55E6B81274E02C204A03 /* http.upb.h */; }; - 31D4CD9FB94434E616D32F5881262D9B /* stat_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 69D19C1DE663BB0048D8C3490C7293A7 /* stat_posix.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 31DECEDED6E13673F833C8B493D7FAD2 /* json_util.h in Copy src/core/lib/security/util Private Headers */ = {isa = PBXBuildFile; fileRef = 636A1D63408A7783FACE3FE5377D7D62 /* json_util.h */; }; - 31DF88B73C59A81FF7B60C0663A3A277 /* FIRPhoneMultiFactorInfo+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 22EFD129D2A12100994A98B6A31373F4 /* FIRPhoneMultiFactorInfo+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 31E566B119C2A41BD9BC1AC7D9B02E80 /* poly1305.h in Headers */ = {isa = PBXBuildFile; fileRef = 73754E1FF526269575ADF5D491D5B8D6 /* poly1305.h */; }; - 31E69DC3A15BB5FC9A4FF731562A5337 /* wrappers.upb.h in Copy src/core/ext/upb-generated/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = 4EF66996D48034F85009C251BDEB566D /* wrappers.upb.h */; }; - 31EB25D551A64BD9EBDA0298F08B8F01 /* message_compress.h in Headers */ = {isa = PBXBuildFile; fileRef = 18645A2EFEF4D8BFB9451944F15E6A3D /* message_compress.h */; }; - 31F162D2A36C1E73834F9238DACD3C39 /* wrappers.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = D4BD039695D91B8F4568550A944C135C /* wrappers.upbdefs.h */; }; - 31F304321A988D64045001E94B6721FE /* http_proxy.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7ABC93F7C0B3634CDFE0F89B7FA3638D /* http_proxy.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 31F3CB0538A9CF8261D6EA62B2AB9238 /* scoped_route.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/route/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 3DA01CEE16745AE7DAC47E0CF19A2D05 /* scoped_route.upbdefs.h */; }; - 31FBFA6B48496431282221222D07EECC /* regex.upbdefs.h in Copy src/core/ext/upbdefs-generated/xds/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 20755D82FC61D6246023D7BFFCCC5037 /* regex.upbdefs.h */; }; - 31FF62CF7DB3497D3E4673AE63A06F2A /* def.h in Headers */ = {isa = PBXBuildFile; fileRef = C6723A11E9B669C82AF46A31D55C16B6 /* def.h */; }; - 32005F4279AE179F3E33FDC5A810C542 /* grpc_if_nametoindex.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 3ADECC74F92D4955B7E72247A83B3768 /* grpc_if_nametoindex.h */; }; - 3228D5CC6814E7EC8DB313D08E489260 /* e_null.c in Sources */ = {isa = PBXBuildFile; fileRef = 2ED7BE3720E0AEBB34D3F05F7D1650D9 /* e_null.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 322D3860B865C96549201CA39B265357 /* FBLPromise+Retry.m in Sources */ = {isa = PBXBuildFile; fileRef = 2A4A215704866E10D9865AF9387F25FA /* FBLPromise+Retry.m */; }; - 323B1A4097285919E3ECD83F36AACD29 /* init_dump.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = EDCEE61CD3587D7EE03F0775F3CA9716 /* init_dump.upbdefs.h */; }; - 3242B47742600F906662F484F084472D /* FirebaseFirestore-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A28E301802200A3C88C7E891C07166F /* FirebaseFirestore-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 325605C45BA26F78E045D2BEC6950941 /* v3_prn.c in Sources */ = {isa = PBXBuildFile; fileRef = F5BA11E1B777B08457840889070680E3 /* v3_prn.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 3256CE096219C90937CE042CC713C779 /* blocking_counter.h in Headers */ = {isa = PBXBuildFile; fileRef = D3425A81FB60223CECC996993F26529C /* blocking_counter.h */; }; - 325E9823394874EB00EAEB88F0FBF5D9 /* context_params.upb.h in Copy src/core/ext/upb-generated/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = AD066F04F8319E8B9845548928A99F15 /* context_params.upb.h */; }; - 3260D45810FC6A469FEE348142ACA944 /* cache.cc in Sources */ = {isa = PBXBuildFile; fileRef = CEBEA58770D9B2070A1DD9E33285A678 /* cache.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 3268E8969C9341B71B4DE017F7A5D95E /* spinlock.h in Headers */ = {isa = PBXBuildFile; fileRef = E1623AD4E106EF42A12BE6F4A8926843 /* spinlock.h */; }; - 3279C1AF85885132B93A33C6E9559B11 /* FIRFirestoreSettings.mm in Sources */ = {isa = PBXBuildFile; fileRef = 55A215E2D6B46036FCB634A8ACFB2B75 /* FIRFirestoreSettings.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; - 3280FC526D996B3C2BE62FC1EFD9422A /* builtins.h in Headers */ = {isa = PBXBuildFile; fileRef = E0482393A4F4279E459D91A8753C5558 /* builtins.h */; }; - 328B0DA4E9E7053E23B1A30E39DB083B /* time_zone_libc.h in Copy time/internal/cctz/src Public Headers */ = {isa = PBXBuildFile; fileRef = ACD7B53A86A9AED4476EEF2050FD6B2A /* time_zone_libc.h */; }; - 32968FF364ADB819FC7396557AF1E675 /* ratelimit_strategy.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E07B9C1678C91623B18DB42D63B45C3 /* ratelimit_strategy.upbdefs.h */; }; - 32973017845214775D507D59A6EA86D6 /* hash_function_defaults.h in Headers */ = {isa = PBXBuildFile; fileRef = E9CBCA2F7CCF7873C235AA7517B87F08 /* hash_function_defaults.h */; }; - 32975A8A60AB2A7E92B039C615ADAB09 /* transport_security_grpc.h in Copy src/core/tsi Private Headers */ = {isa = PBXBuildFile; fileRef = CB6B0D80AB9EB7751551756893200FBD /* transport_security_grpc.h */; }; - 32A0A4D44ED8208360452352EC632D22 /* cord_rep_flat.h in Headers */ = {isa = PBXBuildFile; fileRef = BBCF11F07F1DAF832E2C1D292C30BD07 /* cord_rep_flat.h */; }; - 32AC7A81BA5DDB57DD87C6F841E4FF2B /* GULKeychainStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = 541E3899767A5FECBDF151A718D4B7B2 /* GULKeychainStorage.m */; }; - 32ACDE9E06FC359603541EE67AB5DFB3 /* tls.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = F5CB26C269447AD1FD0CC5F6254275D3 /* tls.upbdefs.h */; }; - 32B470D055C7C352A01F80BFC8E4090D /* FBLPromise+Race.h in Headers */ = {isa = PBXBuildFile; fileRef = 152D6F8B919BBC43A50DCDBFBB9DD0C4 /* FBLPromise+Race.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 32C75A54B0B6C12E6C5B83BBA63289CD /* secret.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = A6B67B5FA8091DDB641099C405597FFF /* secret.upbdefs.h */; }; - 32CDBE567D2E9A0CA981668767D09E81 /* status.h in Headers */ = {isa = PBXBuildFile; fileRef = DBDF4CEEAF4FED1108C9BF7202FFF23B /* status.h */; }; - 32E3A560EF6ECD5A8C46450690CCF571 /* hash.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B0CB9BD9E8170799B5A8DC24922CC8B /* hash.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 32E515AEFCB7A22BFB7EC3244DB129CE /* status_util.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F15E1B830E7FD883854BD8E644F068D /* status_util.h */; }; - 32E5752545643F0C19F531F1A2E3C786 /* prefetch.h in Headers */ = {isa = PBXBuildFile; fileRef = 80AAAF09ABB2AAA0D3DFFDBB21E4F4AF /* prefetch.h */; }; - 32E64EAA6A0F58183BFE1B83044DE6F9 /* sensitive.upb.h in Copy src/core/ext/upb-generated/udpa/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = 60103051EB2FC1ACA6744A519E613995 /* sensitive.upb.h */; }; - 32F399E2792802A2ADAEFCF7C40070BF /* p256-x86_64.h in Headers */ = {isa = PBXBuildFile; fileRef = A3B1EE468A2818746D586FEAEA120196 /* p256-x86_64.h */; }; - 32F9C1372EA0E99A2E821694C9476BB1 /* trace.h in Headers */ = {isa = PBXBuildFile; fileRef = F5923D73CFEEDA3A2F0E6C0C0B7B7F6C /* trace.h */; }; - 3301FC083CD7776D8D7542C32FD78DA8 /* json_args.h in Headers */ = {isa = PBXBuildFile; fileRef = 14C1624B89A6149ABC322C5237980C8B /* json_args.h */; }; - 3316A8574DA37FC01133A01ABE33D817 /* timer_heap.h in Headers */ = {isa = PBXBuildFile; fileRef = 2933DE9AA8BE2131278DB117B23177E8 /* timer_heap.h */; }; - 33271E3E3CB5974C043E4DC895D31674 /* snapshots_in_sync_listener_registration.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6DD9CC91AA2D137BF0D2348999AD1415 /* snapshots_in_sync_listener_registration.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 333BA92E09C5A01AF3FDD298814E203F /* endpoint.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = DBF7F5424980678425CAE8B733E6707A /* endpoint.h */; }; - 333D19EE791C21AF87D0164B6C704A7D /* node.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 570D74242F34E9983FC76E8429332A46 /* node.upbdefs.h */; }; - 33456F4BAF883C84769D113BCD9C62EA /* python_util.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = FB6C7492955F5B9D7E1C21ACB1F7B4AE /* python_util.h */; }; - 33536C9E1B91EB828AECD00A89CF8CB2 /* b64.h in Copy src/core/lib/slice Private Headers */ = {isa = PBXBuildFile; fileRef = AFE270BCDA8048CA5B20BEC5BCA4B081 /* b64.h */; }; - 3353BEBE6895B310BDD16B1579BE9ACE /* ssl_key_logging.h in Headers */ = {isa = PBXBuildFile; fileRef = 799A987C7CFB3B3191D4E1C69EE0291F /* ssl_key_logging.h */; }; - 3353C195173BDB8DEB723B1E0348D1B0 /* status_code_enum.h in Headers */ = {isa = PBXBuildFile; fileRef = FA4A130BD4C04098FE57D03A2216FC10 /* status_code_enum.h */; }; - 3355AFEE925E8F384B61E49DF678DE46 /* FIRRevokeTokenResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 8BDED2E05255D0B70B2C68CD14A72749 /* FIRRevokeTokenResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 33769D79163E2A123F040B24B65D09E4 /* atm_windows.h in Headers */ = {isa = PBXBuildFile; fileRef = C930590AC06A73A0B3686C8EC790DC70 /* atm_windows.h */; }; - 338A777F18FFA9206EC4CB8E910212BC /* regex.upb.h in Copy src/core/ext/upb-generated/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = FE23A05FF59693CF8924948AFB73B907 /* regex.upb.h */; }; - 3397F76301A8E160926C4E4C4472926C /* alts_credentials.h in Copy src/core/lib/security/credentials/alts Private Headers */ = {isa = PBXBuildFile; fileRef = 4F9309A80B991B45C41D372EF7F02657 /* alts_credentials.h */; }; - 339D409737B6E17DFF1C97CA1BAB15ED /* global_config.h in Headers */ = {isa = PBXBuildFile; fileRef = E0510B678915413BEE59D289B8272894 /* global_config.h */; }; - 339F6CC77CD201A189E25581B060D8D7 /* collection_reference.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7D9A59BA61CFEA7001F07F6E846522FE /* collection_reference.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 33A65BB6AC2C4C92135F2AA2A71783E6 /* custom_tag.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = DC8B9FB9CE4F5A77DC38AF9F8172EEED /* custom_tag.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 33B288169E10FEA86909178AD0ADBE15 /* endpoint_cfstream.h in Headers */ = {isa = PBXBuildFile; fileRef = DACA094CFC3924389DD0F0FFBED9939C /* endpoint_cfstream.h */; }; - 33C2F63D5F846E95CC751D9848B3261B /* server_info.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = BCB2453630C2CDCE3881352FF5C4EB70 /* server_info.upbdefs.h */; }; - 33C7E59E29CD2AE24D0B103751BAED7F /* internal.h in Copy crypto/fipsmodule/aes Private Headers */ = {isa = PBXBuildFile; fileRef = D54E9FFC1AA99B02DACABB7501948E36 /* internal.h */; }; - 33CE2F83D79218B14652EB97B2FCECDE /* security_context.cc in Sources */ = {isa = PBXBuildFile; fileRef = D3B5FA33766A60B4F23F9FCB883A5F8E /* security_context.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 33DEA6060F4446592BD48BEB1E8D8865 /* compile.cc in Sources */ = {isa = PBXBuildFile; fileRef = 73F166B6F976475F5A9FA66433F398EA /* compile.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 33E32E156657171DBAEB2C3944226982 /* backend_metric.h in Copy src/core/ext/filters/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = 5A8532672CFBD96D3CF961AD06F617B2 /* backend_metric.h */; }; - 33F0035F526A28306AC323088D2C7BC9 /* json.h in Headers */ = {isa = PBXBuildFile; fileRef = FA52D2E5477461E22C25E7B4889C26CE /* json.h */; }; - 33FE2EDA808CBDE7837F131D1675C25C /* clusters.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = A8238DCC349BED4246297BA768DD248D /* clusters.upbdefs.h */; }; - 3401CE3A5C27C2B6157D1C808C28CE04 /* transport.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = BA267A7BFC223E4B4292E586D9BF4306 /* transport.h */; }; - 340EECC58B342BE7062700332F0AE559 /* aes_nohw.c in Sources */ = {isa = PBXBuildFile; fileRef = C4A22F9579FDF7C8133D8EBA78901FCA /* aes_nohw.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 341B554C97E03C42F546AFCE17B8FF31 /* FIRAuthWebView.m in Sources */ = {isa = PBXBuildFile; fileRef = 25251A5FC7438A7997731B572A2C929C /* FIRAuthWebView.m */; }; - 34215C6EC0844BB340BFE6DAC2C4FC28 /* socket_option.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 21995EE3344B951AAA0D991E22F21F4E /* socket_option.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 3422358BC006901DE6F5D09F6E8BC6E4 /* json_args.h in Copy src/core/lib/json Private Headers */ = {isa = PBXBuildFile; fileRef = 4716776435D1969D8B69A39A9608C247 /* json_args.h */; }; - 34241E4ABFCF647E96A40008B9446C5C /* stat.h in Headers */ = {isa = PBXBuildFile; fileRef = 1781BB0D9BFC6A8BF2634B1A513498E1 /* stat.h */; }; - 3424FBDD74D44D9372FD79A321913FB0 /* server.h in Headers */ = {isa = PBXBuildFile; fileRef = 12BC94FF43BD63CDCE5CD5D9A5A6B00E /* server.h */; }; - 3436BDBBF3856C6624EBDC78F8BCAF25 /* posix_engine.h in Copy src/core/lib/event_engine/posix_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 73E0ACE81F5F02D8DB09D22EC59D48A5 /* posix_engine.h */; }; - 34376D1FEFAFFA8BFB7C5F6917AE23F5 /* strerror.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0A8F2434FEEA788A70133A74516D5313 /* strerror.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 34408F8D383E69DD6EDCA054C4EBB9DE /* string.h in Headers */ = {isa = PBXBuildFile; fileRef = D825C55CBD86EDE548F326999266D7F7 /* string.h */; }; - 3441FE0F516A5F2D35B3C0D3B8619722 /* create_channel_posix.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 81CEF159C4EE4631B5FC8EA7CCE1983F /* create_channel_posix.h */; }; - 345BD9471F95F7EEF9FDB30E9BAF2CDD /* lb_policy_factory.h in Copy src/core/lib/load_balancing Private Headers */ = {isa = PBXBuildFile; fileRef = 37F0476FE3695902968717FC48DDA17A /* lb_policy_factory.h */; }; - 3463978EF164D8A2136CE8304B8C9ED6 /* fault.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = B4644D5212C8676DF04A9B175EBF659D /* fault.upb.h */; }; - 347EBC17357458A21F98C52643E40290 /* spinlock.h in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 6ECB6B52CCFEFDCADCE4BC72790204C6 /* spinlock.h */; }; - 34822BBEF5671B167919A18E35E67F6D /* channel_create_impl.h in Headers */ = {isa = PBXBuildFile; fileRef = B414BCDF82778AF6AEDCFD8241619875 /* channel_create_impl.h */; }; - 349085B2F32BB7D99135E782E57E5FE5 /* trace.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 24206AFE77B0F19EECB7B5D202411858 /* trace.upbdefs.h */; }; - 349636C7BF7FE4932E432378116B1CCD /* atm_gcc_atomic.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = 666C927E519CFBBC9CB01F7B0137F582 /* atm_gcc_atomic.h */; }; - 349F8817A761D8087023A69F1B2AC6E9 /* alts_security_connector.h in Copy src/core/lib/security/security_connector/alts Private Headers */ = {isa = PBXBuildFile; fileRef = 8F9676DFBB10CF6E003DE27398F7901B /* alts_security_connector.h */; }; - 34A579EA0A9EF31F7448F19017BEBAD0 /* json_util.h in Copy src/core/lib/json Private Headers */ = {isa = PBXBuildFile; fileRef = 1D7BE3AD52FDA00820CF4EC9167EE0B1 /* json_util.h */; }; - 34C7239607715EF3F624456DC567F6CC /* ref_counted.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 408BD66CC047A94055DFEB2F1EA0B130 /* ref_counted.h */; }; - 34E60EE3E23DCAF09A836AB643DC1EE0 /* default_event_engine.h in Headers */ = {isa = PBXBuildFile; fileRef = D249E20BCC56D29F5AE8F55086892344 /* default_event_engine.h */; }; - 34ED3F862D8738A17AD49D6D0A89F6B6 /* load_reporting.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 661CA9BDF111176627DB5C230CBCD051 /* load_reporting.h */; }; - 34ED6C09174BC7A63128BBD19AF05A34 /* wrappers.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 4EF66996D48034F85009C251BDEB566D /* wrappers.upb.h */; }; - 34F1D070F636A0D94DE00303ECB47715 /* outlier_detection.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/cluster/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = AB0F3869830E90DBB369E5D6A2A2A7E3 /* outlier_detection.upbdefs.h */; }; - 34FF3B3478B120030B0AADEEA2FF2BD7 /* stats.h in Headers */ = {isa = PBXBuildFile; fileRef = 2DC76C83BA21A07D6D3B59C97EEB682E /* stats.h */; }; - 351B6EEBDA18122A09A73FE9156C92D8 /* pkcs8.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = E161C72FDB7217B077263E42319E2382 /* pkcs8.h */; }; - 351E039C861CCBC8BE5B3FF481FF3078 /* internal.h in Copy crypto/curve25519 Private Headers */ = {isa = PBXBuildFile; fileRef = 149DF03C26022DEC6A0BB3329C2D3932 /* internal.h */; }; - 352152D5C986529D8C3685CA5CB2E650 /* resolver_factory.h in Headers */ = {isa = PBXBuildFile; fileRef = 75606B314D67942B56C36F7DD4A70B06 /* resolver_factory.h */; }; - 35278D2378329B9C8CCD8710226A659A /* call_once.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B4E4385D6FBAA28BFA45C6352F71818 /* call_once.h */; }; - 352A850B7B983C21DD141991EEF5DCE1 /* bits.h in Headers */ = {isa = PBXBuildFile; fileRef = 0347A07F1D9D790A82C6ED088705C92A /* bits.h */; }; - 352D925D1C732F274C458EED41C7F0DE /* transport_security_common_api.cc in Sources */ = {isa = PBXBuildFile; fileRef = C379DB924E9B7F657B9327E91B8EACFA /* transport_security_common_api.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 352FB9DF2D7311498D2B1E2F00C8E01A /* status.h in Copy status Public Headers */ = {isa = PBXBuildFile; fileRef = D74BED51A47FDC2F8564D6C2B1022C74 /* status.h */; }; - 352FCFBFA1003CBD674721078E4323D3 /* mutex_stats.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = D3F17948EAC57FFC40F95EA43A8B86EE /* mutex_stats.upbdefs.h */; }; - 35345B7185D025F613183B5913BAA897 /* sensitive.upb.h in Copy src/core/ext/upb-generated/xds/annotations/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 889D49C30222A0127ADFF219895821BD /* sensitive.upb.h */; }; - 3537C5AFF41D2C78CD7FCD6CC5790C2C /* channel_connectivity.cc in Sources */ = {isa = PBXBuildFile; fileRef = 40A22BF40D6693542845AF42F046D412 /* channel_connectivity.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 35452F5FA82A35BE7525D1928328B27E /* xds_client_stats.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = F2DCA550A82D165F78F645482A91E00B /* xds_client_stats.h */; }; - 3545F35C21F4A4F993C2C33D46DFF90D /* service_config.h in Headers */ = {isa = PBXBuildFile; fileRef = 53F87ACAEF4603F1B0FDD6364456AEA6 /* service_config.h */; }; - 35498D1FC723866E8621444C8F05E394 /* FIRAppCheckTokenResultInterop.h in Headers */ = {isa = PBXBuildFile; fileRef = 51BF9DD484184CBA7FF5554CACA1B924 /* FIRAppCheckTokenResultInterop.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3550F438D049B81F9CB710B11F9C347E /* xds_channel_stack_modifier.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 25B1C6BBD41D9BC7BE908D6162D33B62 /* xds_channel_stack_modifier.h */; }; - 3554D54FB23EACE1A32678A989A5791D /* global_config_env.h in Headers */ = {isa = PBXBuildFile; fileRef = 85C872B9D5139BA1DF0ED9F149B13434 /* global_config_env.h */; }; - 3558346F3C85443C48E627D51A350028 /* secure_server_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = 83A73567740F89D06423328B8E1997D6 /* secure_server_credentials.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 355E3B7CDE3551A5793EDC6AB188C860 /* event_string.h in Copy src/core/lib/surface Private Headers */ = {isa = PBXBuildFile; fileRef = 52F4575211180F40E0CEF52240DD2AC6 /* event_string.h */; }; - 35650D60B757EFE36C1FC2AC402B98FD /* ex_data.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C29221990192A22A718DC6094646990 /* ex_data.h */; }; - 3567C9CC00D305B840151FFB256E393C /* ssl_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 49535D78406F24160B801FFF22C2722E /* ssl_credentials.h */; }; - 356C8C7FCC64F9992476114F60BCF7A5 /* http_proxy.h in Headers */ = {isa = PBXBuildFile; fileRef = B0B311825D9BA02B9A506BCC2BBD5CB0 /* http_proxy.h */; }; - 358282EF44F14398DB1FA4CB6F6D6DE3 /* dynamic_ot.upb.h in Copy src/core/ext/upb-generated/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = D132D0176B8F6D4868648359B84E5179 /* dynamic_ot.upb.h */; }; - 3589B119D0556F78ACF1715CCB8D0E58 /* FIRFirebaseUserAgent.h in Headers */ = {isa = PBXBuildFile; fileRef = 7BC78361E2418972309D5F09D5C14A3C /* FIRFirebaseUserAgent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 35A3219EDB70F29C5E51095FABC7E9CF /* ratelimit_strategy.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = F61F4DF6EA38468A07001EA30ABD8AC7 /* ratelimit_strategy.upbdefs.h */; }; - 35A3F65FFE5315001FA9DFB248881FAA /* obj_dat.h in Headers */ = {isa = PBXBuildFile; fileRef = 1218D61ECA8821C5D542D4C657DF8B47 /* obj_dat.h */; }; - 35A47B11C707ED2BD33657F49B12637B /* channel_stack_builder_impl.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8B54997B7F36D5D83DB63714ED3A7DEC /* channel_stack_builder_impl.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 35B3D78BE434D08C3E53AAE8FCFE9032 /* frame_ping.h in Headers */ = {isa = PBXBuildFile; fileRef = B35983469D31AEDCD7C27AAB48A6D5E3 /* frame_ping.h */; }; - 35B7A74EB611AE8034755B0807693DC7 /* collection_entry.upbdefs.h in Copy src/core/ext/upbdefs-generated/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 5570AB8FE5E3E47A62CC39563159EFE8 /* collection_entry.upbdefs.h */; }; - 35DF255FE0963857BE75B85071D79361 /* resolver.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 4735E0CC0246CAAA6B6894E1FD0E31EA /* resolver.upb.h */; }; - 35F4B29C3B5134DECED4815A974634BE /* udp_socket_config.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 82F246AFBED00DBB7EED0B26694D490F /* udp_socket_config.upb.h */; }; - 360AA65EBCC2F01531BF8FF079B4E236 /* rbac_filter.h in Copy src/core/ext/filters/rbac Private Headers */ = {isa = PBXBuildFile; fileRef = CF9C125AF3CBC4F8F791D25DABDBD207 /* rbac_filter.h */; }; - 360AFF4E8E70C777DEF5E2D2973BAF34 /* channel_arguments.h in Headers */ = {isa = PBXBuildFile; fileRef = 78580A8C6B7B33383D25F925E1BF9840 /* channel_arguments.h */; }; - 360F3A11EC289B80F6046DD02374FBAC /* tls.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 492F51A5C1C59D9EB6F0108CE300CDB1 /* tls.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 36168EFC938366E10DECF0AB67E7B62B /* time_cc.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8A19B8C20DA4CA4B9B522E9C73E7E500 /* time_cc.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 362435EDEA2515856FE92C58785BB999 /* endpoint.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0C217E5B2E886D09BA8E24734EB5B097 /* endpoint.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 36254BA73360F7D41651004A272F619C /* frame.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 4F3DA4917DD71C8B8A0BE1DBD8AC9E2A /* frame.h */; }; - 363930FA0D724B5C50D3403B929718B3 /* overload.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 225A86FCC4F24113CBAE01AE913D4E14 /* overload.h */; }; - 36401BF48805BB2F3E2714B6C4F0B24A /* dynamic_annotations.h in Headers */ = {isa = PBXBuildFile; fileRef = 0269E7C1031CBBABBD46E7ABBC01BE03 /* dynamic_annotations.h */; }; - 365993C1CFC9DCE6503ED73B08025479 /* add.c in Sources */ = {isa = PBXBuildFile; fileRef = ABC3F3E547423CFA297D0DDCC6814B75 /* add.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 365EAFB1F5F905F876E2478558851044 /* FIRRevokeTokenRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = C4B4A58CB040C347FEF879F701E95C52 /* FIRRevokeTokenRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 36684044929502FBBDF6D0B2E39B342E /* cord_rep_flat.h in Copy strings/internal Public Headers */ = {isa = PBXBuildFile; fileRef = BBCF11F07F1DAF832E2C1D292C30BD07 /* cord_rep_flat.h */; }; - 367FFABE49BFDEF24054D3733A21D815 /* p256_32.h in Headers */ = {isa = PBXBuildFile; fileRef = AA6C548C2BAB51D70A6A45A8D0C335C0 /* p256_32.h */; }; - 36848DDFAAD277051CF114A6B18B944A /* fixed_array.h in Copy container Public Headers */ = {isa = PBXBuildFile; fileRef = 0EE18AE557C7BCEDDF032AC7DA353776 /* fixed_array.h */; }; - 3697586631F0BD0C48741F25EB2C3E30 /* metrics_service.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 80503B25F026ABE1D34036BB6F82FD89 /* metrics_service.upbdefs.h */; }; - 369C9442439CA80031D34DF36CAC0231 /* cpp_impl_of.h in Headers */ = {isa = PBXBuildFile; fileRef = 82D13C1CD8A7FD8B0769017004CC7D6E /* cpp_impl_of.h */; }; - 369D1FC52E40E20FD521ECBAAD9A21F9 /* aggregate_field.cc in Sources */ = {isa = PBXBuildFile; fileRef = 72CB22716DADC17704FD9F4EA1EAFF02 /* aggregate_field.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 36A60F061E281F49FF21E4C4420A71FF /* atm_gcc_sync.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = B8A7DF3B1DFB1D310EDDB11F03A20D59 /* atm_gcc_sync.h */; }; - 36A6C545D579769AF3B1B5D2E37BB976 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6E336DC2534E1E69B7828F6012B874C6 /* Foundation.framework */; }; - 36A6CB38EAE45F2158B44BF15464C5CA /* spinlock_win32.inc in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 26E0FCFBFB3138BD8B021B6C54F965E7 /* spinlock_win32.inc */; }; - 36AB73496379DB9342769F23CA2ABEFB /* load_system_roots_supported.h in Headers */ = {isa = PBXBuildFile; fileRef = 4BE4B22FC4440CF7E4A38053BB7519A8 /* load_system_roots_supported.h */; }; - 36ACB367EFDD2B50C3C6CBCF6C732935 /* distribution_caller.h in Copy random/internal Public Headers */ = {isa = PBXBuildFile; fileRef = A83BFE0718D50FCFB1CD02FE8B2EA6A5 /* distribution_caller.h */; }; - 36B2A49859ACC0F6CE643B93F0B88422 /* ssl_cipher.cc in Sources */ = {isa = PBXBuildFile; fileRef = A587C3C43E5633BE986D1736285F319C /* ssl_cipher.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 36BBC74FD62A6F1319431D82C9453AC1 /* blowfish.h in Headers */ = {isa = PBXBuildFile; fileRef = 7360766508120E8E8155A5906310D595 /* blowfish.h */; }; - 36C1B5A328A4A2183CEACE5BF9DE3D06 /* internal.h in Copy crypto/fipsmodule/tls Private Headers */ = {isa = PBXBuildFile; fileRef = 7367A46F3574E5BC0ACD2772358A2752 /* internal.h */; }; - 36CE5C01227146F4E5FF6F6791A8CBEB /* spinlock_wait.cc in Sources */ = {isa = PBXBuildFile; fileRef = B015B36B6E74E1AC594DF87003DF37FB /* spinlock_wait.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 36D5E43B3905A5EA88ABD3CCBE70AD9D /* validate_metadata.cc in Sources */ = {isa = PBXBuildFile; fileRef = F8FD808A43A72CC45449BB2B197A1126 /* validate_metadata.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 36DF26A6000043668C6950DD52643C91 /* rune.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8EF8A35991D4E6CE200CA75EB9FEF6D1 /* rune.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 36E35676FB1FB1938DAD1AB95C39DDC3 /* status.h in Headers */ = {isa = PBXBuildFile; fileRef = 30A7AD78C67962228AF19D3C62C8896F /* status.h */; }; - 36F3E51EBE4DF5181841EB3987062E31 /* channel_stack.h in Headers */ = {isa = PBXBuildFile; fileRef = 9055BD3085E59795884A5FB6A4090F38 /* channel_stack.h */; }; - 36F6029565F7320580491848C4CA9A70 /* sync.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 9D0E86CEBDDB31540D17980B39256929 /* sync.h */; }; - 36F91918B3B0177C3695DD99C28F088A /* migrate.upb.h in Copy src/core/ext/upb-generated/udpa/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = C5E9743D4AEF90449ABE247424A8F86F /* migrate.upb.h */; }; - 36FDE030B6CD52A577A7B23BA7E70C15 /* grpc_tls_certificate_distributor.cc in Sources */ = {isa = PBXBuildFile; fileRef = C206BEAFD5AD221042F3C051C0E1D74A /* grpc_tls_certificate_distributor.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 370F80DD293C42FBCE22EA7C1F1DA363 /* resolve_address.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 385605BD39CAC22DBC84D88F0A42DC7A /* resolve_address.h */; }; - 37141F22A02B229E61F937024DDFAC2D /* firebase_auth_credentials_provider_apple.mm in Sources */ = {isa = PBXBuildFile; fileRef = F3798240EA43139BAD694A1F543601D2 /* firebase_auth_credentials_provider_apple.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; - 371E63BF945D363938B68B2A1197E662 /* env_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = FA10BD16EADA43121A8E2986E80C97D9 /* env_posix.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 37221475457BC80B03FCD8671BF88031 /* gRPC-Core-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 923FEDDF9CA3B1A0D9779708ABEAA628 /* gRPC-Core-dummy.m */; }; - 3726BD1B8F8717100507E751FBA789F3 /* init_dump.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = A6D4F9E4F86E576A29E4646C9CF2EE9C /* init_dump.upbdefs.h */; }; - 37309D4890821C702D1FFE6BDCEBBF6C /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B8D4E74E7B09B3F7B88716B6D21DF50C /* UIKit.framework */; }; - 3730DF9096CAA59C27A856E02F636DC8 /* resolver_factory.h in Headers */ = {isa = PBXBuildFile; fileRef = FBAF17A98DBB7476AC3961EBE9E2CBEF /* resolver_factory.h */; }; - 3734E0D184E2160DD07693F71A963A00 /* authority.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 91E3672ED1271A622E2943C1B6A4BF92 /* authority.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 373B818398454E4FD80516F85E8EED74 /* method_handler_impl.h in Headers */ = {isa = PBXBuildFile; fileRef = 120C12EBC55DA13576A550C7D52CE356 /* method_handler_impl.h */; }; - 373F896FA0BE94A2C0903D7DE5B36B62 /* value.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 62D461F7A3AFADCDB3F7990CEE96E7B1 /* value.upb.h */; }; - 3751132873F959B1A4B83983C9A4511E /* api_trace.h in Copy src/core/lib/surface Private Headers */ = {isa = PBXBuildFile; fileRef = 7C19515CD9496842698B468836F3C687 /* api_trace.h */; }; - 3751831DE520871E2EC531B97306EEA5 /* mpscq.h in Headers */ = {isa = PBXBuildFile; fileRef = 7710D072640D96C2B7AA385F0A0D6BA0 /* mpscq.h */; }; - 3761842EBBF86E33E63066E8B06955CB /* mode_wrappers.c in Sources */ = {isa = PBXBuildFile; fileRef = 32ED262357C53929A601DE949E124D2C /* mode_wrappers.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 377062D8145FBAED7ADD405FDD36CE95 /* encode.h in Headers */ = {isa = PBXBuildFile; fileRef = 2704798CCF3A2AF9C00D74EDFBEA01C2 /* encode.h */; }; - 377127B33F00954CC50A12F659A7FA65 /* handshaker_factory.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 139E6A898F396ADD0382390D071FA6F9 /* handshaker_factory.h */; }; - 377383FFF67FA8AD51FBD78D897A9A36 /* format_request.h in Headers */ = {isa = PBXBuildFile; fileRef = 39D20BFB3E98C05B1E42DEB6C4EF9DCA /* format_request.h */; }; - 377FDDB8B72AE383A88A7AB2F0CDBAA0 /* notification.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 8DAE34F466CDFDC3CED464B2D788E082 /* notification.h */; }; - 3781D236A59D26C1B9F10D99A78A718E /* port_def.inc in Copy third_party/upb/upb Private Headers */ = {isa = PBXBuildFile; fileRef = 122E87EF55AA4ADE54F922C772FDE9AB /* port_def.inc */; }; - 37820B4CAE3E27BBDF7AF6F5D6B42E57 /* event_service_config.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 0DFC036D212EE5A4B2930082BD79ABF0 /* event_service_config.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 379BCB445C7A2047B8F7B1F0A95762CA /* xds_route_config.h in Headers */ = {isa = PBXBuildFile; fileRef = 4927744B72E21892CC18EFA818CE3E71 /* xds_route_config.h */; }; - 379C67F0EBACB6BBA8858A2817F36892 /* fault.upb.h in Copy src/core/ext/upb-generated/envoy/extensions/filters/http/fault/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = AF8D1B8F7ED5D0D45A63EFDFB00C336D /* fault.upb.h */; }; - 37B9905ECB51FD905E9ECC243F99B3B1 /* pbkdf.c in Sources */ = {isa = PBXBuildFile; fileRef = D0F202E1075EA850F9C2E73F52B4FF5A /* pbkdf.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 37BC120DC8C4244B52768277C9393D03 /* route_components.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/route/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = FF057E39A828E53FBE6D699AE0CA0E6C /* route_components.upbdefs.h */; }; - 37BFF81E0902DB0635650CDAD71DEDDE /* cluster.upb.h in Copy src/core/ext/upb-generated/envoy/config/cluster/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 136FE94A85B992DAE7F4E82436E5B3B4 /* cluster.upb.h */; }; - 37CE81214194CAA8904CADD0D6C5B249 /* api_trace.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C19515CD9496842698B468836F3C687 /* api_trace.h */; }; - 37E13E8C1AEB622B6A190DBE0D76725C /* ratelimit_unit.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 839DD14D9ACEC67FBD86E1F203C200C2 /* ratelimit_unit.upbdefs.h */; }; - 37E8BD97B2AA6100AC847C1FCDFE9AAA /* str_format.h in Copy strings Public Headers */ = {isa = PBXBuildFile; fileRef = 3BFD5B29978F033F0AEA351AB9470BD2 /* str_format.h */; }; - 38122C9FC1CC8A2ED23F6AB3DE16209D /* crypto.c in Sources */ = {isa = PBXBuildFile; fileRef = 0A0A7EB76C1AFA667BEAAB49A2FE9B1A /* crypto.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 3813ED6CC519A46B801916745B076B8D /* murmur_hash.h in Headers */ = {isa = PBXBuildFile; fileRef = 3AF63EDD6806BF6A876B63EA55CBA64E /* murmur_hash.h */; }; - 381ADA7F6CA5950F45D6D8E2BCF76088 /* huffsyms.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 9D36B227BF49390FFB4DC7950433A2E4 /* huffsyms.h */; }; - 38234C31FFF7F8AA5C66EBE81F034735 /* randen_hwaes.h in Copy random/internal Public Headers */ = {isa = PBXBuildFile; fileRef = E28AED8AAF467EB843C7ADFAD1966B31 /* randen_hwaes.h */; }; - 382DEB0C3094E07CA4934F54034CED83 /* event_service_config.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 533655527D81DA5AE7037858605AD0F4 /* event_service_config.upbdefs.h */; }; - 383C4C51DB205DBCA5B7235DE8D52A9F /* resolver_result_parsing.h in Headers */ = {isa = PBXBuildFile; fileRef = B62755F71D0CE6A48F9F7F4D18DFB853 /* resolver_result_parsing.h */; }; - 3840B07776D809DCEC1BFFFA48E7AA5A /* tcp_server_utils_posix_common.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7169945F5E485F3262B22D54B2E3A341 /* tcp_server_utils_posix_common.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 38463AD31E7922C11F5E3019B015339B /* channel.h in Headers */ = {isa = PBXBuildFile; fileRef = 911EA92095E7913F4BCF5650897CFD52 /* channel.h */; }; - 384A026DE5EF52B8F39C3CA68F914287 /* ssl_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = D9C2CB7E5361E2775C6B4AB803907453 /* ssl_utils.h */; }; - 384AE55890F83BB63F89E5F03710D229 /* overload.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 9432E5FE27C1CE4C2665EFA503DA413C /* overload.upbdefs.h */; }; - 384FE324917094696C2B22289D51F83D /* sqrt.c in Sources */ = {isa = PBXBuildFile; fileRef = E025FA592BF5119C8C521FBE1DAF40FB /* sqrt.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 3855A970FE1CBA66B8DA82EA326AD2BD /* context.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A4407D02E6FB6572E5689E2E7EF98CA /* context.h */; }; - 385DFD548B44820D57F9E246F72351A9 /* rbac.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/rbac/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 0C7CF553C3EC5774B65491A421FA840B /* rbac.upbdefs.h */; }; - 385F945AC9DF19BE75A807ECF621C9E7 /* FIRSendVerificationCodeResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F66040F0E63D24D666E8784C52774F2 /* FIRSendVerificationCodeResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 388355DFC912530D42D68EA957D54FC2 /* local_subchannel_pool.h in Headers */ = {isa = PBXBuildFile; fileRef = 9327E2DFDF1E55E93E51E2EB2D5BEB30 /* local_subchannel_pool.h */; }; - 38896242BEF89DF3C845C7D8003E6990 /* FBLPromisePrivate.h in Headers */ = {isa = PBXBuildFile; fileRef = 7EAEA332AD600D2E333B9191954B32ED /* FBLPromisePrivate.h */; settings = {ATTRIBUTES = (Private, ); }; }; - 38A6DD8768FDD6157C5EC685895ABB67 /* server_config_selector_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = C07580054B2150B2EA47F849C6ACF105 /* server_config_selector_filter.h */; }; - 38AFFC9E496466003F4B94A5863C3DDB /* FBLPromise+Recover.m in Sources */ = {isa = PBXBuildFile; fileRef = A2851D59348D115D65B81B680B1C5F91 /* FBLPromise+Recover.m */; }; - 38B6916B2EDEB3C2788CA3B7BE41AFDF /* tcp_server_utils_posix_ifaddrs.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1B7ADF6AEAB25592794307A8E97CD5BA /* tcp_server_utils_posix_ifaddrs.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 38B6B814FEB86E4AF1E83EF3EF6AB2B8 /* string.upb.h in Copy src/core/ext/upb-generated/xds/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = C04C4C41919DDFD8256619CA343CF213 /* string.upb.h */; }; - 38BE4D3BEC6BDDF1216EB73CD74C1066 /* cord_rep_consume.h in Headers */ = {isa = PBXBuildFile; fileRef = 7ACA7464C4F5BABD1BF795C156500911 /* cord_rep_consume.h */; }; - 38C34C1E58EA03FC8E23B80F80946001 /* alts_record_protocol_crypter_common.h in Headers */ = {isa = PBXBuildFile; fileRef = F0B9F2CF1DFA6CEADDF438D2727B0569 /* alts_record_protocol_crypter_common.h */; }; - 38D691BC76AE744D70D88DE3C5437C72 /* str_split.cc in Sources */ = {isa = PBXBuildFile; fileRef = ACEC5209B4668F4A4CB6982AC0CE49A6 /* str_split.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 38DAB6896B2988126000A0EA8D6ADBB0 /* channel_args_endpoint_config.h in Headers */ = {isa = PBXBuildFile; fileRef = 2BD78645EA5EEDA4E4ECF3C16C67FCEB /* channel_args_endpoint_config.h */; }; - 38DFAB474B9F428C8B92136B01F10C86 /* call_op_set_interface.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = ECE57501BF09348A988B83C6794B48BC /* call_op_set_interface.h */; }; - 38E56220760277569E46831CE6D268B0 /* udp_socket_config.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = DA32A10DB6DD5193293193AF26A75732 /* udp_socket_config.upb.h */; }; - 38FDFAAA8195172B6428E9D16DDB0C27 /* arg.cc in Sources */ = {isa = PBXBuildFile; fileRef = 67AC88401672AD0DC1A588A030A4C78B /* arg.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 38FF5CD52E06373A6B727F825ACE51ED /* node.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = E524E4D95865B2A1C6DD30DE1F5AE976 /* node.upbdefs.h */; }; - 39018BDED35E437D339C2877D97CB733 /* numbers.cc in Sources */ = {isa = PBXBuildFile; fileRef = FBD208DF15D768B355FF1278906BEE54 /* numbers.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 3902DA8BAD8C1F4544B673A64A2F3F81 /* time_zone_if.h in Copy time/internal/cctz/src Public Headers */ = {isa = PBXBuildFile; fileRef = DAC3411B948A79F674993F64945111A7 /* time_zone_if.h */; }; - 390FE5ECE314E9221B13D88CAD2566BD /* FIRApp.m in Sources */ = {isa = PBXBuildFile; fileRef = BDEBB779B477D84368ABA56B12C63F83 /* FIRApp.m */; }; - 3914DDA9305DC4DD5C4CB659F11CFA9B /* http_filters_plugin.cc in Sources */ = {isa = PBXBuildFile; fileRef = 930826F5EDF72BECBF317C99036E1AEB /* http_filters_plugin.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 392838D27DD6D95FBCA0CB455A3283CE /* default_event_engine_factory.h in Headers */ = {isa = PBXBuildFile; fileRef = 0516547BB153B89651DDB0CADA3D6E7A /* default_event_engine_factory.h */; }; - 392EA4CE1492E3DC712BA4AA45969EB8 /* grpc_authorization_engine.h in Copy src/core/lib/security/authorization Private Headers */ = {isa = PBXBuildFile; fileRef = C1AD48A333E26FFA1823649866494797 /* grpc_authorization_engine.h */; }; - 3931F54F587CE142AD694F027C934B75 /* channel_stack_builder.h in Headers */ = {isa = PBXBuildFile; fileRef = 4BFCF47DE994E304571FAB4557D74ED4 /* channel_stack_builder.h */; }; - 394245BC95D8D5CB99BE05D02E8F5A9D /* token_bucket.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 0DA72163BFFE545A8CD1251DACC2E4B8 /* token_bucket.upbdefs.h */; }; - 394539D9DB96D3087B94A09BD0B6F91B /* FIRPhoneAuthProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = D7E94C01FAE3D4974B9AC8A12586A0C5 /* FIRPhoneAuthProvider.m */; }; - 394AA4082A2EC3CD7F70C2630980565A /* internal.h in Copy crypto/bytestring Private Headers */ = {isa = PBXBuildFile; fileRef = DEFF5777043C076CB9A90CD54EC34832 /* internal.h */; }; - 3957248E7D96D073D479EDF1CE78C49B /* promise.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = 8666497C2AD25B79CB7C9A3751F90311 /* promise.h */; }; - 39584CCC96154043182A1FE7414C1E0D /* rls.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1975B513063EC92B14E161186BF1F74E /* rls.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 396385B65A3EDCEEDC03B8CAA11A77D9 /* mutation_batch_result.cc in Sources */ = {isa = PBXBuildFile; fileRef = F9452A26E153ABAB5437C137DB734873 /* mutation_batch_result.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 39686F5EE31F886631D8F364071CD7CD /* retry_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = D25E974A39FA21BF7767713F01E43EB0 /* retry_filter.h */; }; - 3972F4236D0633B95D15220634990BFE /* backoff.h in Headers */ = {isa = PBXBuildFile; fileRef = 8125D65435B3BCEA337C9905727030BE /* backoff.h */; }; - 39809EC8C626153E108F1C7E50A7EF0C /* alts_tsi_handshaker_private.h in Copy src/core/tsi/alts/handshaker Private Headers */ = {isa = PBXBuildFile; fileRef = 6BB08DEE40295FB1B35B53590B045040 /* alts_tsi_handshaker_private.h */; }; - 398495016D9FE4D58A573794C056F9D1 /* query.nanopb.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0440D3F17390445D067205461336D5B1 /* query.nanopb.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 3998FD8B9B410D02BA592A01F44C70C0 /* frame_window_update.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 2F9356B36BD2E56055BBD884C65BCC1D /* frame_window_update.h */; }; - 39A295B2E18191A033E0C575D5FE06A6 /* status.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 4EA4F61BA6DE6D6741FA81CAD1B4A769 /* status.upb.h */; }; - 39B20FF2FFEE6BEF6D3631139FDDB2F9 /* alts_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = A90CD0E35EB42BC9F1C27E7052F7765A /* alts_credentials.h */; }; - 39B381D8951792C989310101C35D808F /* xds_cluster_specifier_plugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 2BE5A8A0969AB2C5BCA16A49B7DB030A /* xds_cluster_specifier_plugin.h */; }; - 39B8BD6351464F57DF5010B56C6180C4 /* status_apple.mm in Sources */ = {isa = PBXBuildFile; fileRef = C545213BD9D3D9C0BDE9169575E2A2BE /* status_apple.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; - 39C712DD09E3C7EE213A8DD869F69168 /* GULLoggerLevel.h in Headers */ = {isa = PBXBuildFile; fileRef = 0BA1CBEF3BB9C1082ACE420547EB9DD3 /* GULLoggerLevel.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 39C96065F4E6EAC1FCB75D342B960E0E /* thd_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = D77CF0DB45417CDF9C6C10F242746ACC /* thd_windows.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 39D0E667DA01BCEFD34306ADD9AE6587 /* iocp.h in Copy src/core/lib/event_engine/windows Private Headers */ = {isa = PBXBuildFile; fileRef = 4A3BBBFD49DE0B7746308EA84E91E66B /* iocp.h */; }; - 39DA782DCED398D378A84930E7B8C22A /* charmap.h in Copy crypto/asn1 Private Headers */ = {isa = PBXBuildFile; fileRef = 62BDE3839255CDE399FFECF78A2EC3E5 /* charmap.h */; }; - 39EB2A3A8098C54449059BE90B77D36A /* string_util.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = 2BB53E541D39B25721F425457B4999D6 /* string_util.h */; }; - 39EE82A1304E8D0FB0616586A25EF7E3 /* grpc_plugin_registry.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4A8DDF4A2F0B7582CE3E8EA4ADF69C9D /* grpc_plugin_registry.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 39F39586ED09270223EBEAF9EA81DE34 /* http_proxy.h in Copy src/core/ext/filters/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = D44A24285C81EE46EE1650482DF89584 /* http_proxy.h */; }; - 39F8A728A46C41C98DF4E322B0E6A0C9 /* alts_crypter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 821CD787103545B9C94AF52FE2B14308 /* alts_crypter.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 3A0FF7E978D7CF33AF0430B272D9A959 /* timeout_encoding.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 5DA515DDBC6DB17BF5D9035F8FCF91B6 /* timeout_encoding.h */; }; - 3A10E9D5657B474E9C3471C54130B78B /* channel_stack_builder.h in Copy src/core/lib/channel Private Headers */ = {isa = PBXBuildFile; fileRef = 4BFCF47DE994E304571FAB4557D74ED4 /* channel_stack_builder.h */; }; - 3A1D17BE41E1D2FDB21FDD850FF45307 /* firestore.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7B31E0565925869ABE1D60B3655FA88B /* firestore.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 3A1E57E97CD3CB5464D8229E0F3D840D /* route_components.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = C13C90FDC55076EE7DCDF8671941AEAD /* route_components.upbdefs.h */; }; - 3A2A7B66F06DF51011432290A7EB5964 /* v3_cpols.c in Sources */ = {isa = PBXBuildFile; fileRef = F0CC929C3211D45D2D771A56AD4DD1BD /* v3_cpols.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 3A2DAF9ABD756DDB80979857B89F3804 /* filter.upb.h in Copy src/core/ext/upb-generated/envoy/config/cluster/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 031494DA595E537CBDC40E389CEB0D38 /* filter.upb.h */; }; - 3A46FE3944A13DAF1C125437BAFF8B5C /* conf_def.h in Headers */ = {isa = PBXBuildFile; fileRef = F7CA91DFDB014D10CD1EB422B269BF3B /* conf_def.h */; }; - 3A4E6EAE91D56BBDD412FC28EC157E05 /* fault.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 8D8A5D8E67487EB8DE4178EE03B73D03 /* fault.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 3A5E64EB84D23CA41B9956EF1B1396DA /* grpc_method_list.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 46B718ECD83A634DF60B69CFB56C57CE /* grpc_method_list.upb.h */; }; - 3A70EF8B45FB375690CCB8F9962D2B70 /* x509v3.h in Headers */ = {isa = PBXBuildFile; fileRef = E38CE3D5AE58B7C80A5000EB5EC8DE1D /* x509v3.h */; }; - 3A787DAD4D64D02CD15B086E39BCC8EE /* status.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 0CB687260ED178368E23C4D255D62246 /* status.upbdefs.h */; }; - 3A7BA2FB290780B05374ABE8ACCC155A /* time_zone_info.cc in Sources */ = {isa = PBXBuildFile; fileRef = BE09BEA995DAF5B5208088E2154007A9 /* time_zone_info.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 3A7C59427F91776A66C05E3F38F02364 /* slice_string_helpers.h in Copy src/core/lib/slice Private Headers */ = {isa = PBXBuildFile; fileRef = 24AB50486C6C94BC8CAA3E17B315EB10 /* slice_string_helpers.h */; }; - 3A81D1EF0C6661A5F9B696D8790BDD2E /* database_info.cc in Sources */ = {isa = PBXBuildFile; fileRef = 371C2AB56B9E1DCD66FDB54BBD3E7A43 /* database_info.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 3A86581FA8B9E286DD827CB9560CB4F5 /* waiter.h in Headers */ = {isa = PBXBuildFile; fileRef = 1091DA9A1993928A94677295C3CE0488 /* waiter.h */; }; - 3A873698E3DE125C3F8B55E039D6BE46 /* metadata.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 2DE87DC53874A9580137D9A897BB90A6 /* metadata.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 3A889C3DC93551ADF063E0EC89E0C4BD /* global_subchannel_pool.h in Copy src/core/ext/filters/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = AFF59EFE45D095EC84DBF7E430E571FC /* global_subchannel_pool.h */; }; - 3AB32C6ABBE250C9CEF6885E41FA0545 /* endpoint_binder_pool.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1EE3EC4FFD844681B8CCFE55C0898981 /* endpoint_binder_pool.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 3ABDE44A054CC8D3124E969656E05A7E /* msg_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 6703DD21A38A841429A2E73AC6897614 /* msg_internal.h */; }; - 3AC07AD407906DC07A358C21AC230766 /* Pods-iosApp-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = F87A626222A8D9B26448A9FEB04FD0DF /* Pods-iosApp-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 3ADD71CE854DC8AE2905A252091D9BBF /* cord_internal.h in Copy strings/internal Public Headers */ = {isa = PBXBuildFile; fileRef = A942CC33E482BF6965F3962A0833FAA3 /* cord_internal.h */; }; - 3AE2AD9E0F3A8D0A00ABC260D2687B17 /* json_object_loader.h in Headers */ = {isa = PBXBuildFile; fileRef = 1490659F1A1249DE305319C0673EFF3A /* json_object_loader.h */; }; - 3AEE68AE1DE48218555DABA31E58A707 /* cbc.c in Sources */ = {isa = PBXBuildFile; fileRef = 0577809A1D299D8FE9B6E7FFEB4D45AC /* cbc.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 3AFB7F9702826730466ED5762A08C7A5 /* tcp_connect_handshaker.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = A0AE58AE062E9DC688231F1E586A8F04 /* tcp_connect_handshaker.h */; }; - 3B1CAE2C0226FA8FE364CB84EB1CF69F /* bad_any_cast.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1256AFE85719C285CF9F350384F93C1C /* bad_any_cast.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 3B36252C98D7F33DDA3AAB92A99874CA /* protocol.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 2B629CD1122C320E88A3DF4B791A1516 /* protocol.upb.h */; }; - 3B5FB7ED029E3AACC1DB1A18D5C562F9 /* examine_stack.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7F0B8B2A95D9E2132274009ADCAEDDF1 /* examine_stack.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 3B60E275AE4B33FC658297FB3420B8F1 /* alts_grpc_record_protocol_common.h in Copy src/core/tsi/alts/zero_copy_frame_protector Private Headers */ = {isa = PBXBuildFile; fileRef = 9455EA5BF28CDB45748C1C0D8E6A2325 /* alts_grpc_record_protocol_common.h */; }; - 3B6FFFC704D3897EA9F43B971A8C48AC /* bootstrap.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = D11AFC4F7281A4FB709BD97F8A6D5158 /* bootstrap.upbdefs.h */; }; - 3B73B33F6E862E01C8A1B412DABBE9F6 /* jwt_verifier.h in Headers */ = {isa = PBXBuildFile; fileRef = F1476C9EB62ECB6FAC56BB8E477A4A17 /* jwt_verifier.h */; }; - 3B837166068D81D2BEEE5A3F4104BD4C /* iomgr.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5A689F574D2D13763A0A1E9450146719 /* iomgr.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 3B8E7D10BBF455EE3F6B4501F42E2AFC /* forkunsafe.c in Sources */ = {isa = PBXBuildFile; fileRef = 79DB4ECA77C596009A7AFD5099BE9029 /* forkunsafe.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 3BA31D703CAA0CD2F5C0D8608D1C3CF1 /* proxy_protocol.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 123B991CA38B79F5E44EF2E7B8FF414B /* proxy_protocol.upb.h */; }; - 3BAF7527CBD68411B19E40F70CC3F8F2 /* port_stdcxx.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B1FE7AE82209D6637D07571CA0F7EAB /* port_stdcxx.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3BB3AFA864BB18058858B3EE0144792F /* matcher.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = B11A1CF3CCE7F3FC0135B12A8E7AB678 /* matcher.upb.h */; }; - 3BB66D277B9E52EFE92E2ABD3C0F32BC /* polyval.c in Sources */ = {isa = PBXBuildFile; fileRef = DBA7F52F13CB23728FE9C24D27A996E1 /* polyval.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 3BBFA789F7DC886D077C58EF62C783B0 /* grpc_method_list.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 24C03425FFD8A3CE623463821FAB28EE /* grpc_method_list.upb.h */; }; - 3BBFDF5DBC3AE6BF6A5E16F00D7A2DED /* jwt_credentials.h in Copy src/core/lib/security/credentials/jwt Private Headers */ = {isa = PBXBuildFile; fileRef = 8F4EE9F5A1D5223ABF5B9850905E82F1 /* jwt_credentials.h */; }; - 3BC48753C3266F65B7123D7B17B45B38 /* connectivity_monitor_apple.mm in Sources */ = {isa = PBXBuildFile; fileRef = AC002DDC2BA7320479D7D25EE5B0BCC9 /* connectivity_monitor_apple.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; - 3BC88C0156384BC8A3816EAED5E0B64C /* api_listener.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = CE67CB4080A540F6DCBDAFA4920D7D89 /* api_listener.upbdefs.h */; }; - 3BCC3A9D0330DF4AB316F4C3BB64FCCF /* zipf_distribution.h in Headers */ = {isa = PBXBuildFile; fileRef = 88D392182C0832BCEA0334B0DCD6F074 /* zipf_distribution.h */; }; - 3BCDD7181F4045AB5A6F0E4B42442BA8 /* flags.h in Headers */ = {isa = PBXBuildFile; fileRef = 34C00D5A69B9779843AE763D220152D6 /* flags.h */; }; - 3BD04241BAABF89202C404132F262421 /* accesslog.upb.h in Copy src/core/ext/upb-generated/envoy/config/accesslog/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = BA402AD6E721076A6D162778796B8465 /* accesslog.upb.h */; }; - 3BD7AECF7222F934CC7D81E8D5E47FD2 /* alloc.h in Headers */ = {isa = PBXBuildFile; fileRef = 52E5C10E762C42015A754510026EB4A0 /* alloc.h */; }; - 3BDC732C6372A735CEF38E07FC365CA4 /* default_event_engine.cc in Sources */ = {isa = PBXBuildFile; fileRef = 307A02501BEA07B87967E12BB6C0029D /* default_event_engine.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 3BE853C3237D267FFDC8F51BB2BD550C /* string_win.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9E96C6230BA0F4DAEDBACA9DD7D0AC02 /* string_win.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 3BE8988242D84A4F1D5AEEB2C4B2CD19 /* executor_libdispatch.mm in Sources */ = {isa = PBXBuildFile; fileRef = 124753A0FFAF65FD4E02B674F88A47F2 /* executor_libdispatch.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; - 3BF815317F91D9530F839FB5D2E7D880 /* felem.c in Sources */ = {isa = PBXBuildFile; fileRef = FFF17CF68F1A93CBF429E4A09A7D2563 /* felem.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 3C00BB646C7A3C3266655F33AC3906F4 /* cluster.upb.h in Copy src/core/ext/upb-generated/envoy/config/cluster/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 12E6FFF3FC945747FF54FA1BA408D8C4 /* cluster.upb.h */; }; - 3C089F18823FF52CCDAB0AD770560099 /* ssl_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = C8B06FF63F378553777F9A839CEA45B7 /* ssl_credentials.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 3C09ABF7E05F506E64BD3799E6EB4142 /* substitute.cc in Sources */ = {isa = PBXBuildFile; fileRef = C5F799B9DCED0C015FF843BCDFB0F4A9 /* substitute.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 3C15E8DA2AA32436E129351D53D2C5C0 /* stacktrace_unimplemented-inl.inc in Copy debugging/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 2E16B574F95739FBFF8A149BA59B53A6 /* stacktrace_unimplemented-inl.inc */; }; - 3C20231093F642E1346FF8156C799B44 /* wakeup_fd_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 27A9E6A0806AF85250E525868F402413 /* wakeup_fd_posix.h */; }; - 3C203B3FBC35DCC39EBFECF5F71B6432 /* semantic_version.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 01B540E31F3BED592296B10164B3C452 /* semantic_version.upb.h */; }; - 3C22A911F16EBAA0192B2DAEB92E71D0 /* load_system_roots_supported.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4212079D8333803243EC1F4C4404C10F /* load_system_roots_supported.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 3C2B08C0EA080BF04AEBE3276B171B69 /* versioning.upbdefs.h in Copy src/core/ext/upbdefs-generated/udpa/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = 17485351CF313B46A05549E8FD2DC7DA /* versioning.upbdefs.h */; }; - 3C3EF4A014F9CF1F6A4A5700C0274BBE /* event_service_config.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 4CB302D376AA289CC2E13FDC9BD2D0C7 /* event_service_config.upbdefs.h */; }; - 3C40F8B516EB22690A00AD6DA0B4ADE9 /* lame_client.h in Copy src/core/lib/surface Private Headers */ = {isa = PBXBuildFile; fileRef = C7CA61CFA9CC4EFA297770FB89E14C65 /* lame_client.h */; }; - 3C4739B2ED366FB2668700B38CFDB38A /* FIRVerifyClientResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 8136A3EE099FED7E6FC4222022DB099B /* FIRVerifyClientResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3C4D007CA6BB884E1A360983545C5AD2 /* descriptor.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 55FB15C1B5D44B83E91C7DBE1025AE61 /* descriptor.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 3C5A177388184DB32294B67ACB894D0F /* health.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = ECC6581A78E2AAFC64C8381B726790A9 /* health.upb.h */; }; - 3C5CAEBB17D94E75E7B8199E737C3119 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6E336DC2534E1E69B7828F6012B874C6 /* Foundation.framework */; }; - 3C5DC238AFB09721FFA06CB18197D59E /* subchannel_pool_interface.h in Headers */ = {isa = PBXBuildFile; fileRef = 8AF126228940DFBB0169093B1627DC10 /* subchannel_pool_interface.h */; }; - 3C6B30BB56EF2D39B03B30F79F64EBFA /* int128.h in Headers */ = {isa = PBXBuildFile; fileRef = 08B3811AFAFC25361E9E0A7FBB7C7FDC /* int128.h */; }; - 3C7966AF769BD29592DCA7BD1463A387 /* unicode_casefold.cc in Sources */ = {isa = PBXBuildFile; fileRef = D0B18B50725808F666D9681BE04B83EB /* unicode_casefold.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 3C80152DFE6E94F5D106AE744667489F /* event_string.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B229F9D273A132F29D455BC26A14F10 /* event_string.h */; }; - 3C8F8C1B12163E8240C5BC965CDD64A9 /* csds.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/service/status/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = C3C2BE33AAF01FCCA0A4154693B2D576 /* csds.upbdefs.h */; }; - 3CA09D68F0645BC95B0A18673233D6A9 /* validation_errors.h in Headers */ = {isa = PBXBuildFile; fileRef = 759551F43C7E542874248022F236FC75 /* validation_errors.h */; }; - 3CAF58384650B34D5A8BAD9C59154B44 /* b64.h in Headers */ = {isa = PBXBuildFile; fileRef = AFE270BCDA8048CA5B20BEC5BCA4B081 /* b64.h */; }; - 3CC5301D45667AA804D8BE56BC454984 /* channel_fwd.h in Copy src/core/lib/channel Private Headers */ = {isa = PBXBuildFile; fileRef = DBD12F2280D499DFAC19BBF05F91DF88 /* channel_fwd.h */; }; - 3CCC64BC0CE26A1B9B1C09544426D85F /* evp.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 3AB2D2578787D1977C2A086623DF4E6D /* evp.h */; }; - 3CD2CB458C00D651196519836D706272 /* binder_transport.h in Copy src/core/ext/transport/binder/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 8846655D53EF79DF7810F861DB129C2E /* binder_transport.h */; }; - 3CD6C8BD344221DC97FF56B2EB91475C /* httpcli.h in Copy src/core/lib/http Private Headers */ = {isa = PBXBuildFile; fileRef = 528CEAAD4E90587ABAB45EDD96C0B9DC /* httpcli.h */; }; - 3CDD136FB88121DAE7E31982B336B68E /* lrs.upb.h in Copy src/core/ext/upb-generated/envoy/service/load_stats/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = C3F10130BC25289B0938A7B8A9E3042C /* lrs.upb.h */; }; - 3CE6E17780D25313593286AC6D581B23 /* composite_credentials.h in Copy src/core/lib/security/credentials/composite Private Headers */ = {isa = PBXBuildFile; fileRef = D0F754575AF15CF21659E990E5AC6ED2 /* composite_credentials.h */; }; - 3CFC6340FAFEEF70D1F443F22BAB6FF2 /* subchannel_stream_client.h in Headers */ = {isa = PBXBuildFile; fileRef = C6BB651F60B4112E1C9DC2EB8FC9970F /* subchannel_stream_client.h */; }; - 3D2960D3C645E2C65A2D93AF5DB572C4 /* backend_metric.h in Copy src/core/ext/filters/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = 01AA869DA6F50150DB6A516AA7F4A927 /* backend_metric.h */; }; - 3D2A5F4105393B47EA592429C6B39E7C /* ratelimit_strategy.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 5E07B9C1678C91623B18DB42D63B45C3 /* ratelimit_strategy.upbdefs.h */; }; - 3D3380F2E1F5866D4B31774B7A10C295 /* FIRHeartbeatLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 901859CA44FE775E9DA45F0D436FE4C5 /* FIRHeartbeatLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3D38898D353BDEAA59A7A93FBDC32564 /* reflection.h in Copy third_party/upb/upb Private Headers */ = {isa = PBXBuildFile; fileRef = AA8CEB25D40CE457BDB3403F185F30D2 /* reflection.h */; }; - 3D407D7863EEC54A7A9E4A80D2FD20CD /* xds_listener.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 1345E13BA4FDBB3AFFA68283018BDF09 /* xds_listener.h */; }; - 3D446633AADC31C10A5A1EE4267DBC0A /* hpack_parser_table.cc in Sources */ = {isa = PBXBuildFile; fileRef = FD661D654B8B93715ECFDF8D2117EC7F /* hpack_parser_table.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 3D45F98948F5B59EE6EA0136DDBDCC3B /* poll.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F19488CE91969939757AF32AF3050D4 /* poll.h */; }; - 3D675715FB684536BA9E54677A57D3CF /* ext_dat.h in Copy crypto/x509v3 Private Headers */ = {isa = PBXBuildFile; fileRef = A72DD36EAAF8B821F3802132B4314307 /* ext_dat.h */; }; - 3D6EF62D3976A8B30ABE1EAD0084E0AB /* wrr_locality.upb.h in Copy src/core/ext/upb-generated/envoy/extensions/load_balancing_policies/wrr_locality/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 5CD658EE2CC2E60FB425C7FE285A61A3 /* wrr_locality.upb.h */; }; - 3D71A3C64FF23894A02E2078757839CA /* pcy_cache.c in Sources */ = {isa = PBXBuildFile; fileRef = 2F75B64E02CB5F326B83EEF622007BD3 /* pcy_cache.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 3D72332395233BD560B8547184273DA2 /* getrandom_fillin.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E31331647941860AE98099C796A3A07 /* getrandom_fillin.h */; }; - 3DAD18ECC9CA7A881E8EB624D552ADB0 /* map.h in Headers */ = {isa = PBXBuildFile; fileRef = B107EEC70CAE13297AA0F42B5110BFCA /* map.h */; }; - 3DAD46A55509420ECAF2C2FBA920A4AB /* protocol.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B629CD1122C320E88A3DF4B791A1516 /* protocol.upb.h */; }; - 3DB1B4124CD573ECCE0B61D401244E6D /* FIRAuthProtoStartMFAPhoneResponseInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = E8C4CE6B819E4B2192532AC2D9E35610 /* FIRAuthProtoStartMFAPhoneResponseInfo.m */; }; - 3DB31DD0EEE980DD62CFA590FB0B0FDD /* cpp_impl_of.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 82D13C1CD8A7FD8B0769017004CC7D6E /* cpp_impl_of.h */; }; - 3DB90AA1075B33229CBC152B6DA5C963 /* cordz_update_scope.h in Copy strings/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 21C95DAB370F06245ABB72AACC88EEB7 /* cordz_update_scope.h */; }; - 3DC8A37586E4927632967FE915C30831 /* message_decompress_filter.h in Copy src/core/ext/filters/http/message_compress Private Headers */ = {isa = PBXBuildFile; fileRef = 41AC16BCD9A08381A3F97850B0C9BF21 /* message_decompress_filter.h */; }; - 3DC9A421D9F49AAD6B04049456D365D8 /* FIRAggregateQuerySnapshot.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2E63FEDD199336042B2B317F667A874B /* FIRAggregateQuerySnapshot.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; - 3DDD402EF69A33F3CCD7D512A04D91F6 /* google_default_credentials.h in Copy src/core/lib/security/credentials/google_default Private Headers */ = {isa = PBXBuildFile; fileRef = E31F064CA5A982DF1A293F4DF342C614 /* google_default_credentials.h */; }; - 3DDDCB44D297155B9535155945BB4716 /* route.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F78BA2CAEA88F2C95083F594C34C93A /* route.upb.h */; }; - 3DE44FB5B6808792B0840D5D52F8B5D1 /* collections.h in Headers */ = {isa = PBXBuildFile; fileRef = 53DDA015F3A789693A8A38FB380474B4 /* collections.h */; }; - 3DE9D962B740DBD79B3A3151B19C8475 /* race.h in Headers */ = {isa = PBXBuildFile; fileRef = 858A462A922E3B82A20CA6FAD2D03618 /* race.h */; }; - 3E00849D39924BCBC68DAAA21E478840 /* xds_endpoint.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46DF5109E3E41B59471CA6D4A5DEBB13 /* xds_endpoint.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 3E05AEC14D9B7CEFAA9EF591790CCDCA /* transform_operation.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3FB0DF5272FF94014759BD9D23CC33C1 /* transform_operation.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 3E0ED41C2943A88F9D3FBA9DE251DA34 /* FIRSignInWithGameCenterRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 488298E5DD41AE6DF42CAFA39632BDEB /* FIRSignInWithGameCenterRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3E12E81B028368104E24FE145745A83D /* sync_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4B24444088D584F712D7FC14D82C35BC /* sync_posix.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 3E16DA416B8ABFBA7E1BDDCEEF6FC478 /* security.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A174314C39D401855EA85B42396433A /* security.upb.h */; }; - 3E17DE877DB028686ACE37F7B954B8EF /* plugin_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = 38DFEB12E491FE27CE0123B485FA92CC /* plugin_credentials.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 3E19512CAA59984C13E1C22800C0CF87 /* FIRAuthAppCredential.h in Headers */ = {isa = PBXBuildFile; fileRef = A68ACCE8471118CDE72D1AC14F1BCD0D /* FIRAuthAppCredential.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3E1AD7A440A21DCD842519D4CEF78332 /* bundle_serializer.cc in Sources */ = {isa = PBXBuildFile; fileRef = E1829E9F55E21AF6AF6E3A34F5A4D7B4 /* bundle_serializer.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 3E1DFFB7EA98562F86FC6033E1B9C67B /* security_handshaker.h in Headers */ = {isa = PBXBuildFile; fileRef = 46A1A3F35E5D70C2DD82E1F1B67BC469 /* security_handshaker.h */; }; - 3E2F5167B86BA84C9E47A8834B1291BC /* range.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 0E394C6120D94A8B14FAF37D19E69684 /* range.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 3E30E1A109CACAB285DA6D2426ED825F /* decode_fast.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E16A03CF7448FBAA9F0083B7C8370D8 /* decode_fast.h */; }; - 3E47134CA07DD8B2B3CA6F5B48CEE10A /* digestsign.c in Sources */ = {isa = PBXBuildFile; fileRef = F943E1DB6B4DE81D36CBE1C3742D6062 /* digestsign.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 3E6709975EFDD321424B2F2B99475BF2 /* logging.cc in Sources */ = {isa = PBXBuildFile; fileRef = 32BD28ECD693FF23ED3986A1F0E1DDA4 /* logging.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 3E876A75D18E0CFB52295D875982DFCF /* stats.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 92C5FEE6A4D726E49B64835A36B09969 /* stats.upb.h */; }; - 3E9636C591A753158BDA698B1A804986 /* client_interceptor.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9483CF2D3633D4A65FDCE72C29D9A3F4 /* client_interceptor.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 3E9A5042FB39E8B8F35702C1E6592B5B /* buffer_list.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8392A2E20DFDD535C4CFBC81337C46F3 /* buffer_list.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 3E9C7D1E472F00CC990FACD402775F28 /* stacktrace_generic-inl.inc in Headers */ = {isa = PBXBuildFile; fileRef = D588211B948C15203FDABDD0CF5A5FF5 /* stacktrace_generic-inl.inc */; }; - 3EB01084F7C7A3CA9665B488E81A7172 /* a_print.c in Sources */ = {isa = PBXBuildFile; fileRef = FCD770D6D7132322DEC042E74C7367EC /* a_print.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 3EBEB932E7FB5BFF0759ED145EB9D2EF /* endpoint_pair.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E5D14075BB50A7D87701A672EBC9444 /* endpoint_pair.h */; }; - 3EE8192C54B4E3E3760023FC0C83CB26 /* string.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 0EC6205C591DA2704E9D3A2DE341027B /* string.upbdefs.h */; }; - 3EEFACF4BD8B2E904F8E23E049DA5019 /* logging.h in Copy third_party/re2/util Private Headers */ = {isa = PBXBuildFile; fileRef = 0AB1D33F97938390017ECB2C80330571 /* logging.h */; }; - 3EF0C0BFA6733ADE22433FCB7703B886 /* combiner.cc in Sources */ = {isa = PBXBuildFile; fileRef = 79F909ECC3E93E8902F6D36A05CD6BDC /* combiner.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 3EF104647920E71C4D1A50D1E59F7990 /* grpc_service.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 5FFDBA3DC6A285E9AE3E4A59FA86D5FF /* grpc_service.upb.h */; }; - 3F065987B4AC7BCA27025A1635C7FCA1 /* ads.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 28A42F16914161A6286E0EDE25C50C58 /* ads.upb.h */; }; - 3F0D9019F946C156C03060BAE3FFF3D5 /* listeners.upb.h in Copy src/core/ext/upb-generated/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 0625752EBAB40908A94FC824D9F2769E /* listeners.upb.h */; }; - 3F2211A63A2C573FF60378F946297E39 /* socket_utils_common_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = D179F32FF7F26EAEFFD2E911CD0D333C /* socket_utils_common_posix.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 3F26DC0EEA9FA5CE9798970F6DFC97B3 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = AF43D43FFC187F3FC76FBE4C62ECBD62 /* internal.h */; }; - 3F2F67315FCD95A986BA6E1B0FF748F0 /* thread_annotations.h in Headers */ = {isa = PBXBuildFile; fileRef = 98A708F22C6CBB16326AF5FB550C6F8E /* thread_annotations.h */; }; - 3F3414C58006ABD771E505A808651C18 /* address.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 5A94685383E599EC13870BDEE0198082 /* address.upbdefs.h */; }; - 3F43B2775C3C40057FAEE542B9A1B43D /* filesystem_common.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8E54B0D90ECFBECE0B81E12C5F4C62E5 /* filesystem_common.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 3F47623BE5E4A61E2C845649131712E1 /* memory.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 154F2BE2B6E8724A87459B9290393B79 /* memory.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 3F50F257628E1B85D617C627D3EE355E /* alts_zero_copy_grpc_protector.h in Copy src/core/tsi/alts/zero_copy_frame_protector Private Headers */ = {isa = PBXBuildFile; fileRef = 232BB2ACE0E4A6B41534C3ED7B8EF446 /* alts_zero_copy_grpc_protector.h */; }; - 3F62ED53D9207414D59FDA1A866ED650 /* index_backfiller.cc in Sources */ = {isa = PBXBuildFile; fileRef = 04C355AE28356711B25A701D82B41E6B /* index_backfiller.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 3F6BE6FC5982FE2FE700520753EF3D30 /* call.h in Headers */ = {isa = PBXBuildFile; fileRef = CB541BDCA4A37E80246FEC9AF33FAF09 /* call.h */; }; - 3F7045C38F6CEB76A1EEEF3DC8E4E877 /* t_x509.c in Sources */ = {isa = PBXBuildFile; fileRef = 352CEF9C1FFB46CF0881CF7577763C4C /* t_x509.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 3F89324946B36ABC33DBAA96B0FD0714 /* v3_genn.c in Sources */ = {isa = PBXBuildFile; fileRef = E66706627D793C7A0B365B8A075D50C6 /* v3_genn.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 3F8D2E417995FD4E8D11229870207674 /* lockfree_event.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = D8AA4D3FF56DE7C182CD080A13F596E7 /* lockfree_event.h */; }; - 3F8F74E22DB2288B244263AD92846597 /* xds_channel_args.h in Headers */ = {isa = PBXBuildFile; fileRef = 01D0E5674F05545B5552AA408D4A478B /* xds_channel_args.h */; }; - 3F9A8841041EEB09030E1F66742B8F40 /* duration.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 88E28CC52CED0E3F92A4CD567F6479C9 /* duration.upbdefs.h */; }; - 3FA323058B263522DB64156FDF4DD930 /* ratelimit_unit.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F875EF5A8C7D0F1203F455C6888424A /* ratelimit_unit.upbdefs.h */; }; - 3FB8BA56FDCCA09FD2FEAD9428C66517 /* dynamic_ot.upb.h in Copy src/core/ext/upb-generated/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = DF50BEC38AF2EC847F9659CCFED5AD89 /* dynamic_ot.upb.h */; }; - 3FC053666890CEA220D7A63E11D2D786 /* json_object_loader.cc in Sources */ = {isa = PBXBuildFile; fileRef = C4A9BBC3A38CA89D1C601DE6552ADF9A /* json_object_loader.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 3FC192E4322B61F0B01390D06D6047D9 /* create_channel_internal.cc in Sources */ = {isa = PBXBuildFile; fileRef = 082558C5C19C348FF00FFF8ADA6C91BB /* create_channel_internal.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 3FC3F825F42949DA1DED7D2F6E6F5AD2 /* ssl_utils_config.h in Copy src/core/lib/security/security_connector Private Headers */ = {isa = PBXBuildFile; fileRef = 146AC436A90A252FD5897A59D8A920BB /* ssl_utils_config.h */; }; - 3FC886160A486A28B4B9EE5026B1FA66 /* pkcs7.h in Headers */ = {isa = PBXBuildFile; fileRef = 48290503A5BB8F5F01D63C7A13A116C3 /* pkcs7.h */; }; - 3FD0A58D280A7852850802F1778C6262 /* alts_grpc_record_protocol.h in Copy src/core/tsi/alts/zero_copy_frame_protector Private Headers */ = {isa = PBXBuildFile; fileRef = 0A013A714F4AED8C5DD374B85A646101 /* alts_grpc_record_protocol.h */; }; - 3FD7E1333DC542087D4A05CC58B0F422 /* service.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = E7CD78EC04F62235CC090B79192B34BF /* service.upb.h */; }; - 3FEECD8FBDCE5AFA2BF812A103789591 /* struct.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C42BC7313685B7674C0A791D2A72E38 /* struct.upb.h */; }; - 3FF641A04A833F53D52EB59F974CA074 /* slice_buffer.h in Headers */ = {isa = PBXBuildFile; fileRef = 6691054229FE27550E269235F3E624AD /* slice_buffer.h */; }; - 400E1ADCDE955AD3FBF3A281EB56C102 /* decode_fast.h in Copy third_party/upb/upb Private Headers */ = {isa = PBXBuildFile; fileRef = 17876962FA8C5D0178EC8CEB827D22F7 /* decode_fast.h */; }; - 401276032917449A7D3F5D175DE4E1C3 /* port.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 75DD5BF750D5530177B5F59F481087EF /* port.h */; }; - 4012D9BF05E8BEFF5CFC26E946B4D7A6 /* converters.mm in Sources */ = {isa = PBXBuildFile; fileRef = 6AE2CE6497FF7D8488BA5D3125F0BB17 /* converters.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; - 401605C07CF0DEE1EA21F4C477CF6423 /* raw_hash_map.h in Copy container/internal Public Headers */ = {isa = PBXBuildFile; fileRef = EA5EB5A0AE83C9AE2D6544B2799AB549 /* raw_hash_map.h */; }; - 40161038DD4852F11968BE6156021149 /* trace.h in Copy src/core/lib/resource_quota Private Headers */ = {isa = PBXBuildFile; fileRef = 14AFFEA6D12735FB4196FAFB7E399C3F /* trace.h */; }; - 402871F776DAFA2B55F157A7E7AEFE98 /* digest.c in Sources */ = {isa = PBXBuildFile; fileRef = 58D15552A3E54445716EDD63E55E2EF9 /* digest.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 4031386D36B3D9184CD2CA15A0383739 /* charconv_bigint.cc in Sources */ = {isa = PBXBuildFile; fileRef = BC3E14459BB674764720659EAF8730A7 /* charconv_bigint.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 4032C78DE760ECE1352FEC806B523254 /* external_account_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3F6C05F1E6B1AC54757BE1214A27B7BD /* external_account_credentials.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 40378E96C8D663B248558B0A1BFDD596 /* aws_external_account_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = C3C0682247F0D93AEDD5C4713F8BD1EB /* aws_external_account_credentials.h */; }; - 403F223F71E6E7B75EAC81C0E89A1B8E /* match.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E32A6C0F786FFCFE5FE3EAF320D288D /* match.h */; }; - 403F6E7CEE60C96A0849052D5566A4CC /* hash.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D3FF9734DC721CEC53FCD4ED190B6EB /* hash.h */; }; - 404F1D3EFAAD8D59108193345D7285BB /* grpc_service.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F56D706E77012F897CE34BE94F4C9F0 /* grpc_service.upb.h */; }; - 4053CCCB3E077A9C372908A8C27AC43E /* grpc_tls_credentials_options.h in Copy src/core/lib/security/credentials/tls Private Headers */ = {isa = PBXBuildFile; fileRef = 17F65555FFC0386F77E3593BC9E87342 /* grpc_tls_credentials_options.h */; }; - 405B61BF893B344F8AF54B9EB091D08F /* lockfree_event.h in Headers */ = {isa = PBXBuildFile; fileRef = 58640A70D90FCB3560E49C22EE4D0F00 /* lockfree_event.h */; }; - 405DD4AC71FCBADE9FFF998D6A967646 /* socket_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = D52ADBAC85E227A9DECCEC6F34776599 /* socket_utils.h */; }; - 407DC8A8C5BF1F587F23386A6422AF54 /* arg.h in Copy strings/internal/str_format Public Headers */ = {isa = PBXBuildFile; fileRef = 2EA0FF97D96F7BF03649833B91EA20AD /* arg.h */; }; - 407EB85A692B63B3ED064E4ED9AB4B5F /* scoped_route.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D5378060BCB42AA8BF69C98FF163CE3 /* scoped_route.upb.h */; }; - 40A9F7FDCB1C6306D8EA973B7F839CAC /* grpc_ares_wrapper.cc in Sources */ = {isa = PBXBuildFile; fileRef = 17EA3630DC9737756BCE14A611D46B21 /* grpc_ares_wrapper.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 40AC1A71AB1CE892744BE8117EB7748E /* periodic_update.h in Copy src/core/lib/resource_quota Private Headers */ = {isa = PBXBuildFile; fileRef = FA7CA1669C3F392E7F6749EB19AC4389 /* periodic_update.h */; }; - 40AF9AF77C59B5993BD38B6F1CE1384D /* rbac_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = EFD9D4BBA3833E2F30730C16D57E41C4 /* rbac_filter.h */; }; - 40B5D93EDF4BE61F57FAC0FBB2212EF3 /* http_tracer.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 677ABAF6941728100ADF71395EBDC59E /* http_tracer.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 40CC5DB9B99DAFE9169F54701F490DC5 /* alts_grpc_integrity_only_record_protocol.h in Copy src/core/tsi/alts/zero_copy_frame_protector Private Headers */ = {isa = PBXBuildFile; fileRef = 3C265AC8532D61B1CD13B91B87576FB6 /* alts_grpc_integrity_only_record_protocol.h */; }; - 40D626E293053E96E2FDA5BA855C59A8 /* ripemd.h in Headers */ = {isa = PBXBuildFile; fileRef = 738776B6AB209E4658F5EE8069597D8E /* ripemd.h */; }; - 40DAE98FC6BD07CD86F0D2DF757CED0B /* status_code_enum.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = B195581CEE5385F0283433CB07519DAD /* status_code_enum.h */; }; - 40E6E65B3A04D848BDD2F957A0846C40 /* map.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = F5EFF166F07E65A3104A6DFB4B745E14 /* map.h */; }; - 40ECE21F19CAA66BDC3B070D584E98CD /* resolve_address_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = DCFABC7B0A109ED157376A4007E12140 /* resolve_address_posix.h */; }; - 40F2997C6AAE94E744F1056D6BF91CFE /* health_check_client.h in Copy src/core/ext/filters/client_channel/health Private Headers */ = {isa = PBXBuildFile; fileRef = 188CDB4F8ADFDE5FAF959BD35BB56D0E /* health_check_client.h */; }; - 41125E57D8747B8C848A2FAFD1CDC7A7 /* GTMSessionFetcherService.h in Headers */ = {isa = PBXBuildFile; fileRef = EAD6D720CFAEB3208B4B1D37AB3201E6 /* GTMSessionFetcherService.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 41168F28A8C2F31F50FA61D4AFE3F8E3 /* load_file.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 1C794432AEE3059C645696D8CE60EE02 /* load_file.h */; }; - 4117085E0974614FA2C0F47E1CE6175F /* server_address.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5F1C7493078EA6ADFDF0B0E69A494773 /* server_address.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 412A75A990E6282A257B43917BEED001 /* basic_seq.h in Copy src/core/lib/promise/detail Private Headers */ = {isa = PBXBuildFile; fileRef = BFDAF4BC61A6DB8169F75C58AF273549 /* basic_seq.h */; }; - 412DBA037BAEED1F67BA52515CC6F91E /* delocate.h in Copy crypto/fipsmodule Private Headers */ = {isa = PBXBuildFile; fileRef = C4B2DA00F24CA3A88B31D4F26F3F8B40 /* delocate.h */; }; - 41352191B7B75EB8FBBD157385429E81 /* p256_table.h in Headers */ = {isa = PBXBuildFile; fileRef = 607ADFCCBAC72296AAF834D6CBA3945C /* p256_table.h */; }; - 41375FA28892A4A1D64ED34434A642A2 /* sockaddr_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 39D3E28102BBB1AF3E1D37D90C92A1EE /* sockaddr_posix.h */; }; - 414266AEC6D19F6D06B7A58AB8648742 /* xds_bootstrap_grpc.cc in Sources */ = {isa = PBXBuildFile; fileRef = 89203C3CD2244463E5C9ECAE8998DBB4 /* xds_bootstrap_grpc.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 4142B9C2F5252D6E2D5B77C42D2307CB /* status_util.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2749647CA6BA0679EED2A0D102114A35 /* status_util.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 414995D2CB4E3A2472C8341D9D784781 /* census.h in Headers */ = {isa = PBXBuildFile; fileRef = CB5D0091CA8CB95E45FA1736CBB3231C /* census.h */; }; - 41516D7D094AACADAE127EA97F40CE0C /* alts_handshaker_client.h in Headers */ = {isa = PBXBuildFile; fileRef = 351B2E3C11F7CC74ABB0F11C776740BC /* alts_handshaker_client.h */; }; - 41517517E5234ABA61BC5917370A384D /* http.upb.h in Copy src/core/ext/upb-generated/google/api Private Headers */ = {isa = PBXBuildFile; fileRef = E48B63F986978E616161D7455510314F /* http.upb.h */; }; - 41533C733C1229426D7104D680979EBB /* key_field_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 764C7A9F48833F600E3941686F37DA04 /* key_field_filter.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 415B53AFFB28B3DA9489D667653E3210 /* FBLPromise+Catch.h in Headers */ = {isa = PBXBuildFile; fileRef = 38FC2742B4198EFD796D9BA5C3EAEE8A /* FBLPromise+Catch.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 41646645BA075D643A8C3B069B13761B /* subchannel_list.h in Copy src/core/ext/filters/client_channel/lb_policy Private Headers */ = {isa = PBXBuildFile; fileRef = 00609AE4E4C3184533D744B9A30CC431 /* subchannel_list.h */; }; - 416A27B269B148601A9CCBBE1913B224 /* http.upb.h in Copy src/core/ext/upb-generated/google/api Private Headers */ = {isa = PBXBuildFile; fileRef = 77560720BEAB55E6B81274E02C204A03 /* http.upb.h */; }; - 416D2674339AE87D24B29FDD649BDFE9 /* debug_location.h in Headers */ = {isa = PBXBuildFile; fileRef = A785FC692ECB00E4071B90DDBF6DBEDC /* debug_location.h */; }; - 4187427C70B1EC3FC9A893A19D8D4E21 /* status.cc in Sources */ = {isa = PBXBuildFile; fileRef = D080E647D2209B72DE97459F80395894 /* status.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 41AA79B5D899F80EAC0FE61D75BDEC6C /* debug_location.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = A785FC692ECB00E4071B90DDBF6DBEDC /* debug_location.h */; }; - 41BA470A8E8FE8EC1D1D7A2BCCD66BF4 /* api_listener.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 7EC3E788B98B48709CD46214BEF89B27 /* api_listener.upbdefs.h */; }; - 41C9752599B5C5E56751547A11C13B02 /* params.c in Sources */ = {isa = PBXBuildFile; fileRef = F8281535998389FE890305C159FEF1B3 /* params.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 41CAFC01644F984952DFC1702F651A58 /* md32_common.h in Headers */ = {isa = PBXBuildFile; fileRef = 69CFD1307C912B9D47E120F558E4B0AE /* md32_common.h */; }; - 41D16BD8DC164B4F14D7EA798153D14F /* xds_routing.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = AC8AC73E3AFD7B618E391654E911B0E8 /* xds_routing.h */; }; - 41E3516421DD52B98191EF678061EAD7 /* server_interface.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 4B68B9D103D1FB0B0528BEE47E4B5267 /* server_interface.h */; }; - 41EACE70F8739F533E7B72CF462B4B98 /* vdso_support.h in Copy debugging/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 8D8108D8B644676C6E928A1C252614F1 /* vdso_support.h */; }; - 41F83F61C7689EB59EA68F6C1FC54533 /* connector.h in Headers */ = {isa = PBXBuildFile; fileRef = 97A8B6A71D866E223B119390FC306B89 /* connector.h */; }; - 420AA946F7E6112E93E2FCD711CA1DA3 /* address_filtering.h in Copy src/core/ext/filters/client_channel/lb_policy Private Headers */ = {isa = PBXBuildFile; fileRef = 9596DC3803256B1C985B60FB241492B8 /* address_filtering.h */; }; - 4219B8E5F289B2D0C415B205EC23F0DE /* FirebaseCoreInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = E1A4135396A460A713A353FF093C7740 /* FirebaseCoreInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 421E292AEC9FD7279DAC337F044FCFE9 /* xds_channel_args.h in Copy src/core/ext/filters/client_channel/lb_policy/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 207BD07A85E064D82C31A4586F791017 /* xds_channel_args.h */; }; - 422ECDCCA99C9220B1A44855AB20EEF1 /* client_load_reporting_filter.h in Copy src/core/ext/filters/client_channel/lb_policy/grpclb Private Headers */ = {isa = PBXBuildFile; fileRef = A861397642F26D9B3A2B8A8734D25B2F /* client_load_reporting_filter.h */; }; - 4236EE669F4BA82A272956C86C285C18 /* bits.cc in Sources */ = {isa = PBXBuildFile; fileRef = D956301BC50C50493399FA7E551ECB1D /* bits.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 424B360EE45837C6011A6C90FC0994A1 /* dynamic_filters.h in Copy src/core/ext/filters/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = D36CE396F016FDF4D6C77741982FF14B /* dynamic_filters.h */; }; - 4250BDF85DC837326E141C306772B1D0 /* endpoint.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E2C52ECE094E306EF5F0FB83EBEC007 /* endpoint.upbdefs.h */; }; - 425AB969FCA990DA17FF801BE1727A68 /* thread_pool.h in Headers */ = {isa = PBXBuildFile; fileRef = 028AB0B787DB2506AFC3C767B60CE71D /* thread_pool.h */; }; - 425F7F07E149882B7A44E26D8C2823E4 /* sensitive.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = FD53BDAA60C11E139052A737A66DB87D /* sensitive.upbdefs.h */; }; - 42618DC8EE73094BFF18F7E903454B45 /* FIRFirestoreSource.mm in Sources */ = {isa = PBXBuildFile; fileRef = 4FE87A67CC739306C0575B6302C9BC14 /* FIRFirestoreSource.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; - 4266FFE696F8FAE17D6CCAAA1F699296 /* socket_mutator.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 8FDF86A9CE9EDBD7959EFAA5E87473F0 /* socket_mutator.h */; }; - 427961B44BB5494D49CCA6BFCDF14371 /* FIRStartMFASignInRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = C8C8E84DF4E034EC32168C987E896B2B /* FIRStartMFASignInRequest.m */; }; - 4284A690201E1E9AFCC84785DB36106C /* wrr_locality.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = F10A4554F7A5BB1826B7D655C53D7B49 /* wrr_locality.upb.h */; }; - 42975CF9BEE38F0B31331728DB7FAA19 /* regexp.cc in Sources */ = {isa = PBXBuildFile; fileRef = 188BE3785B4092C02DBE4D892D5A7FF4 /* regexp.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 429833FF467249292900B4B6EA0DB158 /* http_status.upb.h in Copy src/core/ext/upb-generated/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = F1C0445280CDDB34127321F46D63364B /* http_status.upb.h */; }; - 42A344DD9B55E03B5F8C76709064DF06 /* salted_seed_seq.h in Copy random/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 9C06CF13668131D55179FE7481870EA8 /* salted_seed_seq.h */; }; - 42B390E59ACAA2CBE350AD31288E1128 /* graphcycles.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3DAF25A5933F55C9285B7AF56B85F8B2 /* graphcycles.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 42B3DC48C3A0E39C84399740E5F775DC /* lb_policy_factory.h in Headers */ = {isa = PBXBuildFile; fileRef = 37F0476FE3695902968717FC48DDA17A /* lb_policy_factory.h */; }; - 42D85CA3ACF582FCDA99D13C29CF860C /* regex.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 6D818AF319C7D09EE62BDB0A3E28678F /* regex.upbdefs.h */; }; - 42DCBF79F6F24757C634CA653B117D15 /* sorted_pack.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AC51CD662C33BBD4B460B884DE307C8 /* sorted_pack.h */; }; - 42E085D975591C383B7ED3B75672A29A /* metadata_batch.h in Headers */ = {isa = PBXBuildFile; fileRef = 848B821801DA3575DC6745DFCF758650 /* metadata_batch.h */; }; - 42E4AF37388F2639A33E241797AC8F1A /* server_context.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E8A62DEE58FE2266D3CA59FA37D734E /* server_context.h */; }; - 42E5B0F7856E30BA7B5E3B143FF0876D /* orca_load_report.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 120DE169485F7E52A03A57057AE8A10F /* orca_load_report.upb.h */; }; - 42EABF048018DFD1FC2B89E272B7C4DC /* empty.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 2251B7CDBF5C4541E60B1F5BFEBBF4AF /* empty.upb.h */; }; - 42EFB86F705A498D6F84F30D49C7C290 /* escaping.h in Copy strings/internal Public Headers */ = {isa = PBXBuildFile; fileRef = B50F571D4C6B41233971217B9CF0E454 /* escaping.h */; }; - 42EFB8E228C171449D2C4F05051B1770 /* promise_factory.h in Copy src/core/lib/promise/detail Private Headers */ = {isa = PBXBuildFile; fileRef = 2C9FD610C0A93C16EB93688CF4A8259D /* promise_factory.h */; }; - 43027D1AFCCA0BA73C4AA9032E019617 /* tls.upb.h in Copy src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = A174B32346BC7E5E49B52038764DE210 /* tls.upb.h */; }; - 4306E044BD3E631D605A2B85DB06316A /* config_dump_shared.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = A3E2892652A28BEE5C340BA46DA11B2B /* config_dump_shared.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 4306EE9D0962131816C310159085CE08 /* struct.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = AF89B3E7236AD3C2B8071DCD77C0DB0A /* struct.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 4339090A3DEC536A38C689DA98A49915 /* address_filtering.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5DEA42821B6F225F6CABB26B48C297D2 /* address_filtering.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 433D227FCADA617629927256C96C1143 /* FIRComponentContainerInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 9D63E56A12BA8266A2FE25DF52DD4602 /* FIRComponentContainerInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 433FE1EE717CEB646B426E84CEB78D91 /* cbb.c in Sources */ = {isa = PBXBuildFile; fileRef = C809735D523CCC344C53D51C8A4B73D5 /* cbb.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 434567D4702653AA75AFA9A30B6B8805 /* secure_auth_context.h in Copy src/cpp/common Private Headers */ = {isa = PBXBuildFile; fileRef = 9E0D54AA93EC0E6C62683A9577A8968D /* secure_auth_context.h */; }; - 434A9994DAB4344AB24AF78BD492E534 /* escaping.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9A3A0801808A9907CA9F3F2380A44003 /* escaping.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 4357E5D477C867B350C9B14AB135A508 /* stacktrace_riscv-inl.inc in Copy debugging/internal Public Headers */ = {isa = PBXBuildFile; fileRef = FC62437D59875DF3D4930A076152D69B /* stacktrace_riscv-inl.inc */; }; - 435E9127CEC953AE14C4C82A4CC99C41 /* rsa.h in Headers */ = {isa = PBXBuildFile; fileRef = 9972702880C9B730E47750CA3AACB066 /* rsa.h */; }; - 436D7EB9844246EFA9EB162188C1EA28 /* e_aesgcmsiv.c in Sources */ = {isa = PBXBuildFile; fileRef = F799C24ABCF793E28DFB7E5609241E05 /* e_aesgcmsiv.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 437066EBA9085F1D3E407807CA2880D1 /* time_zone_info.h in Copy time/internal/cctz/src Public Headers */ = {isa = PBXBuildFile; fileRef = 7D6F6587E2B9773CD8F2E3860F8BE665 /* time_zone_info.h */; }; - 4373D1CC984CCE93ACF01D629F861EE7 /* upb.h in Copy third_party/upb/upb/internal Private Headers */ = {isa = PBXBuildFile; fileRef = 0C4BED0ACBE8292203F54DC3EAE6A267 /* upb.h */; }; - 439A4FA5ED057CE339AA04B937B81A73 /* gRPC-C++-gRPCCertificates-Cpp in Resources */ = {isa = PBXBuildFile; fileRef = 9C7C87B5D0A6752AFA2642F1BCA967A3 /* gRPC-C++-gRPCCertificates-Cpp */; }; - 43A53C14640C32D524467CE6948868AB /* FIRPhoneAuthCredential.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A90885BB10FC6E1EE223C8DC747F79A /* FIRPhoneAuthCredential.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 43BB2E2D151AC86F1C19D1DF2C01B5B1 /* transport_security_interface.h in Copy src/core/tsi Private Headers */ = {isa = PBXBuildFile; fileRef = 626DBE3B2E122C648FBF932E289733B9 /* transport_security_interface.h */; }; - 43CBD94F9164A8A26C73893EC1A11E54 /* RCARecaptchaClientProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 19A5AFA3772DF97B4F21597F320D97CC /* RCARecaptchaClientProtocol.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 43E3241EE6525E51977E644D9CD48B69 /* init_internally.h in Copy src/core/lib/surface Private Headers */ = {isa = PBXBuildFile; fileRef = 9700E39B5C094BD84430EAB572665FDD /* init_internally.h */; }; - 43E40B86D45E6240059AB0A211D18B45 /* time_precise.h in Copy src/core/lib/gpr Private Headers */ = {isa = PBXBuildFile; fileRef = D4BD0B25405CDF3E185B7EB2C11AA568 /* time_precise.h */; }; - 43FF9043B1919C1480E999D0E09352D0 /* ev_apple.h in Headers */ = {isa = PBXBuildFile; fileRef = A5C816D318C5D37C3F05B39D62C3794A /* ev_apple.h */; }; - 44058BCDFF3D3EA24E34752A9E1BA679 /* RecaptchaInterop-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 4FC63B17115E7EB4C8F07347CC235F7E /* RecaptchaInterop-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 441189BF8F1D7095C9466461DC2E17C2 /* rand_extra.c in Sources */ = {isa = PBXBuildFile; fileRef = A0441B0B6F0EE39BDE1C690CF87D53B9 /* rand_extra.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 441D00A48F4466E7BDF5487403527685 /* frame_data.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 4DFDC825C68BEFF359AB77D63963DA3F /* frame_data.h */; }; - 442264D6A7CA33BBF1A7FCEA2094E8FC /* FIRCreateAuthURIRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = E21BC6070BCA241507851DDA31B01A65 /* FIRCreateAuthURIRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4433CD88531E56002128080BDB347F04 /* opentelemetry.upb.h in Copy src/core/ext/upb-generated/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 5E7E4014E5A3344D8A08C0FA2F80FCEC /* opentelemetry.upb.h */; }; - 443844EC8CA28195F33666BD63986550 /* cookie.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 872098F8965B338F6DB9DFBD7998B2BD /* cookie.upb.h */; }; - 443AF44B18D34317232F51DB62C59CB7 /* FIRAuthURLPresenter.m in Sources */ = {isa = PBXBuildFile; fileRef = 03FED8F623B0E89E9C6E0F2B8465ADA9 /* FIRAuthURLPresenter.m */; }; - 4455BEC8D1A94AD58E0DBFCC7311E32D /* matchers.h in Headers */ = {isa = PBXBuildFile; fileRef = 2921334CAE7D788B077700717E2C9DBB /* matchers.h */; }; - 446C46588D1BA080EFB3C2FF78EF3447 /* table.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 487BA1CB8FAB8A6FD229DD996EF9AB9A /* table.h */; }; - 4479B52380E156E8106D0585D06925EE /* server_info.upb.h in Copy src/core/ext/upb-generated/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 515F33D7B56AC9A5FEABF5D7D834CC05 /* server_info.upb.h */; }; - 44817AAE6929637EA1C2564CE13C3CB0 /* handshaker.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 2B9D55C7BC6752DBA75BF5318E4BEAAB /* handshaker.h */; }; - 448344AF591C828E9AA44AC11DBEA137 /* global_config_generic.h in Headers */ = {isa = PBXBuildFile; fileRef = DE39FD8649367557E651B574AE32E4BD /* global_config_generic.h */; }; - 4485B55870113D1D7939F3CB4B81802D /* circuit_breaker.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 49B1D643AF51D3C998E932D069B17407 /* circuit_breaker.upb.h */; }; - 4487864EF61F1476C0FFD5E542A4ED96 /* alts_tsi_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = D2D7040DC5A7FA0BEFF8B141CF2C6E70 /* alts_tsi_utils.h */; }; - 449D18A5AFE5448E9FFE29611924FA01 /* document_overlay_cache.cc in Sources */ = {isa = PBXBuildFile; fileRef = CAAB597C2F2442CCB905EA6D18241F9B /* document_overlay_cache.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 44C59EAEEE15C9CF19F457EECF85BDAD /* checked.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 35C9072FE84E4E63B48146BC96926907 /* checked.upbdefs.h */; }; - 44CB462D7D08B3F18FB5F261DA403B09 /* FSTUserDataWriter.mm in Sources */ = {isa = PBXBuildFile; fileRef = 80FB8905D1EECA2DC4B6D1AF4BC3FF26 /* FSTUserDataWriter.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; - 44CD5B9FED7A91EA6F33FC4B6A7F9DC8 /* single_set_ptr.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B9D2CCA84E9768DD64ED2302D0DB06F /* single_set_ptr.h */; }; - 44DBA375E28B69A18E38203F0A587871 /* circuit_breaker.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = CDC391759035FC76DDF36BFA4D915896 /* circuit_breaker.upb.h */; }; - 44E1E439FBEA444E90CD6D2058DA2A38 /* city.h in Copy hash/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 47ED763C8062323E1B68212451AD5898 /* city.h */; }; - 44E4816DCD133C576BC2999E8E5072B8 /* RCAActionProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = E77176DAFAD6569FC986EA927FBAED72 /* RCAActionProtocol.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 44EC5DE8A32E48F33E7F6E3F45353651 /* GTMSessionUploadFetcher.h in Headers */ = {isa = PBXBuildFile; fileRef = A3A80F6F4EE1F4A421CF8B3930795462 /* GTMSessionUploadFetcher.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 44F49AFF43B995BC9DB333B7FDFE65C4 /* tsi_error.cc in Sources */ = {isa = PBXBuildFile; fileRef = BC418F8E2293195379625D8BC133675A /* tsi_error.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 450BE1CCEBA48F373CE03411015DA886 /* timer_heap.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E48A20086959F1D370E5662A5A1494A /* timer_heap.h */; }; - 45116F654B3820C4083B91730A8AEC5D /* cord_rep_ring.h in Headers */ = {isa = PBXBuildFile; fileRef = 8CC456FFC90777410195C72C499AEE17 /* cord_rep_ring.h */; }; - 45202DA43BCA512F1CF666A3C517A331 /* channel_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = C086BE95C999C4502FFD2A48512E8A58 /* channel_filter.h */; }; - 453A522CF3A29BBE9A0A908CE9DDBC89 /* curve25519_64.h in Copy third_party/fiat Private Headers */ = {isa = PBXBuildFile; fileRef = AA65A4B87E769EF917B30DB35A891ECC /* curve25519_64.h */; }; - 4543DFCC16D9F3ADF0A9894A9C0DC03C /* FIRPhoneMultiFactorGenerator.h in Headers */ = {isa = PBXBuildFile; fileRef = BE8C945DBA46D34EF5AFC2B374FF9F14 /* FIRPhoneMultiFactorGenerator.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 454B2E01675864C236AD41D3EC4E5ABD /* client_load_reporting_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = E998B077AC7D4D695E1743A0712CDBD3 /* client_load_reporting_filter.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 4551FD5988E694A8EF5415A15EF8D496 /* xds_lb_policy_registry.cc in Sources */ = {isa = PBXBuildFile; fileRef = 245894C829F9D2E2C228299C0DDB28EB /* xds_lb_policy_registry.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 45612DF2D2CA632FF3CD53C18806ADC1 /* route_components.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = FF057E39A828E53FBE6D699AE0CA0E6C /* route_components.upbdefs.h */; }; - 4581365FCFFF182161157A938D23C83D /* HeartbeatController.swift in Sources */ = {isa = PBXBuildFile; fileRef = D8D3AE45380DFEAECB3BA6A5B2FBD5E6 /* HeartbeatController.swift */; }; - 4591816A2E5B650AD0CBD7FF03F2021E /* xray.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 705AFF135185C9A6F901F184A2232449 /* xray.upbdefs.h */; }; - 459215241C0D35D51388D4B2FF091F6B /* node.upb.h in Copy src/core/ext/upb-generated/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 629444E4E1A9FC1F2757CE426FBE60B3 /* node.upb.h */; }; - 45A5743B1A7636CEF9AB1C0C4A150090 /* transport_fwd.h in Headers */ = {isa = PBXBuildFile; fileRef = 080A8157D303DB6C82C6A918214DD169 /* transport_fwd.h */; }; - 45A847944512C9BA29818834F83E529D /* FIRComponentType.h in Headers */ = {isa = PBXBuildFile; fileRef = 00C832DBA6BD9A4E192A90F2731ECA42 /* FIRComponentType.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 45ACDFCB08CCE5F068E9FD878615A0EB /* des.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 3411A1A42B2A46331D1100D65DC7A9CD /* des.h */; }; - 45B6B73FADB2771C36DFE532D0EB3402 /* RecaptchaInterop.h in Headers */ = {isa = PBXBuildFile; fileRef = 6944293CB2607243C2718706B91089ED /* RecaptchaInterop.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 45BBB99262B82FBA93EB296013741845 /* migrate.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = DCA5935C5E8A93F10D18141407FA9D25 /* migrate.upbdefs.h */; }; - 45C1E4DF60E54640AA4F14C8F498E219 /* timer_manager.cc in Sources */ = {isa = PBXBuildFile; fileRef = DD5617CF629911034355625D5B49E56D /* timer_manager.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 45CC6B09C81ECEF86E9AC821629D69CF /* percent_encoding.cc in Sources */ = {isa = PBXBuildFile; fileRef = B5F3CEF3D9DF7B89BDC5284F3B38959D /* percent_encoding.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 45CFA56D449F6A32DEE2EE423898F0AD /* tmpfile_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5AA54FFBE2AF4B22CAE375C19E4786D0 /* tmpfile_posix.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 45D9DD1D364EB9C09B268C28407247F3 /* status_code_enum.h in Headers */ = {isa = PBXBuildFile; fileRef = B195581CEE5385F0283433CB07519DAD /* status_code_enum.h */; }; - 45DB56E4F390574678F5E1270D3D88A1 /* proxy_protocol.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 8368D024F6289CD4C6ED674FE54117EB /* proxy_protocol.upbdefs.h */; }; - 45DE02899389F90731277EBF4DF85A19 /* udp_socket_config.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 82F246AFBED00DBB7EED0B26694D490F /* udp_socket_config.upb.h */; }; - 45EAF812AF0582E7F6050351BF973F3E /* span.h in Copy types/internal Public Headers */ = {isa = PBXBuildFile; fileRef = CA87D9E3C19C35A07A6EAB8A3590CE09 /* span.h */; }; - 45EEE4F7F394569F6EE559FE86953FD3 /* stacktrace_win32-inl.inc in Copy debugging/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 266365B20E9CD9F0B66E131ACB113400 /* stacktrace_win32-inl.inc */; }; - 45F934D2B3CDB87CDAD815668ED05FFC /* nanopb-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 3BEF1AF9160BD729A275F0D55878D5D5 /* nanopb-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 45FD39559635B25C7F4EE0D1C7FC7347 /* cpu-aarch64-linux.c in Sources */ = {isa = PBXBuildFile; fileRef = CF293A66E90E961F030B1B891B7AF548 /* cpu-aarch64-linux.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 4609DA0CDBE8B7861260B3996190FD43 /* socket_mutator.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4EEFD82193E0C49AD0A3A978C6BC196F /* socket_mutator.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 462A794A8D77D95F03ABA240C7DD24C5 /* metrics_service.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/metrics/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 80503B25F026ABE1D34036BB6F82FD89 /* metrics_service.upbdefs.h */; }; - 46419FEFE6B29B6CF27B69201F0DCC45 /* timer_heap.cc in Sources */ = {isa = PBXBuildFile; fileRef = 820CE478CBF058B954A8D46AC8DB3BD9 /* timer_heap.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 4650E54F5675CDEF8F437D44DB62DB35 /* err.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 2271A4695C9EDCE8D0CE18DD508FB57F /* err.h */; }; - 4652861B2270D15CBF2433C0A692810E /* credentials_cc.cc in Sources */ = {isa = PBXBuildFile; fileRef = DCDA8341F1F227B9A398B385A35FC568 /* credentials_cc.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 465DB1F83AD00F4C823FA0FD46B36527 /* binder_connector.h in Headers */ = {isa = PBXBuildFile; fileRef = 39D949EA50CA8F9E6BDDBD4A26FF2769 /* binder_connector.h */; }; - 46611B8B9EFBE7B7FC4EE76671D3DA43 /* lrs.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 892905525499B31B482FD8B4B4BF4A87 /* lrs.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46688AEEC6F4D8B59C2B7D14D90A6E36 /* wrappers.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 8BA5D96DA846DC697F71DCD755AE2F68 /* wrappers.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 466CF769303DF14E89DD5B14FF88C641 /* manual_constructor.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A7778C4F025CB8202CC7F27B276FE39 /* manual_constructor.h */; }; - 46744D772B177388A5753D3E87EDACCC /* validate_metadata.h in Headers */ = {isa = PBXBuildFile; fileRef = 0336891C61BF31C85E91EEC8BEA4824A /* validate_metadata.h */; }; - 467E3B7995364E681600AA3A737C7AB1 /* load_file.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C794432AEE3059C645696D8CE60EE02 /* load_file.h */; }; - 468212EF81994A1A233D1AAFCE717659 /* cycleclock.h in Headers */ = {isa = PBXBuildFile; fileRef = 70D7AA536DB260202B825C476BA152E2 /* cycleclock.h */; }; - 468B44E4537BEDBB5C5ADC608DE62AB4 /* fake_security_connector.cc in Sources */ = {isa = PBXBuildFile; fileRef = CA9B3C16655D25FD94294CC82D35C6F8 /* fake_security_connector.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 469AAD4471860745B2838D3FABE25733 /* wakeup_fd_posix.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = FFC439467DAD329D39932AEBD15B921D /* wakeup_fd_posix.h */; }; - 469B028C93E66C86319F680B9DE42E20 /* regex.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 592900DA030AC4A58A4883B28D648DBE /* regex.upb.h */; }; - 469F6F9BD3AACDC231B93214FE042187 /* slice.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4C8D4AD392472B6DE3CAE9F1E403E696 /* slice.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 46AD663BB707BD604F0FF93AEB246253 /* xds_certificate_provider.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C6E2882C5D5BB6473DF3DF853B9B124 /* xds_certificate_provider.h */; }; - 46B388AC144D7B575365A6A5BF3979E7 /* security.upb.h in Copy src/core/ext/upb-generated/xds/annotations/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = ADCD8DFE593A8790EF8DF76D7659EFE8 /* security.upb.h */; }; - 46B67B0F1A734D5035602438EBD48E03 /* distributions.h in Copy random Public Headers */ = {isa = PBXBuildFile; fileRef = B845BB5213F2A9ED12CDE34590DA2ABB /* distributions.h */; }; - 46B948B88ECE85C0D9E6C7AAC44BEA54 /* transport_security_common.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 702960BEF13540BFC2B118960A714A34 /* transport_security_common.upb.h */; }; - 46C3FB879AC1C238F0E3138B43ABB89E /* call_push_pull.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = 254259009904437260472692D35B1947 /* call_push_pull.h */; }; - 46C7A0D57AF9BBF2E031DAA489B4C45B /* socket_utils.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 19ABBF7577C67551946CD8EF27D02115 /* socket_utils.h */; }; - 46CD06FD10FBFDA2728BED3932F1156E /* fork.h in Headers */ = {isa = PBXBuildFile; fileRef = A6BE8BF1FD8433F227C364FFAD4BB0FB /* fork.h */; }; - 46D072816BCF929452828C74DD58614B /* annotations.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/api Private Headers */ = {isa = PBXBuildFile; fileRef = 2032DCC5B304C25D554D131E7EAA99CF /* annotations.upbdefs.h */; }; - 46D9587DA781397CFC4CBA5EE55D80FE /* server_config_selector_filter.h in Copy src/core/ext/filters/server_config_selector Private Headers */ = {isa = PBXBuildFile; fileRef = C07580054B2150B2EA47F849C6ACF105 /* server_config_selector_filter.h */; }; - 46DEBC6B46C108F176E6FB0B20369915 /* atomic_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = C7460E8D305448ABCFBAA5EEAA48214D /* atomic_utils.h */; }; - 46F316F039C310DDD9B586F5197AA57F /* bind.cc in Sources */ = {isa = PBXBuildFile; fileRef = 11BF9ADD9F2453A3CC9D7EE6AE8D1501 /* bind.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 46FE06AB5774B7448A1CAB3E2430C456 /* bind.h in Copy strings/internal/str_format Public Headers */ = {isa = PBXBuildFile; fileRef = 1BBF3844FAF1D7CCCABA78FF41D836BC /* bind.h */; }; - 470CEBAB48829F8F8571FC7843275A9F /* p256-x86_64-table.h in Copy crypto/fipsmodule/ec Private Headers */ = {isa = PBXBuildFile; fileRef = A7C76F815BA1ACCF51948FA141EE6306 /* p256-x86_64-table.h */; }; - 470D0637EF9121D88C1680F5B6AD2D54 /* channel_stack_type.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AC3EA20738D61B8660CF5C30D1438A2 /* channel_stack_type.h */; }; - 4711CC4FD45C6ECD82ECDDC8E950FA71 /* hpack_encoder_table.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 9C8ECD963DF15A6C0CA692C541B1CA56 /* hpack_encoder_table.h */; }; - 47175C82268953AE0E312C2CBD493F84 /* method_handler_impl.h in Copy impl Public Headers */ = {isa = PBXBuildFile; fileRef = 19A23E1AD61FD7EC04565C3077754E2F /* method_handler_impl.h */; }; - 471A5452CE87BD6EE6C917D7ADF26273 /* dns_resolver_selection.h in Headers */ = {isa = PBXBuildFile; fileRef = DD3F2CD1E901F009F1FFA495FF9C878B /* dns_resolver_selection.h */; }; - 471A957EA39CAF909472E3D6B72D668B /* curve25519_tables.h in Headers */ = {isa = PBXBuildFile; fileRef = FBA213433EBA04FA3ECC6FC3FB0908FD /* curve25519_tables.h */; }; - 472110CC2EB8082E11B3AEFD370390B3 /* chttp2_transport.cc in Sources */ = {isa = PBXBuildFile; fileRef = 36C86A1E1380A713ECA3A59A5E8A06BE /* chttp2_transport.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 473098B9197F919F21F045CB92220DEA /* cpu-arm-linux.h in Copy crypto Private Headers */ = {isa = PBXBuildFile; fileRef = 559A054F40CF91467BADF1F1E2E432A3 /* cpu-arm-linux.h */; }; - 473A7BF02B0A342705D3103C0825F7D4 /* substitution_format_string.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D476990B3136475ADE67B7391B07406 /* substitution_format_string.upb.h */; }; - 473C3E43111B1DDD93E6607EDE776893 /* tls.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = C3305968FF0543665BC614A27723F5BC /* tls.upbdefs.h */; }; - 474706BCA25EC4EABA684B66D9689CDD /* rpc_service_method.h in Headers */ = {isa = PBXBuildFile; fileRef = D695E33920FCE21FF7BE36ACC41D3B6A /* rpc_service_method.h */; }; - 475761F9CBC71020FF49D75996D7A29E /* memory_allocator.h in Copy event_engine Public Headers */ = {isa = PBXBuildFile; fileRef = 3F95891C71213B1883A61B576E955919 /* memory_allocator.h */; }; - 477C4BD80FCE06B85EFF386C079CD464 /* tmpfile.h in Headers */ = {isa = PBXBuildFile; fileRef = 86D3BC6CAB304C97FBCEFBD958CB7DB9 /* tmpfile.h */; }; - 47831F5680CBEACF57265FB696BB1144 /* credentials.h in Copy src/core/lib/security/credentials Private Headers */ = {isa = PBXBuildFile; fileRef = 677EBD26018DD4F0935B9C7D8A9B371A /* credentials.h */; }; - 478E4A3806909F50C94672FA82D76F50 /* message_value.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A2E6485B6CC467E45DCA237903107FA /* message_value.h */; }; - 4790F9FABC98A9841A6C1DFF437BE46F /* cluster.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 12E6FFF3FC945747FF54FA1BA408D8C4 /* cluster.upb.h */; }; - 479912C4350089142767E1319E551308 /* percent.upb.h in Copy src/core/ext/upb-generated/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 62FA72B7577675E21A9E83DC6185D589 /* percent.upb.h */; }; - 47A16FE644F9F5FA1597B4AA0351D4C3 /* xds_bootstrap.h in Headers */ = {isa = PBXBuildFile; fileRef = E011348B10B6B69A81AD38B50CAC6F65 /* xds_bootstrap.h */; }; - 47B0DAC83913F604EDF58D9D371DDA91 /* randen.h in Headers */ = {isa = PBXBuildFile; fileRef = FA68B73040DF565D7EB1F0E6E7858688 /* randen.h */; }; - 47B462E45AF140AF6B0CFFCC9192AEF9 /* poisson_distribution.h in Copy random Public Headers */ = {isa = PBXBuildFile; fileRef = 3D4AE8F8BAE1ED57A44D83971C250970 /* poisson_distribution.h */; }; - 47BC0DE09A88584233AA5CEB092AB2F1 /* inproc_transport.h in Copy src/core/ext/transport/inproc Private Headers */ = {isa = PBXBuildFile; fileRef = 0A0870967A6B71036DA6AC5642402C26 /* inproc_transport.h */; }; - 47C8530FC39ED736C1F292DC53AE3FE0 /* Security.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6FCE3F16CF48113A9FAA51D9302C4AF0 /* Security.framework */; }; - 47D6F06ED35AA9D12A7B202CBE0833C8 /* time.cc in Sources */ = {isa = PBXBuildFile; fileRef = DFBC05A37F4F3DB80E6C9AA362B5C2CE /* time.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 47DEEAA99258329B9B30429C52E43382 /* regex.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 28FE76CFE9F4BEBCB914AFBADBAE79AA /* regex.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 47DFDFD5CAB84394FD6F6C9238F47B19 /* load_file.h in Headers */ = {isa = PBXBuildFile; fileRef = 31C2BCBDB222630431F638FACF0F9414 /* load_file.h */; }; - 47E4377A8A2A02BF8A0C5E8E20E8082A /* trace.upb.h in Copy src/core/ext/upb-generated/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 5AD05BF198C92840A113BB63ABB626A7 /* trace.upb.h */; }; - 47E92EAF5CD845887330AE8F11A41D68 /* validate.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = BDFC0385DCCBC982A4EA400406D8904B /* validate.upb.h */; }; - 47F6F464A0FFA81A04C1B67332673B70 /* e_rc4.c in Sources */ = {isa = PBXBuildFile; fileRef = 261F26C1A618E7201D25CC088FEE5C67 /* e_rc4.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 47F8EB044609ECA3BE29DD37BC15FDB2 /* prefilter_tree.h in Headers */ = {isa = PBXBuildFile; fileRef = B903D4DEFC7342FE0063E6E284FFC0A8 /* prefilter_tree.h */; }; - 4820766CBABF599CDD0450B6CC7A6936 /* FIRHeartbeatLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = CF6CA45E7D0E6AB974B869D561CCA495 /* FIRHeartbeatLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4824BCDF82CF96B7D91F5588533FAC9E /* forkable.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6A469E5C6DB2F95ED28A3096E328EDF1 /* forkable.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 4829CE20ED8A25B48B60A93BAD846B22 /* dns_resolver_selection.h in Headers */ = {isa = PBXBuildFile; fileRef = 2073F50B0FAF1F4D0E37DE1766BDCB54 /* dns_resolver_selection.h */; }; - 4831DCA1F386A9F1BEED1AFB462B9F6D /* bloom.cc in Sources */ = {isa = PBXBuildFile; fileRef = 57A40B48F5F191F834C38D0559133007 /* bloom.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 4834BCF202FCC3749AD9DF439A9C7E4B /* accesslog.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 54EB8059BF382C70FD70EEBAD47B8B9A /* accesslog.upbdefs.h */; }; - 483A679D769176DCACC4709830EAFFA9 /* symbolize.cc in Sources */ = {isa = PBXBuildFile; fileRef = EBD22B8BDB048726D64FBAAFA8F79F31 /* symbolize.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 484D6B48971EDF8CB52579E8AEF7E6A8 /* digest.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = B26605088B2A2B0A83100A0FEC3A79C1 /* digest.h */; }; - 484D6DD8D99CAEA20F04BE82BB0F7EFB /* wrap_memcpy.cc in Sources */ = {isa = PBXBuildFile; fileRef = 661DF176C7CFB3AF930EF8951DE2744A /* wrap_memcpy.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 484D8B6A158B4E1C4E079F70E800B4E3 /* orca_load_report.upb.h in Copy src/core/ext/upb-generated/xds/data/orca/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 33129397BEB630E69985E604A171C2A4 /* orca_load_report.upb.h */; }; - 48505E68762E766397AC3D23747FBEB0 /* FIRVersion.m in Sources */ = {isa = PBXBuildFile; fileRef = C33649CF93677841818A64DDB69DA564 /* FIRVersion.m */; }; - 485142528B3F8886DC70AE8F587B2F16 /* FIRQuery.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E0DADFE076F051FF1855CF11B91B5E1 /* FIRQuery.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 4856D65C77B1B1E04A34573B6E6FA763 /* FIROptionsInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = F9D007A814CD8A3C7793C7A04BE9FCBE /* FIROptionsInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 485AFE775D69E95844004AD3D48BAEE8 /* internal.h in Copy crypto Private Headers */ = {isa = PBXBuildFile; fileRef = 58134D0403E2A6A27BACFFDCE11206F6 /* internal.h */; }; - 485E345B763F8CF9A0DA347A5FF7D532 /* retry_service_config.cc in Sources */ = {isa = PBXBuildFile; fileRef = AE703F476C16C469B372C72422DE1C3B /* retry_service_config.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 4880B318D72F7CFB075B70F58381AF2D /* div_extra.c in Sources */ = {isa = PBXBuildFile; fileRef = 279D5CCBF8DD8518A716EC4F8E19606C /* div_extra.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 488547723A8C6BB2BF53467E355177D5 /* xds_route_config.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 4927744B72E21892CC18EFA818CE3E71 /* xds_route_config.h */; }; - 488B86AB9676F05315B405E390287A89 /* http_inputs.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = F4B0D6D086A465BD30BA7402D497718E /* http_inputs.upbdefs.h */; }; - 489FA2A9A9FBC5ADA08FF8B71C676313 /* FIRGetRecaptchaConfigResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 0368F8E4C3F699A47D43F08FE26913A0 /* FIRGetRecaptchaConfigResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 48B3EB470CAF3C41F02B0C98AF3C420F /* FIRAuthAPNSToken.m in Sources */ = {isa = PBXBuildFile; fileRef = D99218DBEB12800C8A7D71B72111FA0F /* FIRAuthAPNSToken.m */; }; - 48CC0D304F36B12B73A6A3BB3D23E9A3 /* channel_stack.h in Headers */ = {isa = PBXBuildFile; fileRef = 07F1FD0255609A03C3535619080FBCA5 /* channel_stack.h */; }; - 48CCB00188EDB83363A9D74379B98F33 /* ratelimit_strategy.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = D1BD1ED880C77C1C655E02C22720BDC2 /* ratelimit_strategy.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 48D2DA7A68073266AAA186696B3302E9 /* grpc_alts_credentials_options.h in Copy src/core/lib/security/credentials/alts Private Headers */ = {isa = PBXBuildFile; fileRef = BD2AAC335F72A9B51F02B1C9722C5E80 /* grpc_alts_credentials_options.h */; }; - 48D76501737087A33E1C576FC0A333A7 /* combiner.h in Headers */ = {isa = PBXBuildFile; fileRef = 2BF4588309DE5CD6475039ACC15D12CB /* combiner.h */; }; - 48DB6908ECA6A8ADAB52631F73B32C20 /* x_algor.c in Sources */ = {isa = PBXBuildFile; fileRef = EF5960F8A3B8DB76B25E521476AF6E97 /* x_algor.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 48DF1F3044A4D82F098F93A6C0D4B70F /* FBLPromise+Reduce.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C0FAA708D3C1C36DC535530C3EDA4CA /* FBLPromise+Reduce.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 48EA2BEFCAD3C3C3AA31E8A773D6DC14 /* delete_mutation.cc in Sources */ = {isa = PBXBuildFile; fileRef = F7D7BC2BB25A853BE16F349232A17FAF /* delete_mutation.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 48F75B041EFB391D227C35CF4EEA6BE8 /* builtins.h in Copy src/core/lib/surface Private Headers */ = {isa = PBXBuildFile; fileRef = 95D1B5F8323CAC1E42ED70309D6EFBBA /* builtins.h */; }; - 4903B6D6D5B22948287F4809EE69698B /* context.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D6A0A6A622EE2DD10856BF2120B85C8 /* context.h */; }; - 492A96B775688E5AD8646314EFEFF24D /* trace_config.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 618CE0051962CB7EF75D2A71FBC894D9 /* trace_config.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 492CC70D6E2922CCED60FDAE255033B7 /* write.nanopb.cc in Sources */ = {isa = PBXBuildFile; fileRef = BD37EA425FB318D08A49809858FC559E /* write.nanopb.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 4937D7BB3D1516496BBE419EDB740D2B /* alloc.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B8DF3E2F22B6B008556B1DD76AD00F4 /* alloc.h */; }; - 4938017026D9B5C6996787AFB572E44D /* trace_config.upb.h in Copy src/core/ext/upb-generated/opencensus/proto/trace/v1 Private Headers */ = {isa = PBXBuildFile; fileRef = 54740C790D97AC79FC6E71BFC679C950 /* trace_config.upb.h */; }; - 4942A4B4FADC3E71A259CA7CB65057AC /* transport_security.h in Headers */ = {isa = PBXBuildFile; fileRef = 507D4D4C69EAA3402BC276141C61F415 /* transport_security.h */; }; - 49430FC0B604523EC71A6B87B9926A38 /* socket_notifier.h in Copy src/core/lib/event_engine Private Headers */ = {isa = PBXBuildFile; fileRef = A600817231945A583370FABE0FC9D9BF /* socket_notifier.h */; }; - 494839BF1A6305338DC5A6F9FFB35BA1 /* local_transport_security.h in Headers */ = {isa = PBXBuildFile; fileRef = 34EA51FCBBBB11B0131384466FFD70A2 /* local_transport_security.h */; }; - 494A8992E303AA52CEB335CC806B7BE8 /* metadata.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = EE8C5E7BD8D7914A7BB379AE4DD7DEEF /* metadata.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 49608C3069068D38FA9AF97ADDF61FF3 /* range.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 86041FC67937CCFD550726ACF722A663 /* range.upbdefs.h */; }; - 4965A3AC2262B62448EC08B388FAE4F4 /* client_callback.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = F5B199BB2433946E3173CEF7694D5EFA /* client_callback.h */; }; - 496AB22D61C596349406BD430F91B883 /* internal.h in Copy crypto/bio Private Headers */ = {isa = PBXBuildFile; fileRef = B866F69741C9FF4A74D0A64591F03CB6 /* internal.h */; }; - 49716C192E980FCF4166C19D34B72007 /* timer_generic.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 604431C45AC92D9F096CF2D24CD8D5B4 /* timer_generic.h */; }; - 49774C2A9F338EBA9056A0A27643A845 /* semantic_version.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 04D1C1A69D8DCC157CDE20761C3A9864 /* semantic_version.upb.h */; }; - 4979D9D2B4507535FC8E992217E966A6 /* ev_apple.cc in Sources */ = {isa = PBXBuildFile; fileRef = 748448D516E73F7481AD9DC0D9EA1CB9 /* ev_apple.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 4990D35D63258B83018B7650E18FBF9E /* status.upb.h in Copy src/core/ext/upb-generated/udpa/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = 4EA4F61BA6DE6D6741FA81CAD1B4A769 /* status.upb.h */; }; - 4993E32F7AFC4D3F08FAE15AA2605679 /* promise_like.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B41C54125BEA274B0E44A102ECDED77 /* promise_like.h */; }; - 499864B18C66CC6EA35B748AA4E53E62 /* token_bucket.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 82C9B6412B8932479735E94CC934DDCB /* token_bucket.upbdefs.h */; }; - 499AA6C9C392734A850DB89763298A2B /* varint.cc in Sources */ = {isa = PBXBuildFile; fileRef = E4C27114610E9762FF254E324F4186AB /* varint.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 499BA8B2B50FDEA72C2557F601B9B1F0 /* generic.c in Sources */ = {isa = PBXBuildFile; fileRef = 3018A45187382EF60EDC7D0826513711 /* generic.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 49A96E64549B511D83FBD634D15E26CA /* config.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E577A9C81666A9F91FA34C74874730A /* config.h */; }; - 49AB4E8478F2B44282547A1CFAFB9F7B /* grpc_tls_credentials_options.h in Copy src/core/lib/security/credentials/tls Private Headers */ = {isa = PBXBuildFile; fileRef = A6AE9C55E3DA473D56A4C2144013731A /* grpc_tls_credentials_options.h */; }; - 49B948666E7F3D6A235A7A169D14771D /* timestamp.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = C2F7791B7CDFEC5662CD6A4FAEAC3055 /* timestamp.upbdefs.h */; }; - 49D1E318950549EE5154CAC8121DD88C /* oauth2_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6B356D1E00F9DA871B4C69F9F0518B3E /* oauth2_credentials.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 49D268FB59ADB4DA77476277F1CD396B /* deadline_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4647B464DAC3C7CA2C1AF5799DF7800E /* deadline_filter.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 49DBFBE53592E86D79961427F8FB9CBA /* parse_address.cc in Sources */ = {isa = PBXBuildFile; fileRef = 48A489C288E821611ECD4FB85149DB06 /* parse_address.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 49F71AA85F8EE4F79A918A363FE1DFAE /* ref_counted.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C087812611DD789464B8293CB08C565 /* ref_counted.h */; }; - 4A0207AEF761CC7181659445074B6A19 /* promise_like.h in Headers */ = {isa = PBXBuildFile; fileRef = BDA5E4E514C83B4080FD1C9F615C1286 /* promise_like.h */; }; - 4A046DE7C21CC8557EC928BFBCE00064 /* FIRAppInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 63E5B2E435521AAA50D70C9594103894 /* FIRAppInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4A09426F2CFDD58A5C0DC88E39D87EA7 /* filesystem_apple.mm in Sources */ = {isa = PBXBuildFile; fileRef = E12454BE108FE6E4AA93E999C5633B42 /* filesystem_apple.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; - 4A29FB48D80A4C96821D74ADEB2C5EB2 /* fake_resolver.cc in Sources */ = {isa = PBXBuildFile; fileRef = E83A6C91AFD0D0ECEDBAD9311A851436 /* fake_resolver.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 4A2E8FB7538910CB1BCF82654795FF65 /* time.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 425D58437AF65185850AD1738BA6E4ED /* time.h */; }; - 4A37C7269EE86E3CAB6FD4809A85C7E2 /* thread.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = F73E1D78FCC6D3C7F5A3AD1F0D762D54 /* thread.h */; }; - 4A3DC9769C5B71F1BB49F02C54ACBD15 /* frame_rst_stream.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 02A83991F374E71998EA0408354704D2 /* frame_rst_stream.h */; }; - 4A4426EB751AE214D479779B3302F7F9 /* config_selector.h in Copy src/core/ext/filters/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = 1ACB917CF960892AD5AD6CF6035DA2D3 /* config_selector.h */; }; - 4A505684CE40A358710109A92C4B04EB /* GULHeartbeatDateStorageUserDefaults.m in Sources */ = {isa = PBXBuildFile; fileRef = 0251753A62C90D6B9A3E49686D9E3686 /* GULHeartbeatDateStorageUserDefaults.m */; }; - 4A98AC01583661FEE404579B7FF70874 /* arm_arch.h in Headers */ = {isa = PBXBuildFile; fileRef = D3BF5EB52E0DFC38A1DBF0C7336F7719 /* arm_arch.h */; }; - 4A9E21C0B742AB49DB5248820C979B0E /* x509name.c in Sources */ = {isa = PBXBuildFile; fileRef = 9BD1478584A22F961A1BF76E5599F273 /* x509name.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 4AAE29BEDB0F0D36E3B140D23D95A9A1 /* api_listener.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 45A6D9388A48CD6B8C19CCB34796D622 /* api_listener.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 4AB0A2149C4F501E668D7AA994A5C396 /* service_config_impl.h in Headers */ = {isa = PBXBuildFile; fileRef = 9CB12FAFC8CD35E09D681B64D0A5E2B9 /* service_config_impl.h */; }; - 4AB38CAA03ACFFE6A79F508BEE177B6F /* cpu_linux.cc in Sources */ = {isa = PBXBuildFile; fileRef = A3A88764CFC4556A1D53FD8A112B5570 /* cpu_linux.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 4AC1A62C31F243D376746259CECA93A0 /* lightstep.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D2E7E57DF93DAE54FABFA6DEA74E15B /* lightstep.upb.h */; }; - 4ACA3B905E21264539BEA73F2CACA9D6 /* grpc_tls_certificate_verifier.h in Copy src/core/lib/security/credentials/tls Private Headers */ = {isa = PBXBuildFile; fileRef = 381A3485DDA7E4F2E64C3127D0E847FD /* grpc_tls_certificate_verifier.h */; }; - 4ACD9FFB8EB34BC7E00AD4DBFEF51450 /* upb.h in Headers */ = {isa = PBXBuildFile; fileRef = CD56792D14D5AC2584C0293A29A2B898 /* upb.h */; }; - 4ADAE1F495C0CA9E0BDF6C7FCFC45C28 /* client_channel.h in Copy src/core/ext/filters/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = 55C2F375DFC523DF473B83E3BD26B18A /* client_channel.h */; }; - 4AE380592AAF90FB8229C330EFF88558 /* seq.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = 42451DEB71FC64F850C3832CF5A3E213 /* seq.h */; }; - 4AFEFFDF3C4F5ACFE64D6247389592C9 /* cfstream_handle.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = E894220545B2955C83C809AA8FB61623 /* cfstream_handle.h */; }; - 4B31AAB79B2E382016C2F2568D45BD06 /* discovery.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/service/discovery/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 3B9AB857B8D9653E68D1A3909D4D9907 /* discovery.upbdefs.h */; }; - 4B3C1C4F02C1CA1F2F18669D95C89CDB /* call_op_set_interface.h in Copy impl Public Headers */ = {isa = PBXBuildFile; fileRef = 3282F1AEF772ECEA9B2DA45B3C8B1706 /* call_op_set_interface.h */; }; - 4B40AF08750C4109978FA4F4D1B7E945 /* chunked_vector.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 8BC80525CCF79271C5C8B1A58A3CD6E9 /* chunked_vector.h */; }; - 4B62DC39D12C13F6F6AD89C84FBC83AB /* async_generic_service.h in Headers */ = {isa = PBXBuildFile; fileRef = A79AAE49FF4B97318D57FAE267F533E7 /* async_generic_service.h */; }; - 4B648E45D7F93D3786F6D1D886E916AE /* versioning.upbdefs.h in Copy src/core/ext/upbdefs-generated/xds/annotations/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 96376842707628BA781C9D941D12F7C9 /* versioning.upbdefs.h */; }; - 4B6DD07F582A8EAC15D9739BEB5DC2A7 /* poll.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = 7861E0AF527F94E380FBD0B0C77150D5 /* poll.h */; }; - 4B76227E8BA913AAC71EA5B7F1CF42FD /* proto_buffer_reader.h in Headers */ = {isa = PBXBuildFile; fileRef = E5359379FC10D3F77FF50503BA5F5F19 /* proto_buffer_reader.h */; }; - 4B99586D77F9197D0C8844FD6F65B1F7 /* construct_destruct.h in Headers */ = {isa = PBXBuildFile; fileRef = 275AFB3AFE5471B08DD0F988AA12C351 /* construct_destruct.h */; }; - 4B9B3F5A096D569BE111605DBB273FA7 /* exec_ctx_wakeup_scheduler.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = 41F4B8E09D1DF8576BE40DCD9EA1B2B4 /* exec_ctx_wakeup_scheduler.h */; }; - 4B9D525F3CEEBEF7910F4245773DF2B7 /* cluster.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = BAA8919C86221AA163397E164C7E7443 /* cluster.upb.h */; }; - 4BA650FFB080DAFFB9B58B6CA2EB6C75 /* any.upb.h in Copy src/core/ext/upb-generated/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = 04AA242262A0F3748A18170440020F85 /* any.upb.h */; }; - 4BABDCC3413B6F37683E536EDD2A10B6 /* nameser.h in Headers */ = {isa = PBXBuildFile; fileRef = 24E16C567C345BC163E5396656A8160C /* nameser.h */; }; - 4BBA3A30C6EFFC70B90763E269BD65E2 /* grpc_alts_credentials_options.cc in Sources */ = {isa = PBXBuildFile; fileRef = E420FDE636F679D52B33A52D717EC25E /* grpc_alts_credentials_options.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 4BBAC6B1EAF3F89159784A5125B7FD5E /* config_dump_shared.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = AED0B8E01D505F3709886D52684EE68F /* config_dump_shared.upb.h */; }; - 4BBAEF8418A21E75BDDE5029CD9458E8 /* xds_transport_grpc.h in Headers */ = {isa = PBXBuildFile; fileRef = 7FFBB2575934A84CD4407EAC5962C6CA /* xds_transport_grpc.h */; }; - 4BC1DBAA9F377832C91E10243A9D841F /* try_seq.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = 47F900A793A5B6C92BCD57457053FBE0 /* try_seq.h */; }; - 4BD1AFF071DA9449E145A5BD5789ADC5 /* FIRGoogleAuthCredential.m in Sources */ = {isa = PBXBuildFile; fileRef = 358520D93B3C479B798F73BD398B9E6B /* FIRGoogleAuthCredential.m */; }; - 4BD9EEDB43A6ADFE7FB3A33A1117C5D0 /* sign.c in Sources */ = {isa = PBXBuildFile; fileRef = 405A39BF6061898F5A507AD2D187FEF5 /* sign.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 4BDABCDAD0F901634A981BC2EB851B15 /* frame_goaway.h in Headers */ = {isa = PBXBuildFile; fileRef = 33C4A96A5DE21D1E08DA02F702FF5916 /* frame_goaway.h */; }; - 4BDD8941A466D83E64E541EAC25C193E /* call.h in Headers */ = {isa = PBXBuildFile; fileRef = 16196582E5C5D40C0D157F0BB8D35BBE /* call.h */; }; - 4BE1ED805F2A59F3AD74AF8E37A81730 /* number.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = B4D028EBBF368C157F36818D8289A054 /* number.upb.h */; }; - 4BE68F6DD8963FA526B63FCB908641DF /* sync_windows.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 23C8EE2D4BF4383E917F1E72CB0BA495 /* sync_windows.h */; }; - 4BE774AF7AF54DB5F756C71B24E82E02 /* insecure_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = 46C99CB910DC4D335D3B72EC7EDFCE51 /* insecure_credentials.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 4BEDA979F4E88512D230125F429C015A /* pollset_set.cc in Sources */ = {isa = PBXBuildFile; fileRef = CEC41E1012CBECD8C9C57AC7C72A3A09 /* pollset_set.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 4BF44B30A3C2E5B0BEFF60D23F7D1EE5 /* GULNetworkMessageCode.h in Headers */ = {isa = PBXBuildFile; fileRef = FF7EC7567DD1202920B1957CB8672639 /* GULNetworkMessageCode.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 4BF69BFBB3D62E8709293DE11E7BA1DD /* frame_data.h in Headers */ = {isa = PBXBuildFile; fileRef = 806BAF4EE90D0D2B91CCAE4DC1B5A6D7 /* frame_data.h */; }; - 4BFBBE5CB14B876E28D762DABCDB219F /* thread_manager.h in Copy src/cpp/thread_manager Private Headers */ = {isa = PBXBuildFile; fileRef = 270A610065256330E8535BA38ADAE627 /* thread_manager.h */; }; - 4C0ED70FB5466C57793381CD803F55ED /* load_bundle_task.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7FA4AF3280CD0C83C3079000FD578F65 /* load_bundle_task.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 4C2B85E74B4E6EAC189712A54288E1D1 /* dual_ref_counted.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = C87994181FC0239F0402A13AE7CBDCF2 /* dual_ref_counted.h */; }; - 4C2CB99127F0FC2A7603DF0587E92188 /* auth_token.cc in Sources */ = {isa = PBXBuildFile; fileRef = C2D90BC2D1C5C01FA1A368369697A75E /* auth_token.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 4C36715A4E6090F777F774BC5AE1B07E /* init.h in Headers */ = {isa = PBXBuildFile; fileRef = 2CFCEFB76B73C3019203ACBE144E2235 /* init.h */; }; - 4C581BBE5B22C19BB1E6F558535AE63A /* Security.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6FCE3F16CF48113A9FAA51D9302C4AF0 /* Security.framework */; }; - 4C58C29D30C9346DA264A541A3A05F5B /* bio.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E2BE82371FDAC1C2C07A492AED9D349 /* bio.h */; }; - 4C653CB72276B74C1A24E9B253E3E81B /* channel_stack_builder_impl.h in Headers */ = {isa = PBXBuildFile; fileRef = 71D4822EF1AB4BA6BDC5D95395236A78 /* channel_stack_builder_impl.h */; }; - 4C66D8406AFDCEACC8194350740F74B9 /* status.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E4A432438E0A11F90BE2B08951B2885 /* status.h */; }; - 4C6DFE2375F472BFECF42FE3CD265A8C /* iomgr.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 7DFD1FD2827DBEFDD11DB028326CEBAD /* iomgr.h */; }; - 4C70192C3A757EC7BE9D2304455094A6 /* memory.upb.h in Copy src/core/ext/upb-generated/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 825D8B270ADAEB8E8B610CE88F6D0DFB /* memory.upb.h */; }; - 4C73CC93D8AB1DE9F0CD62D9CAF98CD5 /* alts_tsi_handshaker.h in Copy src/core/tsi/alts/handshaker Private Headers */ = {isa = PBXBuildFile; fileRef = F0358DDDC5ED4B160F62181F272628D9 /* alts_tsi_handshaker.h */; }; - 4C7731B6EE0C1D5E13E104C2853834A4 /* skiplist.h in Headers */ = {isa = PBXBuildFile; fileRef = CB7301C31E71B9CF229EED538E1EF5BF /* skiplist.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4C785FFC032DF291BB005C26D3680230 /* FIRCreateAuthURIRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = C3C1F931030FEF6569EF2178FD514048 /* FIRCreateAuthURIRequest.m */; }; - 4C7A0C4C2ACB7EC68A64B46F5C358AEA /* opentelemetry.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = FA8E0DF24CF84E28B0CBEE8D050321D3 /* opentelemetry.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 4C7CBBA0526A92BC9EC9B4F65A371BA7 /* notification.h in Headers */ = {isa = PBXBuildFile; fileRef = BD7DE0A7F2233E31D3BEFCB227B715FF /* notification.h */; }; - 4C81C91118755BC623774379D1F340BB /* testing_hooks.cc in Sources */ = {isa = PBXBuildFile; fileRef = BF98892018C0C9B2BB824EBE3597AB07 /* testing_hooks.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 4C996AE80875E2685DDE725B44944F40 /* channel_fwd.h in Copy src/core/lib/channel Private Headers */ = {isa = PBXBuildFile; fileRef = 1C78067BDBE1D18ECA497231AC19E002 /* channel_fwd.h */; }; - 4CC9262140DF8218E24EA3A6D620B271 /* gsec.h in Headers */ = {isa = PBXBuildFile; fileRef = E9809B0928C3092801D88BDF0681660B /* gsec.h */; }; - 4CCBAF9EA3619BEB2BCA0DE1ED0EAC4C /* api.h in Headers */ = {isa = PBXBuildFile; fileRef = 173FEBB8CBBD480F37B2794415F76E3C /* api.h */; }; - 4CD7D88232424D2F7972C087F5D9AD06 /* value.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 4630CCD35443096D1E2FEEED400B0C29 /* value.upbdefs.h */; }; - 4CE00043BD23B10A10B60BF8815B4EF4 /* t1_enc.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3FEFD01AD6F526A81D3B734BDB3AD046 /* t1_enc.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 4CF49DA0E48373B5DCA0B12E47DD485E /* opensslv.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = D2B77739ABE06062E09E9D909642D93B /* opensslv.h */; }; - 4CF5A683ADC21069CC2E92FF9DB2BF45 /* loop.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = 7EDE1BD86074D7CA9C51E550793862B8 /* loop.h */; }; - 4CF724FF31B8A3D742272F4104019401 /* message_allocator.h in Headers */ = {isa = PBXBuildFile; fileRef = E4B3B000F04698C2544DD063CD5B0912 /* message_allocator.h */; }; - 4CF83799DACE523B392F31E4F9751500 /* decode_fast.h in Headers */ = {isa = PBXBuildFile; fileRef = 17876962FA8C5D0178EC8CEB827D22F7 /* decode_fast.h */; }; - 4D0C2177007219B8F01BCEA690F50AB2 /* wakeup_fd_eventfd.cc in Sources */ = {isa = PBXBuildFile; fileRef = F5D0834018E518C3AC6786409A07EDA9 /* wakeup_fd_eventfd.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 4D2FA8FFE2A3293DF2CC5B97422DBA49 /* hpack_encoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 704E8748DDB35FAF66471C49C504C5DF /* hpack_encoder.h */; }; - 4D3226BE26E5FAD6D06D25FFF8374D42 /* address.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 145EA771FCD62182DB86117A67DFF1FB /* address.upbdefs.h */; }; - 4D4B1DC503F2E88051EF208041AF9FBA /* timeout_encoding.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 6937CA174368F516E7D43989322F587C /* timeout_encoding.h */; }; - 4D4D59B034C2283530200C214D4949F8 /* fake_resolver.h in Copy src/core/ext/filters/client_channel/resolver/fake Private Headers */ = {isa = PBXBuildFile; fileRef = 8A11E59ED9F68DCAFB41BDF0E50DBEF2 /* fake_resolver.h */; }; - 4D4F04E5BA5712E997910AA0710D2E55 /* http_client_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = A6938644DD75457C14B5B6E9512FBD54 /* http_client_filter.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 4D55F4CD173C057BE8B6D58AB833AA97 /* objects.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = B23AAD761EF0D909CE2A8A5E5454A766 /* objects.h */; }; - 4D696411C3EF8D0313CB91178331FAC8 /* p_rsa_asn1.c in Sources */ = {isa = PBXBuildFile; fileRef = FF5E4D8426F06CB5231ACFB708B98ED0 /* p_rsa_asn1.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 4D6D40510BF401FF739B017D0DEDB354 /* gaussian_distribution.h in Copy random Public Headers */ = {isa = PBXBuildFile; fileRef = DBD5D1A7A6FF8951E79D73FBF5F9FFDF /* gaussian_distribution.h */; }; - 4D6F4F01EB96009E6DBC75D700165598 /* priority.cc in Sources */ = {isa = PBXBuildFile; fileRef = D45E4FB04A2F5661F170F437762F68CB /* priority.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 4D9766A93CD8A7673C2602099C144DDF /* service_config_call_data.h in Copy src/core/lib/service_config Private Headers */ = {isa = PBXBuildFile; fileRef = 5A9D748A72C5EF3D4D0D6FDAD619166B /* service_config_call_data.h */; }; - 4D98AE2984B5ED38426FE5274154A980 /* hpack_encoder_table.h in Headers */ = {isa = PBXBuildFile; fileRef = BC4204713C26DB397A8AAC24089CC49B /* hpack_encoder_table.h */; }; - 4D9A9D5078D5442990C89738CDDC95BE /* port_undef.inc in Copy third_party/upb/upb Private Headers */ = {isa = PBXBuildFile; fileRef = 4173C2AB943154E8F5FD8DE826DAA61B /* port_undef.inc */; }; - 4D9E68956202972D88DE9E6AE420A378 /* v3_extku.c in Sources */ = {isa = PBXBuildFile; fileRef = 18526C213320164BFF5E7C5B7C186879 /* v3_extku.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 4DA3D47ECCDD741C5514842A5BDF1B34 /* endpoint_components.upb.h in Copy src/core/ext/upb-generated/envoy/config/endpoint/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = E304231909E187742B9610BD30582326 /* endpoint_components.upb.h */; }; - 4DA5C90FC91C838FE74BF36338B0A17B /* channelz_registry.h in Copy src/core/lib/channel Private Headers */ = {isa = PBXBuildFile; fileRef = A7FDC40B27C34AEE930A9E902411346C /* channelz_registry.h */; }; - 4DB0D5F5B53AECFFF53D46108647ACA0 /* def.hpp in Copy third_party/upb/upb Private Headers */ = {isa = PBXBuildFile; fileRef = 47965232E48917F41362BCA0E50826A8 /* def.hpp */; }; - 4DB1BFC8EEFE2CB2CB8067F05100942E /* tls_certificate_verifier.h in Headers */ = {isa = PBXBuildFile; fileRef = 07B5614E6363884F610B39068C12B1E7 /* tls_certificate_verifier.h */; }; - 4DC90A831986D02F34E9C36C601A1239 /* a_object.c in Sources */ = {isa = PBXBuildFile; fileRef = 5CC42C060F544932394327771D03EE37 /* a_object.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 4DCE33139B8EF06D463AA32B96E6C072 /* sha256.c in Sources */ = {isa = PBXBuildFile; fileRef = E66ECFCD913AEC91113EA54AC47495AC /* sha256.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 4DD20F738233794F982A24648F135F69 /* server.h in Copy src/core/lib/surface Private Headers */ = {isa = PBXBuildFile; fileRef = 72DA0ABB75ADE5F14CEAD7713867A0A8 /* server.h */; }; - 4DD7FA5D6268544120B8E956A24645A6 /* any.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = B34D44E636CBAAD3043C612FCAB740C0 /* any.upb.h */; }; - 4DD869388EC38025B828D1C323343FB7 /* v3_crld.c in Sources */ = {isa = PBXBuildFile; fileRef = 3D4BDB3AFD0A321E3DD7D127E6117761 /* v3_crld.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 4DD9CACFA11A5E9DB876287433DA4149 /* endpoint.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 23FF272E4931E112E178E695DA36C5AE /* endpoint.upb.h */; }; - 4DE1478680823112E4498456273A1809 /* http2_settings.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = F8E99FF62420723DE95F7778C21149FA /* http2_settings.h */; }; - 4E057C2F484173946E32412693E6501E /* alts_shared_resource.h in Copy src/core/tsi/alts/handshaker Private Headers */ = {isa = PBXBuildFile; fileRef = D66F6BE1403961D4B1C8C82EBC3380D4 /* alts_shared_resource.h */; }; - 4E1104B0081D6C14688D51B7EC827102 /* vsnprintf_compat.h in Copy third_party/upb/upb/internal Private Headers */ = {isa = PBXBuildFile; fileRef = B231D2929E392D3F03B896A4B35EA36D /* vsnprintf_compat.h */; }; - 4E188F4095FBE740D64591916B878523 /* versioning.upbdefs.h in Copy src/core/ext/upbdefs-generated/udpa/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = 6F08DA410B010FD5EF9F4635DAA7C3E3 /* versioning.upbdefs.h */; }; - 4E19C4D9A28C9D327E498D00522A49FC /* ssl_transcript.cc in Sources */ = {isa = PBXBuildFile; fileRef = 59677A49FF785B876C8D865B91CEC32D /* ssl_transcript.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 4E2D37B0099EA171533822CB68E06D6D /* local_documents_view.cc in Sources */ = {isa = PBXBuildFile; fileRef = 13E53A35A6B10B14B822401B10697A47 /* local_documents_view.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 4E441FB65EC2D2B4E9F6BC8B867E8D14 /* path_transformation.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/http/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = FE3CFA78AF13AB77CD8C1CAF9DBDA77F /* path_transformation.upbdefs.h */; }; - 4E470B42C2096E1873DDFF7B0A808AEC /* FIRTOTPMultiFactorInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 920D344E6B620528C55CE7EE8270B3B2 /* FIRTOTPMultiFactorInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4E5773B45C167D6BCEC736E39F3564C3 /* server_config_selector_filter.h in Copy src/core/ext/filters/server_config_selector Private Headers */ = {isa = PBXBuildFile; fileRef = 1FFA8BFF04370260E7DF86886A867442 /* server_config_selector_filter.h */; }; - 4E5EE0E568BA49BB7597961516B7B4F2 /* init_internally.h in Headers */ = {isa = PBXBuildFile; fileRef = E70CD4BC5166E03D1D4DF95E7434AAF5 /* init_internally.h */; }; - 4E6B0E86261B15950803929272DD88FD /* socket_option.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 3BCF691DC99C8D9743A3AA74FF645890 /* socket_option.upb.h */; }; - 4E6D7F1D24BA15B6A6B14E171FD40EF5 /* tap.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 1DE62FAAE286CCC194CD33B462FA7EC8 /* tap.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 4E6DDFC9D913CBBED0916465BC692AD3 /* local_security_connector.cc in Sources */ = {isa = PBXBuildFile; fileRef = 849ED0992F3C7C43F16F8B249FB47A74 /* local_security_connector.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 4E73C90D2C99FF9F485E632A3E98307F /* utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 65155D084FBE12372CBA1E8DA86CC4A9 /* utils.h */; }; - 4E741E0EA18B7C01FE85C4382529454A /* grpc_service.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 2F56D706E77012F897CE34BE94F4C9F0 /* grpc_service.upb.h */; }; - 4E81C6BA781CE46E43665653A03F4B72 /* set_mutation.cc in Sources */ = {isa = PBXBuildFile; fileRef = D3E5A5D778AFD7EB5B9A25F900ED7FD6 /* set_mutation.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 4E85026F36400754A74107B2EB916CCB /* unix_sockets_posix.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = AD878EE3680847148D33B693B1B39065 /* unix_sockets_posix.h */; }; - 4E877A25EBF5A1BAA91431FA4EB80A03 /* cast.h in Headers */ = {isa = PBXBuildFile; fileRef = B03CB1DB20B18AA82985C8183F6E1764 /* cast.h */; }; - 4E974C5C8C42FBB4950031879D278E1C /* FIRDependency.m in Sources */ = {isa = PBXBuildFile; fileRef = EC41380911574852C9C8C724B19989F4 /* FIRDependency.m */; }; - 4EA9565297B828CF1215275BA2B2DFD7 /* alts_counter.h in Copy src/core/tsi/alts/frame_protector Private Headers */ = {isa = PBXBuildFile; fileRef = DA6DF344A1EA21110E741BC9F289A8FE /* alts_counter.h */; }; - 4EAB1C5D53B9AC9EABF1FC977D4C2674 /* default_event_engine.h in Headers */ = {isa = PBXBuildFile; fileRef = CAE79D362F367389D47EEB66B9BA5638 /* default_event_engine.h */; }; - 4EAC9FC6119DC49EF0E5F1A6C23CAE10 /* auth_metadata_processor.h in Headers */ = {isa = PBXBuildFile; fileRef = 0548729B5398A6BB1298D4D7D8C8B645 /* auth_metadata_processor.h */; }; - 4EAD72CBF06E015A95EEC257FE4C5CB3 /* codegen_init.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0F6516A370559F3696FE839653B24473 /* codegen_init.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 4EC6B91328CCFC0D44FF745A20DFD6D3 /* FIRAuthAppCredential.m in Sources */ = {isa = PBXBuildFile; fileRef = 48D98A3AFAE95D01525515410ED73D72 /* FIRAuthAppCredential.m */; }; - 4ED9923CF83FDB6ED6A77E6333E472BE /* promise_based_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 561368502117315E1C8C52B9F44F8750 /* promise_based_filter.h */; }; - 4EDA93D488CD0A2338B9E06D9333162C /* tap.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 0C026E164309BD57461813C31AEC0F43 /* tap.upbdefs.h */; }; - 4EE516BD4FCA1A556C35CB8954343E7B /* xds_resolver.h in Headers */ = {isa = PBXBuildFile; fileRef = 338C41D1810425B51CE75208980BD225 /* xds_resolver.h */; }; - 4EFC5FEBDCA4752920C98334F8FBA82D /* FIRStartMFAEnrollmentResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = ED81A8CEA57F3596E1B6B35919C72A80 /* FIRStartMFAEnrollmentResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4F0A69824E2AAA749EF5EB75584FC726 /* container_memory.h in Copy container/internal Public Headers */ = {isa = PBXBuildFile; fileRef = B66552DADF9C8B268C364F7009B26532 /* container_memory.h */; }; - 4F10495C1BD830833AC9450BED5A0930 /* server_info.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 30A2CB414B944153384BA5FAFF9D2270 /* server_info.upbdefs.h */; }; - 4F2201F8099250059AAF7C31442BD7CC /* xds_certificate_provider.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 8C6E2882C5D5BB6473DF3DF853B9B124 /* xds_certificate_provider.h */; }; - 4F3AD4C6E054A6D7CE0FC549211F0944 /* percent_encoding.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C4F1074A58B80D18F3ACCE466B237F1 /* percent_encoding.h */; }; - 4F3CBDB9B029DF3E8FAB542D0161B22D /* frame_settings.h in Headers */ = {isa = PBXBuildFile; fileRef = 83CBE129F5D534768D4E8452DFA15CD6 /* frame_settings.h */; }; - 4F46274C9A308EA88246BCD9A2928755 /* context_params.upb.h in Copy src/core/ext/upb-generated/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 262C592EC3A0F8789C886B2CD3283C19 /* context_params.upb.h */; }; - 4F5109BD29A94E71BF03BC562D66BA15 /* timer_manager.h in Headers */ = {isa = PBXBuildFile; fileRef = B4B31727210C12554FD9BF0C287C30E1 /* timer_manager.h */; }; - 4F520910CFFAAEA4773B3E3C446E450E /* service_type.h in Headers */ = {isa = PBXBuildFile; fileRef = 8BA441E380A71E80E9C27DC42C69A28E /* service_type.h */; }; - 4F53D5D29A3106F3F210782A06843A90 /* ads.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 6798E263C7C5EA17A26793A0714EF4EF /* ads.upb.h */; }; - 4F5F0B4F5503F9652F6F340AF7FE35E6 /* FIRAuthProtoFinalizeMFATOTPEnrollmentRequestInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = C818A66C7A3D8CE6DD10FE531E143F08 /* FIRAuthProtoFinalizeMFATOTPEnrollmentRequestInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4F6716E0FC0BBE573B08646C19F09538 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = CA6CC875C1875CF542F5EC00EC7C49B1 /* internal.h */; }; - 4F68C001B6F4AD024C024C126B74B9DC /* unix_sockets_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4B274F9109C0E3690A9687208E23CE6E /* unix_sockets_posix.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 4F6DED527AA94BA80233748E221DFCDF /* discovery.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 612092FF34C08EA646FDBB6F59EB7C5E /* discovery.upb.h */; }; - 4F7F96ED44286C4F6BB8C771F444C3C5 /* listener_components.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = EC91EE169F104329D44BF9D031A08194 /* listener_components.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 4F85582ECD208964AC162630694F1AFF /* stringpiece.h in Headers */ = {isa = PBXBuildFile; fileRef = 9CC6C38CA5AC54E5BB752E1201DAB65B /* stringpiece.h */; }; - 4F9928A96E0762EF878A57042B560AE5 /* FIRVerifyAssertionRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 6A0DFEB3AD5115B4EF963CA6ECB7B0EA /* FIRVerifyAssertionRequest.m */; }; - 4FA1A7EE966F4178779E68B63720591D /* csds.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F078356C759B45AE2D465538210B802 /* csds.upb.h */; }; - 4FA2F9F22B437997C0C9995303876D95 /* resolve_address_impl.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 93FD06B4F774E91B657616EB576AE8B7 /* resolve_address_impl.h */; }; - 4FAC9095C6F59820F0FE7D2E628E8930 /* host_port.cc in Sources */ = {isa = PBXBuildFile; fileRef = D7209BB21ED1C8B2A042650031AB3E1C /* host_port.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 4FADA08DC3181FCBB4741E424452AFA7 /* grpc_tls_credentials_options.h in Headers */ = {isa = PBXBuildFile; fileRef = 17F65555FFC0386F77E3593BC9E87342 /* grpc_tls_credentials_options.h */; }; - 4FAEF8A5FB6989C7F6DB397F9C74C03B /* trace.h in Headers */ = {isa = PBXBuildFile; fileRef = 32C86FED17DD95F9B7C6B6E64438F05A /* trace.h */; }; - 4FB4A35FCE52E681200D2BE37409B37D /* cmac.h in Headers */ = {isa = PBXBuildFile; fileRef = E466B63531A69D143134218170383275 /* cmac.h */; }; - 4FC6881BED250873B37AD0687ED34F68 /* accesslog.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = BA402AD6E721076A6D162778796B8465 /* accesslog.upb.h */; }; - 5001A1A978382FDBEB2940370870D2A5 /* xray.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 0548C87ED687A4B5A91049F19F9B237D /* xray.upb.h */; }; - 500CC1877838F2B4EF2CC8881D8E0A76 /* resource_quota.h in Headers */ = {isa = PBXBuildFile; fileRef = 936DEAE0DDAA100CB54678057411E09E /* resource_quota.h */; }; - 5019A29A40D00F547EA20C970B5422B5 /* channel_argument_option.cc in Sources */ = {isa = PBXBuildFile; fileRef = 35E898B12A207112DB0853AE3275B0C3 /* channel_argument_option.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 501F071843EE7BA397CCC7DAA7D9C0DE /* loop.h in Headers */ = {isa = PBXBuildFile; fileRef = 220CAD286B49150C1CCB39A6B7D19735 /* loop.h */; }; - 502E2FD71DEDFB7CA6B883A427CBFEA2 /* address_is_readable.h in Copy debugging/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 7DA007BA7B0B8B194EA631107E77EE06 /* address_is_readable.h */; }; - 503822C1E2C63364D90089D6275A78A6 /* collection_entry.upb.h in Copy src/core/ext/upb-generated/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = D604AAA6012030F1A3B507CE757376AA /* collection_entry.upb.h */; }; - 50419CD12E5623A144D0A04756BF6BAA /* alts_security_connector.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0B36D6BC90DB6F20B965D1505E7709B1 /* alts_security_connector.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 50495824DE43B5AD3E5B5F38BC81839A /* conf.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 8194AA320AB8FAD421BB90AC70767FFD /* conf.h */; }; - 504D6F2687D76B3CF2B0FBCBE1DAAB12 /* xds_cluster.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0262101D7563C18C092FDCC09A355971 /* xds_cluster.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 5063E5C0D4BC820E38E6F98D5B0BA0D7 /* grpc_if_nametoindex.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = A4BA6300457AF16415E6C78C3FD82B33 /* grpc_if_nametoindex.h */; }; - 506BCFE5860E61994309DA080A2E21B7 /* status.h in Copy src/core/lib/promise/detail Private Headers */ = {isa = PBXBuildFile; fileRef = E04F87549BF341FC3D4B23B6D3AC9437 /* status.h */; }; - 508216062274CE3C48BCAE37436F4430 /* secure_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C804E76A5EC6FA9CC2F80A0523C6546 /* secure_credentials.h */; }; - 5088161EFE8E462C55E7E9EB0510374E /* FirebaseCoreInternal-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E8D6FCFF76F5265F1F1447D8E8509EB9 /* FirebaseCoreInternal-dummy.m */; }; - 5089C83AB0D0A258D5999C0C08AA18CB /* extension_registry.h in Headers */ = {isa = PBXBuildFile; fileRef = 2FAC688AA5AB810052F128AACBE1289A /* extension_registry.h */; }; - 509E58B8D9DB562312C41DE4755161E8 /* orphanable.h in Headers */ = {isa = PBXBuildFile; fileRef = 6ADFD13245789236FB1886911D21E92F /* orphanable.h */; }; - 50A66E917DBCE6EFBA9EF2794493436F /* GULHeartbeatDateStorageUserDefaults.h in Headers */ = {isa = PBXBuildFile; fileRef = 0866A529FD2AA2239BFC2431DA9A9D4C /* GULHeartbeatDateStorageUserDefaults.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 50B042C8E2D686F0FCEE430FC5D0B697 /* match.h in Copy strings Public Headers */ = {isa = PBXBuildFile; fileRef = 7E32A6C0F786FFCFE5FE3EAF320D288D /* match.h */; }; - 50B2D406B1A85719D64DA9DC2B8D3886 /* logic_utils.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7E1C95B0EF6F3631D1B7E6FDDEB3FF69 /* logic_utils.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 50BD32C742B6610A7ED0C33F64A4EA12 /* matchers.h in Copy src/core/lib/security/authorization Private Headers */ = {isa = PBXBuildFile; fileRef = 2921334CAE7D788B077700717E2C9DBB /* matchers.h */; }; - 50C10EBC4A4C9DF06131B041498CFC40 /* iterator_wrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 03A33CB17BB2B707EFC6FBFE59298650 /* iterator_wrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 50CC25A00F98694336308928E6B12909 /* event_service_config.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 6591BCAFB4298119AB4185E24A528D76 /* event_service_config.upb.h */; }; - 50CE612CE741715246E87F40185122FC /* md5.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 6545AE38DFE5BCD5EA3421121EC9E608 /* md5.h */; }; - 50FDE90EC67D2DF49B1DECB43C64EC5F /* client_channel_channelz.h in Headers */ = {isa = PBXBuildFile; fileRef = AD8BD74603E3D6BCEC62D93F5D7C5653 /* client_channel_channelz.h */; }; - 5108C3477DB73F2F0A1651B7C2A7621D /* dynamic_thread_pool.h in Headers */ = {isa = PBXBuildFile; fileRef = EAA8888AC538FD9D7890A3687BDDDB31 /* dynamic_thread_pool.h */; }; - 510B52374E380ACED9244C9874CF934D /* json_encode.h in Copy third_party/upb/upb Private Headers */ = {isa = PBXBuildFile; fileRef = E6E0BE5532F3B3BD5DF662B48CCF9CB4 /* json_encode.h */; }; - 51120788C41F5B9A75ECB1F197CC7AFE /* hash_policy_traits.h in Copy container/internal Public Headers */ = {isa = PBXBuildFile; fileRef = E863353054D2963313D783489FA04695 /* hash_policy_traits.h */; }; - 51142F3FF3E2FABB089BFE54418DB565 /* async_unary_call.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F9D5565D9E7D0602C4B952F6902ED55 /* async_unary_call.h */; }; - 5120568D372166E4F94E2FFACF2968BF /* leveldb_remote_document_cache.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5890FB02BD062A30CE25893709B9BF06 /* leveldb_remote_document_cache.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 51285E4DAB2D33DE116DDF54357DF7EF /* status_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = AE1AEDA0D286A91F35AFB762DB76FEF4 /* status_internal.h */; }; - 513CBD8BE28F736246A838569C33FCD7 /* frame.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = F7E90EBDCB985F811CEC408095BA0528 /* frame.h */; }; - 514B96B50762B73EA57AA67D89B002B5 /* abseil-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 528091B66F03D3BA5F2E67AA2589B8C9 /* abseil-dummy.m */; }; - 515601966CE8E8133B66C7F90DD79731 /* stacktrace_x86-inl.inc in Headers */ = {isa = PBXBuildFile; fileRef = 905A183262F24CC6250AD6680E587C01 /* stacktrace_x86-inl.inc */; }; - 515A48F9953C41DB5A3D9974EA911625 /* callback_common.h in Headers */ = {isa = PBXBuildFile; fileRef = EF1AE0561328D311F6A1B5B54D1213EA /* callback_common.h */; }; - 516CDC983A2C3A548434E76482D3FA9C /* metadata.upb.h in Copy src/core/ext/upb-generated/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = CD7EBF5FB7364063B984A7B4471F6301 /* metadata.upb.h */; }; - 5177E1FA83954A478FFF0580E38C7A77 /* city.h in Headers */ = {isa = PBXBuildFile; fileRef = 47ED763C8062323E1B68212451AD5898 /* city.h */; }; - 5180BA4B16995054E6AF2796F8A9286B /* symbolize_emscripten.inc in Copy debugging Public Headers */ = {isa = PBXBuildFile; fileRef = E03A2AED69E6696CF60A1947CE49B9BF /* symbolize_emscripten.inc */; }; - 518659ED6066204EA74F2ED1391DE25B /* call_hook.h in Headers */ = {isa = PBXBuildFile; fileRef = 88DBF16A12144E5220E91AB339862D16 /* call_hook.h */; }; - 51916BAF322437916D883777859F56D6 /* socket_utils_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 08907FFC03E574D5F29CE200623AED27 /* socket_utils_posix.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 5193229B6F3863D406729A480C945335 /* FIRAuthProtoStartMFAPhoneRequestInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = CB0C2546AE5093FECEB80DC579DBB87A /* FIRAuthProtoStartMFAPhoneRequestInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 519446B5A91C7BF04AD621E5D900FB6E /* resolver.h in Headers */ = {isa = PBXBuildFile; fileRef = 1F11F8643585D41931E1577B6B6525DD /* resolver.h */; }; - 519DA6ED661C7F13FB8E75E8EC92E549 /* byte_buffer.h in Headers */ = {isa = PBXBuildFile; fileRef = 931F00845085134A7761CDFFAA1F1C49 /* byte_buffer.h */; }; - 519DFA8077B7A50A1C5A1DF2F0D510A9 /* FIRAnalyticsConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = EBA0D2779EFE92A09DF5EE5B8DA769C6 /* FIRAnalyticsConfiguration.m */; }; - 519E5A27193958965AA1F2FF104236F3 /* FIRGetOOBConfirmationCodeResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 9EBD4B00BE5B93E2EA9C17C913CD21DF /* FIRGetOOBConfirmationCodeResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 51AE0E42378ABE963D306F871FBEEC73 /* backoff.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = F83BB5DD7DFD588350A0E1174D2F2C1C /* backoff.upbdefs.h */; }; - 51B39D8474146A6DD42E7A66A86CA183 /* curve25519_32.h in Copy third_party/fiat Private Headers */ = {isa = PBXBuildFile; fileRef = 0B2695022ADEC049C2EC78CC26BD764F /* curve25519_32.h */; }; - 51B94F6C57E62239494B66AAA4303351 /* GULAppEnvironmentUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = C7A1031A9D5DE7BBD40592CE991B393A /* GULAppEnvironmentUtil.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 51C51BB7D33894FE6D1E88EC1E0C6C6E /* metrics.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = D957A4380785E239ABD643AFCBF2E17F /* metrics.upbdefs.h */; }; - 51CB1AF147900C0D890744811A45524D /* char_map.h in Copy strings/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 5429BD3A57E4435D54B5E57F3721F8FC /* char_map.h */; }; - 51D797B08F36315A9E2BAC21F4546D47 /* channel_creds_registry.h in Copy src/core/lib/security/credentials Private Headers */ = {isa = PBXBuildFile; fileRef = 20A4907F772C4293D9F29BC95E41C1B3 /* channel_creds_registry.h */; }; - 51E87B120B2241445F945FA7C2FE2601 /* http_proxy.h in Headers */ = {isa = PBXBuildFile; fileRef = D44A24285C81EE46EE1650482DF89584 /* http_proxy.h */; }; - 51ECC1435FB717F34DE5EEFE855710E3 /* gethostname.h in Headers */ = {isa = PBXBuildFile; fileRef = 7082B127535C072E0A4D2E35E8F507B3 /* gethostname.h */; }; - 51F71A784968D8D759E829D8CAED1111 /* hpack_parser.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = B28A6E10C0B793A03D24AC91C9F9C108 /* hpack_parser.h */; }; - 51F93CECA852FDC06CC76208E451276B /* low_level_scheduling.h in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = D4F654FCE15099B757465EE57D6A5D89 /* low_level_scheduling.h */; }; - 52066CCDD8138A2ACA2164D5DAA50F90 /* resource_locator.upb.h in Copy src/core/ext/upb-generated/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 0B7FB9BBCC529428F75ABA3625B7BF56 /* resource_locator.upb.h */; }; - 520B599FB841EC738EEFE6912289F957 /* common.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 29F3AAFE1C57026B4889429C58EE7A25 /* common.upbdefs.h */; }; - 52109DB384F1AA848DA1B096073425B7 /* xds_http_filters.h in Headers */ = {isa = PBXBuildFile; fileRef = 051B374A3FE406984A474A5230AB898B /* xds_http_filters.h */; }; - 52128016DF55EC0AB9134D5C94E7ED40 /* rls_config.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 8EC2D6D1BF6239E1204779E205989C09 /* rls_config.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 521971A3AE28E4E3020BD34675CA702F /* v3_skey.c in Sources */ = {isa = PBXBuildFile; fileRef = AB78583279404F5C88D307D00A646E9B /* v3_skey.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 5224714A7FA5E0141B0B0A551673C78C /* poly1305_arm.c in Sources */ = {isa = PBXBuildFile; fileRef = 6502B66701E14DD734858905A8F62A0E /* poly1305_arm.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 522EF5BA642CA37E228A919C50DFEE40 /* deprecation.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 677B40C1A4115D44A0302A4F88C3C27E /* deprecation.upbdefs.h */; }; - 524E74B61BCCD51070908C55C2516A0E /* http_status.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 746B021D9784A2252490A4C64CC51995 /* http_status.upb.h */; }; - 525F72BFEF421471E2F0EC20BE7FDB56 /* xds_common_types.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3F8C0C6C92FD5F79F104515886E6BC0C /* xds_common_types.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 5260AC30893BBDFD6E281DB894E0F2A3 /* authority.upbdefs.h in Copy src/core/ext/upbdefs-generated/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = BA6B248A78ACF0D788AC72CE2FC38E52 /* authority.upbdefs.h */; }; - 526F5B1AC3EF7695057C15B37A2D6583 /* channel_stack_type.h in Headers */ = {isa = PBXBuildFile; fileRef = E244AB962170375248B1E3D35BED0501 /* channel_stack_type.h */; }; - 5273B406A5303267B707DC49E86316B3 /* digest.h in Headers */ = {isa = PBXBuildFile; fileRef = B26605088B2A2B0A83100A0FEC3A79C1 /* digest.h */; }; - 528247F42FC2AB021FF440AB14819310 /* pb_encode.h in Headers */ = {isa = PBXBuildFile; fileRef = 60C84D094248B065E7CEE6F6A0CD1BF2 /* pb_encode.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 52827F654552C08A3CBE80C3DA407B10 /* lrs.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/service/load_stats/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = F0DF1A41CBD6C7A2A4A10ECFD854F084 /* lrs.upbdefs.h */; }; - 52873C6794EF29CAF36188BC0129B1FC /* ads.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 24D571806007841D11747609B67FE1F0 /* ads.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 528C11780EFA87B639747A943750D94F /* _ObjC_HeartbeatController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5281B3C90A0D05462C25AD26B78D7FB9 /* _ObjC_HeartbeatController.swift */; }; - 528F1E504A9D2FCBDC76F739ED426520 /* log_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = C72B2F53338FCD2B2F781156976E1AD9 /* log_posix.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 52A2DD814835BC3DBFFA81CBE1F59B0C /* xds_channel_args.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 30012554A58375A1CB09BED5718C39E3 /* xds_channel_args.h */; }; - 52B141188C4034B18B513A7520C0011C /* channel_filter.h in Copy src/cpp/common Private Headers */ = {isa = PBXBuildFile; fileRef = C086BE95C999C4502FFD2A48512E8A58 /* channel_filter.h */; }; - 52B6AF3F6159B6A4D8908E554DE1B591 /* time.h in Headers */ = {isa = PBXBuildFile; fileRef = 15FA802375E52FE64C2C51A885C9A7C9 /* time.h */; }; - 52C5D9D06CD0F18389911649741E10B5 /* certificate_provider_factory.h in Copy src/core/lib/security/certificate_provider Private Headers */ = {isa = PBXBuildFile; fileRef = EF91967570044091C2A4037BEAA4D19E /* certificate_provider_factory.h */; }; - 52CC7D22EA29D187D7DE070F4FA58620 /* tls13_server.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0AE60F82F70C6CB40ADF2B93118B646E /* tls13_server.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 52D4D30FB83562E0A5A0A52ECE5AE12B /* internal_errqueue.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 0B78422793D3D90DC6C812587B5B826C /* internal_errqueue.h */; }; - 52E334E191752A24F70AA85442752B41 /* rc4.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 1CEC2CB5E13A2A0BDBF79A9BCAC16540 /* rc4.h */; }; - 52E498B591DE47FABD1D8143AA08217D /* rls_config.upb.h in Copy src/core/ext/upb-generated/src/proto/grpc/lookup/v1 Private Headers */ = {isa = PBXBuildFile; fileRef = EDF35D4254DB55A51CB46A690EE0DE40 /* rls_config.upb.h */; }; - 5301E249711E13FDD892075E5A78092A /* bad_variant_access.cc in Sources */ = {isa = PBXBuildFile; fileRef = 176A10510B33DE33C11855F840E3E4EA /* bad_variant_access.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 5302083D2ACCB218E537DC1C12E26480 /* parser.h in Headers */ = {isa = PBXBuildFile; fileRef = 03E5D973622DE685DEC76E0087E05473 /* parser.h */; }; - 530760ABB79125E006A9FB80FC04DC92 /* timer_heap.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 3E48A20086959F1D370E5662A5A1494A /* timer_heap.h */; }; - 530A01C81D95E43083E95FFEDE32C455 /* ring_hash.upb.h in Copy src/core/ext/upb-generated/envoy/extensions/load_balancing_policies/ring_hash/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = F5494FBC2F9372FB7EFF9C480BDBF6E9 /* ring_hash.upb.h */; }; - 530E71BA99AD474E42653188DE251D68 /* port_platform.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = C9F1394FADFD9EE76F7E79149B926BB1 /* port_platform.h */; }; - 531B033CAC8A577B4835095F81ACE269 /* cookie.upb.h in Copy src/core/ext/upb-generated/envoy/type/http/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 872098F8965B338F6DB9DFBD7998B2BD /* cookie.upb.h */; }; - 531CEC66F551C94C3EF3CB6C4DB605F4 /* log_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4623B5385E4C86B54107B66F1A18F2D4 /* log_windows.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 53235DBF73108FC027BF7B9B5858EDA3 /* alts_tsi_handshaker_private.h in Headers */ = {isa = PBXBuildFile; fileRef = 88F25EC73453F84A6B3389AF26D36F5E /* alts_tsi_handshaker_private.h */; }; - 533FD1FB5369C194DF130791956AEAB2 /* kdf.c in Sources */ = {isa = PBXBuildFile; fileRef = 2F12C6F86E611F4C643014C1EC0FCB5F /* kdf.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 5343C5FBB3B7E6748485CB3221343BAA /* exception_apple.mm in Sources */ = {isa = PBXBuildFile; fileRef = 4CA0A2E13AF5D89332995263289903E7 /* exception_apple.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; - 53456482206E24BD61304ABB1B28082C /* load_system_roots.h in Headers */ = {isa = PBXBuildFile; fileRef = 014C69344E5FD2245680BF492F49DECD /* load_system_roots.h */; }; - 534567E6A69BE8CF93AF1E3FE8613677 /* ring_hash.cc in Sources */ = {isa = PBXBuildFile; fileRef = 15F626839572D1DB285F90644A233421 /* ring_hash.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 5346D60970BCCE423A325112E4030251 /* cbs.c in Sources */ = {isa = PBXBuildFile; fileRef = BBB564522CC822792C9BE1624B9E443F /* cbs.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 537278A170C521CD2B2BD037048455C9 /* atomic_hook.h in Headers */ = {isa = PBXBuildFile; fileRef = F85FE6920780DD093E151110B93BC095 /* atomic_hook.h */; }; - 539BA56AAFEC0D9012D02F4D9B0A6F78 /* task.cc in Sources */ = {isa = PBXBuildFile; fileRef = F9210CF4B78FD4987E644793DC7BBBE3 /* task.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 53ABE822D8C131E89C5DCDF68E568526 /* firestore_index_value_writer.cc in Sources */ = {isa = PBXBuildFile; fileRef = D0FD096A4FEB1CF15B4404E807642F56 /* firestore_index_value_writer.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 53AC2B5DC2949BDFB790160602E5BCDF /* aggregate_alias.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7C3E7C45B42358ECC7EA4E438B591E0C /* aggregate_alias.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 53AFA2B28703BDF929BD36C62225584B /* rbac.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = C058B5A0A026F7AB7BB0210D1F40CE47 /* rbac.upbdefs.h */; }; - 53B6F6377CCBAC15754B75E2E3FCED74 /* hrss.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 69564087DDBD14EEBF809B204844C59F /* hrss.h */; }; - 53B802E2C760498F29FCC1FE1184F2D2 /* rsaz_exp.c in Sources */ = {isa = PBXBuildFile; fileRef = 49219DC7A0D9981492CC7D8B488A3DE7 /* rsaz_exp.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 53C3B74CAD119F6085B3DFDCE62DD895 /* clock.h in Copy time Public Headers */ = {isa = PBXBuildFile; fileRef = CEECDDEE06D52B6CF871DDC2EFE96A13 /* clock.h */; }; - 53D155C5554F76F08ED956BDC02D71B8 /* experiments.h in Headers */ = {isa = PBXBuildFile; fileRef = D3F661E45798B078D4C846A83576A9C9 /* experiments.h */; }; - 53D809C2A01556B8D74603E953B3EEE2 /* delegating_channel.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 264C03A93FE6C91CECEA391487DD658D /* delegating_channel.h */; }; - 53D80DB30A2F63FD06E8683C9DFAAEF8 /* p_x25519_asn1.c in Sources */ = {isa = PBXBuildFile; fileRef = 00BB305A9AF46FD9CD970D10D2DC3D84 /* p_x25519_asn1.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 53DAC824D1EDB1110A092DCF89345C76 /* slice.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 844AB3682B0B824BC3FBF06C48AE2E57 /* slice.h */; }; - 53E4E1499404FE2C935CFF39524DCE8C /* xray.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = F34657DF2A6C31F7680C4F583734BD95 /* xray.upb.h */; }; - 53FB87EBB03660C026D20A496968EA60 /* client_interceptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 6FAC080419F83AC07DAE2537628EDB12 /* client_interceptor.h */; }; - 541A00020EBEE898CE92A9228F4592B3 /* call_test_only.h in Copy src/core/lib/surface Private Headers */ = {isa = PBXBuildFile; fileRef = 09C20EACCD4D4D4AA6CD6CC0B302EDE2 /* call_test_only.h */; }; - 541F970C4D9A80A7EB9166EAD9163B10 /* ev_epoll1_linux.h in Headers */ = {isa = PBXBuildFile; fileRef = 7A0C856042B3542D4548E0BC5B91F8AE /* ev_epoll1_linux.h */; }; - 54349F2836EAA4C8FF44863F1AB3387C /* FIRVerifyClientRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = E5D9A56E482B943A70561226842F82EF /* FIRVerifyClientRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5442CB68665F72893C1FF7CF2552DD88 /* local_view_changes.cc in Sources */ = {isa = PBXBuildFile; fileRef = 57AB98EA56FC6F511C62AD43AA886235 /* local_view_changes.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 5444CB8C823BE866006D93E88EEE2BD2 /* common.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C0FA5E304669C11EC0A8B1EF7993130 /* common.upbdefs.h */; }; - 54552B633BA052D6836D613044CC4F51 /* charconv_parse.cc in Sources */ = {isa = PBXBuildFile; fileRef = B02291C92D476CBBA912F9FB5B5A1CCC /* charconv_parse.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 5456F26525158D00A0ADA188D2C9ED0F /* atm.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 86C110E4B87D4A8172FDE17B03F863C0 /* atm.h */; }; - 545CB4047D796AB7E9671ECF368378AD /* channel_stack_builder.h in Headers */ = {isa = PBXBuildFile; fileRef = 7EC1FA7B92F243F3F92D0FD6893AF9EE /* channel_stack_builder.h */; }; - 545F9AE8F353BB2699BA61332E40F984 /* listener_components.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 1F5FA8A6467F58D2EBA8D27644636F33 /* listener_components.upbdefs.h */; }; - 5472C1D79C6FD418CD6545ACE6EBB60C /* subchannel.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9844CFB6549D86371E9AC75D558DBEF4 /* subchannel.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 54A4EBD008D3FB198D27C27CA9F70B38 /* ssl_session_cache.h in Headers */ = {isa = PBXBuildFile; fileRef = F465A47AB5112A82C393049F0AA971BF /* ssl_session_cache.h */; }; - 54B862B37AEB0083E02DA88D38FB2672 /* threaded_executor.h in Copy src/core/lib/event_engine/executor Private Headers */ = {isa = PBXBuildFile; fileRef = EA3A681265106D73B652EF155DCDF403 /* threaded_executor.h */; }; - 54BE941F86B3AA8CB894C95216F05815 /* evaluate_args.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3829ABB814C6845689AEC6BB49EFDEE3 /* evaluate_args.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 54C6C545729DB584DEF962C169FD507B /* ratelimit_unit.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 119EF8A4435910A100F5E99E4EDBCA21 /* ratelimit_unit.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 54CF2C67ECF928EF03777E5FCB46A3B3 /* seed_material.h in Headers */ = {isa = PBXBuildFile; fileRef = DD6DE9EE970FC6B4FB439296B630A158 /* seed_material.h */; }; - 54DE959E0CBFC548118C0566225CC5F4 /* e_des.c in Sources */ = {isa = PBXBuildFile; fileRef = 3777DF72BAC7AA8E70608D3E05234AE4 /* e_des.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 54F3D4B0E637E9F272865FDE06A8E5DC /* error.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2D2AABA1C6284EB46E3A8EBF5E9B4334 /* error.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 550510A8D9A9C3BB68F6FB6C3F470752 /* xds_bootstrap.h in Headers */ = {isa = PBXBuildFile; fileRef = ED85B398BCA394C5CAC493A176806EF2 /* xds_bootstrap.h */; }; - 55106287C91005815B56B0D459EC0937 /* slice_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 08937DD8CEA1E5C6D1FFD7BF2DAAC6E6 /* slice_internal.h */; }; - 551E7C93536B6C5F1E63140077C64330 /* time_zone_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = DC43BA3F886A7C912B2885C3E8AD6FEF /* time_zone_posix.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 5524DD0352CC1C0CFAFC7B71F983BB77 /* wire_writer.h in Headers */ = {isa = PBXBuildFile; fileRef = A6BC8DBB3746C8D11AF8FC08B11F99BD /* wire_writer.h */; }; - 55358CC038F7C4FBE6E359B2D1C55A4A /* polling_resolver.h in Copy src/core/ext/filters/client_channel/resolver Private Headers */ = {isa = PBXBuildFile; fileRef = 71F44072C383AE765E4AC606419FE99C /* polling_resolver.h */; }; - 55376D8103D916E17B86EFB1EA3A02DF /* ev_epoll1_linux.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 3786B216292DD72574530A53CDE63061 /* ev_epoll1_linux.h */; }; - 55445A63268E55AF1AC70E6C16B3834A /* StorageFactory.swift in Sources */ = {isa = PBXBuildFile; fileRef = 743A4AB186D2DB3138FD5A6741AE1E10 /* StorageFactory.swift */; }; - 555894E064716161C2F2C7E17E369F6C /* connectivity_state.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 491BFA36A0530FF3EC002F1FB3CB333A /* connectivity_state.h */; }; - 555ACB6930B15B016AE62529AA63492C /* FIRActionCodeSettings.m in Sources */ = {isa = PBXBuildFile; fileRef = E457B00026A135A2A8F0852EFD45C04D /* FIRActionCodeSettings.m */; }; - 556C22E804C2093A10010C2821E072B0 /* port.h in Headers */ = {isa = PBXBuildFile; fileRef = 6566A9B876C3FB9B41E9B77FA2169348 /* port.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 557B6D7C1D1FD195B4F83F7BAD743633 /* manual_constructor.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 1A7778C4F025CB8202CC7F27B276FE39 /* manual_constructor.h */; }; - 557DD731821243FCF23D38A2302E87EC /* init_internally.h in Copy src/core/lib/surface Private Headers */ = {isa = PBXBuildFile; fileRef = E70CD4BC5166E03D1D4DF95E7434AAF5 /* init_internally.h */; }; - 5589A40E6CD062BCD7FBAAB4D04F8A72 /* context_params.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = F2F9D0EFB3C90652AD11F0641A5EDF10 /* context_params.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 5590EDD97427DB57D4F40D0026277B29 /* alts_tsi_utils.h in Copy src/core/tsi/alts/handshaker Private Headers */ = {isa = PBXBuildFile; fileRef = 61A38FC5D9BACE9C0F57BB794239CBFF /* alts_tsi_utils.h */; }; - 55999674FD9DD58809C1F64F6F626F8C /* regex.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = FE23A05FF59693CF8924948AFB73B907 /* regex.upb.h */; }; - 559E18FF27B051995B131B48AE1298F5 /* status.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C28D633474CF61599409602163AB165 /* status.h */; }; - 559E5195F1AAAF7440C6497BB0EABAA2 /* call_op_set_interface.h in Headers */ = {isa = PBXBuildFile; fileRef = ECE57501BF09348A988B83C6794B48BC /* call_op_set_interface.h */; }; - 55AAA72520EED44B1E8024AD26CF6AA3 /* random.h in Headers */ = {isa = PBXBuildFile; fileRef = 721ED1F77BB887CC1D81E681A9931E5B /* random.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 55B636A628AE1678B11D29910CA54C5C /* dynamic_annotations.h in Copy base Public Headers */ = {isa = PBXBuildFile; fileRef = 0140638BBE5441051DE83716D249E419 /* dynamic_annotations.h */; }; - 55CFC0CE8E556F40EF579170F5A31DB7 /* xds.h in Copy src/core/ext/filters/client_channel/lb_policy/xds Private Headers */ = {isa = PBXBuildFile; fileRef = EE706D797A1A34E3A94A1275DB02551E /* xds.h */; }; - 55D1697CA0FE776C54177A232663B7A2 /* cluster.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 136FE94A85B992DAE7F4E82436E5B3B4 /* cluster.upb.h */; }; - 55D35E7FFFD3F7A981FB71BE77BD3C15 /* substitution_format_string.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 36BB80B8E1EA2FF2786F608B078DA8EF /* substitution_format_string.upbdefs.h */; }; - 55D987EDD4336F18500C0AFFCFB3CD88 /* resolver.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 7BB6A70CC87BD78FE8DC7FAEC4330FFB /* resolver.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 55DD3448535A708B56CBF9A0BA696B21 /* config_dump.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = C11215E6720095E129DC3BFCBC99FD34 /* config_dump.upb.h */; }; - 55E7983C80EE539DAB812C77CB8D9E34 /* FSTUserDataReader.mm in Sources */ = {isa = PBXBuildFile; fileRef = C6E7CE05D326BD285F2B606DC1B36262 /* FSTUserDataReader.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; - 55F22D6B8F7ABFCAD9FEF0A764E0E4EF /* resource_quota.h in Copy src/core/lib/resource_quota Private Headers */ = {isa = PBXBuildFile; fileRef = 43E71514D4554E01A6957C0ED3C73B1C /* resource_quota.h */; }; - 55F697285C2C310975012D8B1A6A4DB9 /* tls_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 12F051A7D064CE804841009E80B706E8 /* tls_utils.h */; }; - 55FA817384734C4766B50BE4BF66CD91 /* grpc_tls_certificate_provider.cc in Sources */ = {isa = PBXBuildFile; fileRef = 016C0C136B84613215A41037242687ED /* grpc_tls_certificate_provider.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 55FFB4571A3351D50DF6E4A62A35F1B5 /* proxy_protocol.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = EB7E7D65D43AC6B614C525A0E6265B07 /* proxy_protocol.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 5605AE6BD48CB3EB6817070CD4AF1AB5 /* symbolize_emscripten.inc in Headers */ = {isa = PBXBuildFile; fileRef = E03A2AED69E6696CF60A1947CE49B9BF /* symbolize_emscripten.inc */; }; - 560B50D1F2007427ABC7714F96D0BFFC /* channel_fwd.h in Headers */ = {isa = PBXBuildFile; fileRef = DBD12F2280D499DFAC19BBF05F91DF88 /* channel_fwd.h */; }; - 5618D4C383379A1AC554B71C2A96C771 /* basic_seq.h in Headers */ = {isa = PBXBuildFile; fileRef = 76EAB1E72F583B1553C9C2A8347B5F8E /* basic_seq.h */; }; - 56193C8047894BB6611364334462F6F1 /* manual_constructor.h in Headers */ = {isa = PBXBuildFile; fileRef = C7DBB5B1AAAB9AA6646DB95114D9EBB4 /* manual_constructor.h */; }; - 5627D1235F68DA84CB76DE4559CDA470 /* regex.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 20755D82FC61D6246023D7BFFCCC5037 /* regex.upbdefs.h */; }; - 562B767D69BC523FFE6529C2AC5B49B3 /* http_uri.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 9EF465CAD0FADB19364000A1504383C1 /* http_uri.upb.h */; }; - 563358CF0ADEB7BF81DF9897F34B655C /* GULHeartbeatDateStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = 8B32620FBE5F15F4A3207A59D552A389 /* GULHeartbeatDateStorage.m */; }; - 56337AEF515FF61829981B59A366DEF0 /* histogram.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0DCFD715F6E82D6A1E3E029538CF0FAD /* histogram.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 563491B5440C7E1B6E6FCDDB91097625 /* cert.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C15C272B5C4DAAA2BE416AB48275ADC /* cert.upb.h */; }; - 56430DD72155CA934C748E02E66C41D3 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6E336DC2534E1E69B7828F6012B874C6 /* Foundation.framework */; }; - 5645A455828597F7C5BCE5818B3CFE25 /* alloc.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E3B9724C33E603269CD4A9091E8B422 /* alloc.h */; }; - 564DDBD994F62959596091F67A226FD0 /* db_impl.h in Headers */ = {isa = PBXBuildFile; fileRef = 83F2745B6782C6056C4F2234EEE0690D /* db_impl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5650F0892292BEA3938E78550952C7E2 /* init.h in Copy src/core/lib/surface Private Headers */ = {isa = PBXBuildFile; fileRef = C56A4EF2680A1388E08E912698C3D039 /* init.h */; }; - 56532D74A1C946141EE869CB5BF3FAD6 /* FIRAggregateField.mm in Sources */ = {isa = PBXBuildFile; fileRef = 5D40A8B86BC481D22C195A2F75BA294F /* FIRAggregateField.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; - 5678602CA8F40B66550040CAA8BC597F /* remote_objc_bridge.cc in Sources */ = {isa = PBXBuildFile; fileRef = A3BFC0CD40E63CA07E47AE82C4A39765 /* remote_objc_bridge.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 56790E1CB3CB1C683A7DCDB9364502EB /* tchar.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6338F6E0BC6CD448B253C5681F745F26 /* tchar.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 5681C6CD2B1ECF3E29B508B6068CECE6 /* stub_options.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = 2E878D6BE81E0EA3533B0FE83904085D /* stub_options.h */; }; - 568B990EA43081E1F44FD401F3E2E628 /* metadata_batch.cc in Sources */ = {isa = PBXBuildFile; fileRef = 71DAFD579FAC7192183F625354D13925 /* metadata_batch.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 569E14077460273E686CDD4CD5C1D060 /* matcher.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = BCB7F97E99D02AE62A5727541E7EADD4 /* matcher.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 56A7620DAC410C2BED8A0E3BEAEB1C63 /* ref_counted.h in Headers */ = {isa = PBXBuildFile; fileRef = 408BD66CC047A94055DFEB2F1EA0B130 /* ref_counted.h */; }; - 56B901698AC11A64FD352D5E2377C599 /* alarm.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6AF76B41992473544AD1B8B7D23C31F9 /* alarm.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 56D284926DC1C51C24947129B3C50553 /* str_join.h in Copy strings Public Headers */ = {isa = PBXBuildFile; fileRef = 8824A6B84FA98AC5943EF5B1ADC853C0 /* str_join.h */; }; - 56DEC1D74FE19A0C469481B530552678 /* FIRMultiFactorResolver.h in Headers */ = {isa = PBXBuildFile; fileRef = DCC4FDA456F65C7FA2B45B6C9F36D392 /* FIRMultiFactorResolver.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 56E9B04EB3E5E96C69579750EC42F5DD /* identity.h in Headers */ = {isa = PBXBuildFile; fileRef = A662F9880184B8E8543950427DF18DAD /* identity.h */; }; - 56FB881265CCDB079000F788C43961AD /* ssl_session.h in Copy src/core/tsi/ssl/session_cache Private Headers */ = {isa = PBXBuildFile; fileRef = F07D781B56E3309BBFB234313C631FAF /* ssl_session.h */; }; - 57232B555C4283E678D968CE92BCA1EF /* subchannel_interface_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 1995FCF1B624CAA490E946B40CCD18FB /* subchannel_interface_internal.h */; }; - 572348FB2E08AE8F43B69397303DCAB0 /* check_gcp_environment_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = 18D6FF9C7977346DF5A7FE0D0A9EAC2C /* check_gcp_environment_windows.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 572E18C76168CCFE01CED723F32B1A41 /* time_zone_impl.h in Copy time/internal/cctz/src Public Headers */ = {isa = PBXBuildFile; fileRef = F8FEC4047D05C7FCD280CF5F87630BC6 /* time_zone_impl.h */; }; - 572F9462D12FF45ABCDCA0AE7329D1E3 /* circuit_breaker.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 1E09B343C8C85CB6C84FD2AB85C3706A /* circuit_breaker.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 573AFB45CB728024AB54144055667228 /* cluster.upb.h in Copy src/core/ext/upb-generated/envoy/extensions/clusters/aggregate/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = A0CECF743559AED98CAE7D08D03A85BA /* cluster.upb.h */; }; - 573C60CD2B4BA2DC593B3BCACCF421E3 /* FIROAuthCredential.h in Headers */ = {isa = PBXBuildFile; fileRef = C199707CA3E6C5223516663CCC5CB9C4 /* FIROAuthCredential.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 5745A0F166C539CBDC781A43B6D03661 /* throw_delegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 8465EF2068ABF85475AE2C2B2E95FBCA /* throw_delegate.h */; }; - 574CA63B6212DF9DD684601BB60FF409 /* ssl_transport_security.h in Headers */ = {isa = PBXBuildFile; fileRef = 148E95C321C2475B0E99E04EB4B11E5F /* ssl_transport_security.h */; }; - 574EDAA91C72516AF5EBEC7FFFC10816 /* address_is_readable.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4DA1CB1C91DC6BD9A8798976C00F3BFB /* address_is_readable.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 5754EE51560EC053DCF931FB54E86B52 /* subchannel_interface_internal.h in Copy src/core/ext/filters/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = E0793C1837002EA46022CE503C1FBC39 /* subchannel_interface_internal.h */; }; - 5755FC2F3D61F44FA68B81538915F140 /* resolved_address.cc in Sources */ = {isa = PBXBuildFile; fileRef = DA826E834C379BC205FCC293900DF8F3 /* resolved_address.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 577B5E5FABC338D5A9C6A81EBCFE5EAB /* migrate.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 5F3833159854516E2D0B9B92DD654F2B /* migrate.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 578059A5845E35C6AED809F7DDE11966 /* seed_sequences.h in Copy random Public Headers */ = {isa = PBXBuildFile; fileRef = 62C0DF30B6A036767B05313E8E340DBF /* seed_sequences.h */; }; - 5788C0000232EBFEA1CCAAF4496E00DE /* wire_writer.h in Copy src/core/ext/transport/binder/wire_format Private Headers */ = {isa = PBXBuildFile; fileRef = A6BC8DBB3746C8D11AF8FC08B11F99BD /* wire_writer.h */; }; - 579CF651A5AE6C034C4364A57D6B5D3C /* byte_buffer.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 931F00845085134A7761CDFFAA1F1C49 /* byte_buffer.h */; }; - 579D64FA95A3490976567E534BBE1A06 /* GULHeartbeatDateStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F11CCD4D3B1BBB32AB3F9357EF85359 /* GULHeartbeatDateStorage.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 57ABE661519BEC77E582BF211DD22870 /* x_attrib.c in Sources */ = {isa = PBXBuildFile; fileRef = 3C54D928DEDBF85F1E48C687045DB0DF /* x_attrib.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 57B0612978AADCD14A2FEC7373CE2C0A /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 44E0887652C53813B7152574FD40C54F /* internal.h */; }; - 57B113AA3DE1281513F7B1D0017C2A05 /* trace_config.upbdefs.h in Copy src/core/ext/upbdefs-generated/opencensus/proto/trace/v1 Private Headers */ = {isa = PBXBuildFile; fileRef = 388D0DC6537080711BCB27B8221D4AD6 /* trace_config.upbdefs.h */; }; - 57C43F30D05C288CF50F36B4F6DB6064 /* listener.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = D9EB568045DD790BEE70377C14E931AF /* listener.upb.h */; }; - 57CDA3E352BBAC36FF3E02049F62F6F0 /* secret.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E12FEB335A336F84686E4A888FC8497 /* secret.upbdefs.h */; }; - 57CE0F8A91E9EA13CBF67B94CB9D1CED /* sysinfo.h in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 5718EBD3D052E008DE6E5C38BFF4DADB /* sysinfo.h */; }; - 57D493FC7A9247497129494A6ED77413 /* filter_block.h in Headers */ = {isa = PBXBuildFile; fileRef = 956ABE74F2FC842119D1060E62492769 /* filter_block.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 57E76B09B036CE005AEA4BB5CDB59E35 /* exec_ctx_wakeup_scheduler.h in Headers */ = {isa = PBXBuildFile; fileRef = 41F4B8E09D1DF8576BE40DCD9EA1B2B4 /* exec_ctx_wakeup_scheduler.h */; }; - 57EE6D248A848E7CD1773D2F0869E512 /* aws_request_signer.h in Headers */ = {isa = PBXBuildFile; fileRef = 95DB8C6DF9549EA9E92877446D9C0538 /* aws_request_signer.h */; }; - 57EEEE3C410126022A45886E07BB26A2 /* asn1_par.c in Sources */ = {isa = PBXBuildFile; fileRef = BCF2BA1E65E730CC4EC7F816C7BA89E5 /* asn1_par.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 57F4BA602D4D89790163E2010EC56FE7 /* validate.upb.h in Copy src/core/ext/upb-generated/validate Private Headers */ = {isa = PBXBuildFile; fileRef = 1BB50308DCB51A0A5C426E4A32A8EE8E /* validate.upb.h */; }; - 57FCDBE21AD3D5FAC88DD952DB02E56C /* server_builder_plugin.h in Copy impl Public Headers */ = {isa = PBXBuildFile; fileRef = 15A901D67B2083DA2A89EF65997B4F81 /* server_builder_plugin.h */; }; - 5800314771FA5D99E72E44C024BB4C93 /* tap.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = FDC357D9B2DA0DC945D813E7985E2DBB /* tap.upbdefs.h */; }; - 580286134C8A0F2B000C9AA936EE5E99 /* p_ec_asn1.c in Sources */ = {isa = PBXBuildFile; fileRef = 21DDD8B71F8DF9379C2C9044A1AD5BCC /* p_ec_asn1.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 5803935E1C14F7802406434F42C45A33 /* http.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/api Private Headers */ = {isa = PBXBuildFile; fileRef = B319FEB429B242CF30FA994BD31775DD /* http.upbdefs.h */; }; - 581664EA6C1A0AEFC21BC5B137D70EA7 /* executor_std.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9797A96F857C9361C90DF148B16B4AD1 /* executor_std.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 5817CAF374E7F8B0B52356FA634466EF /* resource_name.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 2CE19B9FC7E470FD0590714772741D56 /* resource_name.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 58237124D1C9545176013A75884A3992 /* frame_settings.cc in Sources */ = {isa = PBXBuildFile; fileRef = D998A0105CD9E70E2BFF6E8917C56AE2 /* frame_settings.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 5824ADD4F42339164F980DE2AD95A5CF /* connector.h in Copy src/core/ext/filters/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = 127C2BB3447A6AAA56AA95089268906F /* connector.h */; }; - 5829857216B56D1411FA03100DA69C16 /* status_win.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7CAAD37DF86F020FD9324625F96C3917 /* status_win.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 58319DB1E609684DC0DA55048F6FF17C /* sync_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B17C3C2B832155CA5A0ADE96C472348 /* sync_posix.h */; }; - 5834A4B9B618727B0616C7903EF49CB9 /* server_config_selector.h in Copy src/core/ext/filters/server_config_selector Private Headers */ = {isa = PBXBuildFile; fileRef = E27318BDCA3B55DED4F246CB929FD338 /* server_config_selector.h */; }; - 583551D64242DD0FB9F3B2754E4CC4EC /* route.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = F43C7B897F97A2AE6F33AD408D4C0DC6 /* route.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 583BE6D09471048C35E139524830ECFB /* FSTFirestoreComponent.mm in Sources */ = {isa = PBXBuildFile; fileRef = 7823A2D8143E73CC43D5EF94ACA5859C /* FSTFirestoreComponent.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; - 5857EA79B433DFB9A7E0B2E0F0E3825A /* text_encode.h in Copy third_party/upb/upb Private Headers */ = {isa = PBXBuildFile; fileRef = AB99B1D72A6245C3C5255A73316847B5 /* text_encode.h */; }; - 5863EDBD8B02EBC7110ACB1D867BE8C2 /* resource.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = E22400E2C3B291528F27D2FC946B3B9A /* resource.upb.h */; }; - 586990048CCDAB4FAC5072DF1B5BCA05 /* event_string.cc in Sources */ = {isa = PBXBuildFile; fileRef = 905E96D25B25A1A69E7E76F35599D465 /* event_string.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 5869C7F349B31889D72EB54B43B1973E /* bdp_estimator.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = EC9F60A925CD6F8E96ECEDAF36EDD10C /* bdp_estimator.h */; }; - 588C7EDC43742E4F2A8064C6DFA61707 /* flags.h in Copy third_party/re2/util Private Headers */ = {isa = PBXBuildFile; fileRef = 34C00D5A69B9779843AE763D220152D6 /* flags.h */; }; - 5894A763B7D3836CE32A01BDA6B8F71E /* env_windows_test_helper.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D0F02ACAEB1165A1B87A1A82EACCC1D /* env_windows_test_helper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 589556A1035EDEF74A0DC8E66DC8C5A0 /* alts_grpc_record_protocol_common.h in Headers */ = {isa = PBXBuildFile; fileRef = 9455EA5BF28CDB45748C1C0D8E6A2325 /* alts_grpc_record_protocol_common.h */; }; - 58C4A18BD5C17B8CCCD225BC9C6CB10C /* time_zone_fixed.h in Copy time/internal/cctz/src Public Headers */ = {isa = PBXBuildFile; fileRef = 9969F035A2907BA0E98792F1005BFA12 /* time_zone_fixed.h */; }; - 58D3BF28875E2DD7888E28DF757111CD /* xds_client_stats.h in Headers */ = {isa = PBXBuildFile; fileRef = 9FEF02FB555153E9A024D63E3B90F7EE /* xds_client_stats.h */; }; - 58D8AF82C7A192FB93581614A922829B /* proxy_protocol.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 0018130066E6249C128D55F895B2BB0B /* proxy_protocol.upbdefs.h */; }; - 58D95520FD312D7C9BEAC6169AAFB683 /* thread_annotations.h in Headers */ = {isa = PBXBuildFile; fileRef = AE382D3C3EA64FFB32C2078EAC2FAB18 /* thread_annotations.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 59005D8FD3CDE897918536220941BCD4 /* upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B460F58BA04917250F264D5CB0014EA /* upb.h */; }; - 5903EAE2FAAD6E0608B1E1800022D11F /* nameser.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E37A08848FB168A3CD446827638ED03 /* nameser.h */; }; - 590EE43016B683B8FFFB97F5D04C7A27 /* ev_apple.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = B1242E93600EBBBD8A2FBA00530A9563 /* ev_apple.h */; }; - 591C718785018BC1B5834BCC3D4C8C7D /* oob_backend_metric.h in Headers */ = {isa = PBXBuildFile; fileRef = D41F648301FF4FFF2569B300D443EC70 /* oob_backend_metric.h */; }; - 592562B619B80D72E40A1A90D945FF8B /* timestamp.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 9D9703BD3104524170BBF05CDE51B3C9 /* timestamp.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 592E2FD997B443159F734EEB229D936F /* security_context.h in Copy src/core/lib/security/context Private Headers */ = {isa = PBXBuildFile; fileRef = 5C9EB4B6A882977B31E8F54C0FA991E9 /* security_context.h */; }; - 59304EE9F93090E9FFB6B1584CA207F9 /* win_socket.cc in Sources */ = {isa = PBXBuildFile; fileRef = CACB4D0CEDBFA71645DC849CC383745D /* win_socket.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 5931C499B5D8A84B7D45C242F734691C /* arena.h in Copy third_party/upb/upb Private Headers */ = {isa = PBXBuildFile; fileRef = 806FFFE5B67D1D312258AB06EF0F64CC /* arena.h */; }; - 5946AB85728A882F6A685E47AB242A97 /* byte_buffer.h in Headers */ = {isa = PBXBuildFile; fileRef = 04B265A9EFA08526A9ADF091450CDB8E /* byte_buffer.h */; }; - 595F7CC49DD90292F3053E4A55E27D28 /* regexp.h in Copy third_party/re2/re2 Private Headers */ = {isa = PBXBuildFile; fileRef = 150B2B6BFDF59CAE192AD0CABF0ACA37 /* regexp.h */; }; - 596A1E8FE4BDB4999C40997D0804769D /* transport_security_interface.h in Copy src/core/tsi Private Headers */ = {isa = PBXBuildFile; fileRef = B451B4E67EE6BF7C0840828CC0B131EF /* transport_security_interface.h */; }; - 5980FCF752AE005B2CA932F65A991116 /* security_connector.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2608493C7B8C20CC32333E8A93D0D04D /* security_connector.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 5992CD21B49BB44E200D138AFC1B8A4D /* global_config_generic.h in Headers */ = {isa = PBXBuildFile; fileRef = BA5CD05E3208B39C9E786F4AABE2A978 /* global_config_generic.h */; }; - 5997AB1090F063A2127D00A4FE601EDE /* _ObjC_HeartbeatsPayload.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6D43760E05D0526ED2A8B72CDE6A350B /* _ObjC_HeartbeatsPayload.swift */; }; - 59B30AA9AF01CD1346DED837EEA3FF13 /* collection_entry.upbdefs.h in Copy src/core/ext/upbdefs-generated/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 20A31AC3FF8DA7EE53581272B98C890C /* collection_entry.upbdefs.h */; }; - 59BB0839143456A44D049F52C57DD4B6 /* load_system_roots_supported.h in Copy src/core/lib/security/security_connector Private Headers */ = {isa = PBXBuildFile; fileRef = B6A734E7B3D25E06D6A4451C43895EBB /* load_system_roots_supported.h */; }; - 59C842326ABEFD0796863C060FA33791 /* metadata.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 4649E9244A05EE1F42822D58A3559E3F /* metadata.upbdefs.h */; }; - 59C8F8775A90E20407964A1D0C7FA91A /* FIRAuthProtoFinalizeMFATOTPEnrollmentRequestInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 5246CD7FBE45B3ABDA4EF3D967322AC6 /* FIRAuthProtoFinalizeMFATOTPEnrollmentRequestInfo.m */; }; - 59D0CE2D3C0C37FBB85F5E21B8119633 /* v3_bcons.c in Sources */ = {isa = PBXBuildFile; fileRef = 0415D3EED2BF6AEC5288CF80D2A19D22 /* v3_bcons.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 59E6FE685B30608693826594FC261A91 /* trace.h in Copy src/core/lib/event_engine Private Headers */ = {isa = PBXBuildFile; fileRef = B4D3883CF738697B611F2B0E8F1D1CB3 /* trace.h */; }; - 59E707E07CC79C0EF74AA7F67117C2CA /* identity.h in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = A662F9880184B8E8543950427DF18DAD /* identity.h */; }; - 59EED825EACD5B6A0A48B93E54F28607 /* transport.h in Headers */ = {isa = PBXBuildFile; fileRef = C2E088B258034C4DDF834BD794150DC7 /* transport.h */; }; - 59F78F1D442DA0CF37C5CEFDD9DADCC0 /* proxy_protocol.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = BE37B600E887DE98849A0423696B923A /* proxy_protocol.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 5A167AF33E9041D5DA867BF328B06407 /* connection_id_generator.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8A5B9F81F54EDA54277587E30E47A190 /* connection_id_generator.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 5A2E75955FDF4046F6FA0AC8045D3AEC /* x_all.c in Sources */ = {isa = PBXBuildFile; fileRef = 5A19369177954AD52FDF5B66226BB75D /* x_all.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 5A3BE70341736EED5A91C3FC0D3B5117 /* round_robin.cc in Sources */ = {isa = PBXBuildFile; fileRef = 47D47483362AF68A27EAA27C598F91B8 /* round_robin.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 5A3DE7DB37D4EA8758DB055787E7D663 /* handshaker.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = F543372023428E60A966F2DA14C499B3 /* handshaker.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 5A4F0B57CF6C3FD57466871E14DD8CE2 /* casts.h in Copy base Public Headers */ = {isa = PBXBuildFile; fileRef = 762F98456A81D63C7632832560CEEA87 /* casts.h */; }; - 5A5066474AC16F3F74F69BEB0172095B /* document_key.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2CC450B15ABC2966E7852D32E0BF7F25 /* document_key.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 5A646D6C6D5E0F13C5CFFA9FB6CE7B01 /* simple.c in Sources */ = {isa = PBXBuildFile; fileRef = C7D3798235C443F1B456AC14F8E7E019 /* simple.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 5A6C8EE5818EC0FD0486EB27D27808EA /* comparator.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1AA6CA250C71F83169838147FD45AD3D /* comparator.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 5A85D34FEFDD6D687A71CC6AD6437EEA /* load_balancer.upb.h in Copy src/core/ext/upb-generated/src/proto/grpc/lb/v1 Private Headers */ = {isa = PBXBuildFile; fileRef = B125F20B87F5BEE037AE4C8889A59085 /* load_balancer.upb.h */; }; - 5A87300E5A286AF5FB1D8D46002D1741 /* client_channel.h in Copy src/core/ext/filters/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = AC46BE2233BA5C2F7CBF991ED9D80B7D /* client_channel.h */; }; - 5A8A6CEE65D7A840190FD4E7084A8E3B /* FIRAuthStoredUserManager.m in Sources */ = {isa = PBXBuildFile; fileRef = AAAEEF1B5CD11C792D2412F5AA972250 /* FIRAuthStoredUserManager.m */; }; - 5A8C451F15E8CCAF333728633B0AB154 /* function_ref.h in Copy functional Public Headers */ = {isa = PBXBuildFile; fileRef = D637067B913200CB7802A5C3D7395CBB /* function_ref.h */; }; - 5A99FB648611F29483A998539A2D1989 /* channel_init.cc in Sources */ = {isa = PBXBuildFile; fileRef = CD9C761946A5C33D1D523AF0252C0F26 /* channel_init.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 5AA83B910F431B92B0B3ED290E7EA4FE /* string.h in Copy src/core/lib/gpr Private Headers */ = {isa = PBXBuildFile; fileRef = 3A7A4D2B3EA04CD2D431FC77E580A86C /* string.h */; }; - 5AA9D88525AB06F315E305A688018CD3 /* extension_registry.h in Headers */ = {isa = PBXBuildFile; fileRef = 965F190E7DB563FDC560EF52BA7A9626 /* extension_registry.h */; }; - 5AAA7E94E3DDC843B43D018E0C8E5B7A /* promise_based_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = EE804E9FD4338E79C130A9BB491A1682 /* promise_based_filter.h */; }; - 5AD4FD076DEE140F80950084BB4BC927 /* statusor.cc in Sources */ = {isa = PBXBuildFile; fileRef = 82E6DAC2E4D7C06209EDB8C15F9A54CF /* statusor.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 5AD68D024BA20E41337DDDCA2FA10140 /* time_util.h in Headers */ = {isa = PBXBuildFile; fileRef = 2FCD5B61392BE1D0D9B3315415E8EC2C /* time_util.h */; }; - 5AD8420EDAAE6ECAFB1B9B0F9A75C5D1 /* channel_idle_filter.h in Copy src/core/ext/filters/channel_idle Private Headers */ = {isa = PBXBuildFile; fileRef = BDC629D461FB5C7939453610137521B1 /* channel_idle_filter.h */; }; - 5AE53CC963D3DC624C2B69AA9E38EDD3 /* status.h in Copy src/core/lib/promise/detail Private Headers */ = {isa = PBXBuildFile; fileRef = 113864E342C765136F0D5A56B210FB09 /* status.h */; }; - 5AFA87B779C2E693CA23F862948C26FE /* number.upb.h in Copy src/core/ext/upb-generated/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = B4D028EBBF368C157F36818D8289A054 /* number.upb.h */; }; - 5B03F54B684B55354D5B612F4EAF0C93 /* trace.cc in Sources */ = {isa = PBXBuildFile; fileRef = 249E3B1353449398D20FA841FCAF8A8D /* trace.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 5B07DE7DFB3DD07C0D9122C00495291A /* skywalking.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = A72E0E9E243C57737901FE4ACF35D259 /* skywalking.upb.h */; }; - 5B0DB4DB08208047A2105000566300B7 /* proxy_mapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 37B71D016F5AB4B39D0BE3A2EC98DF0C /* proxy_mapper.h */; }; - 5B23DFE8C48D593104E3845259C42290 /* message_size_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 139CFAB41679A6A88FD545C1FB839799 /* message_size_filter.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 5B26682CC3B96C2A0A493C91509F39A9 /* completion_queue.h in Headers */ = {isa = PBXBuildFile; fileRef = 60776B8F1DE8EB37CB8BE7600C64C808 /* completion_queue.h */; }; - 5B306E6ED6ACC600F9AFE2B876DF015D /* macros.h in Copy base Public Headers */ = {isa = PBXBuildFile; fileRef = D81F43302CC5D354B4770DFE0448EB60 /* macros.h */; }; - 5B33131EA9BF1482429CFBA910DC2477 /* backend_metric.h in Headers */ = {isa = PBXBuildFile; fileRef = 01AA869DA6F50150DB6A516AA7F4A927 /* backend_metric.h */; }; - 5B39A7FCE7C56E1EE9ECD5434F31C6C6 /* credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 677EBD26018DD4F0935B9C7D8A9B371A /* credentials.h */; }; - 5B4DF8D71C5F3AF68D9CF1BEEAAD8FEF /* bn.h in Headers */ = {isa = PBXBuildFile; fileRef = A163AB899B8CB35AACC0FC9241C1D2EF /* bn.h */; }; - 5B52A4B6D0BF4B164BE01B65A591A1A3 /* server_interface.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B68B9D103D1FB0B0528BEE47E4B5267 /* server_interface.h */; }; - 5B5366170DC0E6B881A870A95B240E92 /* gsec.h in Copy src/core/tsi/alts/crypt Private Headers */ = {isa = PBXBuildFile; fileRef = E9809B0928C3092801D88BDF0681660B /* gsec.h */; }; - 5B6239CB266EB13A149B4971E91F475D /* opentelemetry.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = B4C04ADE81EC4AC94E52FFE68769FC29 /* opentelemetry.upb.h */; }; - 5B75BF083E88D19F491CEF022411C92B /* iam_credentials.h in Copy src/core/lib/security/credentials/iam Private Headers */ = {isa = PBXBuildFile; fileRef = B8D0BA64E81CF9C79EB253E44F5E39CD /* iam_credentials.h */; }; - 5B7DF250F9250837BFDCE641C7D1EB17 /* reference_set.cc in Sources */ = {isa = PBXBuildFile; fileRef = C4E2498C9156BE25F8F834426FBB2BB6 /* reference_set.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 5BB6956F9E8A2DABEE6AC8B779CA6282 /* e_aesctrhmac.c in Sources */ = {isa = PBXBuildFile; fileRef = F09E060612D37CB20BC7D330825C6E66 /* e_aesctrhmac.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 5BB9B804752EBA0103E907B722F1162B /* timer_manager.h in Copy src/core/lib/event_engine/posix_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 3BACF8DCC4AB40857D5741211D1E5EE5 /* timer_manager.h */; }; - 5BC28840A1F2B156452B521342AF63E1 /* status.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/rpc Private Headers */ = {isa = PBXBuildFile; fileRef = 29E5C156BBAD95179DEA6EFA2CC24305 /* status.upbdefs.h */; }; - 5BC96C08F0C70D9752E08D246112F727 /* no_destruct.h in Headers */ = {isa = PBXBuildFile; fileRef = FCE3BBBBF2008B1FFAEE2EF21D1D4BCE /* no_destruct.h */; }; - 5BDB90CF344A32B152164C45803C48FE /* socket_utils_posix.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 94BD6B76CE97E7FE1C34B8D46A71A2B3 /* socket_utils_posix.h */; }; - 5BE88DE5D7564A0403FF87E8E305D05B /* upb.h in Copy third_party/upb/upb Private Headers */ = {isa = PBXBuildFile; fileRef = 9B460F58BA04917250F264D5CB0014EA /* upb.h */; }; - 5BF66A6657478400AF6231ACD46C06F0 /* umbrella.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 48F47ADD365EFB1A2A6E9778EDD6AA55 /* umbrella.h */; }; - 5BF9D3101AB3E6093FFFF9EE2EB308F0 /* serialization_traits.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 4C132BF366A57434EFC8D62AB9CAFB4F /* serialization_traits.h */; }; - 5C04F0A842027EC65BF90991C57E67D2 /* core_configuration.h in Headers */ = {isa = PBXBuildFile; fileRef = B44DB9059811AD461CD3758CCF10A274 /* core_configuration.h */; }; - 5C078A05BA62BB08A2F4DD90806F2C87 /* migrate.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = F771AC4BCDB830BA7E421916C12E2F9E /* migrate.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 5C0DCADB27368C724C4797813CC1E1A4 /* unicode_groups.cc in Sources */ = {isa = PBXBuildFile; fileRef = 062BDFE49A17AFE3EF96F513A5D5F5D5 /* unicode_groups.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 5C11A5BAA2E2EDCE90ACBC8731DABD16 /* bin_encoder.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = D94751A75F363EBD96E97DDE882A5D2D /* bin_encoder.h */; }; - 5C1DC9D301DB0402AAAD48147AF4D2CE /* FIRFacebookAuthCredential.h in Headers */ = {isa = PBXBuildFile; fileRef = 3744D0941F8A545EFD6E4310FDEE7618 /* FIRFacebookAuthCredential.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5C205F9CBB4706256D50AEC18C5BCCAF /* query_core.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4459B50AD1E0EF350D4D46A3C060EFB5 /* query_core.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 5C20DCFB668E02D4C10AEC5BF4EF8A49 /* FIRMultiFactor.m in Sources */ = {isa = PBXBuildFile; fileRef = 2938F4FFE6E8122F63D8129B19774D4E /* FIRMultiFactor.m */; }; - 5C22C1380A1928549A693CB3808F8CC7 /* outlier_detection.h in Copy src/core/ext/filters/client_channel/lb_policy/outlier_detection Private Headers */ = {isa = PBXBuildFile; fileRef = 682A4FC28DC3D3C3CEFBBB4E0D43CD6D /* outlier_detection.h */; }; - 5C3FC2F961EA7C6233919F73FD86D563 /* alts_grpc_privacy_integrity_record_protocol.h in Copy src/core/tsi/alts/zero_copy_frame_protector Private Headers */ = {isa = PBXBuildFile; fileRef = 029A52B57DE5EB5D739AC0FCE0EED0C6 /* alts_grpc_privacy_integrity_record_protocol.h */; }; - 5C4306960DC0ADDBE2F0F2C56AC50868 /* x509_vfy.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 529F2132B01FC492077BC8A18DA09C7B /* x509_vfy.h */; }; - 5C444FB921A1A2EE89194416E00B8441 /* proto_sizer.cc in Sources */ = {isa = PBXBuildFile; fileRef = FB9C7AFA43EB81823A7B6CD35707C87F /* proto_sizer.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 5C4604FC6F4BCEFFF1F4E33763EDA7EA /* poller.h in Copy src/core/lib/event_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 6F25EB5B636A25FE646304BB73DCCEDF /* poller.h */; }; - 5C4DD6DE742477D29AA387E894E01528 /* orphanable.h in Headers */ = {isa = PBXBuildFile; fileRef = 77620D97BB51073B47D1E79603217C51 /* orphanable.h */; }; - 5C567E8B12213A153EF4410A8A47271F /* regex.upb.h in Copy src/core/ext/upb-generated/xds/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = E15820FD15877D9E1361FEC1F50F0B95 /* regex.upb.h */; }; - 5C63F6FD35571772ED0949030062C7ED /* memory_quota.h in Copy src/core/lib/resource_quota Private Headers */ = {isa = PBXBuildFile; fileRef = 74229C80A51CEA8CCD70BE0FA15B3856 /* memory_quota.h */; }; - 5C6E32572A006B0BB4A2E84E5D8AE1C6 /* cordz_handle.h in Headers */ = {isa = PBXBuildFile; fileRef = B79406B18FCC00F1BE74F82B2B71486E /* cordz_handle.h */; }; - 5C846073AB4AECE81377D5E56029C14E /* checked.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 8C203B763C0F64BD90C662D7489CF35F /* checked.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 5C8BA310E6303B785F4D4C5BC4BB8E6A /* FIROAuthCredential_Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E3ED0E5E9173B991156BF72C9B7AB19 /* FIROAuthCredential_Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5CB73C122D590F4B5D072203AF99AADD /* FIRAuthInterop.h in Headers */ = {isa = PBXBuildFile; fileRef = 0DF45D4C5F26587666F44F5491718DF1 /* FIRAuthInterop.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5CC9C2EB742E926B5FD574BF3F15BE75 /* transport_security.cc in Sources */ = {isa = PBXBuildFile; fileRef = D0F04CECD994320E3A01DFA9FC57870F /* transport_security.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 5CCACBE885A148B00A36A35951B376E7 /* client_context.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 2B5CDD833547C48509D8ED94ED2548BD /* client_context.h */; }; - 5CCF87DC390E64F2A2CC23CADAE5BAFA /* iam_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = E7285AA7C12FA59E344BF276FC1BC3B1 /* iam_credentials.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 5CD432B7118CD79B5EC4349DD604FA4D /* posix_engine.h in Copy src/core/lib/event_engine/posix_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 1BD45741D4ACCC04949E6770DC9B15CC /* posix_engine.h */; }; - 5CE806340EA50FBB1CCA29657BA1B958 /* collection_entry.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = BED92A62A7DF41D186AB73F10586207F /* collection_entry.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 5CF1019AB77472CED7E324AB42603892 /* stub_options.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = D68C067A853F7AD5970D4C7E16DD4CAB /* stub_options.h */; }; - 5D042AC3ADAECD4A32D23B35A79AE1B9 /* tls_spiffe_validator_config.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 4305DDACB736A7FA28EFA8562BA8204A /* tls_spiffe_validator_config.upb.h */; }; - 5D0659D86B5F620757704698C845027A /* check.c in Sources */ = {isa = PBXBuildFile; fileRef = 0F50E26714E64A7137B3C19A1FE0D7CC /* check.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 5D1012C4E926592322172E0120BC9B2B /* decode.h in Copy third_party/upb/upb Private Headers */ = {isa = PBXBuildFile; fileRef = AD102AEB5C4E3A23B73D64E4B4E8889D /* decode.h */; }; - 5D24BB3A0587472A3D49B2DC4172328A /* x509.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 273BBB9C7518ABE9ECC1856C3244B8B5 /* x509.h */; }; - 5D255495D5061FDEBD6BBC0EF95339B8 /* pem_pk8.c in Sources */ = {isa = PBXBuildFile; fileRef = B04568BC7474E6043F7190D4D6941401 /* pem_pk8.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 5D25BD025BBDA352BD634250865E0CB1 /* call.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 5D005D8A4BD29D324B5F19F3D39C900C /* call.h */; }; - 5D31EC1267F1ACA17E0904C21B44E523 /* json_encode.h in Copy third_party/upb/upb Private Headers */ = {isa = PBXBuildFile; fileRef = A37408BF6A75E1D7E40AD112CEEEE18A /* json_encode.h */; }; - 5D369233385CEE733A80BBBE59BED1EC /* cord_analysis.h in Headers */ = {isa = PBXBuildFile; fileRef = 10CAD5E37211F3AB267A47CCD83A7516 /* cord_analysis.h */; }; - 5D3859E9AEB890F8CD9E757041F1B3F5 /* health.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 5F3800C8FCB9B8F81FECF69F59AC7AA7 /* health.upb.h */; }; - 5D4D0467B7B631E194A3696C378EE24B /* flat_hash_set.h in Headers */ = {isa = PBXBuildFile; fileRef = F6C2630C568BADFFB7F5E9B9BF4CF5B6 /* flat_hash_set.h */; }; - 5D5383C0845470A922E4488F137A41C0 /* substitution_format_string.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 75DD5BF8D95AA27C2637D80816D3A30C /* substitution_format_string.upb.h */; }; - 5D64E82DEC7416C70800A710E69A934C /* any.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 0CC8F95A9FBC5242FAB3453FE77328E0 /* any.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 5D76AF993BC251F041A0C90A1008D0D0 /* subchannel.h in Copy src/core/ext/filters/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = 020A6AE37E25FE5415EE87787A8B568B /* subchannel.h */; }; - 5D7CF8DDC30F43301D1A526E8DD79B29 /* validate_metadata.h in Copy src/core/lib/surface Private Headers */ = {isa = PBXBuildFile; fileRef = 0336891C61BF31C85E91EEC8BEA4824A /* validate_metadata.h */; }; - 5D83AEF01A521BBE271AFCCD98ABDB4C /* status.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = 93EA384982455290DC53F3B566C8941F /* status.h */; }; - 5D85FD2B9DE0287E26A50369425D5C5D /* global_config_env.h in Headers */ = {isa = PBXBuildFile; fileRef = 9CA6047AD07D89A43FE08622059BA7DE /* global_config_env.h */; }; - 5D93C99077824CCC90EB4E5E7923FA57 /* xds_common_types.h in Headers */ = {isa = PBXBuildFile; fileRef = 6499C785CC09C8B79953179FFBCFE114 /* xds_common_types.h */; }; - 5D942708D4921C8C136FCE18ABB32598 /* time_util.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 2FCD5B61392BE1D0D9B3315415E8EC2C /* time_util.h */; }; - 5DA3F6BBC7FBA93032163127B621C19A /* format_request.cc in Sources */ = {isa = PBXBuildFile; fileRef = ADC5DD8780F4BBC1010477374CE03C3B /* format_request.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 5DC70B5A81B79F817D9F235D345C5FE1 /* listener_components.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/listener/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 5A6111432424CD3F01FD6FB5E3A39986 /* listener_components.upbdefs.h */; }; - 5DCB13FF0DAA1E0C2A583A8A0D64001B /* altscontext.upb.h in Copy src/core/ext/upb-generated/src/proto/grpc/gcp Private Headers */ = {isa = PBXBuildFile; fileRef = 0D094DEAB2BA05B268581BC9C17415D2 /* altscontext.upb.h */; }; - 5DE9AC4096A4414CAA58501ACA822F17 /* flat_hash_map.h in Copy container Public Headers */ = {isa = PBXBuildFile; fileRef = 86C3FE000E429114CF2087D59A39C587 /* flat_hash_map.h */; }; - 5DEA7070673EED00D0C8A5F3EB95ED43 /* http.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = C0D79936BA25E779C2F4E378A8DA5B8E /* http.upbdefs.h */; }; - 5DF2164B7FE4379B192BFAA219C7DFCB /* struct.upb.h in Copy src/core/ext/upb-generated/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = 61C198A4B5670386EC74AA48413C6D88 /* struct.upb.h */; }; - 5E07B7930114266D8C7B61EFA4C27086 /* civil_time.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F47E17C62699EA95F99E7D628EDC292 /* civil_time.h */; }; - 5E0A862514DC9B3C743394ED6452BF45 /* security.upbdefs.h in Copy src/core/ext/upbdefs-generated/udpa/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = C1574DE6547C8374619C026FE8A0661E /* security.upbdefs.h */; }; - 5E0F0ECA7CF2B545392D247067EB8D29 /* mutex_stats.upb.h in Copy src/core/ext/upb-generated/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 7678CC800F699E19F1FC72CCA01979D3 /* mutex_stats.upb.h */; }; - 5E1D9233845166E18D40D68305888A54 /* router.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = C9CC380E5CD27BAA280EC6FFD46E817A /* router.upbdefs.h */; }; - 5E31A077278A6235BBD8A7941CE73DBF /* grpc_plugin_registry_extra.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3838986E3FB6D16ABB9B5EBE29E09E19 /* grpc_plugin_registry_extra.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 5E44DED72AD1A3EDB94FAAE8DF923E64 /* json_object_loader.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C8AEB3336DAA85F1BE33A4478950EDF /* json_object_loader.h */; }; - 5E46B08D9171EDEB11274A11C75E4D37 /* asn1.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 09AF23878F67216BE2C4E0D604BDB0AB /* asn1.h */; }; - 5E4B153D93E6C75463131D199E46CB2B /* unix_sockets_posix.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 9C1845A415116CF020FD93791AEDD185 /* unix_sockets_posix.h */; }; - 5E4D3FCFC056425A711F31AE41F4D750 /* graphcycles.h in Headers */ = {isa = PBXBuildFile; fileRef = F0B2C4F706845DB3B64EF3AD5A17FEEA /* graphcycles.h */; }; - 5E5F34DD13FA370412DAE8A62A1502C5 /* validate_metadata.h in Copy src/core/lib/surface Private Headers */ = {isa = PBXBuildFile; fileRef = A8D0DD280B143554F2857DC8936CCEB5 /* validate_metadata.h */; }; - 5E68C165D5973DFEEED21456995BD663 /* slice_string_helpers.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3611235070AE4A66DDCC04DB845D7A1D /* slice_string_helpers.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 5E75A1001E2C53613255C20ACBD8362C /* conf_def.h in Copy crypto/conf Private Headers */ = {isa = PBXBuildFile; fileRef = F7CA91DFDB014D10CD1EB422B269BF3B /* conf_def.h */; }; - 5E76BC1E7A9ED1EF4BE3EBC74E1EB352 /* xds_transport.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = C522BEB0135F072ACE442D7AA634259C /* xds_transport.h */; }; - 5E92147BDC906A75C8BAA61B807416F3 /* upb.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 26726BD74B1CA97DF8A4C36E829B7BCB /* upb.hpp */; }; - 5E92950338A9BD4B2F8CD31701DDD42A /* backoff.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 03E74713156FDAC4C957ECED36CEDA22 /* backoff.upbdefs.h */; }; - 5EA50E22AF141CEEBF8923FD690B30C9 /* compressed_tuple.h in Copy container/internal Public Headers */ = {isa = PBXBuildFile; fileRef = C25CCB73644B884EEB1B796F9FAC6DAD /* compressed_tuple.h */; }; - 5EB36BC6A35158659260E690E9BDAB1C /* nameser.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 8E37A08848FB168A3CD446827638ED03 /* nameser.h */; }; - 5EB9FADBF94A68DF5BDF115DDA9802DB /* descriptor.upb.h in Copy src/core/ext/upb-generated/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = 5D271EFBB7265BE0490BCAE13329CE7B /* descriptor.upb.h */; }; - 5EBD39B6E514D7F148ACD105F39367A1 /* status.upbdefs.h in Copy src/core/ext/upbdefs-generated/udpa/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = 2FFCF45E8C2CC492873013C2661F5E3B /* status.upbdefs.h */; }; - 5EBF29765D477A139A139B19CB03AB79 /* table_internal.h in Copy third_party/upb/upb Private Headers */ = {isa = PBXBuildFile; fileRef = 7EF3F6E397FCEB3E72052EA27B3F13FC /* table_internal.h */; }; - 5EC289B9A69536C4D5BC84DD0342AF89 /* debug_location.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = EF5B18F7561A6ED9B99528D0F16C7EB0 /* debug_location.h */; }; - 5EC37FC32FEB44EF2B88FFEED2F9B268 /* thread_pool_interface.h in Headers */ = {isa = PBXBuildFile; fileRef = F5BB523CA69AC1EACC5F432980DB8766 /* thread_pool_interface.h */; }; - 5ECC97C5997B2741668B5ED9E6F61A82 /* leveldb_document_overlay_cache.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2D18CC9EA292D9B6E06A8FAF66690A08 /* leveldb_document_overlay_cache.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 5ED248E0DFF5DA0A5F88C28507872219 /* city.cc in Sources */ = {isa = PBXBuildFile; fileRef = 51C22FBE5E3F6217C474FC6962FF6743 /* city.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 5ED6FD5079AD97B4A0BDFF01F907C912 /* host_port.h in Headers */ = {isa = PBXBuildFile; fileRef = C4DC48646BC2BEBE1373ED3FCCB4589D /* host_port.h */; }; - 5EE0DFE31E01C349909E4D2E8EDD11F2 /* time_util.h in Headers */ = {isa = PBXBuildFile; fileRef = D58250B67622E0885735B8E68B74D8F6 /* time_util.h */; }; - 5EF26BBE7993744B365EFF38E2CAEB77 /* udp_listener_config.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/listener/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = B6E08BC63095ED074431E520176CAC4F /* udp_listener_config.upbdefs.h */; }; - 5EF2EBD50228458E544353EF97FA4502 /* GULLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 44EE63CF925FADD43746E9BDCFA0C4AE /* GULLogger.m */; }; - 5EF5070FFF557E14C612E4BBE37CC39E /* mutex_stats.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 2BCC60AE22AEC1BDBEEB1812F8CD2131 /* mutex_stats.upbdefs.h */; }; - 5EF6C727F6354D84CCC1BCE27E573593 /* address_filtering.h in Headers */ = {isa = PBXBuildFile; fileRef = 9596DC3803256B1C985B60FB241492B8 /* address_filtering.h */; }; - 5EFE808FE41B9A4668325993BCB61884 /* prefilter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6A72746CFA5F1C2D5C2FD1B721CD7247 /* prefilter.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 5F0150E70C3312E00762F49BF752C6AF /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = DEFF5777043C076CB9A90CD54EC34832 /* internal.h */; }; - 5F04FFA833114C98079853B547F200E4 /* FIRVerifyPhoneNumberRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 247A52A8AF7A863EEF3CB43B25E0BB0E /* FIRVerifyPhoneNumberRequest.m */; }; - 5F05919A5479CF10DFE01F261A006D52 /* csds.upb.h in Copy src/core/ext/upb-generated/envoy/service/status/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 0F078356C759B45AE2D465538210B802 /* csds.upb.h */; }; - 5F2036030CD4FFF1F49F0A35C7FE1ECF /* rsa.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 9972702880C9B730E47750CA3AACB066 /* rsa.h */; }; - 5F2AFBAFE01FE9B52CA73C85308F9C97 /* v3_bitst.c in Sources */ = {isa = PBXBuildFile; fileRef = 1F80AD3BC9FFB908355FF651B0E9FAAB /* v3_bitst.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 5F334B9F2A12EDC0CB03D8F14F4D9998 /* completion_queue.h in Headers */ = {isa = PBXBuildFile; fileRef = F1F5E90B4173A67C94136CB5E8D456D0 /* completion_queue.h */; }; - 5F39ED6E97236C75B3FA6BFBF56386A1 /* int128_no_intrinsic.inc in Headers */ = {isa = PBXBuildFile; fileRef = 03CE50D6563B82561D831B251B9E65D3 /* int128_no_intrinsic.inc */; }; - 5F3F34C59AE9D7A1132959B3D94C34B1 /* seq.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = BBF9D82CB030E0580E8E813B97B78C07 /* seq.h */; }; - 5F4658F07915892B44B85C93892BFE3E /* bundle_loader.cc in Sources */ = {isa = PBXBuildFile; fileRef = AF985D02CF09C7920F7314E5B49A40AD /* bundle_loader.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 5F5065B77E41DEE594302F3B98891A1A /* bind_front.h in Headers */ = {isa = PBXBuildFile; fileRef = 14D7335EFAF9427414BA07D885C75BD8 /* bind_front.h */; }; - 5F6F2A34CBCA73AB974DBB95A147DBFB /* grpc_ares_wrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C4C14EBFE2E73D6B1A8E88368C4039A /* grpc_ares_wrapper.h */; }; - 5F8C0A88974E91DC860F704614A26543 /* alts_grpc_privacy_integrity_record_protocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 4CBD2DA5AF23D05371273038813442D9 /* alts_grpc_privacy_integrity_record_protocol.h */; }; - 5F90036D652A58C3B400E015F20327BE /* range.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = EB8C0A552D7530749626CB9E0348637F /* range.upbdefs.h */; }; - 5F90460CA57C00D115EE2A75849FDA17 /* xds_resolver.h in Copy src/core/ext/filters/client_channel/resolver/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 338C41D1810425B51CE75208980BD225 /* xds_resolver.h */; }; - 5F9181F262E8A23B49B20D9FCC631869 /* load_report.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 15A1BE303BDB64B96512334CC58553FD /* load_report.upb.h */; }; - 5FA6DE1A171561B0E5E8BACF3EB18BD4 /* call_hook.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 0B7216370FB72A5F5AC3267F6B9CC9A0 /* call_hook.h */; }; - 5FAC3D3B5D018253A780F1A437FAA075 /* bad_variant_access.h in Headers */ = {isa = PBXBuildFile; fileRef = 0AC7F295A9BF96E551BD821B01F32EE9 /* bad_variant_access.h */; }; - 5FAFFB55338002C482875299303820E6 /* sensitive.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 5C93C5F8AD53DE3D25662800C9393B6B /* sensitive.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 5FCF66586CD11F9C3F28BEB2AE027D90 /* hpack_encoder.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 7FD49E5A4AAE8B9CAB8BFF4FBC86B3A6 /* hpack_encoder.h */; }; - 5FDA021264699C25344917DF01008EE3 /* fast_uniform_bits.h in Headers */ = {isa = PBXBuildFile; fileRef = BE8B2513C819015AFEE44E7F0481AB14 /* fast_uniform_bits.h */; }; - 5FEA041C4D281A120AD3AC7257EBCCBF /* common.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/tap/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 409E713A61C962A168AF3B702C1E9B5E /* common.upbdefs.h */; }; - 6002B6E60D369A9289C757BD658542A6 /* address.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 145EA771FCD62182DB86117A67DFF1FB /* address.upbdefs.h */; }; - 600458DF2E53750A823CD43511057E09 /* local_transport_security.cc in Sources */ = {isa = PBXBuildFile; fileRef = FAD8CFCFA1937FEBDD177FBE797C2768 /* local_transport_security.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 600474D594BBC554248956335684D22E /* metadata_array.cc in Sources */ = {isa = PBXBuildFile; fileRef = ADE80FD2EF1876AB92683AA3B4B05A69 /* metadata_array.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 60069FD9AEE99F528F3D4B31F7067B69 /* fault.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = A31DE3B1E7A336F231F7F2247652A4DF /* fault.upbdefs.h */; }; - 6010F619559BC110199343636EADB961 /* alts_grpc_record_protocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 1F6BDF55ADB595DCF7949D3FD6750F6E /* alts_grpc_record_protocol.h */; }; - 6023BB9A90F871F7B1C9A0BCCED9D46E /* opencensus.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = D624E16D6ADD7DC3DE603ECB83906BFD /* opencensus.upbdefs.h */; }; - 60576A17090F3C0131CECDFF1FEA3ED6 /* x509_lu.c in Sources */ = {isa = PBXBuildFile; fileRef = 4EC20B669118BFD522D821D6CB0E5F79 /* x509_lu.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 605A441ABBB2AB65445803E9EC57FB03 /* xds_common_types.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 6499C785CC09C8B79953179FFBCFE114 /* xds_common_types.h */; }; - 605F3C062F4B7EEE65E5616A501F2DDC /* custom_tag.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 2F97685D966EAEE9E509D67B1FBC96D0 /* custom_tag.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 606BB0D485FCED06ECD9770451594C20 /* internal_errqueue.cc in Sources */ = {isa = PBXBuildFile; fileRef = 361F1765394550B8F24A02F702A16728 /* internal_errqueue.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 608F4292458259C1E55443AD326C6709 /* filter.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 71CBA075A30CC6A9B5F327E0ED9EB95F /* filter.upbdefs.h */; }; - 6094DEC218F1BD53CFD40A58570F6A15 /* internal.h in Copy crypto/err Private Headers */ = {isa = PBXBuildFile; fileRef = E8A1A3E644DC7315C56F47FBBC1C763A /* internal.h */; }; - 6099BB3984C835F7329BDB3E16E21134 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = CE8A826F9315D91424D47C1D36A58B48 /* internal.h */; }; - 609A6524FC8ED5E0636D73411CD87E84 /* call_push_pull.h in Headers */ = {isa = PBXBuildFile; fileRef = 254259009904437260472692D35B1947 /* call_push_pull.h */; }; - 609A6597AAFCF609A9ADAACB9B1B01AA /* rbac.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 486F932832F407A1FB39ED9FF85127C6 /* rbac.upb.h */; }; - 609F22D2F3651DD03EBCF8832C9F3090 /* retry_filter.h in Copy src/core/ext/filters/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = D25E974A39FA21BF7767713F01E43EB0 /* retry_filter.h */; }; - 60B21A7A14D23BE6FF995F8E1D4173CC /* sockaddr.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 30F5F23419385F4B50AFEF1B5CA651E7 /* sockaddr.h */; }; - 60B93A235157B924673430A5A57D8E32 /* discovery.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = A918E8AED381B836B71CD875DDC0BC7E /* discovery.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 60C3D0F6282B38E97018AB063367EAE5 /* log.h in Headers */ = {isa = PBXBuildFile; fileRef = 9ADC4838B72C90F19E552A45DE8F0C47 /* log.h */; }; - 60C4C680ADB604B8610EC92DCD5D4C04 /* FIRAuthSerialTaskQueue.m in Sources */ = {isa = PBXBuildFile; fileRef = 33659C106C597E06603A0554A65A3821 /* FIRAuthSerialTaskQueue.m */; }; - 60C4DAD1725E291CFF51C593C40BA629 /* regex.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 58A3508AC81E61FBA6E484F7CE29E973 /* regex.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 60CB8C4F5329DCCE1FE547C007C49B1A /* common.upb.h in Copy src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 6BBF3EF9AE9CB9587CE4EFEAFDEAC08B /* common.upb.h */; }; - 60CDAB6765C741532ACCCD7876CE53B9 /* FIRUser.h in Headers */ = {isa = PBXBuildFile; fileRef = FFA74503C227AB0CFA15848DB9A1DC8E /* FIRUser.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 60DA14211013F2C44597BE5C8B40F5D0 /* decode.h in Headers */ = {isa = PBXBuildFile; fileRef = F520AAA3206BD5E98CAE1F4221BDC63A /* decode.h */; }; - 60EC0BBBD51026FDD2E76B649BD251B6 /* utf.h in Copy third_party/re2/util Private Headers */ = {isa = PBXBuildFile; fileRef = 1FB19D674A6C63A47203BE6CD3206057 /* utf.h */; }; - 60F1126D5E4B269D6A706F0B6882EF09 /* transaction.h in Copy src/core/ext/transport/binder/wire_format Private Headers */ = {isa = PBXBuildFile; fileRef = CDD188B4285D6A22E5D5B80A604D57A1 /* transaction.h */; }; - 611063C3B3D0E374C6667BDB7705DA70 /* GULAppDelegateSwizzler_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 0ED55A4E2EB87D1D2EC6B37F89CEB2E3 /* GULAppDelegateSwizzler_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6110FCACB76E56270A92C8DF9B31149F /* client_unary_call.h in Headers */ = {isa = PBXBuildFile; fileRef = B92B339C719AD7AA78B972D6543CB4C0 /* client_unary_call.h */; }; - 61270BB4E1BB902972CBCB8D7756D745 /* struct.upb.h in Copy src/core/ext/upb-generated/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 1C42BC7313685B7674C0A791D2A72E38 /* struct.upb.h */; }; - 612E457E2C77CB2076FFA37BAFAC020E /* FBLPromise+Testing.h in Headers */ = {isa = PBXBuildFile; fileRef = 87AE9EFF3CD25BE35F438224784E372D /* FBLPromise+Testing.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 61396466A9588D34B12B8C99973091F0 /* dynamic_ot.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 2995219B51B72201A5CCC6D72F5C69B0 /* dynamic_ot.upbdefs.h */; }; - 613C13518665D297EB79DB299F79BA4D /* atm.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = E356DC4EF8E73F382000570D0CBE12AC /* atm.h */; }; - 613F76B03D2E8CCCDC83475036C7AE3B /* grpc_util.cc in Sources */ = {isa = PBXBuildFile; fileRef = D273FB4479BDEA012EA9F2E7BD156A02 /* grpc_util.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 6141686D4CABFB8007FFB97F44F2197C /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = CE27F3353CCDE20EEA1967F59A73B2AF /* internal.h */; }; - 614999B70352BF230BD0EBBDF80E5667 /* socket_notifier.h in Copy src/core/lib/event_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 5E6F78950A5D6889537FB4BAA5BC3AF8 /* socket_notifier.h */; }; - 614F5BB1AF3897D5645834F9B7CDEF4F /* insecure_security_connector.h in Copy src/core/lib/security/security_connector/insecure Private Headers */ = {isa = PBXBuildFile; fileRef = 51BA01EB872ACBA9D90695E399E8BC9D /* insecure_security_connector.h */; }; - 6165297D5D5E2793EDA43FB44A2D7351 /* json_util.h in Headers */ = {isa = PBXBuildFile; fileRef = 636A1D63408A7783FACE3FE5377D7D62 /* json_util.h */; }; - 6168F119C19A6D6454FF934DD89BA2DC /* endpoint_pair.h in Headers */ = {isa = PBXBuildFile; fileRef = EFE62C81BBA07096D5E0402B8548A28A /* endpoint_pair.h */; }; - 616CDFDFF5E7009CB2329503DA793528 /* sensitive.upbdefs.h in Copy src/core/ext/upbdefs-generated/udpa/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = 2EBFEB9706D13970EED7D6DED48D25C4 /* sensitive.upbdefs.h */; }; - 617309F59592267C3DA2A0DBDF0E1B04 /* timer_heap.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4B14774D806972A74ADB0DE0D83FCB23 /* timer_heap.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 617AF555728909CF38C204607769951D /* resolver_result_parsing.h in Copy src/core/ext/filters/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = B8E642D6A332C826846139E0C783BFD7 /* resolver_result_parsing.h */; }; - 617CE6679BE305BF340997A46E890382 /* fork_detect.h in Copy crypto/fipsmodule/rand Private Headers */ = {isa = PBXBuildFile; fileRef = 443E99F27A9B6F2B778BB81A9F04D53E /* fork_detect.h */; }; - 61831427BB23A585BF5977D253EF44B7 /* alts_zero_copy_grpc_protector.h in Headers */ = {isa = PBXBuildFile; fileRef = 232BB2ACE0E4A6B41534C3ED7B8EF446 /* alts_zero_copy_grpc_protector.h */; }; - 61851424DA7702FD441271AC6C6D0521 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6E336DC2534E1E69B7828F6012B874C6 /* Foundation.framework */; }; - 618A811055815A0718E55E50FD79F7B3 /* fastmath.h in Copy random/internal Public Headers */ = {isa = PBXBuildFile; fileRef = CB5597A033BDBA48CA4EB0A5C59F88CD /* fastmath.h */; }; - 6192AA49CE9B59FD2CB423E7F392AE9A /* cookie.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A27EFEF109F68AD716D9F3A83FD6445 /* cookie.upbdefs.h */; }; - 6192D40FA174F54245DE9CB7E6C8FD60 /* security.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E08E597B6588B1CFEAD63915941B59F /* security.upbdefs.h */; }; - 6194B030D5CD60A81C1453CACEA1099A /* ring_hash.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 03A419906CDB4D0A8F5F17D59C294D63 /* ring_hash.upb.h */; }; - 61A5934B60C064C45DE40542DCE083BF /* frame_data.cc in Sources */ = {isa = PBXBuildFile; fileRef = 752C8AF4AA3C1291EB8C64DCA636B5AA /* frame_data.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 61B9212A1022F4DC97D218601B57E2BC /* byte_buffer.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 04B265A9EFA08526A9ADF091450CDB8E /* byte_buffer.h */; }; - 61CD2D55D06BD91B446EA4ED3B1A5304 /* fork.h in Headers */ = {isa = PBXBuildFile; fileRef = FDF05055FAF2AEF32BF075AEAFF1F223 /* fork.h */; }; - 61CE9035EE2FBAF2C576CF5674A0A8AC /* error.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = AB2850FB9853861A0558E11F6C64924A /* error.h */; }; - 61E25343B5516D7635099971EA9FB102 /* listeners.upb.h in Copy src/core/ext/upb-generated/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 78EC62E7F363C18CE7FB247C3A45D100 /* listeners.upb.h */; }; - 61EBE40ADA75D5389D259840E5D8A3E7 /* http.upb.h in Copy src/core/ext/upb-generated/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 92DA656D05D7F7EA7AAF5DB9CFBE8A20 /* http.upb.h */; }; - 61EDBEB90F48F66A4DC299515C980D58 /* no_destructor.h in Headers */ = {isa = PBXBuildFile; fileRef = 3824C1962AB1BC1EE6A2BDFE75BA4A86 /* no_destructor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 61FBEE5E8F4C396062EA6012654CBAA3 /* secure_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6E27283994C5D70B1CBC78AF005A2F17 /* secure_credentials.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 61FD5A55911E16113CD8A913DC23410C /* FIRGetProjectConfigRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = B7A88B8FFED3DA53D95C81D25144E26A /* FIRGetProjectConfigRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 61FE0AF156D15200FEECB1B987351522 /* FIRAuthBackend+MultiFactor.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B6FBDD9F6D43BA31DFDE175F64970CD /* FIRAuthBackend+MultiFactor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 61FFC075895CF72E36B483B639C5254A /* lame_client.h in Headers */ = {isa = PBXBuildFile; fileRef = C7CA61CFA9CC4EFA297770FB89E14C65 /* lame_client.h */; }; - 62060AAE66A09A8FC389CC2D9C147B67 /* upb.h in Copy third_party/upb/upb/internal Private Headers */ = {isa = PBXBuildFile; fileRef = CD56792D14D5AC2584C0293A29A2B898 /* upb.h */; }; - 621885E0A5EE16D4FC3F55AFE7B5D40D /* tcp_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = B9AAC40E39BD0FB9F2EB6A3B9867D754 /* tcp_posix.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 624B7D9D16B56A20CF8120BA54227799 /* intra_activity_waiter.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = 909BD7402DFE6D0D50EF17F47E6FD290 /* intra_activity_waiter.h */; }; - 625ABC8C2A3A5A040C16BF504907E044 /* alts_frame_protector.h in Headers */ = {isa = PBXBuildFile; fileRef = 382CF00AC9B3E3B0FEBA9B1A38D76AEF /* alts_frame_protector.h */; }; - 626271530EA6D728D129BBD85F087713 /* resize_uninitialized.h in Copy strings/internal Public Headers */ = {isa = PBXBuildFile; fileRef = F2E245E1F2E2E131D7F20D5E71B55950 /* resize_uninitialized.h */; }; - 626BE144F1D0539AC1C6185EFF7C71D1 /* bn.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = A163AB899B8CB35AACC0FC9241C1D2EF /* bn.h */; }; - 62782F2CAB6EDD0D3507176F9A007E2A /* avl.h in Headers */ = {isa = PBXBuildFile; fileRef = F0914F7F5460C0D3D62BF7416D32DD2F /* avl.h */; }; - 628813B0F053551580A556404C16768B /* cluster.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = A1C9941F0FF60759894CB9D6A9D0707F /* cluster.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 62899B81CAA5331542CC7106944F02BA /* context.h in Headers */ = {isa = PBXBuildFile; fileRef = 68CB1F72DF917BC3B040A6A9B16022B1 /* context.h */; }; - 628A62CEA77DA8C7E15C0B8F3AE119B6 /* montgomery_inv.c in Sources */ = {isa = PBXBuildFile; fileRef = 3812B343FB792033520820ADFBAFD132 /* montgomery_inv.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 628B65AAD2E8AC1426F710DFBAF3DA4C /* symbolize_unimplemented.inc in Headers */ = {isa = PBXBuildFile; fileRef = 6CB7FD367506BBFE8EC1550725D493D5 /* symbolize_unimplemented.inc */; }; - 6291095143D30EF3EBDEB682FFE97478 /* memory_allocator_impl.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B3EBFC9319A4B2839C203FB73ACBEC6 /* memory_allocator_impl.h */; }; - 62994C93D739AF9737D0C7CB59F96DBA /* tls_security_connector.h in Headers */ = {isa = PBXBuildFile; fileRef = 4FD27341A0A00B409A56F98B50F74B70 /* tls_security_connector.h */; }; - 629FF45F06C71645E029B06131595B54 /* time_averaged_stats.h in Headers */ = {isa = PBXBuildFile; fileRef = 76B91D5077AA64DFCFF64905FA48A626 /* time_averaged_stats.h */; }; - 62AFD8FAC3A8FF7E2ABEEA9D3F72D69E /* connect.c in Sources */ = {isa = PBXBuildFile; fileRef = 2047186A0C0844604CF3BDF0237A51B0 /* connect.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 62B5C563D64B3EC1BAFDCFD28DC0E2B7 /* barrier.h in Copy synchronization Public Headers */ = {isa = PBXBuildFile; fileRef = 37F0393FA22A723EF3B2F2DD1F51B51C /* barrier.h */; }; - 62CB56A996D868F3562BB6CEDEF41F9B /* variant.h in Headers */ = {isa = PBXBuildFile; fileRef = ACFF85EC359F9CD76D234DBD92933B9C /* variant.h */; }; - 62CCFAC6AB5D80F2CAD10687F4DE3A65 /* transport_security_common_api.h in Headers */ = {isa = PBXBuildFile; fileRef = BA9B9EDCF29D7FD22271CB4ED3E858A4 /* transport_security_common_api.h */; }; - 62E2721B3DD6288AD2203B45802615F3 /* grpc_authorization_engine.h in Headers */ = {isa = PBXBuildFile; fileRef = DF51B62188C94F0F5338FD2172BBAB89 /* grpc_authorization_engine.h */; }; - 62E6FCCC0900C1B8AC1D593DA8DB3718 /* FIRResetPasswordResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 280A85E81BE200D66457D3D4A5696F67 /* FIRResetPasswordResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 62FB21555DB81543BF6B516E32CF43D8 /* hash_policy.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = D6376C70990502E9AB8F64641BF2D03F /* hash_policy.upbdefs.h */; }; - 6324340D1A6D2B079E63625F8EF14B1C /* env.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 56271BC0CD53E6791C9B8E20E0CB73D5 /* env.h */; }; - 6335E255970D653820584C0000550ECE /* FIRVerifyPasswordResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 4224259A4A8BBEB52ACB1922DC7B2B69 /* FIRVerifyPasswordResponse.m */; }; - 63379639177671BDF66D0C86463872CA /* resource.upbdefs.h in Copy src/core/ext/upbdefs-generated/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = CD88BEFD5553ACC70C70722D7BF14851 /* resource.upbdefs.h */; }; - 6344036854CE103E2C1C1CEE11270D5A /* retry_throttle.cc in Sources */ = {isa = PBXBuildFile; fileRef = DB7D999D6E7FCFF2572338BF85B16D57 /* retry_throttle.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 634C0EA2C991A4DDC7FDBD4B0078AF74 /* certs.upb.h in Copy src/core/ext/upb-generated/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = DDAFD55BA49B14289373BDF535EA2F57 /* certs.upb.h */; }; - 634E9193C837C228F6FF274919C6A160 /* child_policy_handler.h in Headers */ = {isa = PBXBuildFile; fileRef = A1DD04A14CE0817D4680052076AFB65C /* child_policy_handler.h */; }; - 63777B3F886DEFC13F0D75B4A1362314 /* xds_bootstrap_grpc.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 77219182BFDEF6186E5BC5DB15F3CD6D /* xds_bootstrap_grpc.h */; }; - 637CED567F3DB208FA40A35C3EFE9CA3 /* transport_security_grpc.h in Copy src/core/tsi Private Headers */ = {isa = PBXBuildFile; fileRef = 3E604C81CA7C7A49D8494A10200E5BB7 /* transport_security_grpc.h */; }; - 63B2E274D2ACB5AB5DC3480D0AA080D8 /* endpoint_config.h in Headers */ = {isa = PBXBuildFile; fileRef = EEFA7143837C97488674FDEAC8125984 /* endpoint_config.h */; }; - 63B4D303CA2940CD58DD6CF9B3184CEB /* udp_listener_config.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B2BBBCA2A334A2B5A286924E8C390CC /* udp_listener_config.upbdefs.h */; }; - 63BE8C81150940BB570D76CA1963ED68 /* executor.h in Copy src/core/lib/event_engine/executor Private Headers */ = {isa = PBXBuildFile; fileRef = DF9248F8632D47E65700F68F120F89A2 /* executor.h */; }; - 63D1B10D03412682A9D1D6228EDCA59C /* server_config_selector.h in Copy src/core/ext/filters/server_config_selector Private Headers */ = {isa = PBXBuildFile; fileRef = 9BC8E2C28C2B3D831E81B3F03B2D2B79 /* server_config_selector.h */; }; - 63D71DED9EF7F7A7633AD1652B05B8AB /* FIRAuthDefaultUIDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 59F3222F272F14CFA97A279FD2C657F9 /* FIRAuthDefaultUIDelegate.m */; }; - 63D83B7BFBD9844A00E6C56AE77B5138 /* client_context.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 4115FECB4A6A56EBC208F60EE3B9CECB /* client_context.h */; }; - 63DA95BFF026983D56482BB33A882935 /* alts_iovec_record_protocol.h in Copy src/core/tsi/alts/zero_copy_frame_protector Private Headers */ = {isa = PBXBuildFile; fileRef = 583770A9623A9D33F182DDA0104B7494 /* alts_iovec_record_protocol.h */; }; - 64049E8129B26DE1DC8DC10E7C1E5E7B /* resolve_address_posix.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 35E8A32CE322A3E022C3DCB888208A0E /* resolve_address_posix.h */; }; - 640622CED7986C6116220AE56AA33488 /* service.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 7359B7BA7C6FF0EBED5697581C1F038A /* service.upbdefs.h */; }; - 640B0933C117043B634989CFC2B750E6 /* subchannel_interface.h in Headers */ = {isa = PBXBuildFile; fileRef = 38D052780525542B9D7CBC3DB4AF5AFD /* subchannel_interface.h */; }; - 640D057C992572B3D852FC260D62B777 /* parse_address.h in Headers */ = {isa = PBXBuildFile; fileRef = 99CF4CDA14EC4A7168828C7E2F70B482 /* parse_address.h */; }; - 641283C34F071C82D11B48AB246AA735 /* spinlock_win32.inc in Headers */ = {isa = PBXBuildFile; fileRef = 26E0FCFBFB3138BD8B021B6C54F965E7 /* spinlock_win32.inc */; }; - 642FADD799CA239DB4BB4706F183D3B0 /* validate_service_config.cc in Sources */ = {isa = PBXBuildFile; fileRef = A1742B7852233B3BE66B19852EEA8C8D /* validate_service_config.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 643F3C0BF4D48CFB4FAB5E44FE64525D /* memory_request.h in Headers */ = {isa = PBXBuildFile; fileRef = 57F486DACB222167DF1C1CCEBD3A566E /* memory_request.h */; }; - 64429780BCDF62EFFB3027AA6CC3509C /* fake_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 7122537F48940CE5086D0A86C5880E03 /* fake_credentials.h */; }; - 64435180C9AC2AA12632181D60D851CA /* FIRAuthErrorUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = FE44FB9BA1D648896D08652CED8AF3C3 /* FIRAuthErrorUtils.m */; }; - 6444DC5FE25A0A0335EB6E56FF57094C /* error_utils.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = C8EF21AE6BD70BA1C29767FB9060DD93 /* error_utils.h */; }; - 6453E3C9CF7F8805FD32B0A8216FFF78 /* sync_stream.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = 76525149F01A88CDEB67CC781DE077C6 /* sync_stream.h */; }; - 64629EF452378DACD27FC3676F85230A /* tls_cbc.c in Sources */ = {isa = PBXBuildFile; fileRef = 9D0541BC23ABED005277B5EB1233DFB7 /* tls_cbc.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 646375243C4F37D2EF3E89015EBF0476 /* leveldb_index_manager.cc in Sources */ = {isa = PBXBuildFile; fileRef = FE3BEE6A5DD464109EDF19D8D6EBC1C2 /* leveldb_index_manager.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 646988A727777F074EEEE64951A26283 /* time_averaged_stats.h in Headers */ = {isa = PBXBuildFile; fileRef = 43276600EC6EAE64185A8F8A6263CA00 /* time_averaged_stats.h */; }; - 6472517E87F7B12F8A8EA9ED256DA81C /* config_dump.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 08A70BD72C1E3ACA8D5046D53559FDBD /* config_dump.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 6474E670F5B5A9E9682969DE399051C3 /* a_mbstr.c in Sources */ = {isa = PBXBuildFile; fileRef = EA748A455A0289CB5746A5C803901284 /* a_mbstr.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 647F4CD29C3028B027F7E8EE48B07402 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 5F22DE2FD8C5049C2446ADDD71014688 /* internal.h */; }; - 6486BB6D356E53D9794CAD70B0796F52 /* xds_client_stats.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5A4454C59EC4E76B6ABB54F47B1B58FD /* xds_client_stats.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 6495F9A0A2488C7D47A4C19B62A45DB1 /* regex.upbdefs.h in Copy src/core/ext/upbdefs-generated/xds/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 348763B349FB3F41AEBE8E7B5A6CA1D1 /* regex.upbdefs.h */; }; - 64986C35F3AD10F8401A5D678D1BADB4 /* memory.h in Headers */ = {isa = PBXBuildFile; fileRef = 042271FB2B2387217FDD272A332FE6E7 /* memory.h */; }; - 64ACAD57914D7686234794EC132BF5ED /* metadata.upb.h in Copy src/core/ext/upb-generated/envoy/type/metadata/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 5AC23B5DA5F7B31CFA2D94A0A10B7C33 /* metadata.upb.h */; }; - 64B95102152D1EA56C4C937774E3935E /* function_ref.h in Copy functional/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 69EBA31AEB067C068C6DDB66943A2C61 /* function_ref.h */; }; - 64BFC30A663CBEDA4CA6525A10A142B5 /* chttp2_connector.h in Copy src/core/ext/transport/chttp2/client Private Headers */ = {isa = PBXBuildFile; fileRef = 0AA1C1B24BB5237282D061255F91D505 /* chttp2_connector.h */; }; - 64CF0C6A3DD40DB1374B30BB9D918085 /* resize_uninitialized.h in Headers */ = {isa = PBXBuildFile; fileRef = F2E245E1F2E2E131D7F20D5E71B55950 /* resize_uninitialized.h */; }; - 64F3797F9EA4F5DD84FB5E6867C1F426 /* statusor.cc in Sources */ = {isa = PBXBuildFile; fileRef = 329BEBF73249662C2D188CA1832390FE /* statusor.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 650401A4E463A41F4A5C52C7552A420C /* datadog.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 68DC936E74CF4BE1A50D95DA9764460B /* datadog.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 65066C29A0327BDEE844C06D6D95FD58 /* hide_ptr.h in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = E78FBB22C6A320607961BB36F72F8943 /* hide_ptr.h */; }; - 650D67F045C415E988E6A666B09CEC7F /* p256_32.h in Copy third_party/fiat Private Headers */ = {isa = PBXBuildFile; fileRef = AA6C548C2BAB51D70A6A45A8D0C335C0 /* p256_32.h */; }; - 653BDC47AF80BCAB63C1D70B04141313 /* secure_endpoint.h in Copy src/core/lib/security/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 1721A8FBD82F65B6216C583121EA9086 /* secure_endpoint.h */; }; - 6554485C994BEB8DEB26C24D40F5A26F /* reflection.h in Copy third_party/upb/upb Private Headers */ = {isa = PBXBuildFile; fileRef = 5144E0B838F00F833911BAAFAEE6D784 /* reflection.h */; }; - 6556C258B887B58195935AC6046194CF /* endpoint_components.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 6C4C0ECBE2BECCDE38CFE8DA04D838C4 /* endpoint_components.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 655D4C5964E30600586B6EE81E4DD444 /* mutation.cc in Sources */ = {isa = PBXBuildFile; fileRef = D5C49334DD556F5780675941F05A851D /* mutation.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 6564D8D6231AA668D577404758CF532D /* db_iter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7F4F623D37630E1C91747D87B48A88E5 /* db_iter.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 656536C899CD25BBE759DE76E740002F /* ssl_types.h in Headers */ = {isa = PBXBuildFile; fileRef = 1EB1444C130BA5DED98284F1AF09AA5B /* ssl_types.h */; }; - 65669F8C2CCCA1102E313D15F6908F4A /* interceptor.h in Headers */ = {isa = PBXBuildFile; fileRef = E6F31963F98F365F8C8F9C0568785A03 /* interceptor.h */; }; - 657518B51075077ABC75BE8951574582 /* tmpfile.h in Copy src/core/lib/gpr Private Headers */ = {isa = PBXBuildFile; fileRef = C28C366BC02EC0B45971B167642AA847 /* tmpfile.h */; }; - 657B6C8D59F28CDE6E34C43E14DA5599 /* upb.h in Copy third_party/upb/upb Private Headers */ = {isa = PBXBuildFile; fileRef = 3BD90E818DD2D4334EB9A39CA84CDCB7 /* upb.h */; }; - 657DA39B6E389053DE3E1B451462EE1E /* by_file.c in Sources */ = {isa = PBXBuildFile; fileRef = B064133769A571103DA974108857368F /* by_file.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 6588CE088E9A13FC3A79F63F7D5635CA /* listener.upb.h in Copy src/core/ext/upb-generated/envoy/config/listener/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = D9EB568045DD790BEE70377C14E931AF /* listener.upb.h */; }; - 658CF2AAA9CC36667D0E1DF84644047A /* method_handler.h in Headers */ = {isa = PBXBuildFile; fileRef = FBB39E85D4CC09AD338E735C86D59F95 /* method_handler.h */; }; - 658EB79C0CD022E633721B8A763BD0F4 /* number.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 80F8D7ED95FA6EBB82179E594C725F28 /* number.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 659959BC981AFADBA2D71AB17739E63C /* authorization_engine.h in Copy src/core/lib/security/authorization Private Headers */ = {isa = PBXBuildFile; fileRef = 6A3023C771A2D4C19AA78C8C5DD0F961 /* authorization_engine.h */; }; - 65ABB41FA377AF77D355881C5E034536 /* FIRMultiFactorInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = FDB172C67017D2DC14A30DAD69BA578C /* FIRMultiFactorInfo.m */; }; - 65AD4B680DE1E109BAA0159733FD9E39 /* timer_manager.h in Copy src/core/lib/event_engine/posix_engine Private Headers */ = {isa = PBXBuildFile; fileRef = B4B31727210C12554FD9BF0C287C30E1 /* timer_manager.h */; }; - 65ADEE8B879FD7451286C104ACFCBFC2 /* ssl_key_logging.cc in Sources */ = {isa = PBXBuildFile; fileRef = 796F9940703794CB3C627FF32271F786 /* ssl_key_logging.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 65AFBEC2AA21C987F65CDB702A07976B /* ratelimit_unit.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 0BB09B9AC5613704597CBB67857733AE /* ratelimit_unit.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 65DD91459F741E75CE82EBD50C1195E8 /* tls.h in Headers */ = {isa = PBXBuildFile; fileRef = CB2A80BD022534D8DFA89BBE3FF013BD /* tls.h */; }; - 65E9558696589618EC5624B13A9622AA /* string_constant.h in Copy strings/internal Public Headers */ = {isa = PBXBuildFile; fileRef = D813F11BF7510E7FD0EB0F97697E2106 /* string_constant.h */; }; - 660EA28E698F95E5ABFAE4CB257D13A1 /* cluster.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = E02BA09433766238FF28A894B799276D /* cluster.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 66267F8EC1B89CC08AE4FC2A76E6898A /* stacktrace_aarch64-inl.inc in Headers */ = {isa = PBXBuildFile; fileRef = DF3232B0650662692F09AA76FCEEA3A8 /* stacktrace_aarch64-inl.inc */; }; - 663146D952C581BFF34098EAEE4348D9 /* GULNSData+zlib.h in Headers */ = {isa = PBXBuildFile; fileRef = 42AB9B55E892FB51A7F21415CE890F75 /* GULNSData+zlib.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 6631B549BB5B8970883C11C72C209558 /* mini_table.h in Headers */ = {isa = PBXBuildFile; fileRef = B8DF32DF83D1D095D3DADF7C0541353D /* mini_table.h */; }; - 6638F59B899E6E6AB8056D76DA1AD292 /* security.upbdefs.h in Copy src/core/ext/upbdefs-generated/xds/annotations/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 05603E080B7957664B50E13BBACA7222 /* security.upbdefs.h */; }; - 663C3A6058DAF0AAC9D72FDA053B3EDA /* http_connection_manager.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = ACE59FE17C53B0BB7B2A2B6E304E64EF /* http_connection_manager.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 664552D4D7EB223551ED8A01A84B87FE /* get_current_time_chrono.inc in Copy time/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 10E1F4D8EEA01F4EE3067A245DB84F62 /* get_current_time_chrono.inc */; }; - 6648A9816C6AAD30800D0691562249D5 /* GTMSessionFetcherService.m in Sources */ = {isa = PBXBuildFile; fileRef = 39592733D5F67B93976E9E68975F9D1C /* GTMSessionFetcherService.m */; }; - 664FA216996CC58BE23CC279CEAE0AA3 /* msg.h in Copy third_party/upb/upb Private Headers */ = {isa = PBXBuildFile; fileRef = 77A51F4925ECF7FF164BD21B92E5706C /* msg.h */; }; - 6655E77FD681C3EFFC3D02A3817E4F34 /* extension.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = F0DDB1000478CE78FA09A7582B95753B /* extension.upbdefs.h */; }; - 6660E16A92281251C7EE1BA9A129000C /* FIRAuthUserDefaults.m in Sources */ = {isa = PBXBuildFile; fileRef = B318C72EE26D0DBC3DF56E3D702483A4 /* FIRAuthUserDefaults.m */; }; - 66630D65013036A9102BE03234950EBA /* rpc_method.cc in Sources */ = {isa = PBXBuildFile; fileRef = F3379AEDD0A5256B9B8A5922BB0A28EA /* rpc_method.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 66635E0D7CFE3E7C7DAFA960721AABB8 /* security.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 19C4F5543656C428F09D47C6E17FABA3 /* security.upb.h */; }; - 6667DE6495BE31240A7D9CDB1CB37A00 /* timer_manager.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4A7ABB5493AD45ACDB93F848A02843F8 /* timer_manager.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 666F0A717167C968B5EBED4A49EDBFC3 /* orca.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = C3811525CD5F5C9EE56F2049CC74EDF3 /* orca.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 6672A470B619092714272279FE20CF15 /* server_info.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 30A2CB414B944153384BA5FAFF9D2270 /* server_info.upbdefs.h */; }; - 66787093ECA2B1DB990EA969F02C8713 /* key_field_in_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 357D38A2FFBAF186424EB9B0A5246416 /* key_field_in_filter.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 6678C12324A7BEAD14F461F2F2890F41 /* FIRVerifyPhoneNumberResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = ACCE9A697FB604396DD134232516E1D3 /* FIRVerifyPhoneNumberResponse.m */; }; - 6681E2FEC98B420F7D22BB9F9285D91A /* gsec.h in Headers */ = {isa = PBXBuildFile; fileRef = 1CB7C53AC46E13F5F5F946BA6080DB57 /* gsec.h */; }; - 66876D3A1205CCE15BA894CAA5D9C5F8 /* fake_resolver.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A11E59ED9F68DCAFB41BDF0E50DBEF2 /* fake_resolver.h */; }; - 668F83006E6AAB477B6A5E41F4A91660 /* server_info.upb.h in Copy src/core/ext/upb-generated/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 4CD37D1232681B15B152671402B1D3F4 /* server_info.upb.h */; }; - 6694CA3C41B7A9448530029B62BFC3C6 /* handshaker.upb.h in Copy src/core/ext/upb-generated/src/proto/grpc/gcp Private Headers */ = {isa = PBXBuildFile; fileRef = FBAACB464419902BCFC817EDDD4869A2 /* handshaker.upb.h */; }; - 66ACF3F19649F4116636BA79E1A6D2DF /* global_config.h in Headers */ = {isa = PBXBuildFile; fileRef = 17DB8C8B437B6C636D0DD2F316547097 /* global_config.h */; }; - 66B6E603FDDF4486C6C0AEE4264806E7 /* backend_metric_data.h in Headers */ = {isa = PBXBuildFile; fileRef = B9B3DFBB12D28F9317CF324A89657824 /* backend_metric_data.h */; }; - 66DC592C06E51BFC2541E7EDDC51FD6C /* lightstep.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 92EFDE241CA0F3E7F3732BE4A273C996 /* lightstep.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 66EF67C6D7060DCA6F7721C0CB365720 /* grpc_streaming_reader.cc in Sources */ = {isa = PBXBuildFile; fileRef = 78FA1A4D98C6CA4BDC32DDCEEE85BE88 /* grpc_streaming_reader.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 66F984099B6F57127967350CEA18D5F1 /* alts_crypter.h in Headers */ = {isa = PBXBuildFile; fileRef = E36841E7A85701ADF90619D125F555AE /* alts_crypter.h */; }; - 66FAE80565DFDC77EBFA82335C47234A /* construct_destruct.h in Headers */ = {isa = PBXBuildFile; fileRef = 9004A695FBA223A06055F99A886D4754 /* construct_destruct.h */; }; - 670C438EF40A77CBAB710CAF6596AA66 /* http_uri.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 9A0AA813EE7C101BAF26F320C0C28892 /* http_uri.upb.h */; }; - 670F113B1EA30BDFCEABBED965BE2A38 /* address.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = EF53589CB5D78A98F3E32898B9D0B479 /* address.upb.h */; }; - 67193BEAFAFE799CB99C56993072B935 /* extension.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = CCBED0E7B64E2480AF72F56A4A4DA665 /* extension.upb.h */; }; - 671E73E2CB36C5462293344715AD73E2 /* ber.c in Sources */ = {isa = PBXBuildFile; fileRef = 2F6975A74D5863F197D4D66923A86895 /* ber.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 67363B3EC0CA320EC5BF3DE85C6CCC54 /* matchers.h in Copy src/core/lib/matchers Private Headers */ = {isa = PBXBuildFile; fileRef = 927E1197D70B241B45BEB7573DC0F4F7 /* matchers.h */; }; - 6737CEB4CF9EEB998D0624E253CA46E6 /* wrappers.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E1C9FD5EF1187307DC346C3FCC240A2 /* wrappers.upbdefs.h */; }; - 674657A902BA7F2F9F77B88F3C952BB7 /* grpc_tls_certificate_provider.h in Copy src/core/lib/security/credentials/tls Private Headers */ = {isa = PBXBuildFile; fileRef = 12683401888FF9994AE2BEE01CADA7E7 /* grpc_tls_certificate_provider.h */; }; - 674CECAF0DECD6AD9BE41E4C97FC61F0 /* ssl_asn1.cc in Sources */ = {isa = PBXBuildFile; fileRef = 48B28F0E6B79393478B2468B4E240F90 /* ssl_asn1.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 674FAAABF0F4EE9E1794A2535F258052 /* xds_common_types.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = B75E4169D83E141C565BBCBCBD9FEBC6 /* xds_common_types.h */; }; - 675D6F8C36F9C80D9C5C1CDC923D312A /* binder_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 53EE4E6DDACBC578020A1B75F103332F /* binder_credentials.h */; }; - 675D9FABADFE7463D3C8D924FFDB4705 /* spinlock_posix.inc in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = C1C68EA808C262306A82C99029E9F0D4 /* spinlock_posix.inc */; }; - 676A1F2AAE77E1D6C1108BF37540E1F3 /* FIRMultiFactorAssertion.h in Headers */ = {isa = PBXBuildFile; fileRef = D883E813B35FF752204FF6303C849398 /* FIRMultiFactorAssertion.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 6777B41B24AADC94E4450C7DA3F29C26 /* malloc_counter.h in Headers */ = {isa = PBXBuildFile; fileRef = 4797401D1B22D884FDB2731470EBC952 /* malloc_counter.h */; }; - 677D365CC87A67E0A18D491EADD489B9 /* random.h in Copy random Public Headers */ = {isa = PBXBuildFile; fileRef = 84A9C03A9C314381842226B672C30D2C /* random.h */; }; - 6782CF32FC07BE422517DF54A8467CBA /* httpcli.h in Copy src/core/lib/http Private Headers */ = {isa = PBXBuildFile; fileRef = 6839766BFB84C47DA25ED6083B416F9D /* httpcli.h */; }; - 6786C242A370205FD68B157FBF5F5820 /* create_auth_context.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = F8271F010FD7CBF18956D1BA9754E960 /* create_auth_context.h */; }; - 67881F690FECF80222E7BB78FC564DC6 /* ratelimit_strategy.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 60E97D2B0FBDFF885802A1B8ECE2742B /* ratelimit_strategy.upb.h */; }; - 6798E7426E73FADF84D29CDE03667B0E /* GULNetworkConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = B102CC0816B9EAFE622314E6D2387DAF /* GULNetworkConstants.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 679B517F75F5BA7DE83A9BDB3F47273F /* duration.upb.h in Copy src/core/ext/upb-generated/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = 72D0BC9CDAD0C64C7C70EF38E66A8E54 /* duration.upb.h */; }; - 67A7463A54F3C9FD3C2D6151324105BF /* FIRAuthSettings.m in Sources */ = {isa = PBXBuildFile; fileRef = D2C3FA94BA84138CE947ED5099F74E96 /* FIRAuthSettings.m */; }; - 67A7775187A19F767ED12F8AECFB1AFE /* config_source.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = AC0CD3651DEF80AFDD5CA8E923B2F7DA /* config_source.upb.h */; }; - 67B63AF2A436A4D02E674279D9AF4D6D /* context_list.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = C52E852B752BF8243E306C8280D84A4E /* context_list.h */; }; - 67C0BCC52CCBE5DCAF4DC9A3265E9325 /* secret.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 9886F834E9287949F012ADCE4839B747 /* secret.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 67E833DE2C78A6EFE30923E8291B41BE /* context_list.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = B84ACEE18054587361CB4101FD8E5E28 /* context_list.h */; }; - 67F8DEB8780F6A9596CE0116DEE6944A /* chttp2_connector.h in Headers */ = {isa = PBXBuildFile; fileRef = 0AA1C1B24BB5237282D061255F91D505 /* chttp2_connector.h */; }; - 6817BA5F8AEC4B7F5ABFB2DC82EF982F /* connection_id_generator.h in Copy src/core/ext/transport/binder/client Private Headers */ = {isa = PBXBuildFile; fileRef = 6735B6C3344D159A3FE8C55D29177ED5 /* connection_id_generator.h */; }; - 681C9973CCC992DE28875741F2B2F07D /* grpc_service.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = E8BB79B6562BB8A84AB0B044F9718364 /* grpc_service.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 681FC150D2AAD271F8D4897710DFC5D7 /* event_service_config.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 533655527D81DA5AE7037858605AD0F4 /* event_service_config.upbdefs.h */; }; - 683FDC5A6C0BD62B0ED48AD88AB100E0 /* status.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = CB6D2A218F89B0DA61D3FFD1B0104124 /* status.upbdefs.h */; }; - 684099BF6564EFDAF6401E271CA5FA7F /* any_invocable.h in Headers */ = {isa = PBXBuildFile; fileRef = 90D87CCF06818BEA988476B14CE8EEEB /* any_invocable.h */; }; - 684648F402E0626CD60360CEA38AE0A1 /* struct.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 31BB11A7E6D72A36B63D01368E38939A /* struct.upbdefs.h */; }; - 684D4254F2407E953C9012FF1585AE8B /* xds_resource_type_impl.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 0E64860B290C852337A2A5932B52373D /* xds_resource_type_impl.h */; }; - 685A02C026FF6E631978E3C05457DE7B /* file_external_account_credentials.h in Copy src/core/lib/security/credentials/external Private Headers */ = {isa = PBXBuildFile; fileRef = E3CF1DAD73C89C7040B184A50B1014BF /* file_external_account_credentials.h */; }; - 686D02C284800BE5616191C38BBE2053 /* fips.c in Sources */ = {isa = PBXBuildFile; fileRef = DE069E6ED7D38EA0C4651CB578908DAA /* fips.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 6886525C490C009BD0F489D6E08EC588 /* tls13_both.cc in Sources */ = {isa = PBXBuildFile; fileRef = 212366507065017E4E43F942C17D425E /* tls13_both.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 688A41F11DBD23AB10EC788768A4CF01 /* version_set.h in Headers */ = {isa = PBXBuildFile; fileRef = D67F03FBA79E60E29EFEF85862D0D94D /* version_set.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6891005EBB906F371DAC7D4AE3D73AF8 /* local_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = D64DE9030857440E3082F1237AFACDED /* local_credentials.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 689C772EE603741657712D0F4F89ECEC /* certificate_provider_store.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 9069C6857E78A10833895731C135A115 /* certificate_provider_store.h */; }; - 689F91FD9FDCB6B8C5CBA446924F5BA3 /* seed_sequences.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9B0E87FC3B4CF8970CBF01049EE4322E /* seed_sequences.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 68A774395A0537CC3DC00B47E31CE248 /* client_callback.h in Headers */ = {isa = PBXBuildFile; fileRef = F5B199BB2433946E3173CEF7694D5EFA /* client_callback.h */; }; - 68AF1D655F45B2BA3C07D9B07EAA4D47 /* curve25519.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 6729B23B85A97CE38A810ECF62EB7A0D /* curve25519.h */; }; - 68B590C52669B1DFABB91C59BDAC4948 /* resource.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 7CCBFD5732A9BE2A05441D7EA6A71F6E /* resource.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 68BE472BA163282D802A686963954D27 /* byte_buffer_cc.cc in Sources */ = {isa = PBXBuildFile; fileRef = A4CDF50E87B24FE0CBD4882020F45498 /* byte_buffer_cc.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 68C861F064970D135C2FEA0D8CA26151 /* time.cc in Sources */ = {isa = PBXBuildFile; fileRef = 54B15F35DC0C15C4B43851A2BADF7EF0 /* time.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 68CBA41B74F14B5B13804203F36CF0BF /* channel_interface.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E589F26721EC7A5AB17EEDA47AB0017 /* channel_interface.h */; }; - 68DBE9872FC65EFAADC3A37D54FB76F3 /* tls_spiffe_validator_config.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 3ACBE943965D4328EC514EB23BBE6178 /* tls_spiffe_validator_config.upb.h */; }; - 68E22D48DC0E145028B4C969726D1E1D /* strip.h in Copy strings Public Headers */ = {isa = PBXBuildFile; fileRef = 9BAF57328174C52BC50DA3334EFEB052 /* strip.h */; }; - 68ECA9D0B6DFD47715487AF28B92D93E /* health_check_service_interface.h in Headers */ = {isa = PBXBuildFile; fileRef = 661B937FC5674347933097C3C8FFEAAD /* health_check_service_interface.h */; }; - 68F70EF771F5E6931FC09853E862078F /* FIRAuthUserDefaults.h in Headers */ = {isa = PBXBuildFile; fileRef = F93B9CB6A5F893B9594F2CCC52447552 /* FIRAuthUserDefaults.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 68F9F53580F2C8E06EB3026816E0AABB /* stack.c in Sources */ = {isa = PBXBuildFile; fileRef = 8C7ADE38C5F3FBC0BDA9F33871BC3944 /* stack.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 68FB8777DC44DF69BD6893A4011079B4 /* migrate.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A7B922B3A183E563A5A2E361D2F73DE /* migrate.upb.h */; }; - 6906A91814B02E38971DF0924C57BEA3 /* http_uri.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F373B40B843EC14251BE74C7E298E1D /* http_uri.upbdefs.h */; }; - 691A3F486056F03B51D6D3A72A2649B9 /* http_inputs.upb.h in Copy src/core/ext/upb-generated/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = AA05F56DBB63581A22057AACB9767BF1 /* http_inputs.upb.h */; }; - 69268AABC9A32F33E29CAF1F4A948FFC /* str_cat.h in Copy strings Public Headers */ = {isa = PBXBuildFile; fileRef = 49EFF549AE06BED7E1604FEDE1687262 /* str_cat.h */; }; - 692752C142CDC0D3EA794E978A7C55D7 /* rsaz_exp.h in Copy crypto/fipsmodule/bn Private Headers */ = {isa = PBXBuildFile; fileRef = 20F4519D6C16A124AF79C1199D42EEFB /* rsaz_exp.h */; }; - 692B87C3D9C4AD17EA2B4C6662FC68F3 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6E336DC2534E1E69B7828F6012B874C6 /* Foundation.framework */; }; - 692F626A620AF18BBA639AA8C65A4D1B /* cord_rep_btree.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0B6FD558C468B8F6C2E5813BF35E0412 /* cord_rep_btree.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 69380DC62218580647E8C88FAA8F22F2 /* FIRComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = 14E22EF52F350355122C850C58B5A58B /* FIRComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 69395100B12F00A4A7E661EC14752654 /* internal.h in Copy ssl Private Headers */ = {isa = PBXBuildFile; fileRef = 7737457D1517E96773814F9AB4C5CE46 /* internal.h */; }; - 695164CB44F9561742498E2963C3EB0F /* base.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 298E941846B394F119C4DAD5BF26A5CD /* base.h */; }; - 6959640D0A2EF17B932443BEA07F941F /* authorization_policy_provider.h in Copy src/core/lib/security/authorization Private Headers */ = {isa = PBXBuildFile; fileRef = 6C6D13BBFEE108524A320463E20DE7C5 /* authorization_policy_provider.h */; }; - 6969504DF1E5F686E057C21662986F19 /* escaping.cc in Sources */ = {isa = PBXBuildFile; fileRef = 50A05ACAB29F061EEE6C18C316847090 /* escaping.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 69704BB9FA55D995AFF136705D18C558 /* route.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/route/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 86889066EC0EFD4D6845ABF42DA762F6 /* route.upbdefs.h */; }; - 69729BC007C7799BB1FB3C6E963DF80A /* validate.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 29B46AD96DCA45527893F593F08C5239 /* validate.upbdefs.h */; }; - 69738FE20D6CA788FD2B26A2557DB4F7 /* x509spki.c in Sources */ = {isa = PBXBuildFile; fileRef = 499957B0557ED6C50970E9BC59DAE30B /* x509spki.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 697796B2D16A1B28426C06F5F09F1DD2 /* cpu-aarch64-fuchsia.c in Sources */ = {isa = PBXBuildFile; fileRef = 57CE896908A53A5D74D475845DB39A8A /* cpu-aarch64-fuchsia.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 69831C2C06739E6E99B6D6FAC0281B95 /* generic_stub.h in Copy generic Public Headers */ = {isa = PBXBuildFile; fileRef = AC1B666B0C9BB3B3CC5A3C2EA4879727 /* generic_stub.h */; }; - 6983905BE2976B7535DE7BFAABD62C50 /* tls13_client.cc in Sources */ = {isa = PBXBuildFile; fileRef = 199AF83A315BCAD46E1E612D27922C10 /* tls13_client.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 698B6F67017713BC5F93310DF626F9C7 /* value.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 822D5882A79A56C527C5E67CB90A73AF /* value.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 69936D40844C0EC1AB4A7EBBBCA1BD3A /* randen_detect.h in Copy random/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 8E0FFB05D22DEBF5FDE438AF01DBBF61 /* randen_detect.h */; }; - 6997675C16CB0BF0BC80CA17BD3B2764 /* grpclb_balancer_addresses.h in Copy src/core/ext/filters/client_channel/lb_policy/grpclb Private Headers */ = {isa = PBXBuildFile; fileRef = 7A975C29D1C091CE98CA0DD58F266FE1 /* grpclb_balancer_addresses.h */; }; - 69A838028B07EC27E3BEED67C16CF715 /* stacktrace_x86-inl.inc in Copy debugging/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 905A183262F24CC6250AD6680E587C01 /* stacktrace_x86-inl.inc */; }; - 69A8E30B5CA52ABB83E028778B163C1C /* migrate.upb.h in Copy src/core/ext/upb-generated/xds/annotations/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 7AABB31E3ACDAB7BA8770E683BCCABC0 /* migrate.upb.h */; }; - 69B356B08E5FBD5525921685C3526910 /* tls.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = F38B55B18112A110F5C871B133396BCE /* tls.upb.h */; }; - 69C3CCCA9A41F08FD1D9D1750B0112AA /* FIRAppCheckInterop.h in Headers */ = {isa = PBXBuildFile; fileRef = 943EFF12BFBE542E8A189B61FD224298 /* FIRAppCheckInterop.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 69DACF3F2378EE3CBA33BF4D09A54D81 /* filter.upb.h in Copy src/core/ext/upb-generated/envoy/config/cluster/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = FA4EB41B6297FEE97DD0036187524930 /* filter.upb.h */; }; - 69DC47BBE19E3A05189F4D42B8E7C0EB /* thread_annotations.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A94A930055EFFE97250821CA7E654BA /* thread_annotations.h */; }; - 69DF07B81A084EF1D1C6574C8DCC2C78 /* ev_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E959A7D1ABD4C9B0C831B21AB593CD5 /* ev_posix.h */; }; - 69F33F5DDAFD0E035986F89702EF9E2C /* FIRMultiFactorResolver+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = FC7148873ECEA0E0D785F882A4673962 /* FIRMultiFactorResolver+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 69F372FAAB158770F521C2F617CDA60B /* secret.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 2E12FEB335A336F84686E4A888FC8497 /* secret.upbdefs.h */; }; - 6A0AC75DFD23583786976E93BB515C2C /* trace.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 5AD05BF198C92840A113BB63ABB626A7 /* trace.upb.h */; }; - 6A1010843FDC7B638B045FCBFB08B15A /* resource_name.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A8BC20F54E5F3266ECE7402547E83D3 /* resource_name.upbdefs.h */; }; - 6A178BBACD848A781B5393AE4A28B252 /* endpoint_components.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/endpoint/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 54073F7D1227F56635F9D8186877FAB3 /* endpoint_components.upbdefs.h */; }; - 6A2C8BFC61548F905FE1D9BE7713C79B /* decode.h in Copy third_party/upb/upb/internal Private Headers */ = {isa = PBXBuildFile; fileRef = B478E5287CE2DF7E3CC1F33E266C74B5 /* decode.h */; }; - 6A33DACCE59EEE91FC891B95B8B8B0B3 /* accesslog.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = AC62B81E56FEA11182C8E0F2AB7A0E0C /* accesslog.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 6A34954F43A55762EAD1D8098833072D /* rbac.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 7499623D6B9D5CC76C42FED7F38DF643 /* rbac.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 6A36E2A673970BD446FEE050D3A72EA6 /* stub_options.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E878D6BE81E0EA3533B0FE83904085D /* stub_options.h */; }; - 6A382DEF791EFAFF811FBFD6D75171C9 /* huffsyms.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 8D549777CD84CBAB4CF0DDAF063CA817 /* huffsyms.h */; }; - 6A3E42C7CDEB009174F2758A2F256425 /* algorithm.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E64171273CFB196DC76D354C951DE9B /* algorithm.h */; }; - 6A456B8830929ED41DEAC72A39F877FE /* client_channel_factory.h in Copy src/core/ext/filters/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = 2320BAE9A767F4158C5A2B3815D00EA3 /* client_channel_factory.h */; }; - 6A55FD67F65371F927158E6319A14EE1 /* grpcpp.h in Headers */ = {isa = PBXBuildFile; fileRef = D805DA07D57F7C56E150A22AE107A97A /* grpcpp.h */; }; - 6A56F59EB55000E0D9990B51DA3AC393 /* resolver_factory.h in Copy src/core/lib/resolver Private Headers */ = {isa = PBXBuildFile; fileRef = FBAF17A98DBB7476AC3961EBE9E2CBEF /* resolver_factory.h */; }; - 6A58430C83F8E601832C2680EE560235 /* subchannel_interface.h in Copy src/core/lib/load_balancing Private Headers */ = {isa = PBXBuildFile; fileRef = 38D052780525542B9D7CBC3DB4AF5AFD /* subchannel_interface.h */; }; - 6A5D9556CBBD8188F4E8397BF6129D4F /* typed_struct.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = EE25D24667A87E0DFF9A9641F1FC92D0 /* typed_struct.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 6A5FE42B96B40929DF827F3568E5F8D4 /* resource_locator.upbdefs.h in Copy src/core/ext/upbdefs-generated/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 296422C02CECC591E78F70EA82EAC54E /* resource_locator.upbdefs.h */; }; - 6A6EAC74B3D893E3A35A13A70987527B /* trace.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 4EB51A584EC203ACE44341032C9521F6 /* trace.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 6A988D070165C292ED748D8B083C421A /* get_current_time_chrono.inc in Headers */ = {isa = PBXBuildFile; fileRef = 10E1F4D8EEA01F4EE3067A245DB84F62 /* get_current_time_chrono.inc */; }; - 6AA6CD661FE5240849A8B933331F86D6 /* FIRAuth.m in Sources */ = {isa = PBXBuildFile; fileRef = 39252B52400CE636040946DBEEF5E7DA /* FIRAuth.m */; }; - 6AAB00295F3915100B2FA1B9440221ED /* atm_gcc_atomic.h in Headers */ = {isa = PBXBuildFile; fileRef = 720D29BAF8E0927620853047DC8314BC /* atm_gcc_atomic.h */; }; - 6AB0B613DC8701364BC5D0AFF4C7EC88 /* json_writer.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2D3EC06B242AE9553A46B047B1689E43 /* json_writer.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 6AB27DB2CB706D83257B5EBD43AD8B70 /* tmpfile_msys.cc in Sources */ = {isa = PBXBuildFile; fileRef = 23F8440C05F4FC7549683491BABA0556 /* tmpfile_msys.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 6AB294ED274FC8E22B282BE2DBD2E37A /* ssl_transport_security.h in Headers */ = {isa = PBXBuildFile; fileRef = A18F1B5B4BADC40A887379C0B32ACF4E /* ssl_transport_security.h */; }; - 6AC6ECDFDFE4DFC23CF4C849B815F57A /* dns_resolver_ares.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7AE7BB22BD2F5FBF0546B86060C862AE /* dns_resolver_ares.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 6ACFBADD55BAAABC453E077598241938 /* v3_pcons.c in Sources */ = {isa = PBXBuildFile; fileRef = 9886F8D6793EB5A6D90E5F56681689F4 /* v3_pcons.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 6AD752337CE5B7B9940F7C2F5466C6E4 /* snapshot_version.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1CC3B64B2042A436DDA929392E4C4799 /* snapshot_version.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 6AE9A34CDEE29F242D9FCA7076952E26 /* curve25519_64.h in Headers */ = {isa = PBXBuildFile; fileRef = AA65A4B87E769EF917B30DB35A891ECC /* curve25519_64.h */; }; - 6B081614B52D3FE279390785329E9826 /* utils.cc in Sources */ = {isa = PBXBuildFile; fileRef = 19D93B91BADC8E62879B2777C8505028 /* utils.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 6B097A72C4C8BD71479464B5CB484DFC /* grpc_method_list.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 35B968D638FD8203F0A649B8655020C3 /* grpc_method_list.upbdefs.h */; }; - 6B0DBD66C501CDC55EBCF1B54665A4EE /* discovery.upb.h in Copy src/core/ext/upb-generated/envoy/service/discovery/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 612092FF34C08EA646FDBB6F59EB7C5E /* discovery.upb.h */; }; - 6B0F82E6FAEECB722A32FBA36BF818DC /* FIRStartMFAEnrollmentResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 0C043AAE398C84AB28A00AD47F8714B0 /* FIRStartMFAEnrollmentResponse.m */; }; - 6B2D1FF65C8CCDF2D938D918879616AF /* google_default_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = E31F064CA5A982DF1A293F4DF342C614 /* google_default_credentials.h */; }; - 6B34B0F122B37DD3AF7A30F057193180 /* server_address.h in Copy src/core/lib/resolver Private Headers */ = {isa = PBXBuildFile; fileRef = B5AEE86292B51CFD21969FB61AAE8E47 /* server_address.h */; }; - 6B423E2EDB2A49AF6980348CD99026B9 /* FIRAuthProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 071AF4850B9833CF10B3A8979EE62B91 /* FIRAuthProvider.m */; }; - 6B52B334BA3A355C2452A7B6A74962EF /* transport_fwd.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 28FCCE9D66DC001A7F7A675EF8A00E82 /* transport_fwd.h */; }; - 6B5DEDB849FB64EA9657FF0E8D9C7D0D /* client_load_reporting_filter.h in Copy src/core/ext/filters/client_channel/lb_policy/grpclb Private Headers */ = {isa = PBXBuildFile; fileRef = BC610BD798B675B7AB8EFA4A20EDFFBB /* client_load_reporting_filter.h */; }; - 6B62D657BBA0EC75D1C95003F33B9245 /* bootstrap.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = E32B2EAEF3E5FE89C9F53F95B5503230 /* bootstrap.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 6B75725028273F57CF28B1E784A68CE8 /* Security.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6FCE3F16CF48113A9FAA51D9302C4AF0 /* Security.framework */; }; - 6B7A109057F46C70006C4D283E2236A6 /* logging.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F0A3E8FF9497E386AD68B859A1566DF /* logging.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6B7DD402A00791252E37E617D301FC02 /* authority.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 89C6E2A45246954CE4696C02BBAE9E1E /* authority.upb.h */; }; - 6B7F9EDE4D82168029DC22D8DBDF09B8 /* f_string.c in Sources */ = {isa = PBXBuildFile; fileRef = 87F5C780991D7B4F360D28A1B70C6306 /* f_string.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 6B863578D9678207C70DC5317CAAB4A1 /* frame_data.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 806BAF4EE90D0D2B91CCAE4DC1B5A6D7 /* frame_data.h */; }; - 6B93C2CFC29F7060DC74A749D5CB0009 /* FIRSignInWithGameCenterResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 06E888DF9412BB6E2A72F109271C870A /* FIRSignInWithGameCenterResponse.m */; }; - 6B982C3E98D9459FB8BE2B14207219C6 /* FIRAuthAppCredentialManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 9B4B4F12B31CE2C7C9A7154CBEA736EC /* FIRAuthAppCredentialManager.m */; }; - 6B985A4989B396694AAF396BEAFB3C04 /* metrics_service.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = A4C7F687737E0863C1664AC8F6B58258 /* metrics_service.upbdefs.h */; }; - 6BAF03DDDFE5D2E15D298425A3C61228 /* number.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = CCDB0181164357A278EFF369D70EA8AA /* number.upbdefs.h */; }; - 6BC55263B1EC567D14B5E7FC10C3E885 /* thread.h in Headers */ = {isa = PBXBuildFile; fileRef = F73E1D78FCC6D3C7F5A3AD1F0D762D54 /* thread.h */; }; - 6BD29A7D240A11A7E2C6D094A3648357 /* alts_shared_resource.h in Headers */ = {isa = PBXBuildFile; fileRef = 678756EB92B5901E3C557909700B5E98 /* alts_shared_resource.h */; }; - 6BDECB560AF9217B329CDA26881CA8A9 /* cluster.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 45679618617E39DB195E389B6BE6E56D /* cluster.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 6BEB19AF6C27910E8245AC64D77B9518 /* hash_policy.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = C88256EE4AFFAF39DCD9D66E645FCAB9 /* hash_policy.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 6BF6B396CAF8EC04E4F9B7501E710FAA /* resolver_registry.h in Headers */ = {isa = PBXBuildFile; fileRef = EAA01727A243EF6136E41EBB402E4A78 /* resolver_registry.h */; }; - 6C08D9F7BC928AC52FD58B870E40C4A9 /* cookie.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = EBA65B4CA8AD61FEF5E9674B21C32BBD /* cookie.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 6C1153430E183AFDEB18FCD886CBA303 /* channel_creds_registry.h in Copy src/core/lib/security/credentials Private Headers */ = {isa = PBXBuildFile; fileRef = 84FDBF0688626CD2DE06E87491D25C98 /* channel_creds_registry.h */; }; - 6C1A0D322950780E388A2AA4B2C001AF /* FIRAdditionalUserInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = E816AF8B536BEEC1381B87F6447EC98B /* FIRAdditionalUserInfo.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 6C1F9880AC3ADC4B90B9D1D7C4673B5B /* orphanable.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 6ADFD13245789236FB1886911D21E92F /* orphanable.h */; }; - 6C230702335D2EAAE32E17039EF47870 /* cordz_info.cc in Sources */ = {isa = PBXBuildFile; fileRef = 62B7CC1F779071DC0078EA5ABE7882F9 /* cordz_info.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 6C24E2F71D2F349A0CE1DF2D2573C403 /* civil_time_detail.h in Headers */ = {isa = PBXBuildFile; fileRef = 3FB8A10139A04EDFB7C1D53279E7647A /* civil_time_detail.h */; }; - 6C2B2DF3BB6E7E01992A27B68887345C /* SystemConfiguration.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3B7879FD2FF62773440D4069832105C3 /* SystemConfiguration.framework */; }; - 6C2C2F2B037E3FBBEDDE1F6BA1F7D650 /* invoke.h in Headers */ = {isa = PBXBuildFile; fileRef = 40AC164038E11F2390A9FB94AD128995 /* invoke.h */; }; - 6C3897DEB22E03D9DA027C9261D528A4 /* tls.h in Headers */ = {isa = PBXBuildFile; fileRef = B64911E21E17884C2A0DE1DAE27AECFE /* tls.h */; }; - 6C5B4C369CBF0C987BBC5FBC2765236F /* status.cc in Sources */ = {isa = PBXBuildFile; fileRef = 08B18F7D8BB4A72D5F150F7A7EDD8EBD /* status.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 6C6E34B924064DCD1C57BC3DC79613E9 /* tcp_client.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 3C7AD5BF274896C2D7B990B777A63999 /* tcp_client.h */; }; - 6C70A456E327799B4D3D745889D694C0 /* fips_shared_support.c in Sources */ = {isa = PBXBuildFile; fileRef = 1AD4378580FE9A399CFBA8EE6182EEFE /* fips_shared_support.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 6C78E73BDF7289439C09FCAE65C38117 /* file_external_account_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = E3CF1DAD73C89C7040B184A50B1014BF /* file_external_account_credentials.h */; }; - 6C7D565EEDA3AFCA13034A7FF9A97338 /* rbac_service_config_parser.cc in Sources */ = {isa = PBXBuildFile; fileRef = F15C98FA291DC6F9E32B7355144234C4 /* rbac_service_config_parser.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 6C7F36AC440D5B8B54ACE7AF12BB8DD9 /* FIRAuthBackend.h in Headers */ = {isa = PBXBuildFile; fileRef = E4F99A1E6F6C72FD59225E4B82ED4D41 /* FIRAuthBackend.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6C940D5FCC5AAAC348E2318F07031079 /* tls.h in Copy src/core/lib/gpr Private Headers */ = {isa = PBXBuildFile; fileRef = B64911E21E17884C2A0DE1DAE27AECFE /* tls.h */; }; - 6C9E76BA328228CCFB70757D29BEA9F8 /* comparison.cc in Sources */ = {isa = PBXBuildFile; fileRef = C0A33027B3F1E55AC798F3F33CF023EB /* comparison.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 6CB9CDF374E63A8868C7D5FFD03E17B1 /* trace_config.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 76716AB00EB3EE58974817F831DCCFA6 /* trace_config.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 6CBA37D712BB4C0223B0E56CEFDC94F0 /* decode.h in Headers */ = {isa = PBXBuildFile; fileRef = 17E051142539D39490A629C7F0E012D8 /* decode.h */; }; - 6CBB8207E7E8915EDE3144B90F4F0F0A /* document_change.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7179690FA4971C56199906B50CBB8647 /* document_change.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 6CCBCF4868D7897520FCA5BB5C8F0AA8 /* distribution_caller.h in Headers */ = {isa = PBXBuildFile; fileRef = A83BFE0718D50FCFB1CD02FE8B2EA6A5 /* distribution_caller.h */; }; - 6CF2355B275E45D4E867E9A6728EA152 /* FIRFinalizeMFAEnrollmentResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = C4BA7595DA4FA489AD222F889BC902BE /* FIRFinalizeMFAEnrollmentResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6CF353212D967CB614AC9D9ADD192787 /* version.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0B9E4BD6EBC0BC7C8F569E23A93A3F5F /* version.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 6CF3AF624D28052C3ECCC50BE352FFA0 /* health_check.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = D7C12B9B63B58E03CDCF04954F3C9F42 /* health_check.upb.h */; }; - 6CF4ABC0DB4E5AFA5710F89A2030ADCC /* siphash.h in Headers */ = {isa = PBXBuildFile; fileRef = 602DF832695D428540A68EBCC1CB05DF /* siphash.h */; }; - 6D18EBF3F964B94991CB85F0E14BEE6C /* matchers.cc in Sources */ = {isa = PBXBuildFile; fileRef = D147789D5E91AB13312BF6DE031D3E06 /* matchers.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 6D279ACE98D8CF49AAB6D091299A2E21 /* FBLPromise.h in Headers */ = {isa = PBXBuildFile; fileRef = 23E482D3CC9190C930BA642306292C63 /* FBLPromise.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 6D2D3F9A940B9594B33DDA37FCF46664 /* http_status.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = FC479DAA79F8EAF2E3AD7A2FC04AB7E3 /* http_status.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 6D2F68B8E5D22BADA846E97CFBAA9B8B /* context_params.upbdefs.h in Copy src/core/ext/upbdefs-generated/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = CCB2958F6F7D8A67E45E8BFB64E8FED9 /* context_params.upbdefs.h */; }; - 6D3554F7E4F172A4BC4AB693E7A96E90 /* datadog.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = E1965F3D6268AD7BAC76ADA992A3BC54 /* datadog.upbdefs.h */; }; - 6D429A564FD779CA8B5D995BA813057A /* FBLPromise+Timeout.h in Headers */ = {isa = PBXBuildFile; fileRef = 658E2E2D689692259EBE738972B52BB2 /* FBLPromise+Timeout.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 6D4C9BA52D250FD17E5F26E97C0696B4 /* wire_reader.h in Copy src/core/ext/transport/binder/wire_format Private Headers */ = {isa = PBXBuildFile; fileRef = CBC31EEA38EDE4AA625C923A3F2EA18D /* wire_reader.h */; }; - 6D57FDC696602C730BA603FA1CAD60C2 /* base.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = EACCFF242A450B2548A30BB8C80F76B5 /* base.upb.h */; }; - 6D5C78BEED44E39D1181C7163B9A6439 /* alpn.h in Headers */ = {isa = PBXBuildFile; fileRef = 92EA783791A6255700D99F0EF89822CD /* alpn.h */; }; - 6D6BC9FC148120EEFBE0C8D52FB60A07 /* FIRAuthWebView.h in Headers */ = {isa = PBXBuildFile; fileRef = E45784DDCABF9D40D3DFA31A1BCDFDFA /* FIRAuthWebView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6D73E4C97F5FB75AD9606E4A8F594DDB /* inproc_transport.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A0870967A6B71036DA6AC5642402C26 /* inproc_transport.h */; }; - 6D817A0D0607DBF2B0E6BF66DFC702B6 /* hashtablez_sampler.h in Copy container/internal Public Headers */ = {isa = PBXBuildFile; fileRef = AA49DD5B4B2C5FBA17F0B9BB89C1C4AC /* hashtablez_sampler.h */; }; - 6D84A0E438188B20C0FD4A2E04A655B7 /* grpc_service.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 3FECB813F2A9EB49EEF492BA92C86824 /* grpc_service.upbdefs.h */; }; - 6D85E252771BF497D4114F3DE3E87656 /* hard_assert.cc in Sources */ = {isa = PBXBuildFile; fileRef = A52FF711E18DE84D139272E768DC85AC /* hard_assert.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 6D89FA5903F849B75BC395E6DCB37C95 /* stat.h in Headers */ = {isa = PBXBuildFile; fileRef = 6EFDBF5DA1A166873F6C081E2010E6BB /* stat.h */; }; - 6D8FF2A68B33777EBC1D687BC485C707 /* grpc_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 39F508108094F547D50CCE8E8ED241F3 /* grpc_posix.h */; }; - 6D938E222BB6FF85FF098322D8C1DF39 /* empty.upb.h in Copy src/core/ext/upb-generated/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = 9BF4F99F51D9A856CF7C7A082BC0411E /* empty.upb.h */; }; - 6D9E03EC32B44D5E6AB3097C182550D6 /* arena.cc in Sources */ = {isa = PBXBuildFile; fileRef = 683365243AA576502F8B647A84F6B179 /* arena.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 6DB60BB1EDF863209D6E20A2B5B9543A /* merger.h in Headers */ = {isa = PBXBuildFile; fileRef = 474FEC55DA64E7732133B4A28D565818 /* merger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6DC9CCAA55698B15EA579F58C0E01E9D /* pcre.cc in Sources */ = {isa = PBXBuildFile; fileRef = FC8F8EB3D84173C4E4FA5539C7818E09 /* pcre.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 6DCBC7D5B79AC55C49FC31BF483902AE /* http_uri.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A0AA813EE7C101BAF26F320C0C28892 /* http_uri.upb.h */; }; - 6DD0431568FE4A781680D0B3D4C63D49 /* filtered_re2.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C3A25BC9926F00613EF11CE053327CF /* filtered_re2.h */; }; - 6E10D2BAE37BFE071DEECE24D1729A89 /* xds_cluster.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = C286E783FECE8F5DEC16378728E217D8 /* xds_cluster.h */; }; - 6E2241B64D753D84D9171A14747A967A /* fastmath.h in Headers */ = {isa = PBXBuildFile; fileRef = CB5597A033BDBA48CA4EB0A5C59F88CD /* fastmath.h */; }; - 6E46189289F3D08D50BB8D01EA753210 /* cpu-aarch64-win.c in Sources */ = {isa = PBXBuildFile; fileRef = A46870EAB67F7D85FB92B5A0E7562035 /* cpu-aarch64-win.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 6E4A1156747FC74A4930BB06FF8E9168 /* windows_engine.h in Copy src/core/lib/event_engine/windows Private Headers */ = {isa = PBXBuildFile; fileRef = 51AA7CF048C27C081307004296AD222F /* windows_engine.h */; }; - 6E4C9947FD537B658CB6C3289C5E10A2 /* http_connect_handshaker.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 0D92DB675527154DE80F59642D7A61F3 /* http_connect_handshaker.h */; }; - 6E4DB93464C7F21E87B24321EDC3D4F8 /* status.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 1F652B140E607983B920F4855C0736F4 /* status.upb.h */; }; - 6E5335699E4777038FE9AE4F890811BA /* duration.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 72D0BC9CDAD0C64C7C70EF38E66A8E54 /* duration.upb.h */; }; - 6E55BE0956154920C601EB8856EF76D6 /* transport_security_common_api.h in Headers */ = {isa = PBXBuildFile; fileRef = A46F18014AAD3371E655B03883FDC642 /* transport_security_common_api.h */; }; - 6E561C9CCFFE4B0C0118DA71D5C4E326 /* sync_engine.cc in Sources */ = {isa = PBXBuildFile; fileRef = A88FD0B189A0AE3A785602FB06B880EE /* sync_engine.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 6E691CD19F56F096927A6F29289DEF26 /* FIRFieldPath.mm in Sources */ = {isa = PBXBuildFile; fileRef = 15E07316BD2C913FEC484C8B9B357E23 /* FIRFieldPath.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; - 6E88328B0925B4547E0114B6806E6FB3 /* server_callback.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9908DE44E9BAE5A0BAB5FF183534CCB8 /* server_callback.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 6E8A1A22CE63020316F0D0B119A22748 /* cache.h in Headers */ = {isa = PBXBuildFile; fileRef = A4C7429DFE1506B391E737C59B229CBB /* cache.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 6E8A3FA9CD0F61AB3C437AA900E642B5 /* clusters.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = A8238DCC349BED4246297BA768DD248D /* clusters.upbdefs.h */; }; - 6EA7E3BF095FF1ABC0FB4647A3CFF860 /* p256.c in Sources */ = {isa = PBXBuildFile; fileRef = 9E4D1687B7689DE0DD19655342E3A4FF /* p256.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 6EAE3342DC487AECCF320E1A27F7D051 /* FIRApp.h in Headers */ = {isa = PBXBuildFile; fileRef = 0946FC2DF4D5FDB95B1C7EDB92A11A4D /* FIRApp.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 6EAEC0854D8592702CC1F932231E7BE3 /* quic_config.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = CCBA53384179788957D9FEDAAD78A656 /* quic_config.upbdefs.h */; }; - 6EB1983A2D3549D862B39D648DE6F6D2 /* FIREmailLinkSignInRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = E837B60C0D98A0684F99DF86053C4E63 /* FIREmailLinkSignInRequest.m */; }; - 6EC2EB13A8E20A5CCA1C34C1AA5BFD96 /* filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = A75CB53763125AFA6FD0C4E65630A69D /* filter.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 6EC2FA176A33CD93418BBD49C3D69A98 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = E8A1A3E644DC7315C56F47FBBC1C763A /* internal.h */; }; - 6EE519616E320456F7CDC38A26475DA3 /* stacktrace_emscripten-inl.inc in Headers */ = {isa = PBXBuildFile; fileRef = F4982E1089DAC5BB9C250EBF45E03A77 /* stacktrace_emscripten-inl.inc */; }; - 6EF1FC759DDF658D74B8902CFE79B99C /* varint.h in Headers */ = {isa = PBXBuildFile; fileRef = 24CA1050C14DC6980DC2AD21A288BEE0 /* varint.h */; }; - 6EF43F3835B5751E2FA3EE7A54004E84 /* alts_security_connector.h in Headers */ = {isa = PBXBuildFile; fileRef = 424D6FA6873DFC0C8CEC698D71B70784 /* alts_security_connector.h */; }; - 6F0308431D4F1295943A66236C383629 /* http_client_filter.h in Copy src/core/ext/filters/http/client Private Headers */ = {isa = PBXBuildFile; fileRef = F4ADFCC0C49CE3161F33A0EBF1C560AE /* http_client_filter.h */; }; - 6F0CC57322B43691661A50076929DF8F /* resource.nanopb.cc in Sources */ = {isa = PBXBuildFile; fileRef = B36D2E737E5B7CEE488D15BBBCF092D3 /* resource.nanopb.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 6F2AEA339255C530221559B81D8948FC /* xds_http_rbac_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 9FA1B513CD394CDC8478B730059E1409 /* xds_http_rbac_filter.h */; }; - 6F3483D1FED043EEA6A7621B3A7FFEAD /* stacktrace_emscripten-inl.inc in Copy debugging/internal Public Headers */ = {isa = PBXBuildFile; fileRef = F4982E1089DAC5BB9C250EBF45E03A77 /* stacktrace_emscripten-inl.inc */; }; - 6F377B419C03FA3C94359A645EA0F581 /* promise.h in Headers */ = {isa = PBXBuildFile; fileRef = A7A27F20AA6A790B3928D35C17CF6A55 /* promise.h */; }; - 6F386C5633C4B0179E8A7997CF659F66 /* PromisesObjC-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = DC725264CEBA1CCAF0F65F92CBB266F8 /* PromisesObjC-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 6F492660F70AA308869B2B322414C0E5 /* alts_iovec_record_protocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 583770A9623A9D33F182DDA0104B7494 /* alts_iovec_record_protocol.h */; }; - 6F4A211E1D31384AFB08E75275AE6204 /* ctx.c in Sources */ = {isa = PBXBuildFile; fileRef = F216CB59752BA8794724D218A37530C4 /* ctx.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 6F4ACF713352ECE2A9D5BFC25A5B3C49 /* conf.c in Sources */ = {isa = PBXBuildFile; fileRef = 320B1179E34CB4024E5004CB3B9D6F8B /* conf.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 6F6BA247BACF1682E43A99CCB47F144F /* combiner.h in Headers */ = {isa = PBXBuildFile; fileRef = BB836C78230D297E1EF595D20E41D8F6 /* combiner.h */; }; - 6F7422F63ACDFFA2D5281E2C9E3BCFCF /* rbac_service_config_parser.h in Copy src/core/ext/filters/rbac Private Headers */ = {isa = PBXBuildFile; fileRef = ECBA7AE330D5D7E661566908E3186D97 /* rbac_service_config_parser.h */; }; - 6F8571F0AD34D68AB3C15102A8359E13 /* write_batch_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 75DBC83E2BA2E6FC2EB705CE87497EFE /* write_batch_internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6F942CADBF62EFF0759E7B922DF9C998 /* fork.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 48846572A8C465521BFF0F2194EB9D52 /* fork.h */; }; - 6F96BF5B71A93C366124E1883ED568BB /* tasn_typ.c in Sources */ = {isa = PBXBuildFile; fileRef = E4AA6D9A4E42B8AC77AEF5EF8F70ACAB /* tasn_typ.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 6F971CFCBA645DE3F1B4DC756A2A30B1 /* query_listener.cc in Sources */ = {isa = PBXBuildFile; fileRef = A7ADF0D346BC8E8E730B566CE5CBAC90 /* query_listener.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 6F9B75740F85A27E53E5F4EFDDF2BE59 /* FIRSecureTokenResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B6E3048956D259CFFF27CD79958DFA5 /* FIRSecureTokenResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6FB052B0F106D2706856F4A129670082 /* pollset_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8914F223550732A95C8DA4544F638645 /* pollset_windows.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 6FB82EB3C598C01843931AC137D6693A /* FIRPhoneAuthProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 17C30238877BB9F54C7CE0436E61C93C /* FIRPhoneAuthProvider.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 6FBD2879F4F83CF5114799DF792AAEFF /* bootstrap.upb.h in Copy src/core/ext/upb-generated/envoy/config/bootstrap/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 2212EC5D07C1E8B7C8A24C7D22A91C4E /* bootstrap.upb.h */; }; - 6FC088B23F5EEC21212352F3357E0CBC /* httpcli.h in Headers */ = {isa = PBXBuildFile; fileRef = 6839766BFB84C47DA25ED6083B416F9D /* httpcli.h */; }; - 6FC2DAF448CD9BA4DEFE4A7E87CB2D0C /* GULNetworkConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = 049AC23984B57E37A029B5A18A2C5711 /* GULNetworkConstants.m */; }; - 6FC4D87DF07B5C322E9003BD78C7817D /* xds_credentials.h in Copy src/core/lib/security/credentials/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 4A97659BA5049E13C49E920DDFAB371D /* xds_credentials.h */; }; - 6FC4F469AAC9BA3BCF509E4CFE748763 /* work_serializer.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 08399C9C3F27E53366882DB35ED50185 /* work_serializer.h */; }; - 6FD6B9D1A04E963D199DD76093F0A3F8 /* httpbody.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = E6E248615E4DCE3DCD24AC35677A4249 /* httpbody.upbdefs.h */; }; - 6FD777D9381E31A5C7368BC7E56705D0 /* err.h in Headers */ = {isa = PBXBuildFile; fileRef = 2271A4695C9EDCE8D0CE18DD508FB57F /* err.h */; }; - 6FF0188B40076CF347312B2CF7C7C8BD /* xds_channel_args.h in Headers */ = {isa = PBXBuildFile; fileRef = 207BD07A85E064D82C31A4586F791017 /* xds_channel_args.h */; }; - 6FF23413461011E9664F6647F317E3F9 /* rls_config.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F68B66FA26669911A340D622679C840 /* rls_config.upbdefs.h */; }; - 6FF7B0744FAE8F7894135F445745F4D3 /* lb_policy.h in Copy src/core/lib/load_balancing Private Headers */ = {isa = PBXBuildFile; fileRef = C6F57F507A6E16FB3791725C5CBECBE9 /* lb_policy.h */; }; - 70235D0AB58AED40F117B1D885357C01 /* FIRPhoneMultiFactorInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = C8D9A2D6A506686C45F877A6343A902D /* FIRPhoneMultiFactorInfo.m */; }; - 705084F1E85278128F60B75D2DEE7CD5 /* atm.h in Headers */ = {isa = PBXBuildFile; fileRef = E356DC4EF8E73F382000570D0CBE12AC /* atm.h */; }; - 7058F3847B27AD12E4767A08DDCC562E /* log_uniform_int_distribution.h in Headers */ = {isa = PBXBuildFile; fileRef = 667E24C6A2AA29ABD2E5C1924C33B6F4 /* log_uniform_int_distribution.h */; }; - 705F43426947523D38DE26EACEC28C3E /* backup_poller.h in Copy src/core/ext/filters/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = 42694FA75E2F6A63EED5401CD00C1EEF /* backup_poller.h */; }; - 706C224DF9C51FF713A874D8C99F7368 /* unicode_casefold.h in Headers */ = {isa = PBXBuildFile; fileRef = 264F5D7A414D1E53BDB43A304C3533E0 /* unicode_casefold.h */; }; - 70749FC1B99F78EA4E8E2D6BA9DD14B2 /* conf.h in Headers */ = {isa = PBXBuildFile; fileRef = 8194AA320AB8FAD421BB90AC70767FFD /* conf.h */; }; - 707742A7C352DC6F5420B6EA31176AAA /* resolve_address_impl.h in Headers */ = {isa = PBXBuildFile; fileRef = C0242C4A3C1FEF4E6FBC2B09A181701C /* resolve_address_impl.h */; }; - 707C3B07B1AAA400F5DACB23B9ED1B95 /* sensitive.upbdefs.h in Copy src/core/ext/upbdefs-generated/xds/annotations/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = D4353FBFB268383CD6FB95EA116B08C2 /* sensitive.upbdefs.h */; }; - 708D3466A27CC5D34C39445E85DF96DD /* path_transformation.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 9B8E826CF5D4334FE67B0A8FF20E59A3 /* path_transformation.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 7099B271D10FBB12B0462AEB59B44027 /* cookie.upb.h in Copy src/core/ext/upb-generated/envoy/type/http/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 986662053D5F252238E4520FE5B38F18 /* cookie.upb.h */; }; - 70A50052EACB7206FCA1C339080AADEE /* grpc_tls_certificate_provider.h in Headers */ = {isa = PBXBuildFile; fileRef = 12683401888FF9994AE2BEE01CADA7E7 /* grpc_tls_certificate_provider.h */; }; - 70B5AE129936BFCB6D846A40CC2E0D69 /* atm.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2E378F98C1686C82248E0A52A9D8E3E3 /* atm.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 70BE12B8FE3060AC785C71FA218ABD80 /* ndk_binder.cc in Sources */ = {isa = PBXBuildFile; fileRef = 833D776E22F65AF548485F069A406C39 /* ndk_binder.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 70C4C46212877F939EADA5A225EB35EF /* load_report.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B40A95164ADF4F451EBCF0470A9B272 /* load_report.upb.h */; }; - 70DC1E555BC2A2C888C62C067B7275B1 /* field_transform.cc in Sources */ = {isa = PBXBuildFile; fileRef = B397DF1B74E9DE8F5852314A71D66EAB /* field_transform.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 70DC77FDC06D062854A193A0545AFFB8 /* FIRTOTPMultiFactorAssertion.h in Headers */ = {isa = PBXBuildFile; fileRef = 52516FE1FE4EFB9A6E859662C7D66077 /* FIRTOTPMultiFactorAssertion.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 70E36A46E261B1720DB8655056E77649 /* address_filtering.h in Copy src/core/ext/filters/client_channel/lb_policy Private Headers */ = {isa = PBXBuildFile; fileRef = BBE328C0669C8E4A2B9DFC4F77E17208 /* address_filtering.h */; }; - 70EC824560F6E2A1C80008EBC5A642B1 /* FIRAuthDataResult_Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = DC21C32F2D994339298F336B5EC18084 /* FIRAuthDataResult_Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 70EEDD4FC5D5FA267D3374102A499142 /* url_external_account_credentials.h in Copy src/core/lib/security/credentials/external Private Headers */ = {isa = PBXBuildFile; fileRef = 546BC79BE2B19A814F67D07637E8EEDE /* url_external_account_credentials.h */; }; - 70EF8A09DED934C3CE6A2ABD0E9A9246 /* GULReachabilityMessageCode.h in Headers */ = {isa = PBXBuildFile; fileRef = ED819F8683D5B8DB1299BF7148BAC0E4 /* GULReachabilityMessageCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 70F00D7CCC4C919FCBF37979CB2ACB05 /* FIRResetPasswordRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 6EC70AB7D346B3E51DA578EC9B36C817 /* FIRResetPasswordRequest.m */; }; - 70F2CE2341EBF51AF75A284D4F787FE0 /* jwt_verifier.h in Headers */ = {isa = PBXBuildFile; fileRef = 9312C96DC21ACDBA4B7BC1892CB6EA04 /* jwt_verifier.h */; }; - 7100FA46ED1A8403FA6311A7F0DCD33A /* xds_client_grpc.h in Headers */ = {isa = PBXBuildFile; fileRef = C0F27C18CD6D20D0AD0F3DA5CCF9C4B6 /* xds_client_grpc.h */; }; - 7106852F0CB6A3D5A2E42B99212C2302 /* GULLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = A23E527884BF816168F3DABC2E28F8C3 /* GULLogger.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 710E6F68267FDDE72E0D201EFD4B9709 /* sync_stream.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 72758FDD9AB22A2F07D4E30497668C1A /* sync_stream.h */; }; - 7111ACAD8B11815C05E3164E07A9EC23 /* xds_routing.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8BF12259FE5936B21FF6A2969EF1AD9D /* xds_routing.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 711842EF5DCD0C4A970183DD06BA3C65 /* b64.h in Headers */ = {isa = PBXBuildFile; fileRef = B78ACF9146E8E7F22C08EEB71D12C8E8 /* b64.h */; }; - 71214724E7F01DFB7897CB2F9A41E047 /* tls_security_connector.cc in Sources */ = {isa = PBXBuildFile; fileRef = 73E5C713B3C2D3069B6716F90414CEBB /* tls_security_connector.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 7127978608E5CEBECD370D5C01A61D1D /* compression.h in Headers */ = {isa = PBXBuildFile; fileRef = 1CD2F0292B8E1ACA99BBDAFAE560D126 /* compression.h */; }; - 71299911315A96CA799198F8F2E228C4 /* table_internal.h in Copy third_party/upb/upb Private Headers */ = {isa = PBXBuildFile; fileRef = 8F1852BA1E97745C409E9B029D50E8FA /* table_internal.h */; }; - 712C3BDC16844B1EB8DF33CAE2326C39 /* rbac.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C7CF553C3EC5774B65491A421FA840B /* rbac.upbdefs.h */; }; - 712D89B60741C8A6730A0C98D1FBD02A /* t_x509a.c in Sources */ = {isa = PBXBuildFile; fileRef = 6509F3F4EEB375FFEFC4DD7D6B0D36F5 /* t_x509a.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 713587CC7C6FF803FE57472850C9F179 /* alts_shared_resource.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1575CF2457FB510CA1BFAE8180A759C8 /* alts_shared_resource.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 7143B939574B55204F282C1D8CCA55C8 /* tcp_client.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7E4EAD0BD8FB6F74E445170ED4877F23 /* tcp_client.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 7155B87F7BD2A3EEF6BE4D693539785F /* buffer.h in Headers */ = {isa = PBXBuildFile; fileRef = 91D12EFBB72810CBC71639806DD67C7D /* buffer.h */; }; - 7162EB80EEA99499FD1C567207F9A928 /* local_subchannel_pool.h in Headers */ = {isa = PBXBuildFile; fileRef = B2CDFF6C746D1B8C9DC1FED9D101EACE /* local_subchannel_pool.h */; }; - 7176DB6A79D285CFE2E61B78E29A5016 /* health_check.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = CE8D67FB0C068057B70161D489B5E496 /* health_check.upb.h */; }; - 71896E8300CD06F732BA04A07436EE49 /* load_report.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 93A3A82C9DE223357DB39430C200D2B7 /* load_report.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 71910438833ECBEFA8CF4FE476F83E40 /* completion_queue.h in Headers */ = {isa = PBXBuildFile; fileRef = 97989B741B4F436258246282CB32B5EB /* completion_queue.h */; }; - 7194024FEB64B499D64849F73AE72C2A /* memutil.h in Copy strings/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 07E087072B663C7269710F818833F544 /* memutil.h */; }; - 719DFCDAABBF0171A9A6DBD29980E3FF /* handshaker_registry.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = A95749CF760FA5CC0AAF95B5249DB9F6 /* handshaker_registry.h */; }; - 71A4DBC01AC62ABE8DF50DDD62BD14AB /* outlier_detection.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = AB0F3869830E90DBB369E5D6A2A2A7E3 /* outlier_detection.upbdefs.h */; }; - 71ADA95958325D4F2B856997CB42A66D /* log_linux.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7F989746341F0BEE30833BA07281D08A /* log_linux.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 71B2470378B925EB6999A6D37F502461 /* iocp_windows.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = B2E865DE3AFE2C120A9B6CC307EE7E3D /* iocp_windows.h */; }; - 71B2BB6B8E74E8AF2F12D59EAE9B4A32 /* stacktrace_arm-inl.inc in Headers */ = {isa = PBXBuildFile; fileRef = 318C501DFBECF4348CBECADB26186D34 /* stacktrace_arm-inl.inc */; }; - 71B9D16775692D28EE0F85F9CD621CEC /* barrier.cc in Sources */ = {isa = PBXBuildFile; fileRef = FA76FB9B5C3C5655AF8BFA2FD404502C /* barrier.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 71C5797863785D8C1E9E0D4D2CB0DD23 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 1806ECB9B1472EB77A01E6117300106C /* internal.h */; }; - 71C865A8F1C75EFCDFDBB767E49C7B4B /* alts_tsi_handshaker.cc in Sources */ = {isa = PBXBuildFile; fileRef = FF32776993609E75769E4048CFB4B619 /* alts_tsi_handshaker.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 71CA8E66803109284F1C66240D1C13A4 /* FIRPhoneAuthCredential.m in Sources */ = {isa = PBXBuildFile; fileRef = A544F460FF19D87AC447EE1C89A3858E /* FIRPhoneAuthCredential.m */; }; - 71DBCD9E50D2DF9957BDD8B669096609 /* versioning.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = D9D5761B1CE7AF87935B073653B703A2 /* versioning.upb.h */; }; - 71F67463FC60996F43B0026CFBEF515C /* arena_promise.h in Headers */ = {isa = PBXBuildFile; fileRef = E10387926F647BB9DDBE12A4B65DB06E /* arena_promise.h */; }; - 720CFA7E595E9A5480146309EEE455F7 /* listener.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = B56B5D1506B37C17CF57B56E7684516E /* listener.upbdefs.h */; }; - 7230C8BB67182CC419AF4077639FFAAD /* api.h in Copy src/core/lib/resource_quota Private Headers */ = {isa = PBXBuildFile; fileRef = 173FEBB8CBBD480F37B2794415F76E3C /* api.h */; }; - 7234B760B7F19DD21D1E58D847C2CCDA /* pid_controller.h in Headers */ = {isa = PBXBuildFile; fileRef = DFF27E375A3323376AC18DC40F9B8761 /* pid_controller.h */; }; - 72402926874E3EABCF196C4F093658F1 /* frame_ping.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = AFB7197165C2DFB1FBB0863F43B633FF /* frame_ping.h */; }; - 724277806E654781A23F15059E58373D /* string.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 186E07F8A9CA37AFC47C52BD0872617C /* string.upbdefs.h */; }; - 724762CFE53D8E66A1CF27586403E18C /* xds_bootstrap.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = ED85B398BCA394C5CAC493A176806EF2 /* xds_bootstrap.h */; }; - 72591B8AD4B009C13CF0A8104304C0DC /* log_writer.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3B7472FF5EB86A2EBB4614BBEB9A998C /* log_writer.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 72600F2A67C55575C27009784A6D72B9 /* create_channel_binder.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = AF4BCB4559B0D03F46ED51304095FE0C /* create_channel_binder.h */; }; - 726A46B99003A668DD6A7EDBC435A82E /* tls.upb.h in Copy src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = F38B55B18112A110F5C871B133396BCE /* tls.upb.h */; }; - 728972A2A36B2B5728052FF4ED32FAC2 /* opencensus.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 9FACE661387F5F53E609A1427068B813 /* opencensus.upbdefs.h */; }; - 728B05AD033D7A46C77BEBCB2D97F57D /* lrs.upb.h in Copy src/core/ext/upb-generated/envoy/service/load_stats/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 7E6B745239A77C69FAAE1E10D51FE138 /* lrs.upb.h */; }; - 729E6E494B8A49DC130FE985D8C41CC9 /* http_connect_handshaker.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = EEB143FAE4584022A0EF93F2DB20CA6E /* http_connect_handshaker.h */; }; - 72A076C73C344148EA3505151BB28FBD /* server_builder_option.h in Copy impl Public Headers */ = {isa = PBXBuildFile; fileRef = EB1E898B5A1501A415626353BE59A4E7 /* server_builder_option.h */; }; - 72A62CB62A02D25E5399EBD7986FEA0F /* ascii.h in Copy strings Public Headers */ = {isa = PBXBuildFile; fileRef = 2666B3846875F005A0A8300CBCBCB647 /* ascii.h */; }; - 72AC998BB11C49348216CF5DB2DC9E93 /* http.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/api Private Headers */ = {isa = PBXBuildFile; fileRef = 6639E77A5114D12B8C11237BB1CE9F7E /* http.upbdefs.h */; }; - 72B0A1841CC7F027A14E7ADCB9A45143 /* FIRLocalCacheSettings.mm in Sources */ = {isa = PBXBuildFile; fileRef = B4AAF92ED2FBB09D0C466100C56B3CB5 /* FIRLocalCacheSettings.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; - 72B1C5457CB147AD54A2ADAC2E7E77B1 /* grpc_stream.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5D15C396F3F532BE655A2C429FBF2BF0 /* grpc_stream.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 72DF1AD7F5B999F24EBC4C7BB2090DD9 /* handle_containers.h in Headers */ = {isa = PBXBuildFile; fileRef = B55E618971BCAC5BD107FA2401098156 /* handle_containers.h */; }; - 72E5BF9CEA80D60B3AC017E33817DFF7 /* matcher.upbdefs.h in Copy src/core/ext/upbdefs-generated/xds/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 1993D5A3B0668140C34BDCDD5FF5990B /* matcher.upbdefs.h */; }; - 72F35B80CC0C36BBAE6B1BE08D8A7B3F /* a_time.c in Sources */ = {isa = PBXBuildFile; fileRef = 39BB54E277AB31BD264879FC69D21755 /* a_time.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 72F970F7A3C10C729C7C4B11B3717CF8 /* tcp_client_posix.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 71945B90F81F84D5200AB10AAE155E89 /* tcp_client_posix.h */; }; - 730599CA1295EFE379B49B51E66BC46B /* iomgr_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = 00C7D96DE833438927B6673F0A7653FC /* iomgr_windows.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 73081B275DA6B860BF79AFE491F7B852 /* compression_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E404FD8A1A3C08A58DD5BC4CE9E5CE1 /* compression_internal.h */; }; - 7308F7DBB4527573A5AECA5F2C337A00 /* validate.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = B3BC3AF4DA87EC855ED2FEE65B83F57D /* validate.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 730E050A35900F01EDF035F1867F3C4A /* a_bool.c in Sources */ = {isa = PBXBuildFile; fileRef = BAF074B56B4629C90FDC262746997573 /* a_bool.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 7310A93E3C029CA3236259DABAB9C172 /* validate_service_config.h in Headers */ = {isa = PBXBuildFile; fileRef = C1C87356DFC6FE99B19F02CA41C7B4F1 /* validate_service_config.h */; }; - 7313C1CF69E7F74F73EFC8FB49EE07DB /* local_transport_security.h in Copy src/core/tsi Private Headers */ = {isa = PBXBuildFile; fileRef = 34EA51FCBBBB11B0131384466FFD70A2 /* local_transport_security.h */; }; - 73154F783A92B82E994115107A03D2BF /* string.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = BC57ECE84E3252A14E6F994ACB1C3BEE /* string.upb.h */; }; - 731778A354E55BA56C165DE782ED814A /* dh.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 871D792CEFAB5610D9FE2D3B61840E7A /* dh.h */; }; - 7318E99F8E3269ED986BE5429FCC65B1 /* FIRGetOOBConfirmationCodeResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 05D143A84E6FACF76154B99085C0D3A4 /* FIRGetOOBConfirmationCodeResponse.m */; }; - 731A893C2B5DF2D1BA730358C07AE4BE /* thread_quota.h in Copy src/core/lib/resource_quota Private Headers */ = {isa = PBXBuildFile; fileRef = 5FC82169E23A83F404FC9210514B4663 /* thread_quota.h */; }; - 732349237FCE44A1D611FAC667CFF2F5 /* posix_engine.h in Headers */ = {isa = PBXBuildFile; fileRef = 73E0ACE81F5F02D8DB09D22EC59D48A5 /* posix_engine.h */; }; - 73241C99CA8EF311E501C0757818A681 /* pcy_lib.c in Sources */ = {isa = PBXBuildFile; fileRef = 1FD7FF5E6BBB4576F06A33F1CB622469 /* pcy_lib.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 732D472823727291EBAAC058235E2D98 /* fake_credentials.h in Copy src/core/lib/security/credentials/fake Private Headers */ = {isa = PBXBuildFile; fileRef = 50364AA3C7DE7E4E42D2A8708F52F0D1 /* fake_credentials.h */; }; - 732FF47DBBABA7FF1F09EAEE9C111B08 /* FIRLibrary.h in Headers */ = {isa = PBXBuildFile; fileRef = 06798116C4E7B8499CA6A421EFA54594 /* FIRLibrary.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 734037A794581C247C8735984FDBADDF /* xray.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 0CF05BC16C7BE6FE9772893C78E0FEA4 /* xray.upbdefs.h */; }; - 73418BAD197FFBDC7BA5630261ADEEFD /* path.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0CE2AFCC12B9C96AE4C79D8D785C353D /* path.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 734523B69D8DA32DF0E03563C0041B23 /* accesslog.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/accesslog/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = B5DD57387FF143CE625134B9CFEAB0D8 /* accesslog.upbdefs.h */; }; - 734B34014B83F63746D0B603141A5C3F /* xds_client.cc in Sources */ = {isa = PBXBuildFile; fileRef = 72B105D68A9B7B9500A15B3B8CF48D5B /* xds_client.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 734BE476A88033002A4CD0B54743710A /* http_proxy.h in Copy src/core/ext/filters/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = B0B311825D9BA02B9A506BCC2BBD5CB0 /* http_proxy.h */; }; - 735D05852B3573D5F5D5B36D52D0FB40 /* bind_front.h in Copy functional Public Headers */ = {isa = PBXBuildFile; fileRef = 14D7335EFAF9427414BA07D885C75BD8 /* bind_front.h */; }; - 7378DA3FE22E415BF15A65BDDD9745FD /* dynamic_thread_pool.cc in Sources */ = {isa = PBXBuildFile; fileRef = A4DE606B4FF60CEDC3C63BB99C4AE170 /* dynamic_thread_pool.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 737E57752664699B89527E9DA2520902 /* dtls1.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 5F0F918542AF47A0A5D64E15E43C5BB0 /* dtls1.h */; }; - 73819842C92BA30123B7A6CFA35DDE0E /* xds_endpoint.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = BEF813D74DFC4C59AFA9BA042DD9ACEE /* xds_endpoint.h */; }; - 73822A245EB4D593E8E133C9BDF287E2 /* connectivity_state.h in Headers */ = {isa = PBXBuildFile; fileRef = A34626575DFDE7D52F83F0AA88A3A41C /* connectivity_state.h */; }; - 738BC3384B06DCC34F95E06A5BA932CC /* memory.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = F70464B62478D1860C6AE5575A233580 /* memory.h */; }; - 738CBD93DB86302AB4494D9B3F1061C2 /* path.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 4843BD24732CAA1BE51AF39CD2ECDE7E /* path.upbdefs.h */; }; - 739575FC7B34FA959A33DCD83E5D8518 /* regex.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = BF43040B37F96134C4166D7CCA8CCD29 /* regex.upbdefs.h */; }; - 73A46EC3BA7449D82CF8BB93F229F978 /* health_check_client.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4603E61AC977F1F10CE880A7ADD96D96 /* health_check_client.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 73CCC77063940CF6267CD03A1752BF60 /* memory_request.h in Copy event_engine Public Headers */ = {isa = PBXBuildFile; fileRef = 57F486DACB222167DF1C1CCEBD3A566E /* memory_request.h */; }; - 73D0729DDA0A5E5EDF4C23E55BD93D35 /* channelz.h in Copy src/core/lib/channel Private Headers */ = {isa = PBXBuildFile; fileRef = 3D5CF40EE7AD60D5023793ABD71D8D0A /* channelz.h */; }; - 73D758652B21FA31364FC1ADB111C3D5 /* ssl_credentials.h in Copy src/core/lib/security/credentials/ssl Private Headers */ = {isa = PBXBuildFile; fileRef = 49535D78406F24160B801FFF22C2722E /* ssl_credentials.h */; }; - 73D93A5DCC151F3BC43BF55959CB1976 /* tls1.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = B15B9D94519D0FCDA83D340CD3D8F013 /* tls1.h */; }; - 73DA6D8ED06EC7C1E367A75BBB0D02B8 /* FIRAuthProtoFinalizeMFATOTPSignInRequestInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = CD718B396CE724621E23A00C19222697 /* FIRAuthProtoFinalizeMFATOTPSignInRequestInfo.m */; }; - 73F4EFAD79C1FBAA3E9FD1CD5327D8AF /* a_verify.c in Sources */ = {isa = PBXBuildFile; fileRef = E5CD400681B024A9BAF24AC18DAF538E /* a_verify.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 73FC992208B584B876251BE031801494 /* map.h in Headers */ = {isa = PBXBuildFile; fileRef = F5EFF166F07E65A3104A6DFB4B745E14 /* map.h */; }; - 740E06AA3F94F5E1F44AD9C8F9F61E47 /* tls_utils.h in Copy src/core/lib/security/credentials/tls Private Headers */ = {isa = PBXBuildFile; fileRef = 12F051A7D064CE804841009E80B706E8 /* tls_utils.h */; }; - 7419A708DE21A1CDA35E5C072E8483CC /* FIRTOTPMultiFactorAssertion.m in Sources */ = {isa = PBXBuildFile; fileRef = 6077FA03F13DDC81DFA4650E0391631B /* FIRTOTPMultiFactorAssertion.m */; }; - 741AE9EC3AA012846DEE899020368447 /* FIRFacebookAuthCredential.m in Sources */ = {isa = PBXBuildFile; fileRef = 4923DB9A47DED71DD8F57000BE8D8897 /* FIRFacebookAuthCredential.m */; }; - 742502D88D942F691FD22DE3118EA8E4 /* bytestring.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 558664D36082923D6E87CEB773269977 /* bytestring.h */; }; - 74360E5849A02C345C485F453810F959 /* range2-sse.c in Sources */ = {isa = PBXBuildFile; fileRef = 26C09341D7EC6D699A3E703E35AEDC92 /* range2-sse.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 7458446717A74244FC9DA3B85888FB49 /* xds_cluster_specifier_plugin.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 93DF81CE698F227F3F1626A1A431B36C /* xds_cluster_specifier_plugin.h */; }; - 746CBF8A900AFBC6240D0FA1F2A37A90 /* certs.upb.h in Copy src/core/ext/upb-generated/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = D2A73AEEDBF1782817A5B4787517F511 /* certs.upb.h */; }; - 747A1AF8E34C40C09FB4C10DE4FF06CB /* string_view.h in Copy strings Public Headers */ = {isa = PBXBuildFile; fileRef = B42D3C0B1482F30DD407F98E931ABA41 /* string_view.h */; }; - 7481C0483EAB18F95BFD7359354E20ED /* frame_window_update.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F9356B36BD2E56055BBD884C65BCC1D /* frame_window_update.h */; }; - 7483C90B1EDA0D697C6C9FFE7F097111 /* a_gentm.c in Sources */ = {isa = PBXBuildFile; fileRef = 48890493A852412B48EE2155632A62DA /* a_gentm.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 749356DAF78E68EF8CEF1A8BD2A50C9E /* thread.c in Sources */ = {isa = PBXBuildFile; fileRef = 9CF9051508690AE1C422D1DBC7745672 /* thread.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 7495033E0DF7AC79534CC57296C0712B /* FIRResetPasswordRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 7433A6EBCF055C177AA2350778A8D066 /* FIRResetPasswordRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7497226BF48E7FF516D2CF0BA055BE65 /* connected_channel.cc in Sources */ = {isa = PBXBuildFile; fileRef = B06C015E686DA5993ED96EFA687A3058 /* connected_channel.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 749C2AF9379151E4DF26F9B671BACA47 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 58134D0403E2A6A27BACFFDCE11206F6 /* internal.h */; }; - 74AF69099E60CB7E725BA8EAA28455F5 /* engine.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 749F0A1D30E33E0E339F5E0FAE846D63 /* engine.h */; }; - 74BA0647994FED68BEC4A7B7ED9C41ED /* transport_security_grpc.h in Headers */ = {isa = PBXBuildFile; fileRef = CB6B0D80AB9EB7751551756893200FBD /* transport_security_grpc.h */; }; - 74C5CD5BA6AD5447266DE69199BEE10C /* NSData+FIRBase64.m in Sources */ = {isa = PBXBuildFile; fileRef = 12A0ED5F89B30A4928E1E33140AAEB14 /* NSData+FIRBase64.m */; }; - 74D35B36E349B79851B2C91646C7A373 /* msg.h in Copy third_party/upb/upb Private Headers */ = {isa = PBXBuildFile; fileRef = 76B70E6BBB8BA139078B677FB12B6838 /* msg.h */; }; - 74E57DE5C4EE497653B964FCD4337668 /* server_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 4030873CD5D0678DDD37C92A24FEAFDF /* server_posix.h */; }; - 74FB2C5FA64092E4DE340B6C1CE1C0B0 /* blowfish.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 7360766508120E8E8155A5906310D595 /* blowfish.h */; }; - 75042CDE5F25493671136B6AA37E7CA4 /* ssl_file.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0CB37A7EB677EB90FFA69FA4F6CD448E /* ssl_file.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 750F7938AF704257223C33E844623F5D /* writing.cc in Sources */ = {isa = PBXBuildFile; fileRef = 99639769715E316E6AB5B4AB6F710F13 /* writing.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 751093A2E2D9EEFF43B67A851C4132E5 /* transport_security_interface.h in Headers */ = {isa = PBXBuildFile; fileRef = B451B4E67EE6BF7C0840828CC0B131EF /* transport_security_interface.h */; }; - 751630352409238A67BBEF19709FA2B2 /* handshaker.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = FAF7E5DB0839CFE9EC781F97C8AFF047 /* handshaker.h */; }; - 75270434D4C8EEAFD524F607556A73B4 /* cpu-ppc64le.c in Sources */ = {isa = PBXBuildFile; fileRef = 2C3834A922DC0459067DDE0E105D774B /* cpu-ppc64le.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 754E319EDC9C066F81729C0D48EB777B /* endpoint_pair.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 0E5D14075BB50A7D87701A672EBC9444 /* endpoint_pair.h */; }; - 7553148AB903FBB53FC4650B285F0271 /* aws_external_account_credentials.h in Copy src/core/lib/security/credentials/external Private Headers */ = {isa = PBXBuildFile; fileRef = EE10331B89000F8BF42398330720C39C /* aws_external_account_credentials.h */; }; - 75615BEBF9036DC74A224887E25455E0 /* log_apple.mm in Sources */ = {isa = PBXBuildFile; fileRef = 521589AB076C08D434BFB00471194C77 /* log_apple.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; - 7561D162D7836E69ED2E3D96E46C1EAD /* resource_locator.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 296422C02CECC591E78F70EA82EAC54E /* resource_locator.upbdefs.h */; }; - 7562874CBB588190072CDB154024755B /* int128.cc in Sources */ = {isa = PBXBuildFile; fileRef = DCC25314E733AE2587AC092BB80BBBB7 /* int128.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 756F0B6072BFC23E59FD0C393318CB2F /* FIRSetAccountInfoResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = C62D3AF9E3D949AE6EAA8C4C0F45419A /* FIRSetAccountInfoResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7571A98714672EF7748664456F8971BA /* utils.h in Headers */ = {isa = PBXBuildFile; fileRef = F9AF8D57E2EBDD88C22CAF0527AE5DEA /* utils.h */; }; - 757BF579175044ABF5DE4BB6F42B2E21 /* event_string.h in Headers */ = {isa = PBXBuildFile; fileRef = 52F4575211180F40E0CEF52240DD2AC6 /* event_string.h */; }; - 758441CDB7FCD926A3A6D47173607C7B /* bundle.nanopb.cc in Sources */ = {isa = PBXBuildFile; fileRef = C5627730ACDDD35AAFACC86E6DE8BE53 /* bundle.nanopb.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 75A08282C25203A891EEC1204A3409D2 /* grpclb_client_stats.h in Copy src/core/ext/filters/client_channel/lb_policy/grpclb Private Headers */ = {isa = PBXBuildFile; fileRef = 0C10BF10D5BDF891B6B35151DC10D2A9 /* grpclb_client_stats.h */; }; - 75A432BF293415CC7B4A92C4899F0FD8 /* stats.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 92479FC78EF86A6D60DDD788A64916DA /* stats.upbdefs.h */; }; - 75B759FC2F13B68415C2B5AA37B0DCF4 /* call_creds_util.h in Headers */ = {isa = PBXBuildFile; fileRef = B50709D7BFD8B79913FC9ADDF0C80491 /* call_creds_util.h */; }; - 75C2F3DD877E6AE3304C2137F2151CDB /* WeakContainer.swift in Sources */ = {isa = PBXBuildFile; fileRef = D79BBF8EA71DB81E2ECBC5F71B6B667F /* WeakContainer.swift */; }; - 75D389BF3E6EA08F23175FD98C5CD6A5 /* token_bucket.upb.h in Copy src/core/ext/upb-generated/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = B71CF98D12C01499736E4252929498F4 /* token_bucket.upb.h */; }; - 75DC870DEFEA79CC413C860D5D726060 /* a_enum.c in Sources */ = {isa = PBXBuildFile; fileRef = FEC779D2587471697D299304F7A18E0D /* a_enum.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 75F0F443A48196D7FFD5318A9827AE6F /* oauth2_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = FE3B1861CF82858CA53393ACEF376B55 /* oauth2_credentials.h */; }; - 75F4566D5CB43E8E89EA043D78734BBD /* FIRFilter.h in Headers */ = {isa = PBXBuildFile; fileRef = DDB087BEE7ABAE0C13395F265DCE7F18 /* FIRFilter.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 761FC6874C63D5FAE6AC15EA3141D1E6 /* backoff.h in Headers */ = {isa = PBXBuildFile; fileRef = 464A7D85D8AB25BD049351772D239605 /* backoff.h */; }; - 7626F664FFA62394C14D579AD38E9F0F /* v3_ocsp.c in Sources */ = {isa = PBXBuildFile; fileRef = 274DAC7E14BE864825DBD4C86D78CD5F /* v3_ocsp.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 76293124BA8ACA53492D0FB64B922C23 /* transport_security_grpc.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E604C81CA7C7A49D8494A10200E5BB7 /* transport_security_grpc.h */; }; - 762A342C61666909ED7123C9BA1BF43E /* md4.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 798C4B151D551436547AB74554CCF4DD /* md4.h */; }; - 762ECAB29175CA094541BD77F149F8C2 /* client_channel_factory.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4811DB344972C01C5B8EAD49449943E4 /* client_channel_factory.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 7636050EE35C8204A5C898BB079E6868 /* skywalking.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = A310544C60E5C221BF27C5CE95CC0CFE /* skywalking.upbdefs.h */; }; - 763AC2F09B2BDEFA2F51CF17A19C128D /* simple_mul.c in Sources */ = {isa = PBXBuildFile; fileRef = E067E77436E8F63146D6A3E4583F54F3 /* simple_mul.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 764CDF584223E3F315A12AE547DA3188 /* message_compress_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 08667D3F0E5175D52340FA95B8A52300 /* message_compress_filter.h */; }; - 764ECE7D3CD87C03851A94CA96D92201 /* descriptor.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D271EFBB7265BE0490BCAE13329CE7B /* descriptor.upb.h */; }; - 765A67A44C3E931C60E7B4E17D3B4920 /* any_invocable.h in Headers */ = {isa = PBXBuildFile; fileRef = 25B969A9A9A821E49E0DB1D89DA9305D /* any_invocable.h */; }; - 765E43E79F601546EB8ED86A9BD61CB5 /* xds_endpoint.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 6A552E6FC0373E664B44E522495B4F78 /* xds_endpoint.h */; }; - 7660DC8E04765A8E1F71F07F9B108D18 /* alts_tsi_handshaker.h in Headers */ = {isa = PBXBuildFile; fileRef = F0358DDDC5ED4B160F62181F272628D9 /* alts_tsi_handshaker.h */; }; - 76642F2098964E2660B75BA491AA374A /* symbolize.h in Headers */ = {isa = PBXBuildFile; fileRef = 30617105DB03B071497D2BCAA85CBFEC /* symbolize.h */; }; - 7665D837E213055D88E8B3753643BC43 /* fork.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = E5DF0D65B706CB3AEE1D5CE8B4432A02 /* fork.h */; }; - 7674DD2EFA807048BBD9FB546BA6079B /* status_payload_printer.h in Copy status Public Headers */ = {isa = PBXBuildFile; fileRef = 6BAAF94F7474841BC5D09A557640A7EA /* status_payload_printer.h */; }; - 76773D5F761357B8A02E3DF9CB13C520 /* channel_init.h in Copy src/core/lib/surface Private Headers */ = {isa = PBXBuildFile; fileRef = 4894CEC24ED81D6A849FF3D735356CFD /* channel_init.h */; }; - 767AB456AA0366E2CAB55611A2172ED5 /* decode.c in Sources */ = {isa = PBXBuildFile; fileRef = E01564647B13F2E86BB3C9F4FC5E4862 /* decode.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 769828A3AD1127BBE74CEA465F36F0F3 /* pkcs8.h in Headers */ = {isa = PBXBuildFile; fileRef = E161C72FDB7217B077263E42319E2382 /* pkcs8.h */; }; - 76A052C206797544516670A319007933 /* log_format.h in Headers */ = {isa = PBXBuildFile; fileRef = DECEDBE55C2DDB2AE159D7325D384C4F /* log_format.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 76AC3CF63F23CFAA15FE7AC8EC9982ED /* ecdsa.h in Headers */ = {isa = PBXBuildFile; fileRef = 36D4A2D5DB33A05913107137DE0BCF73 /* ecdsa.h */; }; - 76B0E3A0BFC99888056EA14BA94BB6AC /* slice.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = FE604CAC0622697B1B0F7F5D17E9E9B5 /* slice.h */; }; - 76B12374ABA16E1E19AE2F35627AAA06 /* intra_activity_waiter.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B8EE286B52565E3BF9E6AE3C75897CA /* intra_activity_waiter.h */; }; - 76B486D65A841BCD3128ED342273B003 /* GULNetworkInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B4EF7D1D9B98233C513F62B76D216F8 /* GULNetworkInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 76B51AB206D9D0FEB91ADC2B90B1BE16 /* backend_metric.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A8532672CFBD96D3CF961AD06F617B2 /* backend_metric.h */; }; - 76BA2C566BA342FECE71F34613910B80 /* server_info.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 515F33D7B56AC9A5FEABF5D7D834CC05 /* server_info.upb.h */; }; - 76C0B317CE78FF9DB3E848D054B54FF6 /* binder_auto_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 33A88C7415B9C77919580468A27A29F8 /* binder_auto_utils.h */; }; - 76D39BD6AFAB9C1728B1FD9958A275B6 /* metrics.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = AFA7295FED81E112DF84B8F099FFDF80 /* metrics.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 76DCF97E8A8F78F388F192C29FD40102 /* table_builder.cc in Sources */ = {isa = PBXBuildFile; fileRef = 399ED03BC404637B55C5EF41757EEAC9 /* table_builder.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 76E94D8C9DC6108716B61016F14A7127 /* error_cfstream.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B1205A5AA2B18BA0CA094E864D8268F /* error_cfstream.h */; }; - 76EFE1FC6BFFA7220AE3E8A18E1D6B09 /* socket_helper.c in Sources */ = {isa = PBXBuildFile; fileRef = 14FB2D8393CA37FB5E6380B640099BB1 /* socket_helper.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 76FEA5AB8D272C1C4BFCEC0458B4FB24 /* cpu-intel.c in Sources */ = {isa = PBXBuildFile; fileRef = B7A9179431821478CB4A742561805B54 /* cpu-intel.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 770B2036116B9357F62F2BB43F5618F9 /* http_status.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = F1C0445280CDDB34127321F46D63364B /* http_status.upb.h */; }; - 771C62A23570ED8B4DE1BC6D9A9A88D8 /* murmur_hash.cc in Sources */ = {isa = PBXBuildFile; fileRef = A242612D4189C9B85A2B2BD2803FB223 /* murmur_hash.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 77218CDD4D39276CE8B0CEE8797D4C42 /* cert.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B3CF0051F125615540DBA3C3D4E1552 /* cert.upb.h */; }; - 7723BEE1584D2F6ADF5496FFB5579E11 /* opencensus.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = D808E9FAF553F345463B1C910356A8BE /* opencensus.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 774A232CC1C3504F9CCCA7630348769D /* config_selector.h in Headers */ = {isa = PBXBuildFile; fileRef = 1ACB917CF960892AD5AD6CF6035DA2D3 /* config_selector.h */; }; - 774B3FA3CFA793471FE838643C177645 /* forkable.h in Headers */ = {isa = PBXBuildFile; fileRef = 57F76FDFC2D8E073DB783AA8FBB56B07 /* forkable.h */; }; - 774DD38A7020D621B3B7EC6EE9FEB753 /* percent.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 62FA72B7577675E21A9E83DC6185D589 /* percent.upb.h */; }; - 77596741512A33A3967FA5566D0A8FF2 /* migrate.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 74DE2F57D7262CB92985AD1FF806B49B /* migrate.upbdefs.h */; }; - 7763AD5434D2A0782A8573EAC77C3140 /* service_type.h in Copy impl Public Headers */ = {isa = PBXBuildFile; fileRef = 6D3F2916FC95DE50EEDDDBCAAA3CCFEB /* service_type.h */; }; - 7774DE83C627214AAAE877F750973F71 /* trace.h in Headers */ = {isa = PBXBuildFile; fileRef = B41760AA119EB2FA9E13CC57A0B06D0B /* trace.h */; }; - 77781FCFFFA71906FCAE5C2070699DC0 /* GULNetwork.m in Sources */ = {isa = PBXBuildFile; fileRef = E89619E53F05A25D4DA37D6047773584 /* GULNetwork.m */; }; - 778E2D9D18BE17DA4625C612368FBF82 /* encode.c in Sources */ = {isa = PBXBuildFile; fileRef = 86A1397821FBF023FD9862770A13C2D8 /* encode.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 779BF5072E64B16793863983057FD656 /* lb_policy_registry.h in Headers */ = {isa = PBXBuildFile; fileRef = 0DD1E48A70177D9B7B939D8AFB93066F /* lb_policy_registry.h */; }; - 779E919731F587A31823AB0A964EE96B /* unscaledcycleclock.cc in Sources */ = {isa = PBXBuildFile; fileRef = F586E7BCB6DDC821D5C298AB2E2F5D80 /* unscaledcycleclock.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 77A637F4AFEBB6324F2D69C3D570C7D1 /* watch_change.cc in Sources */ = {isa = PBXBuildFile; fileRef = F2877EC86281344FD42C2F61579A7859 /* watch_change.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 77C72ABC42C10EBD4D2016EE2C2B29B1 /* ssl_security_connector.h in Copy src/core/lib/security/security_connector/ssl Private Headers */ = {isa = PBXBuildFile; fileRef = 6A50FA6F08C5FDFDD0B8AC25C59EE9FD /* ssl_security_connector.h */; }; - 77D28B4E99F6B47745A58F34E8B92A51 /* e_os2.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = BFD950FC833DB822B1DC3B5B7C4D70D9 /* e_os2.h */; }; - 77DAE085A2B76D02C37732156898753A /* grpc_ares_ev_driver_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = BF39081BFC86B77152F09043DC09C722 /* grpc_ares_ev_driver_posix.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 77DDBD0A8828512298EEE9339EFF4C7D /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6E336DC2534E1E69B7828F6012B874C6 /* Foundation.framework */; }; - 77E5926D13BC9D0970D00F9D79F54700 /* pkcs7.c in Sources */ = {isa = PBXBuildFile; fileRef = B11A83C87147CB82010BA8B14A17A16C /* pkcs7.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 77F533DF51CD9FC4BFA6C00DB7E7CAF9 /* FIRLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 047277A00655CDE380B5780A009C2CA0 /* FIRLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 77FADAD9A122AD80F1AC3B794EEA1312 /* channel_fwd.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C78067BDBE1D18ECA497231AC19E002 /* channel_fwd.h */; }; - 780E13FB063EA7C32AA921AA66A88882 /* utf8.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4157C0017850E2AFD4DA6BBA7B9F18B8 /* utf8.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 781AD22B811DF7A1407659C5DC646E4E /* timeout_encoding.h in Headers */ = {isa = PBXBuildFile; fileRef = 6937CA174368F516E7D43989322F587C /* timeout_encoding.h */; }; - 781B275843181F3B4A579983F6D75F3C /* spinlock.h in Headers */ = {isa = PBXBuildFile; fileRef = 6097A96131150EFC5CBFE14B777EC693 /* spinlock.h */; }; - 782367BEF088F7E4F6D6FC5219834045 /* printf.c in Sources */ = {isa = PBXBuildFile; fileRef = 0F34E3713446A1B7F4CD6EEEB1D4EB98 /* printf.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 7828DE00E7988E30B9015371A2D7CD6F /* insecure_security_connector.h in Copy src/core/lib/security/security_connector/insecure Private Headers */ = {isa = PBXBuildFile; fileRef = 598487EDD24FBA335DD24B6A5C31DC9C /* insecure_security_connector.h */; }; - 782A81048968F1E89DFF0AC7A7D6139B /* memutil.cc in Sources */ = {isa = PBXBuildFile; fileRef = 198FC76DFF94EC9C0CE10D0A2559299A /* memutil.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 783E45BC87D0369B97511CF0C25CA41B /* scoped_route.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 8DCD8FDB6C0B0A668BDEB79033E83308 /* scoped_route.upb.h */; }; - 7840C9731BE7438081B6213BAE2D9FC5 /* query_snapshot.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9F2A81B2B523310E7DBF3120599D009C /* query_snapshot.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 784212F9111208B77AED9517DEF8DD6B /* slice.h in Copy event_engine Public Headers */ = {isa = PBXBuildFile; fileRef = B04E871C896FF4C4D8656751B122BED1 /* slice.h */; }; - 7844ED7DD151D5F6D88B4BFE1F2241A5 /* FIRIdentityToolkitRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 81E1E4F3DB7DE84F6A63B034EC3416B5 /* FIRIdentityToolkitRequest.m */; }; - 78456F4BC23051605EB52FB8ADA193D1 /* api.h in Copy src/core/lib/resource_quota Private Headers */ = {isa = PBXBuildFile; fileRef = 47774A628458D45006AB2200890347CA /* api.h */; }; - 78622AAFEC815AD4AC417A8778FD3B08 /* timer_manager.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 910C67E60889CC19B7C747B9B9025E07 /* timer_manager.h */; }; - 7871A404420AD330BD8967DF04C0801E /* insecure_security_connector.h in Headers */ = {isa = PBXBuildFile; fileRef = 598487EDD24FBA335DD24B6A5C31DC9C /* insecure_security_connector.h */; }; - 78790A517F3B8B2021C3983BF8123139 /* pcy_tree.c in Sources */ = {isa = PBXBuildFile; fileRef = AB48DAC69BE4905C847040BC118C4997 /* pcy_tree.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 787D8644D1A146FBB3465B0FED9E42FF /* resolve_address.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8825C89C732232E79B8C1A07F147CF94 /* resolve_address.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 78936279F91110A9EB3768E1397EE1D7 /* c.cc in Sources */ = {isa = PBXBuildFile; fileRef = E9776BD4D0F9931260EA94CF57E1DDA5 /* c.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 789B1C321D10A967FAEC78A61C3775F2 /* wakeup_fd_pipe.cc in Sources */ = {isa = PBXBuildFile; fileRef = 59B15E74BE99EB5C8C571EF2C7C7AA05 /* wakeup_fd_pipe.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 78BFC2213781A1A5FC1FCE55A7A9C89F /* ssl_buffer.cc in Sources */ = {isa = PBXBuildFile; fileRef = E175027F231ECB2626E8B04D26ACFD36 /* ssl_buffer.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 78C0C19CB904458FC55086A8F0C9BAE9 /* tls.h in Copy src/core/lib/gpr Private Headers */ = {isa = PBXBuildFile; fileRef = CB2A80BD022534D8DFA89BBE3FF013BD /* tls.h */; }; - 78C3E379DB1E0881CF678A839E96BB67 /* lrs.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = F0DF1A41CBD6C7A2A4A10ECFD854F084 /* lrs.upbdefs.h */; }; - 78C4A8C8222F1B1BF7EF3C03511C9BF3 /* pollset_set_windows.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 0B3115FB24152FFA95CA7917CD2F9ED1 /* pollset_set_windows.h */; }; - 78E09F3B3977B527A355C4634C390806 /* spinlock.h in Copy src/core/lib/gpr Private Headers */ = {isa = PBXBuildFile; fileRef = 6097A96131150EFC5CBFE14B777EC693 /* spinlock.h */; }; - 78E5CEB4CD30EEEDBF73FAD33C2702AF /* server_builder.h in Headers */ = {isa = PBXBuildFile; fileRef = C9B2D37DC583BA2BA268D79A288D4831 /* server_builder.h */; }; - 79112F287476176086F6153BCECC99F8 /* hash_policy.upb.h in Copy src/core/ext/upb-generated/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 1D7102E0832D113DB8685B47A97E882E /* hash_policy.upb.h */; }; - 7913B3689291C29ED860595D94FA4D69 /* retry_service_config.h in Copy src/core/ext/filters/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = 01CF51B3954682CC39060D76C17E7D9B /* retry_service_config.h */; }; - 792DDA0F0CE44CA8462B0C614F93C4E0 /* oauth2_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 9CD77B11F6F6E0D6D6FDD5D323643BBA /* oauth2_credentials.h */; }; - 796F3DA8DAA09B5F95F2866BC8CA4F76 /* timer_manager.h in Headers */ = {isa = PBXBuildFile; fileRef = 3BACF8DCC4AB40857D5741211D1E5EE5 /* timer_manager.h */; }; - 79739DE213AA4C9C06CD25575520D3EE /* randen.cc in Sources */ = {isa = PBXBuildFile; fileRef = A83557986C46459181FF25BCD04D1EAC /* randen.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 7975FCA6328DDDF4889D70742312BEB3 /* FBLPromise+Race.m in Sources */ = {isa = PBXBuildFile; fileRef = 6D7333B2081D82C8BA9F5E1CF0A69AA3 /* FBLPromise+Race.m */; }; - 797B69227FFB36516AF2F070F2319E30 /* json_token.cc in Sources */ = {isa = PBXBuildFile; fileRef = F8F894EFEB1D0E48A20E955D5EA00F61 /* json_token.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 79821138CEC1069B5A49E0CC5F8A528C /* rbac.upb.h in Copy src/core/ext/upb-generated/envoy/extensions/filters/http/rbac/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 4D890AB1006AE73CD3FAF69FE7B83F30 /* rbac.upb.h */; }; - 7982D8A1857F7233C4BC6EE0A8549847 /* GULSceneDelegateSwizzler.h in Headers */ = {isa = PBXBuildFile; fileRef = 1626579DD3A7EFE0F88A48D2C9F14B01 /* GULSceneDelegateSwizzler.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 7987D02E083EC09EE936454A003098B9 /* FIRFacebookAuthProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B426E867DCB007A2251FCC4D788D3D6 /* FIRFacebookAuthProvider.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 798A3B024F703D27C7422140BEBC509A /* client_channel_plugin.cc in Sources */ = {isa = PBXBuildFile; fileRef = 18E4F3732197F713BA20233201F57F1C /* client_channel_plugin.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 798AA4E69000808B06C0F33EF21F703A /* resolve_address_windows.h in Headers */ = {isa = PBXBuildFile; fileRef = 85DFFF7A0CE9899F31F4CC4E802D8695 /* resolve_address_windows.h */; }; - 79A48C5C5B2F6D59FFA9CD07C6685FC4 /* FIRComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = 6DB28D8C225072B71D9F816C4BB2FFDC /* FIRComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 79BCE12B283F2C8CE657D0FF64E5863D /* file_watcher_certificate_provider_factory.h in Headers */ = {isa = PBXBuildFile; fileRef = 05C30974CC0A6B3414D949618B032940 /* file_watcher_certificate_provider_factory.h */; }; - 79C4E7AF4C9EA59DFD94AF04630ACD52 /* xds_bootstrap.cc in Sources */ = {isa = PBXBuildFile; fileRef = DF533D330BD53A04C330A15B554EE3E8 /* xds_bootstrap.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 79D07D8EF04EB4AE29B2B9FACEBB574D /* byte_buffer_reader.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F600549E4C3CAEA911C297F7263C803 /* byte_buffer_reader.h */; }; - 79E0760EBB16244118F542D1EC9DA542 /* x509_vfy.h in Headers */ = {isa = PBXBuildFile; fileRef = 529F2132B01FC492077BC8A18DA09C7B /* x509_vfy.h */; }; - 79EB518BFDE3C75E8991DFC912468FE7 /* outlier_detection.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F618F5684F180033349C90FCDC87A68 /* outlier_detection.upbdefs.h */; }; - 79F3B2CF9BEC9C1D7B670F10A426F3EB /* alarm.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 38372C8CCE137F7D37EF2CE7E811572B /* alarm.h */; }; - 79FE056227749CEA7FFAFC18194C2A83 /* mix.h in Copy third_party/re2/util Private Headers */ = {isa = PBXBuildFile; fileRef = 1CB9C48F627F540C93D3E9BB0D040949 /* mix.h */; }; - 7A037BF2A7051B537BB43E0ECA875D77 /* randen_detect.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E0FFB05D22DEBF5FDE438AF01DBBF61 /* randen_detect.h */; }; - 7A060326BBA5C00308011EA49C3A2F6D /* channel_idle_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = DC2D13CDDD62CF7249C154B1530A01CC /* channel_idle_filter.h */; }; - 7A0EB2CEFAED496DEB9DE5BEBB888B4B /* common.upb.h in Copy src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 10CA326DB9F12972F14D647CE44AD434 /* common.upb.h */; }; - 7A33EBE56752BB70267C7AE04E4DD8FE /* insecure_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A6426894FF97110F947FFF60F1AE9BB /* insecure_credentials.h */; }; - 7A4557C4D4C4763B44157963B997D766 /* metadata.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 96F7410A43D66245ED3AC75BA0DCC039 /* metadata.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 7A4BE1FE4F267E3E67E84BFB12B5718C /* server_interceptor.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = A4AB1593199644D04FC1A71CCB56EE85 /* server_interceptor.h */; }; - 7A6A6EB9AB5FB85F665B0CD0934C3F8D /* status.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = E9B0275D603793A0F347AB437CEA043E /* status.upb.h */; }; - 7A77C2D1AAF980CAE0B0C3CDD560A96E /* FIRAuthProtoFinalizeMFATOTPSignInRequestInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 22386369D1540AFE7E9FE4F50F37F574 /* FIRAuthProtoFinalizeMFATOTPSignInRequestInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7A7AC210E9B22BAD73FBF029515ADC3A /* grpc_ares_wrapper.h in Copy src/core/ext/filters/client_channel/resolver/dns/c_ares Private Headers */ = {isa = PBXBuildFile; fileRef = 0C4C14EBFE2E73D6B1A8E88368C4039A /* grpc_ares_wrapper.h */; }; - 7A82F64DD5294795E09765885834CEFF /* decode_huff.cc in Sources */ = {isa = PBXBuildFile; fileRef = EB7B3B1E93CF7DE4BFA1C731AA6EAEA5 /* decode_huff.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 7A85AFA075E210A7C50D0F5B6D33F47A /* any.nanopb.cc in Sources */ = {isa = PBXBuildFile; fileRef = FF81B41418853E7F40AD117358C26575 /* any.nanopb.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 7A8868E56F80996B005EEBFB333A3FB2 /* syntax.upb.h in Copy src/core/ext/upb-generated/google/api/expr/v1alpha1 Private Headers */ = {isa = PBXBuildFile; fileRef = 68899930347F6398814220466D1DA45D /* syntax.upb.h */; }; - 7A8E59165C1D0F3E0C1E9DEE529126E4 /* sockaddr.h in Headers */ = {isa = PBXBuildFile; fileRef = E697E9B2A859FE83DFE63A97032ABCAF /* sockaddr.h */; }; - 7AACCE58C08F904D8DF48E956B5495BF /* roots.pem in Resources */ = {isa = PBXBuildFile; fileRef = B0ED0EE91BA1BA420CC0961AA534F83A /* roots.pem */; }; - 7AB1022ED5B03F0965D7B389A3B8D2CF /* seed_material.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7ACB4CC0D456E56101CC348D2DCB3137 /* seed_material.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 7ABCC3AFD0CCB8865FDCC2110219D60D /* strerror.h in Headers */ = {isa = PBXBuildFile; fileRef = D2E6D6AB981FCC021D7368A58683B79E /* strerror.h */; }; - 7AD49F610D8C7A4BA40EA688F2B39DB1 /* try_seq.h in Headers */ = {isa = PBXBuildFile; fileRef = 47F900A793A5B6C92BCD57457053FBE0 /* try_seq.h */; }; - 7AD638B05B29056527DFBF2D187AAC97 /* FIRSetAccountInfoResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 78C68CEA17B3453B0FEB58A7833EF0B9 /* FIRSetAccountInfoResponse.m */; }; - 7AD89B187E898FC88CFCCDCEDBA7E3CD /* aead.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = E78A65C63086E99EA695849D617A83ED /* aead.h */; }; - 7AE1CEB42C37B3A0962D16F2D1D2546A /* chttp2_connector.h in Copy src/core/ext/transport/chttp2/client Private Headers */ = {isa = PBXBuildFile; fileRef = B7BA602B8ABA36FB78E050D701AFA340 /* chttp2_connector.h */; }; - 7B07557C03D82C1F98AC5076F3B82952 /* ssl_utils_config.h in Headers */ = {isa = PBXBuildFile; fileRef = 146AC436A90A252FD5897A59D8A920BB /* ssl_utils_config.h */; }; - 7B2FC06B6FB615AFC5C277E8ECCCA7CD /* channel_trace.h in Headers */ = {isa = PBXBuildFile; fileRef = F2C41CD3CD7F030E3FC54836E9B909C7 /* channel_trace.h */; }; - 7B47BBE13C646A85657C842DB44C8802 /* parser.h in Headers */ = {isa = PBXBuildFile; fileRef = C774AE36A045DF2B7CCDF735B23EE88A /* parser.h */; }; - 7B4FF4E2A029E947095596D99E77D0ED /* frame.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F3DA4917DD71C8B8A0BE1DBD8AC9E2A /* frame.h */; }; - 7B578D1BEC42BA7D015DC9795BFEE00D /* GoogleUtilities-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F2D33ABDF24120DE8AEA47F7C580D698 /* GoogleUtilities-dummy.m */; }; - 7B5BB7A0DBA681169D1AA472BBCB16D4 /* escaping.h in Copy strings Public Headers */ = {isa = PBXBuildFile; fileRef = EB45E88E9A1DDB9DE002900D364F2102 /* escaping.h */; }; - 7B6C199FB56D104AEA8ECB2D6196FD8F /* path.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = F30ABE59C7AA770983E2028F2D16DDBE /* path.upb.h */; }; - 7B6D7719D687339040EB392C27B742CC /* endpoint_components.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = E304231909E187742B9610BD30582326 /* endpoint_components.upb.h */; }; - 7B6F01343F36D4DFFD47716CFA2CAB6A /* exec_ctx_wakeup_scheduler.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = 0AFDD41002641E79F4E12988F82E016D /* exec_ctx_wakeup_scheduler.h */; }; - 7BA0A915A17A0F9619588F8982515B1F /* cord_rep_ring_reader.h in Headers */ = {isa = PBXBuildFile; fileRef = 88FABD19D80280E84C32E5864F3C4CE3 /* cord_rep_ring_reader.h */; }; - 7BA63EE7F5B449084652D98966404963 /* ev_poll_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 834C045E06AE607E28692F51AFBE2F2F /* ev_poll_posix.h */; }; - 7BB6605B818AABC6CA939E515A85E6F2 /* global_subchannel_pool.cc in Sources */ = {isa = PBXBuildFile; fileRef = BD35F216869620278824FD395E69F878 /* global_subchannel_pool.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 7BCB6E71856EA206E568398399902D61 /* slice_string_helpers.h in Copy src/core/lib/slice Private Headers */ = {isa = PBXBuildFile; fileRef = 4F0708D2CB74F4243A26E9D51244D42F /* slice_string_helpers.h */; }; - 7BEA31209574C3E8A852A68A4A5BFECD /* bad_optional_access.h in Headers */ = {isa = PBXBuildFile; fileRef = 7486561260BC6EF2495B7F1101256252 /* bad_optional_access.h */; }; - 7BF0DDCFFD2EAC3CA6138314F5BB4D6C /* statusor.h in Copy status Public Headers */ = {isa = PBXBuildFile; fileRef = 5E84A027945F0807860C495DE2BE596A /* statusor.h */; }; - 7BF4B5D890A4C108926239C776BA766A /* float_conversion.h in Copy strings/internal/str_format Public Headers */ = {isa = PBXBuildFile; fileRef = 69B2911F143DE41B880832760F562B8C /* float_conversion.h */; }; - 7C06B22996E33966AC8C48DAD49AD593 /* resource.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = CD88BEFD5553ACC70C70722D7BF14851 /* resource.upbdefs.h */; }; - 7C138258627FFDB33D1C0A9F7EFAF094 /* windows_engine.h in Copy src/core/lib/event_engine/windows Private Headers */ = {isa = PBXBuildFile; fileRef = C346FB307EAB43E4890CD3B08C48FEBB /* windows_engine.h */; }; - 7C1C1A4B11E15B18B6437B3BE74D789A /* binder_android.h in Headers */ = {isa = PBXBuildFile; fileRef = 72B799D7CF081A4F0F17D35FF74CADD0 /* binder_android.h */; }; - 7C3A06692E4ACB76194F7E99F024CB13 /* str_cat.h in Headers */ = {isa = PBXBuildFile; fileRef = 49EFF549AE06BED7E1604FEDE1687262 /* str_cat.h */; }; - 7C42B6146AC835028EC0E1D85F9304B7 /* transport_stream_receiver.h in Headers */ = {isa = PBXBuildFile; fileRef = B69D17F3254FA6BC4751F424967D265C /* transport_stream_receiver.h */; }; - 7C44BA5A3063EAD7296D7AE807663F12 /* hpack_constants.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 6C8C6EBF64643A2187A66C46997FF6D5 /* hpack_constants.h */; }; - 7C56125EFC7A4EC3FC4C888374D7F8C8 /* matcher.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/common/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 9EFD21302FE8780F575F437E76D5E0E2 /* matcher.upbdefs.h */; }; - 7C652FEB396884A386D11B6D0D9A60EE /* FIRGetOOBConfirmationCodeRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 3BE9DB234E00C9CBB012C22A427922D3 /* FIRGetOOBConfirmationCodeRequest.m */; }; - 7C6AA2C564B806AC20B6881E3EE5DEC9 /* mini_table.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 3A322B4302CA5F4C4581C0A9C895ABA7 /* mini_table.hpp */; }; - 7C76EE93DD92D8987DDA4971D678884E /* buffer.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 91D12EFBB72810CBC71639806DD67C7D /* buffer.h */; }; - 7C83857F40DF5B92E9C8C394761D1C9B /* default_health_check_service.h in Headers */ = {isa = PBXBuildFile; fileRef = 796F416D6CCC7BC4CEC63082B6931C3B /* default_health_check_service.h */; }; - 7C958459E8E0538349B5311156C8FB8C /* dual_ref_counted.h in Headers */ = {isa = PBXBuildFile; fileRef = 19A09BADB75E70F63D955FE33A967D98 /* dual_ref_counted.h */; }; - 7CC6EB3479BF8210A64FCD24FD1A923F /* url_external_account_credentials.h in Copy src/core/lib/security/credentials/external Private Headers */ = {isa = PBXBuildFile; fileRef = F70D4DDD4E03477375B2623017F8D993 /* url_external_account_credentials.h */; }; - 7CCAAAB10D1766260D573D0689BF0929 /* substitute.h in Copy strings Public Headers */ = {isa = PBXBuildFile; fileRef = 27442E135381F54C516E929FAB2D37C7 /* substitute.h */; }; - 7CCF2FDC93D377847F317D1767944170 /* FIRAuthRPCRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 8492334018510257F1E8DCB21D698D58 /* FIRAuthRPCRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7CDC6FFF953B41AA0417AC77088F1435 /* arena.h in Headers */ = {isa = PBXBuildFile; fileRef = 4EEE09F9719B9D20921FAB9F9B184F3E /* arena.h */; }; - 7CDF216F747283D0DF82D75B5ED96770 /* examine_stack.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 13B4BBFDD69B0F7BAADB4D65F659A97E /* examine_stack.h */; }; - 7CE3425FC3F37CCC1B55AB10FC67F0E5 /* ssl_session_boringssl.cc in Sources */ = {isa = PBXBuildFile; fileRef = AAC56110EE299D0D2FA70F9F057ECA58 /* ssl_session_boringssl.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 7CEE81F50CE722D1D9FFCCFC156AFEED /* server_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7A66EF6DCD556BE49D7DB10697036E72 /* server_posix.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 7CFB3A8E801666EFD8CF79451FA13A9B /* context.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = 722220320CCC5D15E0B999E405B1E9AB /* context.h */; }; - 7CFB53E44051AB4343D32576B1E84958 /* authorization_engine.h in Headers */ = {isa = PBXBuildFile; fileRef = B22BFDD81F3A9D4E11BF7C59BF13F94B /* authorization_engine.h */; }; - 7CFE2B255B811C84EB8C42DF48C71B3B /* FIRSignInWithGameCenterRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 5F1A982373F65E8533884BF6E56AE150 /* FIRSignInWithGameCenterRequest.m */; }; - 7D0FFAF55057CD672A022394296ED0F4 /* md4.h in Headers */ = {isa = PBXBuildFile; fileRef = 798C4B151D551436547AB74554CCF4DD /* md4.h */; }; - 7D14F1970702D0C2322FB1C4CB1364FE /* executor.h in Headers */ = {isa = PBXBuildFile; fileRef = B9AA54733A43D1423F46810E3F2B9D47 /* executor.h */; }; - 7D1A828526E8471F60CCF5D3A1D653D0 /* sync_custom.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 1E24E05693D9DC449483756517BB1AEB /* sync_custom.h */; }; - 7D2D1D2CF89A1F7C7F7702D1C2CA088B /* walker-inl.h in Copy third_party/re2/re2 Private Headers */ = {isa = PBXBuildFile; fileRef = CEC19DD7ECBA45F9AFB4DABF183FF502 /* walker-inl.h */; }; - 7D327ED88D0A91EE11885ABA14A1F296 /* overload.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/overload/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 9432E5FE27C1CE4C2665EFA503DA413C /* overload.upbdefs.h */; }; - 7D3552626DD5159DD8AEF255FAE91C67 /* symbolize.h in Headers */ = {isa = PBXBuildFile; fileRef = B52C2F45E2557F39C51976497B8EAAAA /* symbolize.h */; }; - 7D364E50FF143C58F2D3F348CC86C225 /* hpack_parser_table.h in Headers */ = {isa = PBXBuildFile; fileRef = 5522275A83A2EADD2BC0674F6A044070 /* hpack_parser_table.h */; }; - 7D4DBC32A773737412F49D6E0B313F49 /* overload.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 994D9786F3C51FFA8FC76A3450E9A03D /* overload.upb.h */; }; - 7D52DA45B5501E81351C9606F145EA3A /* core_configuration.cc in Sources */ = {isa = PBXBuildFile; fileRef = B6F98A11D0D1736ED71C4CAA74521BF1 /* core_configuration.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 7D6CA7C1594797FE334F21BEC669F5F6 /* server_callback.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = C95516337BF933091D542718E81FFFB8 /* server_callback.h */; }; - 7D76310348E9DAA486FFCB45E15D8EB0 /* transport_fwd.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 080A8157D303DB6C82C6A918214DD169 /* transport_fwd.h */; }; - 7D91A9B133FACC511F14D7DC941733CE /* iocp.h in Headers */ = {isa = PBXBuildFile; fileRef = 050E8F52FF88618E647955659FC57E4E /* iocp.h */; }; - 7D9389D6217042CFF2BDA19ED7EB4199 /* status.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 60D420F96CDF12208D4F3E3F89FEADC8 /* status.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 7DA43A8208FBB8CF4038B46EE9E3ADB6 /* httpbody.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 0AC9240598E0FFDED9320ACC157F636E /* httpbody.upb.h */; }; - 7DA86CC0EF64BA4B948D16CFFE2B60A9 /* alts_handshaker_client.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B071A7B2CD93C95C6619E13D709E0ED /* alts_handshaker_client.h */; }; - 7DAB5EBACB5F9803EA19577E6DF764BF /* channel_arguments.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = 78580A8C6B7B33383D25F925E1BF9840 /* channel_arguments.h */; }; - 7DAD380D0A13454E6384718B9E1DE5B5 /* status.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 30A7AD78C67962228AF19D3C62C8896F /* status.h */; }; - 7DB1048676F2833A5265A4C903764BB6 /* perl_groups.cc in Sources */ = {isa = PBXBuildFile; fileRef = 11A41C38FA106AB6319EBB40983EE005 /* perl_groups.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 7DE5B80A4A5B4EDD48D33BB7CB59C233 /* socket_mutator.h in Headers */ = {isa = PBXBuildFile; fileRef = 8FDF86A9CE9EDBD7959EFAA5E87473F0 /* socket_mutator.h */; }; - 7DEED5A72742412C03E103DA7D29A2EC /* ssl_transport_security.cc in Sources */ = {isa = PBXBuildFile; fileRef = A6196876EC6F4D791C83ACB255423247 /* ssl_transport_security.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 7E1A76032973E504C6741DED844677A1 /* checker.h in Copy strings/internal/str_format Public Headers */ = {isa = PBXBuildFile; fileRef = F7D547DD535F6DEB05AEBCDC9899AF48 /* checker.h */; }; - 7E1F9096BE0ECB203417414295C03B9F /* substitute.h in Headers */ = {isa = PBXBuildFile; fileRef = 27442E135381F54C516E929FAB2D37C7 /* substitute.h */; }; - 7E20F2082530C8B291FE241B7CADDF33 /* hash.h in Headers */ = {isa = PBXBuildFile; fileRef = A5D25A97771ACA3EF86878E4A7E37A9F /* hash.h */; }; - 7E210C5A5837E40E6ECF2649F614C7F1 /* config_source.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 40BFCA09D8810AF25F717122F2DB9FDC /* config_source.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 7E3AEACF98EFFE294C6BF85243E93F70 /* endpoint_pair.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = EFE62C81BBA07096D5E0402B8548A28A /* endpoint_pair.h */; }; - 7E3F4CCC67F5BFFA63B0AB4934B5D12D /* oct.c in Sources */ = {isa = PBXBuildFile; fileRef = D502F95AFC03031B8BD32685C852BA96 /* oct.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 7E5AAA609787CB52983D07C4071D3600 /* global_config.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 17DB8C8B437B6C636D0DD2F316547097 /* global_config.h */; }; - 7E5BE808D3776AB43BA552929EF64914 /* config.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 209D2899C8189B79A159CEB805EB127D /* config.h */; }; - 7E6EB6DD5D3790F7BEE7D1580EE0CEFC /* sockaddr_windows.h in Headers */ = {isa = PBXBuildFile; fileRef = 0016F3697BB2D507CF5B838ED0900BEA /* sockaddr_windows.h */; }; - 7E71699F0407E3E86BDA15D9169F22D8 /* executor.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = B9AA54733A43D1423F46810E3F2B9D47 /* executor.h */; }; - 7E886F42F3257062A5B9C3704CAF36CB /* prog.cc in Sources */ = {isa = PBXBuildFile; fileRef = D30F38FB030A12D624E5641821580846 /* prog.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 7E89D654F02055621D75964AC6D59EDF /* mini_table.h in Copy third_party/upb/upb Private Headers */ = {isa = PBXBuildFile; fileRef = B8DF32DF83D1D095D3DADF7C0541353D /* mini_table.h */; }; - 7EC4D67F8C9229C28CDF5A0AA9B654DE /* versioning.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F08DA410B010FD5EF9F4635DAA7C3E3 /* versioning.upbdefs.h */; }; - 7EE392503F129613F22E0B39A2F675ED /* low_level_alloc.h in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = A42C86430500DABACD590D16FE79A2E6 /* low_level_alloc.h */; }; - 7EE6B57CAC793BFDB3B170E23B894E02 /* encode.h in Headers */ = {isa = PBXBuildFile; fileRef = 284E07F713CE39C11E3DBF8D704B1D29 /* encode.h */; }; - 7F059043E68112AD8E0B4885A819E282 /* datadog.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 43597551198F0566BC64DBA14F992D76 /* datadog.upb.h */; }; - 7F317DB9D046CCC0C2906A6BD7E1D91E /* xds_cluster.h in Headers */ = {isa = PBXBuildFile; fileRef = B4BD71324832E53F4E39287E93D70953 /* xds_cluster.h */; }; - 7F473DC7C637DCBCB4431571390D499A /* http.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = E48B63F986978E616161D7455510314F /* http.upb.h */; }; - 7F4C685A862FD447AD9C96E2438F8B18 /* resource.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = D93105487CA837E2B990AF42A5B20225 /* resource.upbdefs.h */; }; - 7F6C1443D590918B0F67DDAA3965722A /* alts_zero_copy_grpc_protector.h in Copy src/core/tsi/alts/zero_copy_frame_protector Private Headers */ = {isa = PBXBuildFile; fileRef = D48DF17F9EAF85A53E7A9EF267D8E354 /* alts_zero_copy_grpc_protector.h */; }; - 7F7CD16709EC80B088347D136D25B770 /* fork.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = A6BE8BF1FD8433F227C364FFAD4BB0FB /* fork.h */; }; - 7F8744E0CB8DC25DEC60E00B47EEC172 /* nameser.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 24E16C567C345BC163E5396656A8160C /* nameser.h */; }; - 7F8F0317AAF78E19640B4EBF5A37AD22 /* getrandom_fillin.h in Copy crypto/fipsmodule/rand Private Headers */ = {isa = PBXBuildFile; fileRef = 7E31331647941860AE98099C796A3A07 /* getrandom_fillin.h */; }; - 7F96403E5E1947AAD3FDD23FCDD3E956 /* leveldb_mutation_queue.cc in Sources */ = {isa = PBXBuildFile; fileRef = CB53C71435615D531DFE8D54283F4242 /* leveldb_mutation_queue.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 7FA0C3B83AB8D8DA947A4EE7CB4F461C /* rbac.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/rbac/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = F18117D997AF0DA0C76E685ABB0E8F71 /* rbac.upbdefs.h */; }; - 7FA5B95C9EFE10FDBFD8F10C38A154DC /* FIRTOTPMultiFactorAssertion+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F21D1135ADA76CC1CC14D2C7E1E26C2 /* FIRTOTPMultiFactorAssertion+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7FAB06095AD71BB5582FAD08BE6C451D /* subchannel.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C9331B71B158937C138EDF9DCFF23B7 /* subchannel.h */; }; - 7FAFC5391E079559598D47A42418E53F /* typed_struct.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = C2B47C6868ED732C81F48D2478E8CE4D /* typed_struct.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 7FB25F14E090F17FBB1FD9510A0D89A9 /* internal.h in Copy crypto/fipsmodule/cipher Private Headers */ = {isa = PBXBuildFile; fileRef = F9F21B0F979AA45826948010F270F3D9 /* internal.h */; }; - 7FBC88A2786C500ACD6A98C0CBF97F1C /* socket_windows.h in Headers */ = {isa = PBXBuildFile; fileRef = 08B3E4C96B4854DEB61D4D1C85C5E33F /* socket_windows.h */; }; - 7FCF2249642A837E98810DD936565229 /* thread_annotations.h in Copy base Public Headers */ = {isa = PBXBuildFile; fileRef = 6A94A930055EFFE97250821CA7E654BA /* thread_annotations.h */; }; - 7FD2AC0C9D38B0616A025CF7A5CCB206 /* FIRComponentContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = EEA56E65FAF348D729981017A5F14C67 /* FIRComponentContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7FDA9DD98C0A19214932D1CBC7A20457 /* fault.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = AF8D1B8F7ED5D0D45A63EFDFB00C336D /* fault.upb.h */; }; - 7FDDE67BC3C9933B302A599064FC36CF /* channel_arguments.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0FE744B15AE82C6DC1054FCE0EF8EED0 /* channel_arguments.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 7FDEF3338FED11AEE0D7121CBD071167 /* arm_arch.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = D3BF5EB52E0DFC38A1DBF0C7336F7719 /* arm_arch.h */; }; - 7FEF2F7A4A7DD469BD46EDFC241501C0 /* channel_stack_type.h in Copy src/core/lib/surface Private Headers */ = {isa = PBXBuildFile; fileRef = 9AC3EA20738D61B8660CF5C30D1438A2 /* channel_stack_type.h */; }; - 7FF37AD142535CE40F7FED9DC3C0B405 /* flow_control.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1CFE86B54EC25DE641935FE6648E13CE /* flow_control.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 8001C4272A2088EC0E94148F46D74AEF /* status.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 91F6FAAB32BA5853A6EEA61402B30223 /* status.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 8007A02489B2621D3AA14B6E8C18F025 /* FIRGitHubAuthProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = B8FE3A01E76719B1D14F6C0CDC3EFC42 /* FIRGitHubAuthProvider.m */; }; - 80103674F5C945C1C4075D1E5B99D77B /* alts_crypter.h in Headers */ = {isa = PBXBuildFile; fileRef = 097054A92AFBBEBF210867D9C46DE3D7 /* alts_crypter.h */; }; - 80105F772EF66298F77D39C100EA4DF6 /* common.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/tap/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 771458E14AAEAFC2454009D1AF1D09F5 /* common.upbdefs.h */; }; - 801EE1C709D603939F671FA4C6E63EC2 /* FIRLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 6EA53921F2D293A9BD32DC585AC8B753 /* FIRLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 801F274A094D478329C6086EC617655C /* xds_http_rbac_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = E77CDF17D7815CBA90FDBEA6AD2371EB /* xds_http_rbac_filter.h */; }; - 802059AB59413B5285A1D29898D5FED4 /* channelz_registry.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0AEF6450BC7366BC63114C581296920C /* channelz_registry.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 80222A62B0F222E8C17FCB765187A318 /* tls_certificate_provider.cc in Sources */ = {isa = PBXBuildFile; fileRef = 80ABAE17CFDAFA8A6FC6E016036E6549 /* tls_certificate_provider.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 802F5156ACDD3C63A33A744CF4F7E9F7 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6E336DC2534E1E69B7828F6012B874C6 /* Foundation.framework */; }; - 803453B600E8E86711372D5C5B76193C /* handshaker_registry.h in Headers */ = {isa = PBXBuildFile; fileRef = A95749CF760FA5CC0AAF95B5249DB9F6 /* handshaker_registry.h */; }; - 803D543BFC69BE6E5C1DCBCDA575FEF0 /* tcp_connect_handshaker.h in Headers */ = {isa = PBXBuildFile; fileRef = A0AE58AE062E9DC688231F1E586A8F04 /* tcp_connect_handshaker.h */; }; - 803EFF21595AB40C1287A1510238E1B7 /* scoped_route.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 3DA01CEE16745AE7DAC47E0CF19A2D05 /* scoped_route.upbdefs.h */; }; - 803F643FC05989850401C4DF6FD4C25A /* lightstep.upb.h in Copy src/core/ext/upb-generated/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 833C815FB9F330DD0CCD40F832505A7F /* lightstep.upb.h */; }; - 804CD58CCCF69FBC65E565CA6FB778DC /* cordz_functions.cc in Sources */ = {isa = PBXBuildFile; fileRef = D375A4AA5D9E41785EA76FDD2736BBE0 /* cordz_functions.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 804E91F03CA744B344C6EF9E5D10EBDE /* path_transformation.upb.h in Copy src/core/ext/upb-generated/envoy/type/http/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = C11C481C8C910821E3B96E1B3284787F /* path_transformation.upb.h */; }; - 80514EE492AC9E52ACFF603E53F2D5BE /* opencensus.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = F2AC53E9D2081A7384529307D6E5D848 /* opencensus.upb.h */; }; - 8060A53D9E011AE030BB0B00032A6569 /* FIRDependency.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F8CB18879EC98AE843656870383C5D8 /* FIRDependency.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8069F9EA98276BF5F982854C985AE330 /* metadata_map.h in Headers */ = {isa = PBXBuildFile; fileRef = EF8C72DDF4645B8E68F3E8CF241F3DB8 /* metadata_map.h */; }; - 80860D425EA46B2E9CC99FE1786F976D /* client_load_reporting_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = BC610BD798B675B7AB8EFA4A20EDFFBB /* client_load_reporting_filter.h */; }; - 80873C3FC39139412A734AB96927DCDB /* slice.h in Copy src/core/lib/slice Private Headers */ = {isa = PBXBuildFile; fileRef = 0F30BB17CF6C392F9DF995C4CBE71678 /* slice.h */; }; - 809BE0BA736D07C7DA39A3D2E7483DB1 /* call_details.cc in Sources */ = {isa = PBXBuildFile; fileRef = 63BECD86605B49069EA07E39CF04722C /* call_details.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 809EC58FE5477B784E81374963B5B9AC /* health.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 6D2A23B7B598404E487E7294704E0A9F /* health.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 809F45F1FF83D592CAB19D30FD28FCCB /* x509.c in Sources */ = {isa = PBXBuildFile; fileRef = 678A0A9D19CF0E40C86CAD173BF6392D /* x509.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 80AC09523CB7A68C75A6A390012F9A86 /* grpc_service.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 3FECB813F2A9EB49EEF492BA92C86824 /* grpc_service.upbdefs.h */; }; - 80B04AD63FEB489F79F65096006FCA16 /* descriptor.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = 372FE16E9F9B80CB1F1BF5874A89F8A3 /* descriptor.upbdefs.h */; }; - 80B485E26D3E3A5D5B78B6512F5344FC /* FIRAuthUIDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 19747E4348066BF84AFD1ED2BAE50E38 /* FIRAuthUIDelegate.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 80BAE3F60D7716740C4A217BFB0384DB /* async_generic_service.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 19D405D76CF303CD18D241AE0DC046D8 /* async_generic_service.h */; }; - 810EA4965E1F8726E2420EDF27A2DF93 /* endpoint_pair_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7D91AA0C81DD626A9C53FFB68485EAAA /* endpoint_pair_posix.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 8110C3EF445E4FFE14A3A8C1C583E551 /* binder_security_policy.h in Headers */ = {isa = PBXBuildFile; fileRef = 449F252B8F734C44E2239A3321D2E672 /* binder_security_policy.h */; }; - 811876CE2EC9281142DB1003B26DD633 /* json_args.h in Headers */ = {isa = PBXBuildFile; fileRef = 4716776435D1969D8B69A39A9608C247 /* json_args.h */; }; - 81202C834C5E50C048243CE1F3C6C9B8 /* secret.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 0837FB8A12ADE2BB2305D0FEDBF7ED1F /* secret.upb.h */; }; - 81256EE4177BA8EAAFB959801BFDCFDF /* utility.h in Copy utility Public Headers */ = {isa = PBXBuildFile; fileRef = AEAC7A743D481BAE51F0D1CAACC0B82F /* utility.h */; }; - 812BB07E2042DC81355A23F0F0BD23EF /* certs.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = DDAFD55BA49B14289373BDF535EA2F57 /* certs.upb.h */; }; - 812D62A66119D7CE0FBB22EA026E80E3 /* time_util.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B1407F033A3518A8532DD705304F466 /* time_util.h */; }; - 8134448A0C310714D2113D3EFD0B346E /* create_channel.h in Headers */ = {isa = PBXBuildFile; fileRef = 277AA69A94219A1A3B3996F2FE0BB55A /* create_channel.h */; }; - 813DA38622BBE78124981CE32FCD4189 /* pod_array.h in Headers */ = {isa = PBXBuildFile; fileRef = F1796EA61C64F626AEC1E4133E7138C7 /* pod_array.h */; }; - 815B4C27156D443E0E988043A8765B40 /* internal.h in Copy crypto/pkcs8 Private Headers */ = {isa = PBXBuildFile; fileRef = 1806ECB9B1472EB77A01E6117300106C /* internal.h */; }; - 816A0C955530D519898EEB7358DE347C /* sensitive.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 0CBE2A64EC2B57F4BA89B40B812DD568 /* sensitive.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 817F340B155A5D54F22FBCC1C88FCA29 /* tls_credentials_options.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6DD3829D0B6F243C9BE2C6414DD5B1BD /* tls_credentials_options.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 818136909286AC982DDE707A77008355 /* is_boringssl.h in Headers */ = {isa = PBXBuildFile; fileRef = 59A55275A82EC3577A8D3E5E0C72691D /* is_boringssl.h */; }; - 8185694D8A8CC04B7A3E68884841088C /* rls_config.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 91831D44DBD7E8C63116361B4F889A01 /* rls_config.upbdefs.h */; }; - 8189ABE1A8A95E994F97F2052D62179C /* inproc_transport.h in Headers */ = {isa = PBXBuildFile; fileRef = B840396FE97FBC4BCAD0FA85500E8DD5 /* inproc_transport.h */; }; - 818A9A47D98A4D53A1B8326C7E259FE5 /* typed_struct.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 44604EF6DA4D53CBB1F128CAFE32509B /* typed_struct.upbdefs.h */; }; - 819F534A4C9E5A12236EB5D5D8B0FC49 /* async_stream.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = D7F6DEA3521EBB7A068040093C5F29AF /* async_stream.h */; }; - 81A7708539BBDBEF5472E2697746DE32 /* http_client_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = F4ADFCC0C49CE3161F33A0EBF1C560AE /* http_client_filter.h */; }; - 81A95DF627418D563EA9492238F2DC81 /* randen_round_keys.cc in Sources */ = {isa = PBXBuildFile; fileRef = ADE3576C2771B9A21FDAAFCDAE113061 /* randen_round_keys.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 81AA26149C24A65DB8249F3F357590AA /* endpoint.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 33448C9404020ABFFBBB0103E1001B13 /* endpoint.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 81AB639D079074CCFE6612BB5D3964C3 /* text_encode.h in Headers */ = {isa = PBXBuildFile; fileRef = 84DBC34CB824C9FDB85E6A78932C4484 /* text_encode.h */; }; - 81E6EA4C923267754FD4E54271FD75DD /* evp.c in Sources */ = {isa = PBXBuildFile; fileRef = BB2052E02E093AFF6A14E94C2C94D238 /* evp.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 81F609B3B95875E787496F3D30C84AD3 /* sensitive.upbdefs.h in Copy src/core/ext/upbdefs-generated/xds/annotations/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 8B69B44ED2929E2569D2F2EB8BCD760D /* sensitive.upbdefs.h */; }; - 8206ABFBD0C6BC92AF19E3D4BDCFB500 /* pid_controller.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = DFF27E375A3323376AC18DC40F9B8761 /* pid_controller.h */; }; - 8206D46979E9C41732FAF6DCC71FA1BE /* call_creds_util.h in Headers */ = {isa = PBXBuildFile; fileRef = C7AA36B9C1434E68861FE9865E1C6E67 /* call_creds_util.h */; }; - 8211CEA60FC048B3DB4B118CB276AE5A /* dfa.cc in Sources */ = {isa = PBXBuildFile; fileRef = 161FA1ED5BF54385AF4FBCD54B35E2B7 /* dfa.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 822151D0CD155DFF357A8C1424F039C4 /* socket_option.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 704E4963623394BFDD9FE2AD3C0748B0 /* socket_option.upb.h */; }; - 8223272A4BD892958FCCA1B508546857 /* grpc_tls_certificate_distributor.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C320D5290B6783F300E8614462C946E /* grpc_tls_certificate_distributor.h */; }; - 8226CFCD503B4BAB69B33760860CE1B3 /* base64.h in Headers */ = {isa = PBXBuildFile; fileRef = 34C42FF0416B8C107FBF9E77C4A64245 /* base64.h */; }; - 8250653FB91A537E1FF43C097E46D42A /* dbformat.cc in Sources */ = {isa = PBXBuildFile; fileRef = F794199B9FF2C10FD9B8F1272A24333A /* dbformat.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 8252FCBC0401026DA8A172FB8B92DEC1 /* rsa_print.c in Sources */ = {isa = PBXBuildFile; fileRef = D76EA98DFDC52709CE701A382BBE4154 /* rsa_print.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 8266F5E3AAF87742C791BAD26E57EB87 /* cert.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = B0D66B5C0FD6D8CAE0035E3F9AC0733E /* cert.upbdefs.h */; }; - 826C89E8A459A3DE8143367E37C2AFF3 /* route.upb.h in Copy src/core/ext/upb-generated/envoy/config/route/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 6F78BA2CAEA88F2C95083F594C34C93A /* route.upb.h */; }; - 82822A254FF7853CCA7B65C3B7D49BA4 /* i2d_pr.c in Sources */ = {isa = PBXBuildFile; fileRef = 1F096285F1E2CFFB1BAE1DBD7FA0DEB2 /* i2d_pr.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 8284A7D7DBF32B05B0EAB4DECCFC2BEF /* grpc_method_list.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = B049DE461AA1CC94A072979096BE57C9 /* grpc_method_list.upbdefs.h */; }; - 828FB02F07DFB5242BE134F25E2B8E4F /* sync.h in Headers */ = {isa = PBXBuildFile; fileRef = 1433FF61669DF6AE8B034989C2EE7053 /* sync.h */; }; - 829F1BDEEF98D376525D0F9F2A650849 /* xds_channel_stack_modifier.cc in Sources */ = {isa = PBXBuildFile; fileRef = C1CB54704B19B21DEA50476AA628E855 /* xds_channel_stack_modifier.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 82A39DAF29BEB3A60C0516BF088ADCE6 /* upb.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 892B3166A4777892545AD11693713149 /* upb.hpp */; }; - 82CEC4F700692639BD2B8234ED7D2717 /* compare.h in Headers */ = {isa = PBXBuildFile; fileRef = 2BB09620E3329C4697D1C8DF68E622DA /* compare.h */; }; - 82D2864797C5FB3D0FCBAC0AD68D166C /* fault.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/extensions/filters/http/fault/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 950AA27C19BE01503CAA741334CFD596 /* fault.upbdefs.h */; }; - 82D450312376ECC2E2F566D4BBF46514 /* route.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = D45D22553C3851EB16BA74482301FA4C /* route.upb.h */; }; - 82DA20FB24833C11763382CD5BF33DBF /* objects.h in Headers */ = {isa = PBXBuildFile; fileRef = B23AAD761EF0D909CE2A8A5E5454A766 /* objects.h */; }; - 82DC0D0FBD097DC568D21FD47A3D155A /* tsan_mutex_interface.h in Headers */ = {isa = PBXBuildFile; fileRef = BA4DB91A6D868983A1E3BEF6678933C7 /* tsan_mutex_interface.h */; }; - 82DC141F12D726D2BC2DA9566FBEF002 /* channel_args_endpoint_config.cc in Sources */ = {isa = PBXBuildFile; fileRef = 88907C487E988862F14CEA3593405F88 /* channel_args_endpoint_config.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 82E46A172BBC230958F500765DF556A3 /* FIRLoggerLevel.h in Headers */ = {isa = PBXBuildFile; fileRef = 272C40603E0783146AB87E36FD410B4F /* FIRLoggerLevel.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 82EB8E70B66F82EE2B5E5D39854AE583 /* message_size_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = C8D5AA504C413C950D1B594F15E196E8 /* message_size_filter.h */; }; - 82ECAFE6D852BC18DB152E971526E99B /* retry_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = F5D6F7A3EC34FE8878B6884226D55150 /* retry_filter.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 8311C502A12A668388699E752F9DB880 /* win_socket.h in Headers */ = {isa = PBXBuildFile; fileRef = 43473412FF8B04FB6CDF0EBA049B58F1 /* win_socket.h */; }; - 8319DF9A3652B61EA1052CD1B5BC8CD0 /* xray.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 705AFF135185C9A6F901F184A2232449 /* xray.upbdefs.h */; }; - 831F8148B47A384D7C5DAE21B6865997 /* server_callback.h in Headers */ = {isa = PBXBuildFile; fileRef = C95516337BF933091D542718E81FFFB8 /* server_callback.h */; }; - 8320385D55C4648DE8B4E309AEBE0A6F /* tls_security_connector.h in Copy src/core/lib/security/security_connector/tls Private Headers */ = {isa = PBXBuildFile; fileRef = 4FD27341A0A00B409A56F98B50F74B70 /* tls_security_connector.h */; }; - 8323C90F8284C17E4A663A6A5EBDBCF2 /* resolved_address.h in Headers */ = {isa = PBXBuildFile; fileRef = 6FC58F6072465A6829CCA8C8E8FF0F10 /* resolved_address.h */; }; - 832A7692F20985DC7B09B7E58A22E65D /* x_pkey.c in Sources */ = {isa = PBXBuildFile; fileRef = 5613C337AA35BB54C1118672B3A575E8 /* x_pkey.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 833989F339B05A7C59BC675B44B1A16A /* address_is_readable.h in Headers */ = {isa = PBXBuildFile; fileRef = 7DA007BA7B0B8B194EA631107E77EE06 /* address_is_readable.h */; }; - 8339B5472DD45F2D9AC5A64EED308D2B /* internal.h in Copy crypto/dsa Private Headers */ = {isa = PBXBuildFile; fileRef = 44E0887652C53813B7152574FD40C54F /* internal.h */; }; - 833F9597CF631120E7F96B3F5ADA42FA /* security.upb.h in Copy src/core/ext/upb-generated/udpa/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = 0A174314C39D401855EA85B42396433A /* security.upb.h */; }; - 8344451ADF865DB6BE012FE201C335C6 /* service_config_parser.h in Copy src/core/ext/filters/fault_injection Private Headers */ = {isa = PBXBuildFile; fileRef = 38AFFF99F7E583F7A5049E6FE6826FB0 /* service_config_parser.h */; }; - 834F6105DD0659723F6999D280F2BBD7 /* FIRAuthErrors.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A23B807B03895BC98C5B37DA78E17BD /* FIRAuthErrors.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 835E3D2498166A2CB8D298A1BCACA8D8 /* retry_service_config.h in Headers */ = {isa = PBXBuildFile; fileRef = 01CF51B3954682CC39060D76C17E7D9B /* retry_service_config.h */; }; - 836A5F81FB31C620B7F29CA5815A0202 /* struct.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = FD8D010B341CD186B2702FB0FE810381 /* struct.upbdefs.h */; }; - 836C460BB7A08AE2E1F5AE731D80ACAB /* pcre.h in Copy third_party/re2/util Private Headers */ = {isa = PBXBuildFile; fileRef = DBE408820750FA7C8A0F46359A6DEE21 /* pcre.h */; }; - 837391E165E7B6680826B83B7B62FDC7 /* endpoint.upb.h in Copy src/core/ext/upb-generated/envoy/config/endpoint/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 2D56127644C72E2FD0CCEB3AC015FE17 /* endpoint.upb.h */; }; - 837C54DE585C95D1A5193A0F9F5F085C /* subchannel_stream_client.cc in Sources */ = {isa = PBXBuildFile; fileRef = B79AAE9737B55DD1BB069A1BCA08F25E /* subchannel_stream_client.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 8394B3BA10453266E829C19B634720BA /* ssl_session_openssl.cc in Sources */ = {isa = PBXBuildFile; fileRef = 701ED1E54D3281E8E45BDDB3CD61B06F /* ssl_session_openssl.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 83A8FF6EF1B123869CC242E83AABE446 /* curve25519.c in Sources */ = {isa = PBXBuildFile; fileRef = 61F1B4D8F8EBCD0425109556F925ACBB /* curve25519.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 83AE50527CA904102C6AF828AA76407F /* unicode_groups.h in Headers */ = {isa = PBXBuildFile; fileRef = 4418C9424B02438767AA9101D620F065 /* unicode_groups.h */; }; - 83B206D10ECC7596A740A378E674B917 /* struct.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = A501483E8B822A0B814FC13801F2C284 /* struct.upbdefs.h */; }; - 83B4CEB2EEB8ABBCA0FCE6C9E7FA1F54 /* descriptor.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 57B9BF3CF08822683DDCABC109ADD823 /* descriptor.upbdefs.h */; }; - 83B9DCCCC8B62FB8F7FDECA749C59CC6 /* external_connection_acceptor_impl.h in Copy src/cpp/server Private Headers */ = {isa = PBXBuildFile; fileRef = AD59B65829EA51515373573B12B1F26E /* external_connection_acceptor_impl.h */; }; - 83CFD14CB20D40B05A8A7470B72D81CE /* ratelimit_strategy.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = F61F4DF6EA38468A07001EA30ABD8AC7 /* ratelimit_strategy.upbdefs.h */; }; - 83E3144872413FC86E9648FB7CDE4194 /* router.upb.h in Copy src/core/ext/upb-generated/envoy/extensions/filters/http/router/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = A6BC67CC6919CFE6542F8FD649405150 /* router.upb.h */; }; - 83EC9CAB3CF6129A1C7DCF3AEC979955 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6E336DC2534E1E69B7828F6012B874C6 /* Foundation.framework */; }; - 83ED38E3BDC02DC98E755657E943499C /* listener_components.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = FE5BCFBC5B737B214D858E84E1EA24AC /* listener_components.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 83FE83A08DCA3973FB5A73DC82CDC420 /* resolver.h in Headers */ = {isa = PBXBuildFile; fileRef = 19CA51DFF75942055965196F29F926E2 /* resolver.h */; }; - 840CA0042F38D5A6D19DA782D89C6156 /* FIRAggregateQuerySnapshot.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A6B4D168909FFE3DB0751F19111BA23 /* FIRAggregateQuerySnapshot.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 8428E9A27008AC3726F21BDEAC7C97A4 /* a_utf8.c in Sources */ = {isa = PBXBuildFile; fileRef = 7EE33608D2C44C8E4F5F0D8A53C896E7 /* a_utf8.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 84343CB3EC4B396FCEDDC2484BA7A76F /* mutex.h in Copy synchronization Public Headers */ = {isa = PBXBuildFile; fileRef = 5E373C39844A705F9266F61407512500 /* mutex.h */; }; - 8435EDD332EF43BCA7709432D1686974 /* chttp2_transport.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 4DC81F445E70B55FF44852E0A692D918 /* chttp2_transport.h */; }; - 843A557D70D4526E2FA5AA68F56E8478 /* extension.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 37723074CAD3AD2A43F4D33146D841F3 /* extension.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 843EBC6A485D559C7A5FE84D1DE32F6E /* int128_have_intrinsic.inc in Headers */ = {isa = PBXBuildFile; fileRef = 5220BA4693B0224BC4F12CF8D5D39683 /* int128_have_intrinsic.inc */; }; - 8444A90CCBAC08EB5680FDD5AF1DDEAC /* ratelimit_strategy.upb.h in Copy src/core/ext/upb-generated/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = AC40AB2ADE36E501E757D387E042971E /* ratelimit_strategy.upb.h */; }; - 84463A02B79B99EEF8499A7EFBD75B9A /* grpclb_balancer_addresses.h in Copy src/core/ext/filters/client_channel/lb_policy/grpclb Private Headers */ = {isa = PBXBuildFile; fileRef = 6D0176963172D4448F8F3BEF74E31304 /* grpclb_balancer_addresses.h */; }; - 844DBDDEF360B54BBD4D46823AF29F2D /* regex.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 348763B349FB3F41AEBE8E7B5A6CA1D1 /* regex.upbdefs.h */; }; - 845CF5B94C6815A08E7518AAEC9D3103 /* nonsecure_base.h in Headers */ = {isa = PBXBuildFile; fileRef = E4884CAB7203FFDAF568C34AF1228BA8 /* nonsecure_base.h */; }; - 845E36A2A0D77A2A6CDABA61DFC823C2 /* async_queue.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1051391B51DB9F66BCA46C51564875C1 /* async_queue.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 845FC1B4CA6996B26111F1B1F0972C79 /* lb_policy_registry.cc in Sources */ = {isa = PBXBuildFile; fileRef = 55F29C12F604DCE7A9D041D44D3D5970 /* lb_policy_registry.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 84813DBD78D24091C661FAE88B5B5043 /* x509.h in Headers */ = {isa = PBXBuildFile; fileRef = 273BBB9C7518ABE9ECC1856C3244B8B5 /* x509.h */; }; - 849B30D5D5684E2AC712CBEB15C6849D /* server_posix.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 4030873CD5D0678DDD37C92A24FEAFDF /* server_posix.h */; }; - 84A6374A8A0A18FAB405FA8434DF06A5 /* FIRConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = 057F035ACC2998725CF70C872F4790E8 /* FIRConfiguration.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 84A67915D29E2BD5F79C40774F5E91CB /* alts_record_protocol_crypter_common.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7DE5B1BD6CCA627B9C1E442A02607ED3 /* alts_record_protocol_crypter_common.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 84B0F75AAE618EE9812B1915F6DDB1A2 /* FIRFinalizeMFASignInResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 84DCC47D2A287317E3B7281F2A4C8983 /* FIRFinalizeMFASignInResponse.m */; }; - 84BFE52A100C1455CE5DD7973D68DC2B /* direct_mmap.h in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 5BE3EC3AC7EE796933EB91AF442728B6 /* direct_mmap.h */; }; - 84C6C24FF355B977A59CC534DA465E91 /* resolver.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 084247E0555A377384C1F32187EC33E0 /* resolver.upbdefs.h */; }; - 84CE9DD17BD60223F4CB8AD51358E5ED /* threaded_executor.h in Copy src/core/lib/event_engine/executor Private Headers */ = {isa = PBXBuildFile; fileRef = 0475F33986AB736E29D0789982EBBA3F /* threaded_executor.h */; }; - 84E6613EF5D46A09E75426B38F96CC61 /* table.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E8628A56468D58FC7C1FA03B6DADFC0 /* table.h */; }; - 84EA4BCF4C51DB72886D4E20848385AE /* placeholder.m in Sources */ = {isa = PBXBuildFile; fileRef = 84E1EDE793D455A175F566985BD39333 /* placeholder.m */; }; - 84EF9F04849F1D299FA2D46EF9BA7A62 /* address.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = F9D1FAC6F3229F0B1BBDB12AFBD1AB80 /* address.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 850227AA651121CB3A008A15D328704E /* FIRGetAccountInfoRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 235F4F298E58662098A2AA7BAF003121 /* FIRGetAccountInfoRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 850C841A607EE381BE3A4FC8CFD232EC /* checked.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/api/expr/v1alpha1 Private Headers */ = {isa = PBXBuildFile; fileRef = 35C9072FE84E4E63B48146BC96926907 /* checked.upbdefs.h */; }; - 850F89C3A40F8BA6DE30FB246847108E /* a_sign.c in Sources */ = {isa = PBXBuildFile; fileRef = 743F46C3D5B26AA01734985901489905 /* a_sign.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 851BA8776B16287A16007AD6A45E44BA /* document.nanopb.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3B42AA4452710A4A8E01539C22D553C4 /* document.nanopb.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 85245FC9F92AE75324DD866A97F40FFF /* FBLPromise+Validate.h in Headers */ = {isa = PBXBuildFile; fileRef = EAA6B469339FF8B3EBC771E2F8E21BBB /* FBLPromise+Validate.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 8529B2F3A2A74448117FA271A8230E96 /* security.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = C1574DE6547C8374619C026FE8A0661E /* security.upbdefs.h */; }; - 853149629E5AD6F57C3B584B32374A56 /* output.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0AC6F56A2FD8AB2FEE770005A53062D6 /* output.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 85351F3C512182DBA9775447D5731B8B /* server.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 12BC94FF43BD63CDCE5CD5D9A5A6B00E /* server.h */; }; - 85597F3D7E858115BA6D40C71A49B3C0 /* document_key_reference.cc in Sources */ = {isa = PBXBuildFile; fileRef = A7C7926ABCF4E74D14D82CD40AFBA279 /* document_key_reference.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 8587B3A7E9158E27A3E756F06AC4F305 /* dynamic_annotations.h in Headers */ = {isa = PBXBuildFile; fileRef = 0140638BBE5441051DE83716D249E419 /* dynamic_annotations.h */; }; - 858A60CFF3BF002A7EAE1DB24EACABB9 /* base.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 00A47C8B6DD59E2481D98DC277879480 /* base.upbdefs.h */; }; - 859304782A7F09B7DA3C33B46A5F1BC0 /* validate_metadata.h in Headers */ = {isa = PBXBuildFile; fileRef = A8D0DD280B143554F2857DC8936CCEB5 /* validate_metadata.h */; }; - 859ADEBEFD75B9FD96B8D86917D4E8B1 /* service_config_parser.h in Copy src/core/lib/service_config Private Headers */ = {isa = PBXBuildFile; fileRef = 11B297C02EEA2400F5DEB2B561B9AD67 /* service_config_parser.h */; }; - 85C0529C1A9946F1AEB6525B144A3898 /* kernel_timeout.h in Copy synchronization/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 3FD506A5CBFA0523639A3865A5C91A8B /* kernel_timeout.h */; }; - 85C43865AA273FCE471711561E27509C /* FIRAuthProtoStartMFATOTPEnrollmentRequestInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = DAFFAB72AD2CC5C653A2036477B65553 /* FIRAuthProtoStartMFATOTPEnrollmentRequestInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 85C60ABAEF7DCF3BEE81517D888095CE /* chttp2_transport.h in Headers */ = {isa = PBXBuildFile; fileRef = 4DC81F445E70B55FF44852E0A692D918 /* chttp2_transport.h */; }; - 85E280827BFF4DC2F803CB5BC7DF1777 /* api_listener.upb.h in Copy src/core/ext/upb-generated/envoy/config/listener/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = EC23DFC8A8AF7E565DD21186A66EBA6C /* api_listener.upb.h */; }; - 85EB5A4E446D8B49076EC7818B043664 /* FIRAppInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = C954E279229A719F98B3AF78ED6E2450 /* FIRAppInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 85F981CD34F601345EE6F3FE33296AEE /* f_int.c in Sources */ = {isa = PBXBuildFile; fileRef = 4270ACF9D8572C36B9895119689F73DD /* f_int.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 8603EDB76C48E6174D9B29DDC1BFE36D /* string.upb.h in Copy src/core/ext/upb-generated/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = BC57ECE84E3252A14E6F994ACB1C3BEE /* string.upb.h */; }; - 860711BF38220505BA966A1B6950880A /* client_channel_channelz.cc in Sources */ = {isa = PBXBuildFile; fileRef = 900319D93BC6A070EFF660C655506A07 /* client_channel_channelz.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 860D74354FCF8DA1C344A300F4D14416 /* sockaddr.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = E697E9B2A859FE83DFE63A97032ABCAF /* sockaddr.h */; }; - 8620C47400CF8D4A300C66281291B93B /* status_conversion.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0C7097935DD467C1ABE0EBA62D15FC44 /* status_conversion.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 8658A183E4A621051A8A4548E3327929 /* uniform_int_distribution.h in Headers */ = {isa = PBXBuildFile; fileRef = 859BB94E68D3ECA7149DE29BA6B59C5D /* uniform_int_distribution.h */; }; - 865B2ECA39F785C538C2AF78300A9552 /* client_channel_channelz.h in Copy src/core/ext/filters/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = AD8BD74603E3D6BCEC62D93F5D7C5653 /* client_channel_channelz.h */; }; - 8663FF01C07AEC5475B36406F9CC8620 /* iomgr_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = DBCFDC629FB39D3F37E1BD3238A12F04 /* iomgr_internal.h */; }; - 8668DAEC92C625F5A31B7CF13ACA65C0 /* resource.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 7CF9C3C087CFA7A8AD1B20EC33C89758 /* resource.upb.h */; }; - 867BBACE89C7263E3EC812258E100148 /* log.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = CD64E9DF8BADDE0676DB065A2EC6360B /* log.h */; }; - 868653BD2A46C13A0D24FAF1212A97EB /* grpc_ares_ev_driver.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A993101D8FE0C50A170CA30BB76C3C6 /* grpc_ares_ev_driver.h */; }; - 8686CE79EDAAC9EB391693D2006496AD /* fault.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = D596344E8F39FAF00FD3C8A5D2E4956D /* fault.upb.h */; }; - 86BA80E6C851B9A9D8DA7710BC856DB4 /* dumpfile.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1DCA68242C6ECF011E50B44F3FEF54D9 /* dumpfile.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 86E0E1DEE3E801BD1C5BB78346AEE9A6 /* plugin_credentials.h in Copy src/core/lib/security/credentials/plugin Private Headers */ = {isa = PBXBuildFile; fileRef = 00AAA4DD02F35853A27F6E5CA59DEF06 /* plugin_credentials.h */; }; - 86E4DB2BBFA85C439F88FF78245B5E71 /* stacktrace_aarch64-inl.inc in Copy debugging/internal Public Headers */ = {isa = PBXBuildFile; fileRef = DF3232B0650662692F09AA76FCEEA3A8 /* stacktrace_aarch64-inl.inc */; }; - 86FC9D29151769DD3A00883F868AC7E5 /* windows_engine.h in Headers */ = {isa = PBXBuildFile; fileRef = 51AA7CF048C27C081307004296AD222F /* windows_engine.h */; }; - 86FCC7AE0DEB366C1FA26FEA631E317F /* array.c in Sources */ = {isa = PBXBuildFile; fileRef = 6EE547D31092B02089AAC11D9648A6B8 /* array.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 871632E6BC48D623CFAB0E31EAA3E8C6 /* syntax.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = BAE85648440381407F11E50159CB1701 /* syntax.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 8720694652FF0DE4B34E602CF8CBA6F5 /* stats_data.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D598A2C214CD177CFE95CEB5B1784DF /* stats_data.h */; }; - 8734A22FD3B63274A31FBCBCDFDCD528 /* byte_buffer_reader.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 7F600549E4C3CAEA911C297F7263C803 /* byte_buffer_reader.h */; }; - 8734D71DE53492B7B0D613DA0AC04A2E /* json_util.h in Copy src/core/lib/json Private Headers */ = {isa = PBXBuildFile; fileRef = C1F8550FF099F093E51C3BDF4A0F798F /* json_util.h */; }; - 873B1ECFE169619DB733938DE17F0B9F /* channel_args_endpoint_config.h in Copy src/core/lib/event_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 83F728CDE206600531C8D2129D28BD4F /* channel_args_endpoint_config.h */; }; - 873C0F2360E38D1D9612B3DE59D838EA /* errno_saver.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C4402D5341D22672D9FDE780779B8D3 /* errno_saver.h */; }; - 87450994047B8587C17572001173096A /* channel_stack_builder_impl.h in Copy src/core/lib/channel Private Headers */ = {isa = PBXBuildFile; fileRef = A590B23F87299401E5D446F0B1E26DB3 /* channel_stack_builder_impl.h */; }; - 874CB21AFE49617E8A9CC1EF02013AA2 /* asn1_lib.c in Sources */ = {isa = PBXBuildFile; fileRef = 743688AFD27011B2BB26EB443359FF18 /* asn1_lib.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 874DFD503F70475988D2D42B50142849 /* common.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 29F3AAFE1C57026B4889429C58EE7A25 /* common.upbdefs.h */; }; - 875ACEBA13D954AC225C513400135FCF /* method_handler_impl.h in Headers */ = {isa = PBXBuildFile; fileRef = 19A23E1AD61FD7EC04565C3077754E2F /* method_handler_impl.h */; }; - 87605CD1120BEE74133915A6E64099C2 /* latlng.nanopb.cc in Sources */ = {isa = PBXBuildFile; fileRef = D124BAB3F5939B75FF57C3B11057CD5B /* latlng.nanopb.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 8760BBB31809EF34062ECCF9CE5FCFCD /* metadata.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AEB08A55A2FF9FF722C548609176A1B /* metadata.upb.h */; }; - 876ADF99B121A110BCB72D47E801D235 /* stats.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 26A16F1D6A10BE5A569C15FEEF003DA9 /* stats.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 87707E083758ED3B28EB92208ACBB46E /* common.h in Headers */ = {isa = PBXBuildFile; fileRef = 42D34499225FBE825CADB32FCF087DE9 /* common.h */; }; - 8771ACA2B1DBDB87FDDC2EF979DE606A /* str_join_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 68A82223FFE7CB8C76ED7DABA9BEA2BB /* str_join_internal.h */; }; - 87741114400EF0B95535C8432F5C149A /* subchannel_pool_interface.cc in Sources */ = {isa = PBXBuildFile; fileRef = 71510BBCBAA823517D5993F358795D45 /* subchannel_pool_interface.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 877DB4E6C5A9DEBFAF1FC964595B0723 /* arena.h in Copy third_party/upb/upb Private Headers */ = {isa = PBXBuildFile; fileRef = 4EEE09F9719B9D20921FAB9F9B184F3E /* arena.h */; }; - 87875521827209989FB75A8C2BDC501C /* ring_hash.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = F5494FBC2F9372FB7EFF9C480BDBF6E9 /* ring_hash.upb.h */; }; - 878BA0F0C37EABEC243F2CB197189E08 /* status_helper.h in Headers */ = {isa = PBXBuildFile; fileRef = B51D4BC7B2A5193A66A3D2D8584FDB2D /* status_helper.h */; }; - 87A9B8D317C4CA921AC04338F35D0555 /* endpoint_binder_pool.h in Copy src/core/ext/transport/binder/client Private Headers */ = {isa = PBXBuildFile; fileRef = 3E21D04A398C9A1C5EFC27FAA6DD00C2 /* endpoint_binder_pool.h */; }; - 87B2EB0D505DCF61FD663D0406CE053C /* dynamic_ot.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 9D2A7B1D09398165CBDD927370EC0B9B /* dynamic_ot.upbdefs.h */; }; - 87BA190A931D9247BD4600724742CC34 /* xds_certificate_provider.cc in Sources */ = {isa = PBXBuildFile; fileRef = 88F476F024A5374395E5DD65C0114F80 /* xds_certificate_provider.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 87BA8F8BE9C449FD29B21037C83A3179 /* opentelemetry.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 2EE8E21BA32861296FB6B8FCB845190A /* opentelemetry.upbdefs.h */; }; - 87BB4FA9FBFD67F3E765DC1C32BEC171 /* filter_policy.h in Headers */ = {isa = PBXBuildFile; fileRef = E26C9890F315455BFF8147617B8CC0A3 /* filter_policy.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 87CD815B600A7B0FECCCFC02E8A14E89 /* backoff.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 5583D02FF8953D0C6D07E80775C48E90 /* backoff.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 87CE08889ACC70F562C21417D8D302EF /* query_engine.cc in Sources */ = {isa = PBXBuildFile; fileRef = B1C628BACBB47F27BADBCEC465ABE673 /* query_engine.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 880D3AF307536270383B04DEFD0EB097 /* firebase_metadata_provider_apple.mm in Sources */ = {isa = PBXBuildFile; fileRef = 708A1BBEBC5941DF207B0F0AEC54915C /* firebase_metadata_provider_apple.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; - 880FA0FDDCB1A10364A26CEF875912BB /* FIRPhoneMultiFactorInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 229BEB63A60FEEF7753A113423A4B18E /* FIRPhoneMultiFactorInfo.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 8811E81754FA37A2B389AC3933DF3D4F /* httpbody.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = FE59ED425389FDDB9FFD7FB5046E6A43 /* httpbody.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 881D485A62D320C37E24688E6723E9A5 /* memtable.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1527270284137C30928989B2ED726C0B /* memtable.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 882BA104401824F99A6E769E3893176D /* randen_engine.h in Headers */ = {isa = PBXBuildFile; fileRef = FC3C2890BCDB5519C0FDB4C3BC83DC67 /* randen_engine.h */; }; - 882F5D3A2CEF9C58D4DF66C8D74BB9E1 /* grpc_tls_certificate_distributor.h in Copy src/core/lib/security/credentials/tls Private Headers */ = {isa = PBXBuildFile; fileRef = 36F0DCAEBD3D688E3154982FBE823F25 /* grpc_tls_certificate_distributor.h */; }; - 885F7C1521D7B7E93D9AA24A6DBFA955 /* mutex.h in Copy third_party/re2/util Private Headers */ = {isa = PBXBuildFile; fileRef = 31008F3EF87979E7EAA163916EF64D83 /* mutex.h */; }; - 88665A6F585AE5216BE653B9897468F9 /* time_precise.h in Headers */ = {isa = PBXBuildFile; fileRef = D4BD0B25405CDF3E185B7EB2C11AA568 /* time_precise.h */; }; - 8880952CE3CDE4DA33507C9ABCF4DE42 /* jwt_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9E38D381480C9705CE766A4C9C7B88F8 /* jwt_credentials.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 8889C7FF7D6BDCAFC8551DDD7A2EF61C /* client_callback.h in Headers */ = {isa = PBXBuildFile; fileRef = 037BA24CC125A5F3EC651AE71CFFFDFE /* client_callback.h */; }; - 888FCE63FCBE0332B521D8BF7FD275C8 /* rbac.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = E4183EBAA2C8EEFD2A4BDB04924BCE7D /* rbac.upb.h */; }; - 889218079C835ADC583015D73A365690 /* cord_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = A942CC33E482BF6965F3962A0833FAA3 /* cord_internal.h */; }; - 88A6F21E2F1A7A8745FC325C19244C70 /* validate.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 1BB50308DCB51A0A5C426E4A32A8EE8E /* validate.upb.h */; }; - 88AAABA6BD5907AB84118418B572E04C /* table_builder.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E5FF95446D1DF5956622C8B460E18B5 /* table_builder.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 88AEC180D5618D5C177665D8465CEA32 /* internal.h in Copy crypto/evp Private Headers */ = {isa = PBXBuildFile; fileRef = 6610712D920973C1CDA4D107D969B88A /* internal.h */; }; - 88BC6B8EF774D22C135B11F7FD25AC71 /* http_connection_manager.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = E099D98B5084FC92BE40EEA0F7951682 /* http_connection_manager.upb.h */; }; - 88C0EC7419DCF969EE78B49FDB454DC7 /* http.upb.h in Copy src/core/ext/upb-generated/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 8118F123AD46EE0C21B3868128CDA121 /* http.upb.h */; }; - 88CAF16E6BA06515308E17FD98950D9E /* internal_errqueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 83DD8EC8753EDE10EFE3C0A163FA0164 /* internal_errqueue.h */; }; - 88D3E92C293AFA821CA54D8DFB88D1A1 /* base64.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 34C42FF0416B8C107FBF9E77C4A64245 /* base64.h */; }; - 8912EB8DB0BBFFD1B6FE7D2E39888BBF /* bootstrap.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/bootstrap/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = D11AFC4F7281A4FB709BD97F8A6D5158 /* bootstrap.upbdefs.h */; }; - 89184047B47896FF9C61F88B7228F615 /* time_zone_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = A2FBB82FC4992CA4C6AD9D537DDBB59A /* time_zone_posix.h */; }; - 8918C4EA6F148F0CC441CB28B959A3BB /* basic_seq.h in Headers */ = {isa = PBXBuildFile; fileRef = BFDAF4BC61A6DB8169F75C58AF273549 /* basic_seq.h */; }; - 891989BA158434CFC2838AB34E1025E8 /* nfa.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9BE306249FBC7E0D62A0DFC3DB552E79 /* nfa.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 891B2DAC219DB1930B1020D477F5F58A /* cluster.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 09E776A4A87E067224D392D2A2C43C0B /* cluster.upbdefs.h */; }; - 8931EE2C291049A2F8F5F30EF64A9E68 /* GULAppDelegateSwizzler.m in Sources */ = {isa = PBXBuildFile; fileRef = D46123D9E6A3DEE6CB3E306CB79D917E /* GULAppDelegateSwizzler.m */; }; - 894267671FA8E06733CD5C83F2784DA6 /* gaussian_distribution.cc in Sources */ = {isa = PBXBuildFile; fileRef = 60F65B0E1AB5434E5FD6A5EDE06D8198 /* gaussian_distribution.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 8945787F1C576A0B5ABF49136CF81E62 /* rls.upb.h in Copy src/core/ext/upb-generated/src/proto/grpc/lookup/v1 Private Headers */ = {isa = PBXBuildFile; fileRef = 9205C24B2F9D4090414E476A661067F8 /* rls.upb.h */; }; - 8955EA6F7190EC846FACD1E7FBB420D5 /* tcp_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B097773EB8859DC62C5F211C7FC588D /* tcp_posix.h */; }; - 895C2E1C0E392319EA68FEAB44B0A20F /* single_set_ptr.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = C2EE68D496B77A1EA9DFF0475B27D8AF /* single_set_ptr.h */; }; - 8998BA3238A9A86485E166A10D21526D /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = BF65F024458FD5B168F862AB8F2A3C2A /* internal.h */; }; - 89ACC1E096D5B9B20F2ED920E0D898C7 /* GULKeychainStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = 353A7C68D6C4588F7CB2E33F969352F5 /* GULKeychainStorage.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 89AD94B705EE87A51CA8B9819EEF6413 /* file_external_account_credentials.h in Copy src/core/lib/security/credentials/external Private Headers */ = {isa = PBXBuildFile; fileRef = 77F45682034E5E49781F6B95BA3D8A07 /* file_external_account_credentials.h */; }; - 89B0956F8F8AC0039DC23E0A9B9B19BF /* randen_hwaes.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43D080E10B8A1E9B406CF5D329BF4816 /* randen_hwaes.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 89B46DC28B356D0C34DF8581E604B99E /* xxhash.h in Copy third_party/xxhash Private Headers */ = {isa = PBXBuildFile; fileRef = B5E71F87BD6147B0ACDFF286973E25B0 /* xxhash.h */; }; - 89C6001014A1F6A6DF2074A95F3DEBBE /* status_helper.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = B51D4BC7B2A5193A66A3D2D8584FDB2D /* status_helper.h */; }; - 89CA49027B942CFAAFC424B3251475F6 /* xds_channel_args.h in Copy src/core/ext/filters/client_channel/lb_policy/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 4DE350BCAB150FD0C901C800523B0F62 /* xds_channel_args.h */; }; - 89D21FC61179D2D78FC5B3AC405E8AA1 /* api.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5867EA59171E5DECD72FA35F7304D76E /* api.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 89D30D56E226B4B97DE9FBE7ACA19BEE /* exec_ctx.h in Headers */ = {isa = PBXBuildFile; fileRef = 2848F4F17649B517CB956FFC47DC5FB0 /* exec_ctx.h */; }; - 89DF4C08075B409A05EFC139DBDE5AAD /* tcp_connect_handshaker.h in Headers */ = {isa = PBXBuildFile; fileRef = FA2B94669A65E25D50A5496932688F75 /* tcp_connect_handshaker.h */; }; - 89E12DC041A190ED462298DE9CE2321A /* FIRLoadBundleTask.mm in Sources */ = {isa = PBXBuildFile; fileRef = D58BC2035B9E4E9E6811E3A54550BF86 /* FIRLoadBundleTask.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; - 8A04407107AE8B5314740136D9D4A33A /* path.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = EE3349D76C260DC8862FA0BA21E82D68 /* path.upbdefs.h */; }; - 8A148638527042553377A20B9663D7D2 /* tcp_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0CE3451B14BE5098477B01EA631A96E6 /* tcp_windows.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 8A1B2680E61B792C4A6BDA8B3F3987E2 /* testharness.h in Headers */ = {isa = PBXBuildFile; fileRef = 197FC775AC7F9B944D4C143EC6AA9DB7 /* testharness.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8A1B3EB2FB52F95CB407DB88F89EB004 /* discovery.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E80C3622404D773E90B3F164B70C3B3 /* discovery.upb.h */; }; - 8A1FA6C371C1E07D58EE79EC5576B8C2 /* annotations.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 89D0043EF749D56A94B5117B1D4E74D2 /* annotations.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 8A30ACD8F23325C33705CF0024C8AE41 /* match.cc in Sources */ = {isa = PBXBuildFile; fileRef = 28F96F1F4AFD4BFA8332B5D8AC7A6279 /* match.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 8A33918A56AB11BCEDD4E604E5C56ECA /* channel_args_preconditioning.h in Copy src/core/lib/channel Private Headers */ = {isa = PBXBuildFile; fileRef = 74D7F480294415E5454C2A8DB654303B /* channel_args_preconditioning.h */; }; - 8A554824E74FB72A2B97BC28C5C0523F /* cord_rep_btree_reader.cc in Sources */ = {isa = PBXBuildFile; fileRef = D701E6D06E679EFC4291D78D67B240F2 /* cord_rep_btree_reader.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 8A5B6C1A1AC72355F10C5C80354921CD /* grpc_service.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = A34E7F79675E30FBA8CF8367DD807154 /* grpc_service.upbdefs.h */; }; - 8A727FB7852D501A5BD49E7BCC82D0CC /* health_check_service_server_builder_option.cc in Sources */ = {isa = PBXBuildFile; fileRef = E6A272C5CCAC0A3DF3925E19ED0B39EC /* health_check_service_server_builder_option.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 8A75F0C5D1CB01E047B90D2D52933C69 /* uri_parser.h in Copy src/core/lib/uri Private Headers */ = {isa = PBXBuildFile; fileRef = 9A408115164A172F3148FAFFAF54D060 /* uri_parser.h */; }; - 8A89CE95BC336E249C069B1FF2456988 /* percent.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = F395F8D79F57649DFC66E0C99EDA7BF9 /* percent.upbdefs.h */; }; - 8AB53ECA49C1354EEC040EE4C1C866FF /* status.upb.h in Copy src/core/ext/upb-generated/google/rpc Private Headers */ = {isa = PBXBuildFile; fileRef = 1F652B140E607983B920F4855C0736F4 /* status.upb.h */; }; - 8AB85AFA78ED0B818F7B7047E89D4440 /* any.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = 1CD401271C3860EF454268A51B4C91FC /* any.upbdefs.h */; }; - 8AC1632C9B6ECEF4E3D4EED8CA841343 /* duration.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 8BA9D1BCE1A72B46CF4B8526ABA1E33A /* duration.upbdefs.h */; }; - 8AD1E30E333906BE0C8C86F604AFBD2B /* exec_ctx_wakeup_scheduler.h in Headers */ = {isa = PBXBuildFile; fileRef = 0AFDD41002641E79F4E12988F82E016D /* exec_ctx_wakeup_scheduler.h */; }; - 8AE7B55FED69F7E3EF6254C0CD47EEA0 /* discrete_distribution.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E9255E30DE5392E33A0227FBF7BA275 /* discrete_distribution.h */; }; - 8AEFF79D247DA2B79CB19050CEE032A0 /* config_dump_shared.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 22970C50F288FFBD9CC888E8B27B049D /* config_dump_shared.upb.h */; }; - 8AF28441CA409A65ED2C255FBCDD6AC8 /* GULNetworkInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 654C4E40BD86A82A13A5F185A923EA57 /* GULNetworkInfo.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 8B07315F7CFE80A50D6CF1A04D0C0B2B /* sockaddr_resolver.cc in Sources */ = {isa = PBXBuildFile; fileRef = 33EE0318AF45ABE8ADAE15C7E30B7A0D /* sockaddr_resolver.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 8B13294A2F66E2DA1A4C4F59D7BAAE30 /* transport_security_grpc.cc in Sources */ = {isa = PBXBuildFile; fileRef = DBE11E9C5024A7CC3B1BA0F84F4C3517 /* transport_security_grpc.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 8B165C9139F45A1F9A3FB672887FA0EB /* a_type.c in Sources */ = {isa = PBXBuildFile; fileRef = C61602970D93DC8CBF79F71EC6F565D0 /* a_type.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 8B2460A58797F1FD4719044997DDD2D4 /* retry_throttle.h in Headers */ = {isa = PBXBuildFile; fileRef = BEECC412575A1BCD57C035E6E7DE6000 /* retry_throttle.h */; }; - 8B2A7252282DBC7E4CF63A0A7C2C25FB /* FIRAuthBackend.m in Sources */ = {isa = PBXBuildFile; fileRef = CEA54DCA64DA56E09E3CAB28E6E91EAC /* FIRAuthBackend.m */; }; - 8B2DC155CDAE81A9BF027BFDC87B578D /* pem_xaux.c in Sources */ = {isa = PBXBuildFile; fileRef = 06F30910F336410569E55D073ECD4C8F /* pem_xaux.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 8B2E40A4EDF94F21E0F251EAD92F2576 /* resolve_address_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = C207DCB9D9FEA47F6BD9C6471154160F /* resolve_address_windows.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 8B327A21CE322D2841FE4A6C04C95F20 /* fake_transport_security.h in Copy src/core/tsi Private Headers */ = {isa = PBXBuildFile; fileRef = 17460B4EC14F17861C1C9CA708C33128 /* fake_transport_security.h */; }; - 8B37BD74A15494EE4382E61DC55B8D4E /* http_connection_manager.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/extensions/filters/network/http_connection_manager/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 0D9940E9ABA90994FDA72E1ED2DBB8F3 /* http_connection_manager.upbdefs.h */; }; - 8B45771838B2E6163C5ACB635643AD50 /* FIRLoadBundleTask.h in Headers */ = {isa = PBXBuildFile; fileRef = 89826072CF30C191F47DDAEC9B1FC533 /* FIRLoadBundleTask.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 8B54A5B7743B565D9599088DCF8B21C0 /* fake_transport_security.h in Headers */ = {isa = PBXBuildFile; fileRef = 17460B4EC14F17861C1C9CA708C33128 /* fake_transport_security.h */; }; - 8B586460BBB6BC599E63378005A4F7CA /* retry_filter.h in Copy src/core/ext/filters/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = EA0A644A6BB640FF063BC68B3227136A /* retry_filter.h */; }; - 8B60FB2477F056539FE6474C399292CE /* FIRSignUpNewUserResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = C975940CAC996D4AE1A4B2987D6558AD /* FIRSignUpNewUserResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8B62679C328AEC550C004579FF59F684 /* port_example.h in Headers */ = {isa = PBXBuildFile; fileRef = FC9EDC0D420186F1EB2BC36C29E2548B /* port_example.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8B6FDFF071C9AE8C8AD05A948CB130DD /* client_context.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2B70582C4EE06B2F4DB75283093713F0 /* client_context.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 8B7FBB548B2056D6D5650862B9B8F8FA /* array.h in Headers */ = {isa = PBXBuildFile; fileRef = 84C46E8FCB9D83D31ED409DDA687FBA6 /* array.h */; }; - 8B8A10F917432983CE225A67F37C6D15 /* call_tracer.h in Copy src/core/lib/channel Private Headers */ = {isa = PBXBuildFile; fileRef = 00C6704DCCCD6335315E13B45707908B /* call_tracer.h */; }; - 8BAEAF235EB02694265EF4F46632F39B /* direction.cc in Sources */ = {isa = PBXBuildFile; fileRef = DFC70D8CFEC52BF16A07BFA004185744 /* direction.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 8BB1507C4CB51FDE4DB4ABD9905C0AE9 /* exec_ctx.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = C5895A4042C8187B7199258368A2D678 /* exec_ctx.h */; }; - 8BCDD302FC652840320FCDB6A4701F1B /* handshaker_factory.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 6A6043BA6228715407F893402899D7F7 /* handshaker_factory.h */; }; - 8BD9A3D415EB76B97BD27108A22B6092 /* matcher.upb.h in Copy src/core/ext/upb-generated/xds/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = B11A1CF3CCE7F3FC0135B12A8E7AB678 /* matcher.upb.h */; }; - 8BE6C947B341E272A7539C140283B641 /* FIRComponentType.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F36378327BF7E38E03BA0C4668B5D9B /* FIRComponentType.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8BEA8658CCA9227A73290E963B88B198 /* router.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = A6BC67CC6919CFE6542F8FD649405150 /* router.upb.h */; }; - 8BEE24DD5CA317B878559E2DD0586B86 /* FIRFinalizeMFASignInResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 638C8902386FE8639FA04FC4550ACFC0 /* FIRFinalizeMFASignInResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8BEEFF9340FF73FDDA80A7F5A980F5F2 /* slice.h in Headers */ = {isa = PBXBuildFile; fileRef = FE604CAC0622697B1B0F7F5D17E9E9B5 /* slice.h */; }; - 8BF74BAEBE90AD52032C579D0B349602 /* sync_generic.h in Headers */ = {isa = PBXBuildFile; fileRef = 11E3EB04FA5D3932C280E18008A2810A /* sync_generic.h */; }; - 8C1A7F6B72A5D59DCC8C9FDC47202633 /* FIRAuthExceptionUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 31957344DB02BBE794FF2969E74DA26C /* FIRAuthExceptionUtils.m */; }; - 8C3C0143CD6D84D70EC8C76A00A2427E /* numbers.h in Headers */ = {isa = PBXBuildFile; fileRef = E0E2C551A32FD85EDD5152E5EEA11059 /* numbers.h */; }; - 8C5644667405D566F6E2EB182DA3971C /* range2-neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 14BE70D9DC8CD4AB58B059281663E8CE /* range2-neon.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 8C5F87B6530BDACE6E76E55AFFCCFB8D /* log.h in Headers */ = {isa = PBXBuildFile; fileRef = CD64E9DF8BADDE0676DB065A2EC6360B /* log.h */; }; - 8C6E9C387F8B6164E03D551041D26175 /* grpclb.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8CCC6FC79534ACC5FA7387B4371CDCD5 /* grpclb.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 8C7068892D759C99EA1833FF7A965758 /* matcher.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 1993D5A3B0668140C34BDCDD5FF5990B /* matcher.upbdefs.h */; }; - 8C726AA30A74D1112C371BCDA4F9D714 /* completion_queue_factory.h in Copy src/core/lib/surface Private Headers */ = {isa = PBXBuildFile; fileRef = D716CAAD51AAAC24816F01ECD8E4895E /* completion_queue_factory.h */; }; - 8C8460A6E52E9663BF1309E7E312E4F3 /* FIRAuthProtoFinalizeMFAPhoneResponseInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = D9E57018E0580CC71198528F9FE4D619 /* FIRAuthProtoFinalizeMFAPhoneResponseInfo.m */; }; - 8C8D6CC70170D6DCB02E04337FE25798 /* secure_server_credentials.h in Copy src/cpp/server Private Headers */ = {isa = PBXBuildFile; fileRef = EF625C321A84FB0EFA2BDEEDFBA52FA0 /* secure_server_credentials.h */; }; - 8C918C7AD6931C876C0B7DE7E1F20903 /* cord_rep_ring.h in Copy strings/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 8CC456FFC90777410195C72C499AEE17 /* cord_rep_ring.h */; }; - 8CA68DE55DEBC2D3724C573E5ECCC4D7 /* tap.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 4DCA0588686078EBF559251C99D85422 /* tap.upb.h */; }; - 8CB41BB60AEB3F6FF0408581955E8260 /* front_binder.h in Headers */ = {isa = PBXBuildFile; fileRef = 57447590CA8373001BB53BF27B93E004 /* front_binder.h */; }; - 8CC9FDD4B279B27269802EE7691D3C32 /* authorization_engine.h in Copy src/core/lib/security/authorization Private Headers */ = {isa = PBXBuildFile; fileRef = B22BFDD81F3A9D4E11BF7C59BF13F94B /* authorization_engine.h */; }; - 8CD676F1563595A6FC55D2D0A38D81A5 /* server.h in Headers */ = {isa = PBXBuildFile; fileRef = 72DA0ABB75ADE5F14CEAD7713867A0A8 /* server.h */; }; - 8D18340EB936BCE70AE672FB9610995D /* config_dump_shared.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 42B765F8AC321C2481AE576B5F714863 /* config_dump_shared.upbdefs.h */; }; - 8D18D6B378317CA2018662D1F2BA2249 /* iostream_state_saver.h in Headers */ = {isa = PBXBuildFile; fileRef = 90267A3BFA5ED8C2FBC84DAA31F9BA9B /* iostream_state_saver.h */; }; - 8D1DDA115722900E252120202F6AA91E /* client_authority_filter.h in Copy src/core/ext/filters/http Private Headers */ = {isa = PBXBuildFile; fileRef = E891A0AD8DE7028821FB645F13C77019 /* client_authority_filter.h */; }; - 8D235C360CEDC9A6DF925332316E8FA2 /* rpc_method.h in Copy impl Public Headers */ = {isa = PBXBuildFile; fileRef = 8221C0F94BE4C238CF5AEAEB4694E512 /* rpc_method.h */; }; - 8D273D65251978DB378DEEE3F9BF01C9 /* umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 48F47ADD365EFB1A2A6E9778EDD6AA55 /* umbrella.h */; }; - 8D30D9F282091AA860A0862A87FFBB2C /* x509_obj.c in Sources */ = {isa = PBXBuildFile; fileRef = BDDAC0502DBE8CFEA24C7558FE15AB41 /* x509_obj.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 8D35745B51AC819F0EF4B0A3DBE0E2E6 /* grpc_ares_ev_driver.h in Copy src/core/ext/filters/client_channel/resolver/dns/c_ares Private Headers */ = {isa = PBXBuildFile; fileRef = 5A993101D8FE0C50A170CA30BB76C3C6 /* grpc_ares_ev_driver.h */; }; - 8D4AC77D69F7487BC0A59302864F0C19 /* grpc_unary_call.cc in Sources */ = {isa = PBXBuildFile; fileRef = 24F76B1CE7703B6311D685B6D24E3126 /* grpc_unary_call.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 8D4FF1FCC85F494F1D89B778BF69BE7C /* escaping.h in Headers */ = {isa = PBXBuildFile; fileRef = EB45E88E9A1DDB9DE002900D364F2102 /* escaping.h */; }; - 8D5FCF330DD308AE602885C70AC799C5 /* time_support.c in Sources */ = {isa = PBXBuildFile; fileRef = A4B887E6EEB312E5EABD675FE5A73689 /* time_support.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 8D61F385AF1F6D4E7D7932E9197D8820 /* handshaker.upb.h in Copy src/core/ext/upb-generated/src/proto/grpc/gcp Private Headers */ = {isa = PBXBuildFile; fileRef = AFDF165D1B7F5B1692B5114842AAD1F1 /* handshaker.upb.h */; }; - 8D63CDDA24D8C4F6A961AE8A57CD499B /* ref_counted_ptr.h in Headers */ = {isa = PBXBuildFile; fileRef = F6F312F259E87EC85B91F7A939B1B468 /* ref_counted_ptr.h */; }; - 8D783037396434695D50553E497F1045 /* compression_types.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 81AA2138E20060E7B193DCE068D5CBB1 /* compression_types.h */; }; - 8D7B8CAAA16B5A14F5B04D8B0719F7F8 /* timer_generic.h in Headers */ = {isa = PBXBuildFile; fileRef = DABA218AAD32FCAF1F69EE2E9395EBE1 /* timer_generic.h */; }; - 8DAA8F9EF0F0753EBEA161A176D93499 /* closure.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = F00AA832B7F043897DDC2F8EDACEE8DD /* closure.h */; }; - 8DB458A1B98B4C9A092D2C9A7E447771 /* rbac_policy.h in Headers */ = {isa = PBXBuildFile; fileRef = E77B4D66F6075235B8399BA732A8B39E /* rbac_policy.h */; }; - 8DC5B56722C06E845F90BA2B01760FEE /* cluster.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 01EA2295B3803A3BAEA2498211FD9D5C /* cluster.upbdefs.h */; }; - 8DC6028FEA12A983400D8AC2D892A333 /* channel_creds_registry_init.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5D4284E7FA6E1CEB9CC9F19F51E4E61F /* channel_creds_registry_init.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 8DCA37728D70B8A920110F95860B7229 /* secure_server_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = EF625C321A84FB0EFA2BDEEDFBA52FA0 /* secure_server_credentials.h */; }; - 8DCF5500EE76EEC3B249BE9AB8313209 /* scheduling_mode.h in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 82ABCC9E75A060497AF35665C90ED606 /* scheduling_mode.h */; }; - 8DD3FB9FE741C923A29493FA9291FB7B /* reflection.h in Headers */ = {isa = PBXBuildFile; fileRef = AA8CEB25D40CE457BDB3403F185F30D2 /* reflection.h */; }; - 8DD6A35B90E0C1CF16F67D7A6A73A95C /* time.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = 017315FA27290D2FE48E6C74F79FA697 /* time.h */; }; - 8DDDA0A6122D327FA2EFFFA4837577B6 /* dh.h in Headers */ = {isa = PBXBuildFile; fileRef = 871D792CEFAB5610D9FE2D3B61840E7A /* dh.h */; }; - 8DE57244E6ECA36ACF349687BD89BF07 /* FIRAggregateQuery.mm in Sources */ = {isa = PBXBuildFile; fileRef = C26E11DE48D80F2D0875985199E220BD /* FIRAggregateQuery.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; - 8DEE96671F862528B6A82EA654FFFAE2 /* service_config.h in Copy src/core/lib/service_config Private Headers */ = {isa = PBXBuildFile; fileRef = 53F87ACAEF4603F1B0FDD6364456AEA6 /* service_config.h */; }; - 8DEFFAA9D47C3139513A93C2E0D244EF /* json.h in Copy src/core/lib/json Private Headers */ = {isa = PBXBuildFile; fileRef = E75D00358011D9CF92780BAB8E8F1F83 /* json.h */; }; - 8E026F2159594E1491162FD90FDEF506 /* channel_init.h in Copy src/core/lib/surface Private Headers */ = {isa = PBXBuildFile; fileRef = 92F5AA7799549934A3FCF5022D40D663 /* channel_init.h */; }; - 8E08D94BD92F350071FFA1E86454D046 /* ec_key.h in Headers */ = {isa = PBXBuildFile; fileRef = FA30B7E3AEA2E3020F37A3C84D2B3D04 /* ec_key.h */; }; - 8E163F75E2CD29E96FD67F24F7C96783 /* fork_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 97F7A58F73913EB9EF5E859ADC1CD9E6 /* fork_posix.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 8E2909FD8BFB6CC3E8AA1308A8DA0020 /* resource_quota.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6A9E9BEBCA9BF3F3564A89520F9561FA /* resource_quota.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 8E3C68EE157B879F3439367D38B6E151 /* fake_transport_security.h in Headers */ = {isa = PBXBuildFile; fileRef = 1642B1ACAD9E3ED5F07F9FC9B17C2D13 /* fake_transport_security.h */; }; - 8E441A10D6FD235DC33BB26ADE5F0968 /* metrics_service.upb.h in Copy src/core/ext/upb-generated/envoy/config/metrics/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 6CD1D59E8BA58964FE2EEF693368181B /* metrics_service.upb.h */; }; - 8E46D3C99668474FF1D337350AA81AC0 /* FIRVerifyCustomTokenRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D8AC6514D7B15FE4A4223B74A8821BA /* FIRVerifyCustomTokenRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8E476EC51779925686F1AF23C15709C9 /* tchar.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 99ADED98F966D8D3F351A5CBE0D4E23B /* tchar.h */; }; - 8E4D2BCB145AC30C48D6A81D9D970A41 /* GULKeychainUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = D45518A97B1E1C3184767BD8E6A8E336 /* GULKeychainUtils.m */; }; - 8E4E24E8EFB6427E0CBF7AB4CA4F0EFD /* status.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 7ADD54AF90C2C87BE9129B46B64BDEC8 /* status.upb.h */; }; - 8E57D4A7466B8DECE7E0EB0D1DEEC42C /* percent_encoding.h in Copy src/core/lib/slice Private Headers */ = {isa = PBXBuildFile; fileRef = 3C4F1074A58B80D18F3ACCE466B237F1 /* percent_encoding.h */; }; - 8E590B666E2BCD81AEB499499052A05F /* internal.h in Copy crypto/trust_token Private Headers */ = {isa = PBXBuildFile; fileRef = 78E1723B3DD72C6BDAB63A2566D6BC6A /* internal.h */; }; - 8E60439E0C1D5DAA2159CB74A5D86084 /* online_state_tracker.cc in Sources */ = {isa = PBXBuildFile; fileRef = DC3362571ED94386BAD944F3F9FC3C33 /* online_state_tracker.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 8E6B1C7F0D484C8FCA0B62FA0E01458F /* FIRGetAccountInfoRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 19CBF60EAC11EAC2266F3AFC028F0D95 /* FIRGetAccountInfoRequest.m */; }; - 8E70038CD7DF210E9D518F588ECBD120 /* client_unary_call.h in Copy impl Public Headers */ = {isa = PBXBuildFile; fileRef = C8A5F5D46C0B1ED71FB2F7D21C5FE0B1 /* client_unary_call.h */; }; - 8E751D5B6E850D3E5F7D3359D6F90944 /* scoped_route.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E790E8D4079407D8A687C10752C12FF /* scoped_route.upbdefs.h */; }; - 8E77438B26C7A1444CCC6DEFF9FEAC94 /* FIRDocumentChange.mm in Sources */ = {isa = PBXBuildFile; fileRef = 7F3DE96C86DDACCFC4EA1E1D0E1FDB57 /* FIRDocumentChange.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; - 8E78178A5E6CD13B50853ABD56E93300 /* socket_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 19ABBF7577C67551946CD8EF27D02115 /* socket_utils.h */; }; - 8E7A5728CA1248684AAF47C818541A08 /* httpcli_ssl_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 71EAFA07B9DE319EDA1B6FC829613507 /* httpcli_ssl_credentials.h */; }; - 8E81A4BC645497468BDCDAAB23D7437E /* ssl_transport_security.h in Copy src/core/tsi Private Headers */ = {isa = PBXBuildFile; fileRef = 148E95C321C2475B0E99E04EB4B11E5F /* ssl_transport_security.h */; }; - 8E86E689DA09EEA0F336B12A1A3569BD /* rand.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 4B8F111B82846B568159073F077790CB /* rand.h */; }; - 8E8DDE88F6F3B3D0258F1CD97F211859 /* FIRAuthDefaultUIDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 6818705A38B832A128816C50B9FBB10F /* FIRAuthDefaultUIDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8E8E6CD526E3D5D4D7021B82808E3661 /* FIRUserMetadata.h in Headers */ = {isa = PBXBuildFile; fileRef = DEA0E366CFE5D366B66F64272F463ADC /* FIRUserMetadata.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 8E981F5F8CAD8F843617D20B9C865AD8 /* timer_heap.h in Copy src/core/lib/event_engine/posix_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 6382414CC02CB218E2363A66E296F53B /* timer_heap.h */; }; - 8E9F54F5444AE98383E1452F673E71F0 /* channel_stack.h in Copy src/core/lib/channel Private Headers */ = {isa = PBXBuildFile; fileRef = 9055BD3085E59795884A5FB6A4090F38 /* channel_stack.h */; }; - 8EA7EAF3F75026DC4C054DE329044A34 /* server_builder_option.h in Headers */ = {isa = PBXBuildFile; fileRef = EB1E898B5A1501A415626353BE59A4E7 /* server_builder_option.h */; }; - 8EAB21C1EA1A8B013DF4229389F3A6E2 /* spinlock_wait.h in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 5A8986A61A03A7BAF9DDDC5B80D9EB9B /* spinlock_wait.h */; }; - 8EB42A4C7AA15F61162C00CDEF526F97 /* local_transport_security.h in Headers */ = {isa = PBXBuildFile; fileRef = 635E7706B3303D4C01DE0094FBBFBAC1 /* local_transport_security.h */; }; - 8ECD6E93C27E33CF885882E3E86D282D /* plugin_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D1494E98F37D17D3FCBC3C238573961 /* plugin_credentials.h */; }; - 8ED40EA8FC9AFD36D03F0971C28D1AB3 /* refcount_lock.c in Sources */ = {isa = PBXBuildFile; fileRef = 55149F7022F75A2FDB46F8740643388C /* refcount_lock.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 8EE11D5163BDE5270260A610BA650E53 /* socket_utils_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 94BD6B76CE97E7FE1C34B8D46A71A2B3 /* socket_utils_posix.h */; }; - 8EFB1A0113649DF6EAC574FE712EC30D /* low_level_hash.h in Copy hash/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 8427E458E2FFA55DF78F4A63F9C0B73D /* low_level_hash.h */; }; - 8F03C5640A8D93E758AC9266673A78EE /* server_builder_plugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 15A901D67B2083DA2A89EF65997B4F81 /* server_builder_plugin.h */; }; - 8F0EA91E3BC7CEDA162ECD80A9D02AA9 /* string.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A7A4D2B3EA04CD2D431FC77E580A86C /* string.h */; }; - 8F22E65083DA6F57FE121FC11B3C07D1 /* child_policy_handler.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3BDF926F308AF5FCEE56EA7523893A97 /* child_policy_handler.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 8F23D426CD904F083C95CA3A2FB72DB5 /* resolve_address.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = B1A0FBFBAFCD557B8C8791CCFE1AADD2 /* resolve_address.h */; }; - 8F27459016915C58979DB49B15566687 /* service.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 7359B7BA7C6FF0EBED5697581C1F038A /* service.upbdefs.h */; }; - 8F2BBA051A5F077F3C79295489A77D96 /* aws_request_signer.h in Copy src/core/lib/security/credentials/external Private Headers */ = {isa = PBXBuildFile; fileRef = 2DE4D9390896EA9A69B43A1DA59D3439 /* aws_request_signer.h */; }; - 8F3DDAACFE29671A60F5228691CD866F /* cluster.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/cluster/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 01EA2295B3803A3BAEA2498211FD9D5C /* cluster.upbdefs.h */; }; - 8F4436F26811334262F5ADA69E0DBD99 /* useful.h in Copy src/core/lib/gpr Private Headers */ = {isa = PBXBuildFile; fileRef = 993B7D504BEA09B730554F884D0A6336 /* useful.h */; }; - 8F4C851BD6DB2DDCE8DF6CA8F54182F8 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 149DF03C26022DEC6A0BB3329C2D3932 /* internal.h */; }; - 8F4D8CC488E65911B6F0A059A5C27F68 /* map.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E653BFDE8DE075AA70ACDF346590386 /* map.h */; }; - 8F518BA62C650AFADCF0B707629C990A /* event_service_config.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = A443B97D8CDBA2CEB758E38AB2A0E487 /* event_service_config.upb.h */; }; - 8F5C99AD7DCD27FBEE8E7AF0EDB9AFA8 /* match.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 31CC756094CE168F7023ED9619E2A11A /* match.h */; }; - 8F7A22F4D622C569BDDA51B04E2AA527 /* opentelemetry.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E7E4014E5A3344D8A08C0FA2F80FCEC /* opentelemetry.upb.h */; }; - 8F7E98AAA84F9E7CC5FB90745B211C32 /* c.h in Headers */ = {isa = PBXBuildFile; fileRef = 56BCD9F86AFD02A8680D285E30551DA0 /* c.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 8FBFE28C57C7B1265E8F5C99EE3542BA /* string.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = C96646CB9B40FAC85FA17B6098767FAD /* string.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 8FC60C5B559D3CBAEB13A66E4DD74719 /* bdp_estimator.cc in Sources */ = {isa = PBXBuildFile; fileRef = FB0469101B7000CE00058B90BB4AAB3B /* bdp_estimator.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 8FCD626E08D5DF8E0E53ED2FE7071FE7 /* FIRDocumentSnapshot.h in Headers */ = {isa = PBXBuildFile; fileRef = 992B4677FF496F401658CD092A222CB5 /* FIRDocumentSnapshot.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 8FD84B863AF093067778B550DAC68CD8 /* grpc_server_authz_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = CF28EDD4A8C16D5FA2A5334AFBC158D3 /* grpc_server_authz_filter.h */; }; - 8FD9D91A180F6DC9BE3D5EFE59F51A13 /* versioning.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = ED7850FB6DBDABB9F1EC517CFA346C92 /* versioning.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 8FEA695A774817F9E188D9E4B6CF2742 /* xds_resolver.h in Copy src/core/ext/filters/client_channel/resolver/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 6E0D3D2183C0DA16A02F8A13CB1B92F6 /* xds_resolver.h */; }; - 90044D3D0863CDEF4ECDE561EE7223D5 /* time_precise.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8D236A13FFE1293FC6738E2D0BF6423A /* time_precise.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 900865FFA823CA4756C5E2E94D1E4E7F /* iomgr_fwd.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A5587DDED359B09371001E3ED4E1963 /* iomgr_fwd.h */; }; - 9013071E8EB6BEDF877F2E29AF7D1F2E /* init_internally.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9385F78A37B9C335B33102338D5522DF /* init_internally.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 902B94D8B83DCA87AB27F7106499CE6D /* clusters.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 43DCBCF5145460B9E34A6FE5E6AE9225 /* clusters.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 903519530EFE8AC260343017DCFA0ED2 /* def.h in Copy third_party/upb/upb Private Headers */ = {isa = PBXBuildFile; fileRef = C6723A11E9B669C82AF46A31D55C16B6 /* def.h */; }; - 903B589D84BDD225107B41C632CD03A5 /* value.upb.h in Copy src/core/ext/upb-generated/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = B3138F21581DC0670575757E42970322 /* value.upb.h */; }; - 903C2966D559C8C485BEC96EC9766AE9 /* string.upbdefs.h in Copy src/core/ext/upbdefs-generated/xds/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 0EC6205C591DA2704E9D3A2DE341027B /* string.upbdefs.h */; }; - 905292BA0D3EEA93D40FDEF8901A54EF /* backoff.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = F83BB5DD7DFD588350A0E1174D2F2C1C /* backoff.upbdefs.h */; }; - 905ECE7FFD6158AC39BE0804E6C040BE /* FIRQuerySnapshot.h in Headers */ = {isa = PBXBuildFile; fileRef = 33B763A67E3F4479336E7E55F97CF10A /* FIRQuerySnapshot.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 9060DEEA6128CAF5C572737C7C7E09D8 /* cert.upb.h in Copy src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 5B3CF0051F125615540DBA3C3D4E1552 /* cert.upb.h */; }; - 9074FBD6D0CA2DC2236C710E1B2E30BC /* bitset.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 7EC6A4C501219900D2D7CB0ADD4ACC2B /* bitset.h */; }; - 908466932BC2D856D9BC3256E4B9F7AF /* annotations.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 2032DCC5B304C25D554D131E7EAA99CF /* annotations.upbdefs.h */; }; - 908E5F2B6E2541AB20C5BB29E9A840B9 /* deprecation.upb.h in Copy src/core/ext/upb-generated/envoy/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = BADA9DD4147C58B4A1DFE6C39F5533C8 /* deprecation.upb.h */; }; - 90911EF3E7663B83657BE8AEF5F6F790 /* completion_queue.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = F1F5E90B4173A67C94136CB5E8D456D0 /* completion_queue.h */; }; - 9095BD8231D38820B5F8AA872B1EBF45 /* FIRAuthRecaptchaVerifier.m in Sources */ = {isa = PBXBuildFile; fileRef = 1995808E960CBF0DACF5C040FF85DD99 /* FIRAuthRecaptchaVerifier.m */; }; - 90970246D4D2540EFEC53ACA47B24CD2 /* database_id.cc in Sources */ = {isa = PBXBuildFile; fileRef = 43D4853532B32FC9414E3929D6AE60FA /* database_id.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 9098BFEDA2886F380440822279002CC6 /* compression.cc in Sources */ = {isa = PBXBuildFile; fileRef = 603AC1CECA7F0325A0645F75AEAA6CD8 /* compression.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 909FDAC8FF115D1361B9F6AAD2CE07BC /* tls_certificate_verifier.cc in Sources */ = {isa = PBXBuildFile; fileRef = B304F7BD214B7464DA74D25E193436D5 /* tls_certificate_verifier.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 90B1A3919C0B53D0804C781BCEAB2764 /* grpc_alts_credentials_options.h in Headers */ = {isa = PBXBuildFile; fileRef = BD2AAC335F72A9B51F02B1C9722C5E80 /* grpc_alts_credentials_options.h */; }; - 90BB31F0F27E38BAC5D5C764B35727B7 /* nanopb-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 08451941AC5AB55FE21585ED40E378DE /* nanopb-dummy.m */; }; - 90D006A3519EBF1F1E75385263AD7018 /* annotations.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/api Private Headers */ = {isa = PBXBuildFile; fileRef = 1B24BD0A3D0A318FAD9CF5933A7644A7 /* annotations.upbdefs.h */; }; - 90E9FB6B40A27942A0A0389410ABB537 /* cookie.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 628C96061E1534AD017000BA1E3336BC /* cookie.upbdefs.h */; }; - 90F5B3A728249A66FBFFE5A07186C121 /* alts_iovec_record_protocol.h in Copy src/core/tsi/alts/zero_copy_frame_protector Private Headers */ = {isa = PBXBuildFile; fileRef = E5DC5E815A3969509838E48EAE618421 /* alts_iovec_record_protocol.h */; }; - 90FFD469CF031E48DE5F8792A6F99914 /* xds_client.h in Headers */ = {isa = PBXBuildFile; fileRef = 0712CA2B4CBEFC0340A8265E9A81BB84 /* xds_client.h */; }; - 91144BDBBCD0DB0DAEEE032CABF10A51 /* cmac.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = E466B63531A69D143134218170383275 /* cmac.h */; }; - 911A31EB6D15A034D023B1C7B4E39C4F /* filtered_re2.h in Copy third_party/re2/re2 Private Headers */ = {isa = PBXBuildFile; fileRef = 7C3A25BC9926F00613EF11CE053327CF /* filtered_re2.h */; }; - 913C8505763F91DD621B600FE61F22AE /* router.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/extensions/filters/http/router/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = EC4D635B0901B8E654F574D03D4FD14B /* router.upbdefs.h */; }; - 913F3E3893672B3FAF22DB08A800D073 /* quic_config.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 13CA3ADCC25F6A6286E6FD7DCC900368 /* quic_config.upb.h */; }; - 9153050D9F107A460B5AFAD0279D1213 /* pcy_node.c in Sources */ = {isa = PBXBuildFile; fileRef = C10A2E942E2B7E29E898CCE3B7F2A8A0 /* pcy_node.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 915DDE1C2A4710ABD70931946308D071 /* testharness.cc in Sources */ = {isa = PBXBuildFile; fileRef = BC74598F4111AE48A9AB5653030849C1 /* testharness.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 91604D93A99D2C838EE6C3A71A5D1092 /* timer_heap.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 340B5E56498E6EF7492DAC663857867E /* timer_heap.h */; }; - 91745C5A8BAE246656F8C24F18820631 /* sample_recorder.h in Headers */ = {isa = PBXBuildFile; fileRef = 3AA6E176F35E2BC57CAF04250568093A /* sample_recorder.h */; }; - 91759FAF8367025D19B0FD78A6FF4CFC /* utf8_range.h in Copy third_party/upb/third_party/utf8_range Private Headers */ = {isa = PBXBuildFile; fileRef = DD94E2B1E647F10987C14E3BBEEAAAA7 /* utf8_range.h */; }; - 9187BEF881228EF8C4C20F5D1458B0E3 /* memory_document_overlay_cache.cc in Sources */ = {isa = PBXBuildFile; fileRef = 75E8174F5C6FC5ED028E68979B686EF8 /* memory_document_overlay_cache.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 91AA4BAD1B1E070FE47ABDC1C7DA0771 /* secure_endpoint.h in Headers */ = {isa = PBXBuildFile; fileRef = 1721A8FBD82F65B6216C583121EA9086 /* secure_endpoint.h */; }; - 91AC5C54838A03386F44976A5E379D07 /* api.h in Headers */ = {isa = PBXBuildFile; fileRef = 47774A628458D45006AB2200890347CA /* api.h */; }; - 91C02613BD3E4598A751B14B453A1C9C /* buf.c in Sources */ = {isa = PBXBuildFile; fileRef = 5E23E7230E1671507457BB8628145784 /* buf.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 91CF153C4624FE9D0A51616C92AAF24E /* config_source.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = AC0CD3651DEF80AFDD5CA8E923B2F7DA /* config_source.upb.h */; }; - 91DB93262E3A85863517899B472E7EE0 /* string.cc in Sources */ = {isa = PBXBuildFile; fileRef = E308D3B1D0C19CE6D25EAEEEE1913604 /* string.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 91E43EF84608E02876DE3901B9E38A1D /* ssl_utils_config.cc in Sources */ = {isa = PBXBuildFile; fileRef = B10D00B747D229DC2D8763AAECD49087 /* ssl_utils_config.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 92086081BB8E293782879B6702EA6494 /* http.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = F6DE147F8C50354BA2D474E0720E7528 /* http.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 920B85781AD2A7CAFB814936D54C784B /* tcp_client_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8F90F898FEA07264FFECC3A869FEFCF9 /* tcp_client_posix.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 921B9D38191FACEB91CD334D3CE6AC6B /* json_decode.h in Headers */ = {isa = PBXBuildFile; fileRef = BA7EADCF4E0861466B2E0F7DD9C6EFB1 /* json_decode.h */; }; - 921C56926CD7F1842DF425BA1B51E173 /* xds_resource_type.cc in Sources */ = {isa = PBXBuildFile; fileRef = E760F2A68AA5F6C34E0966F52BCAF60C /* xds_resource_type.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 921CFC3E7039A017EC32351401BA1B9E /* format_request.h in Headers */ = {isa = PBXBuildFile; fileRef = 525B19BD992D61DC26F8A0F11C53690C /* format_request.h */; }; - 9220F1CAD034A3AD7FB8145A51E17A9C /* cord_rep_btree.h in Copy strings/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 8FAEE300B6D0508E05E10360A13251C5 /* cord_rep_btree.h */; }; - 92229CD527423BE44B068392A672660F /* grpc_method_list.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 24C03425FFD8A3CE623463821FAB28EE /* grpc_method_list.upb.h */; }; - 9229DDC53675F1FDFB0C4C3B7FB56577 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 65175563D9654EA9D6A6449CB1821E95 /* internal.h */; }; - 9236D00A060E6ADB9D14C7CCBB937F4F /* context_list.h in Headers */ = {isa = PBXBuildFile; fileRef = B84ACEE18054587361CB4101FD8E5E28 /* context_list.h */; }; - 924C3CE886C8201C10D48C88D7959346 /* status_helper.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = A10CFFEC42056D53EFA828DD8DDF9758 /* status_helper.h */; }; - 924CF6D31119CD0D36DF659C944685E1 /* resolver_registry.cc in Sources */ = {isa = PBXBuildFile; fileRef = 054F7D5A4479D49EB3C9C98416D97E12 /* resolver_registry.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 9252B6AE381D8FF25ADB608FDD3D8653 /* FIRSendVerificationCodeResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 8D5EEAD7A7FB191398B526CD7C02E8E0 /* FIRSendVerificationCodeResponse.m */; }; - 9254824AA95C9F2493C8C0E6FEEA9BE0 /* route.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = B394F632311E2F073055B60834F021DA /* route.upbdefs.h */; }; - 92569807C44C2BCE86044D6072B7E35E /* FIRDependency.h in Headers */ = {isa = PBXBuildFile; fileRef = D1AADD10EC8273DA4107128FC239E074 /* FIRDependency.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9257C64CC9FFBDB27084E01BDABE8E66 /* pkcs7.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 48290503A5BB8F5F01D63C7A13A116C3 /* pkcs7.h */; }; - 925A560A9B9CA7AE93C66130011B3838 /* httpbody.upb.h in Copy src/core/ext/upb-generated/google/api Private Headers */ = {isa = PBXBuildFile; fileRef = 0AC9240598E0FFDED9320ACC157F636E /* httpbody.upb.h */; }; - 925DA47282CC3A73610854802DE531AD /* client_authority_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = E891A0AD8DE7028821FB645F13C77019 /* client_authority_filter.h */; }; - 925FFD1AC3D428827C743639F9D20455 /* connectivity_state.cc in Sources */ = {isa = PBXBuildFile; fileRef = 23C25CD3FCD6EEC989B61011EEDACC93 /* connectivity_state.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 92600DA322E0D4EE44E0E7EED39F0768 /* cord_rep_btree_navigator.h in Copy strings/internal Public Headers */ = {isa = PBXBuildFile; fileRef = FA710C181C8CD7CC6E931CF73955AE3C /* cord_rep_btree_navigator.h */; }; - 9270D3D4285FB30C45018547CA5A19F2 /* http_uri.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 7A46730BB1779DECB9DADF5F99C8043C /* http_uri.upbdefs.h */; }; - 9273CB60B835875CB24518F06E37C584 /* FIRStartMFAEnrollmentRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = D0474E436BB01F4262DCC112C9A939B1 /* FIRStartMFAEnrollmentRequest.m */; }; - 9273CEBFA4161A43C28AF8AA89BDD20A /* FIRTwitterAuthCredential.h in Headers */ = {isa = PBXBuildFile; fileRef = 5DDB2EF64F8D3A146C6DAAA4198E2FF1 /* FIRTwitterAuthCredential.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9289F8E3132DE62DD3BB989B5AFD53F7 /* endpoint_cfstream.h in Headers */ = {isa = PBXBuildFile; fileRef = 150B0238429C2211A35706B836B6FE88 /* endpoint_cfstream.h */; }; - 928F6EFE1D6C7EA5D795C6420E05600A /* server_interceptor.h in Headers */ = {isa = PBXBuildFile; fileRef = A4AB1593199644D04FC1A71CCB56EE85 /* server_interceptor.h */; }; - 92B3A47B945C141DA5D4F16F1B252E4E /* bad_any_cast.h in Copy types Public Headers */ = {isa = PBXBuildFile; fileRef = BC80F0361AFA3C19CEF023D39AD2EA4E /* bad_any_cast.h */; }; - 92BA48C12EE993C64941E297732ED23A /* FBLPromise+Catch.m in Sources */ = {isa = PBXBuildFile; fileRef = 9ADBA98D7CD5EF4000C9201DC41DD158 /* FBLPromise+Catch.m */; }; - 92BCBD221411384F6C6BCC6C9C89145A /* extension.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 5578B99147B7935FEED758D90B000502 /* extension.upb.h */; }; - 92BF700AE40E79BE78B17BA35B9E8C6A /* win_socket.h in Copy src/core/lib/event_engine/windows Private Headers */ = {isa = PBXBuildFile; fileRef = B8B866A0F33B2456B473B88B799B2E76 /* win_socket.h */; }; - 92C4534A662529E1CB129E01F6D376CD /* FIRWithdrawMFARequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 55B6BD22C2AAA079D65318F4BB98E229 /* FIRWithdrawMFARequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 92C7C930F6B49BA8A52AB330F105493C /* FIRStartMFASignInResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = A890C3B891667F310EF5CD9C87790FA1 /* FIRStartMFASignInResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 92CF2E9A644AFDBC42150CD4BABAE2F6 /* string.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = B6372AE661A63346B4DA4591FA1537F5 /* string.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 92D8747AD6D0619AF2F2B71189476331 /* overload.h in Headers */ = {isa = PBXBuildFile; fileRef = B47C2D69E0434365A4BE655BCC7F355F /* overload.h */; }; - 92D90EAE3FE8D7DDFEAD6E3CF678C1D3 /* text_encode.h in Headers */ = {isa = PBXBuildFile; fileRef = AB99B1D72A6245C3C5255A73316847B5 /* text_encode.h */; }; - 92E8799EB534CD6AAD4FC40D6A73ED96 /* log_reader.cc in Sources */ = {isa = PBXBuildFile; fileRef = C09C8AB3F05E0E0527A4D3A038E7C528 /* log_reader.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 930602529D5BC05245C4158D4C293F4A /* resource_locator.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B7FB9BBCC529428F75ABA3625B7BF56 /* resource_locator.upb.h */; }; - 93087404D04BA2A4755F0C2948D5DC53 /* grpc_server_authz_filter.h in Copy src/core/lib/security/authorization Private Headers */ = {isa = PBXBuildFile; fileRef = 7EE5557F04C9C2B2802C3F67E065CC1D /* grpc_server_authz_filter.h */; }; - 9316AE29564C8F7DDAFAE38967D1558A /* xds_resource_type.h in Headers */ = {isa = PBXBuildFile; fileRef = 304C032D2BE426AA583E780E60E8D0D4 /* xds_resource_type.h */; }; - 93240AC8DDA992E9B733F5085C14AC62 /* walker-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = CEC19DD7ECBA45F9AFB4DABF183FF502 /* walker-inl.h */; }; - 9325C754A001A3BE98A43835D174E494 /* attributes.h in Copy base Public Headers */ = {isa = PBXBuildFile; fileRef = D4F8183B4BA765D7E7FA6FAFDDC8A8F8 /* attributes.h */; }; - 932987F3B0698F5911B9404EDE351D2A /* filter.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/cluster/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 178E062A4A9CEB480C27DC929BA13932 /* filter.upbdefs.h */; }; - 9339432A735801D275B8CD7EC9625C26 /* upb_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = ED2B97F127847B10C87C9925BF1C055D /* upb_utils.h */; }; - 933A3FE5DE7E3AA8E8DD0F7651B4BAA8 /* pollset_windows.h in Headers */ = {isa = PBXBuildFile; fileRef = F91B93F17DD3F4F3DB3813463EC4E57A /* pollset_windows.h */; }; - 933F473391A606F3AF23E1D0150F0FE5 /* syntax.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 98866ABCB9191514A9F591B7FAC0E62B /* syntax.upb.h */; }; - 935E41C156E0E4CF6031613B327AD7C1 /* client_interceptor.h in Headers */ = {isa = PBXBuildFile; fileRef = F118631D1D347A3F4D5DBCCAB7258A89 /* client_interceptor.h */; }; - 93643DEA2035FF556FE0E206A900D5D0 /* server_info.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = BCB2453630C2CDCE3881352FF5C4EB70 /* server_info.upbdefs.h */; }; - 936729F4CDB27FFC31CAB6BE3FB12C7F /* varint.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 24CA1050C14DC6980DC2AD21A288BEE0 /* varint.h */; }; - 9379672628F9E02A3FCD5A9CC5F28D42 /* slice.cc in Sources */ = {isa = PBXBuildFile; fileRef = 636DC4CD513E8471A5776B96417DC0D8 /* slice.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 937A78B715A784750B983B18739797EE /* GULNetworkURLSession.m in Sources */ = {isa = PBXBuildFile; fileRef = 024F551F4A627FBFCE78E373F99F5779 /* GULNetworkURLSession.m */; }; - 9393B03079E4D95ECB3CAEE4BC1ED9D5 /* gRPC-C++-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D7263343A2CE8318439FA335E048B22B /* gRPC-C++-dummy.m */; }; - 939D32F268CE14F712078E5077D28282 /* pcy_map.c in Sources */ = {isa = PBXBuildFile; fileRef = C04788BE4509F2E027AC85E22D13D838 /* pcy_map.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 93ADBBD5675373B2087A0C309D9A4758 /* context.h in Copy src/core/lib/channel Private Headers */ = {isa = PBXBuildFile; fileRef = 68CB1F72DF917BC3B040A6A9B16022B1 /* context.h */; }; - 93B552E183C5DCE7521324851CFD7462 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = EDB95363DDD5E8939C4889DF0FBC44FB /* internal.h */; }; - 93B6B27235AAF51686FFFA90D3F027CA /* GTMSessionFetcher-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = D8EE76CAFFEF6479916A91D3A6064472 /* GTMSessionFetcher-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 93C653380E35F0C85E653DBB3837287B /* futex.h in Headers */ = {isa = PBXBuildFile; fileRef = 61A876D516AEC1CF9D7CB38D19213911 /* futex.h */; }; - 93D0B170AE320DD97924D0DCD17F4061 /* intercepted_channel.h in Headers */ = {isa = PBXBuildFile; fileRef = AB94A709C35A711A9889E89C75561F6B /* intercepted_channel.h */; }; - 93EEAFC03CEACD613E6C5E550B01BEE8 /* udp_socket_config.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = DC03C233DC75D21A360F1AF84BCFB94E /* udp_socket_config.upbdefs.h */; }; - 93F99454BC35F73F61B2376758788F07 /* str_replace.h in Headers */ = {isa = PBXBuildFile; fileRef = 20D6E838B5FCE9A99DDC4B108AC6EBC4 /* str_replace.h */; }; - 9405B9DC5F8B3C59174DB3E4A62E0170 /* http_tracer.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 5B63618FF3B1EF7AC7E4279CB1805FAD /* http_tracer.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 941A20BE2C34A228BF5DD848D8151A56 /* firestore.nanopb.cc in Sources */ = {isa = PBXBuildFile; fileRef = AEFC4A41773CD797AAF9560EDAF6A676 /* firestore.nanopb.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 9425127CE04B4E0A0892387A4A5C2975 /* p_rsa.c in Sources */ = {isa = PBXBuildFile; fileRef = C85064BC2B3396D92B62D9636C070D98 /* p_rsa.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 942BE4B4B8DAD0A4897D7317D898EFF1 /* table.h in Copy third_party/upb/upb/internal Private Headers */ = {isa = PBXBuildFile; fileRef = 121DDDC118D56428E342CD24CFD53BE5 /* table.h */; }; - 9444EF77D6299F58F68415010E65B69F /* raw_logging.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8850A003D8F4009F4D78335C8103498F /* raw_logging.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 9445BEEF5F5463717BF961AD949613B5 /* xds_cluster_impl.cc in Sources */ = {isa = PBXBuildFile; fileRef = DCB538713B290324592D5738CA466637 /* xds_cluster_impl.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 945D06FC499FAF27E00D9FAC96A9BE31 /* FIRFieldPath.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B61857C03E965B84A0EAF37EE8B6D95 /* FIRFieldPath.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 94637ACA5AE9F2B04551F0279D04D503 /* sensitive.upbdefs.h in Copy src/core/ext/upbdefs-generated/udpa/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = FD53BDAA60C11E139052A737A66DB87D /* sensitive.upbdefs.h */; }; - 946E041A152ED157A0D90AF2D174267F /* load_balancer_api.h in Headers */ = {isa = PBXBuildFile; fileRef = 305069D0B7CDB47BA21D29D33129734B /* load_balancer_api.h */; }; - 94798EFA9985D2E6B3D25B36BF02CD08 /* FIRRevokeTokenRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 1776A7F945303F621981858DC78CCB22 /* FIRRevokeTokenRequest.m */; }; - 9499D5AEBE6B9D64A2D2F1668EC1CCCE /* FIRVerifyAssertionRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 700B85841AE8D2D021EA9C1E8DD86E97 /* FIRVerifyAssertionRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 94A0FE171B0DAF7D8D7D0124FD911576 /* health_check_client.h in Headers */ = {isa = PBXBuildFile; fileRef = 188CDB4F8ADFDE5FAF959BD35BB56D0E /* health_check_client.h */; }; - 94AFFCF10F04B3843828E17E218E7AD9 /* opencensus.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = D624E16D6ADD7DC3DE603ECB83906BFD /* opencensus.upbdefs.h */; }; - 94B2C7EBCE63938822FC2E683CD6EC33 /* write_batch.cc in Sources */ = {isa = PBXBuildFile; fileRef = 49DA1EE9DBD89923A441D6F7E523E1CD /* write_batch.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 94B42C9D29C036C16E5940397A69B359 /* server_config_selector_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0DBAF8CFE2B37FF190EC5340B9BA15A0 /* server_config_selector_filter.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 94BA8FF736481A4100A0CCDBEBEB0EB5 /* ref_counted_ptr.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = F6F312F259E87EC85B91F7A939B1B468 /* ref_counted_ptr.h */; }; - 94BF33D83311CBE3F988A55665225CCC /* util.c in Sources */ = {isa = PBXBuildFile; fileRef = AC4D8475979B94731553CF3718F2032C /* util.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 94C2D7571F75196E9F082745F1A64EA3 /* env_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = D6306F0EBEF45DBF030B935D2B692B83 /* env_windows.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 94C40BE3D93EA8FC9357CBB879D5FE9A /* xds_server_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = D09A90F68983DFAB4F7132A6AD9C9CEE /* xds_server_credentials.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 94D50E4BF97F7597F7BE569765642A8F /* error_cfstream.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = CBAFF506D7DE87F1BD5EF87F77653E61 /* error_cfstream.h */; }; - 94D6D583C4F7514E69315EBECBFB6048 /* connectivity_monitor.cc in Sources */ = {isa = PBXBuildFile; fileRef = CB82D039C82F66FEB29B564F988C0B10 /* connectivity_monitor.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 94E8D047B3F61991E5E82AA6F2C89F02 /* atm_gcc_sync.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = 325E0FC0BEB3C5BD5613692259DC18A9 /* atm_gcc_sync.h */; }; - 94EEB88F91BFA782F8B0E3FA18B31117 /* status_conversion.h in Headers */ = {isa = PBXBuildFile; fileRef = 499C98641AC653051E58F37C56DFDC90 /* status_conversion.h */; }; - 94F27BD1940A0672F09147C5A661076D /* cfstream_handle.h in Headers */ = {isa = PBXBuildFile; fileRef = E894220545B2955C83C809AA8FB61623 /* cfstream_handle.h */; }; - 9508C0C1C7D4FC5336F90DF1531027F9 /* time_zone_impl.h in Headers */ = {isa = PBXBuildFile; fileRef = F8FEC4047D05C7FCD280CF5F87630BC6 /* time_zone_impl.h */; }; - 950CF1DF41F33574F504B676A000CDAA /* aws_external_account_credentials.h in Copy src/core/lib/security/credentials/external Private Headers */ = {isa = PBXBuildFile; fileRef = C3C0682247F0D93AEDD5C4713F8BD1EB /* aws_external_account_credentials.h */; }; - 950F0BE708928659834D55AEDB902E67 /* xds_transport_grpc.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 7FFBB2575934A84CD4407EAC5962C6CA /* xds_transport_grpc.h */; }; - 9515A3EFF5BFA3EED82E4DEDE57A97E0 /* accesslog.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = B5DD57387FF143CE625134B9CFEAB0D8 /* accesslog.upbdefs.h */; }; - 951E2415BF6E83A34B5711202C6CAED8 /* matcher.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 65AA0752CA1CCAB85CDCF79822FFE962 /* matcher.upbdefs.h */; }; - 9520FB9968D7D3122EF6E05961F799E5 /* memory_allocator.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F95891C71213B1883A61B576E955919 /* memory_allocator.h */; }; - 95284BB96204D3E4E9EB7296A255B4BD /* xds_http_fault_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D46EDF9122ABA759BFC755058F54AB6 /* xds_http_fault_filter.h */; }; - 9528EA0373D860BB1A35F7865D918906 /* single_set_ptr.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 6B9D2CCA84E9768DD64ED2302D0DB06F /* single_set_ptr.h */; }; - 9532868CF7B0DD24CE0D4ABE87B6AC4C /* raw_logging.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A84271205C910073062A075B8C4731D /* raw_logging.h */; }; - 953E287985515F3FE6F88FD40B1342A8 /* accesslog.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 5880CF772E91BE7AF2D4558A6785D2E8 /* accesslog.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 9540134A714110D2CF9D6E8EB86537BC /* symbolize_elf.inc in Headers */ = {isa = PBXBuildFile; fileRef = 4FAAE301281B4502D94306AB89D80838 /* symbolize_elf.inc */; }; - 95501B9777316AD07E6B785150D3171B /* any.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = F01953BFA85C7D4454673CA1C0210ED1 /* any.upbdefs.h */; }; - 9551DCDE0743751C4E22C398BEDAF3D4 /* fault_injection_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = B5B313452E889490C09C09C639540230 /* fault_injection_filter.h */; }; - 9553284E6339299195F8A25BB83DD72E /* fast_type_id.h in Headers */ = {isa = PBXBuildFile; fileRef = FD0C11A97EC61A94C7FD02F030E88AAF /* fast_type_id.h */; }; - 955331FEB3BA431CC45EAB46D5F700E4 /* endpoint_components.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 54073F7D1227F56635F9D8186877FAB3 /* endpoint_components.upbdefs.h */; }; - 955949B0A467026F5382353F8DBE9E16 /* json_token.h in Copy src/core/lib/security/credentials/jwt Private Headers */ = {isa = PBXBuildFile; fileRef = FE9D702E233466F09D9CD2490AE6DCD7 /* json_token.h */; }; - 955D5A1279D39186754488917BA90121 /* listener_components.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/listener/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 1F5FA8A6467F58D2EBA8D27644636F33 /* listener_components.upbdefs.h */; }; - 9560BC7EDC3C925897CC0C73A4023E90 /* tcp_client.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C7AD5BF274896C2D7B990B777A63999 /* tcp_client.h */; }; - 9569A98675A06AE2C1F23B931431ADEA /* trace.h in Copy src/core/lib/event_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 32C86FED17DD95F9B7C6B6E64438F05A /* trace.h */; }; - 956ECE8C00BF367434D5BEA5F81E907E /* error_utils.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 4B05C0E180F3A12885A769A071238B78 /* error_utils.h */; }; - 956ED52BA8EEF9F353EBE376BC9F298F /* e_rc2.c in Sources */ = {isa = PBXBuildFile; fileRef = 250CA429343997A73FF1BA52F6F12DC3 /* e_rc2.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 95777A732778BE89AD23FCB371C1DADE /* table.h in Headers */ = {isa = PBXBuildFile; fileRef = 121DDDC118D56428E342CD24CFD53BE5 /* table.h */; }; - 95CFCF40955C2224154A31562A249ADC /* service_config_parser.h in Headers */ = {isa = PBXBuildFile; fileRef = 3817AA49B807F526FC21E3DD84ADC8AA /* service_config_parser.h */; }; - 95FF7DCE83B3827F394C9335C6392EC1 /* fault.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 38E257665B0ECE3EE3E6E3FC9A355908 /* fault.upb.h */; }; - 9601D4AF4FC484D779ACAFDB298B5A7B /* byte_stream_apple.mm in Sources */ = {isa = PBXBuildFile; fileRef = 22964823D12777DC44BE5BD99D5E245B /* byte_stream_apple.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; - 9607AE7EE065239AD7ED98A20FD2DCAB /* event_manager.cc in Sources */ = {isa = PBXBuildFile; fileRef = DAD29480BC3188C7B6EC504B340AC4EC /* event_manager.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 960AEA699D1FB96385CC231BA2B79536 /* skywalking.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = F7F30151F6076E89C98CFE8A78B7195E /* skywalking.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 96117D0644A9A77FADB2A1DAA6676A4A /* raw_hash_set.h in Copy container/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 6B99E72B942642C3141EA4555B2D804C /* raw_hash_set.h */; }; - 961FDA9E9594072B838A59BD1A7DB806 /* upb_utils.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = FB56314023FEFE8D7BEB0975EF14AEED /* upb_utils.h */; }; - 96432A7D39633F0BEB9617ECB59CC393 /* bdp_estimator.h in Headers */ = {isa = PBXBuildFile; fileRef = EC9F60A925CD6F8E96ECEDAF36EDD10C /* bdp_estimator.h */; }; - 965214065506A24D541E6166C1B838EB /* ads.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = B1924A8540B5948CCCD6505E51B7E327 /* ads.upbdefs.h */; }; - 9653C8C590B13EEFBABCA41407311478 /* hash_policy.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D0FDD6996E0E4699B1071F1F2F9FEAB /* hash_policy.upb.h */; }; - 9655B2812D20B2F1FDE5ACA05C710BE5 /* message_size_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D36AF9EE5791B878E4BA43E2C34234F /* message_size_filter.h */; }; - 965BDE3F4A4F7635E36EE9DB466C2E4B /* gcm.c in Sources */ = {isa = PBXBuildFile; fileRef = 60D3BE4BA25C88023931632F22A02A29 /* gcm.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 965C4AE6D4144AF24D3835A35CC56A2D /* snapshot_metadata.cc in Sources */ = {isa = PBXBuildFile; fileRef = A877D7812A8A5AD96E22FC18E041E923 /* snapshot_metadata.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 965F4D65BDF87C8658F3A54217D1E177 /* annotations.upb.h in Copy src/core/ext/upb-generated/google/api Private Headers */ = {isa = PBXBuildFile; fileRef = 7E44BC60564F2559251179498E12EAA0 /* annotations.upb.h */; }; - 9667EDA195BE99D5937CFE06ED510D9F /* resource.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = CA0795DE4A8B195D345BD674EDD26A0B /* resource.upbdefs.h */; }; - 966FD59BBB980E91868916FC5E318733 /* matcher.upb.h in Copy src/core/ext/upb-generated/envoy/config/common/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = BA255B3C833C4C12426FB784CBE2F7E4 /* matcher.upb.h */; }; - 96803E865B8136B9A551FB2AD4FB900F /* empty.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 03A8FEA26C43557304E9347251306D00 /* empty.upbdefs.h */; }; - 9685E21CF30DBBAAE40D1CBDA3629A17 /* FIRVerifyAssertionResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 277C10F71F11D91A7C5FD71E672768CF /* FIRVerifyAssertionResponse.m */; }; - 968B8A166B54FB195717DBA1E95E2FD0 /* load_system_roots.h in Copy src/core/lib/security/security_connector Private Headers */ = {isa = PBXBuildFile; fileRef = 0DF917ADF93C02952787C083C0950012 /* load_system_roots.h */; }; - 968F54A9A7BC22E1A3E0F4033362AE5B /* FIRPhoneAuthCredential_Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 2CFE842F513A06AC5E0080FD67F58512 /* FIRPhoneAuthCredential_Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 969EFB3C6C1EE0D430CECC0C079421D8 /* http_connection_manager.upb.h in Copy src/core/ext/upb-generated/envoy/extensions/filters/network/http_connection_manager/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 138C85F2E2FBD194C63B8E3AC8B59609 /* http_connection_manager.upb.h */; }; - 96A70F3616B65C8E12875B841FDA411E /* lb_policy_registry.h in Copy src/core/lib/load_balancing Private Headers */ = {isa = PBXBuildFile; fileRef = 897042239EB3DCA0DEDBB17D1D5F3FDD /* lb_policy_registry.h */; }; - 96B58427A98D2819421FD7690CAF7A6B /* subchannel.h in Headers */ = {isa = PBXBuildFile; fileRef = 020A6AE37E25FE5415EE87787A8B568B /* subchannel.h */; }; - 96C0FB742814EBD7853A254D5483D7D0 /* FIRFinalizeMFAEnrollmentRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = D167F2B07F65CE6EB39B8FE5E37DE0C0 /* FIRFinalizeMFAEnrollmentRequest.m */; }; - 96D5082847D67788238932D14B155F49 /* matcher.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 87B93940D10F0576FE285EEFCCEE374E /* matcher.upb.h */; }; - 96E64BDBD657DB277A75D575FAAD847F /* tcp_server_utils_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 655F0313FE586FC42B0F470D7F116EB7 /* tcp_server_utils_posix.h */; }; - 96F8C956BC3CB66EF1F677A9A85F7DED /* scoped_route.upb.h in Copy src/core/ext/upb-generated/envoy/config/route/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 4D5378060BCB42AA8BF69C98FF163CE3 /* scoped_route.upb.h */; }; - 96FBCDCE4670C0E7DC6164AA02635744 /* httpcli_ssl_credentials.h in Copy src/core/lib/http Private Headers */ = {isa = PBXBuildFile; fileRef = 71EAFA07B9DE319EDA1B6FC829613507 /* httpcli_ssl_credentials.h */; }; - 9706862F84ACE97723FDA10312BCA007 /* range.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = EB8C0A552D7530749626CB9E0348637F /* range.upbdefs.h */; }; - 970FC837F317B032A9704A0F7F127494 /* xds_cluster.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = B4BD71324832E53F4E39287E93D70953 /* xds_cluster.h */; }; - 9721736DB750657464402B88AC505BCE /* global_subchannel_pool.h in Copy src/core/ext/filters/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = 62D2CB7539315C4667F8DB4B16A53781 /* global_subchannel_pool.h */; }; - 97259677DF9FC459CA51B89B03B5EAC8 /* leveldb_util.cc in Sources */ = {isa = PBXBuildFile; fileRef = C0F6B89DA174E7E4CB2F566D9E817690 /* leveldb_util.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 97299EF0C03D62F80D3A09D056F75D08 /* xds_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A97659BA5049E13C49E920DDFAB371D /* xds_credentials.h */; }; - 9733A59B4035610F3C7324A7E1D6FC72 /* transport_security_common_api.h in Copy src/core/tsi/alts/handshaker Private Headers */ = {isa = PBXBuildFile; fileRef = A46F18014AAD3371E655B03883FDC642 /* transport_security_common_api.h */; }; - 973557F5FCFA4C070C8C5F69A5BC97B2 /* deterministic.c in Sources */ = {isa = PBXBuildFile; fileRef = 9F77F3D49820E70693FDAD683689EF79 /* deterministic.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 9757BFD2DC479844121239581DBD3E79 /* asn1t.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 53AA960E3E8C8CB8A6BF667D234082A9 /* asn1t.h */; }; - 9763C7454B8E9885A7E92E6E6E7F8E4C /* trace.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 8804887D943121340330F2566D6637A9 /* trace.upb.h */; }; - 9770051F3FDAAFE3AB7979A1D5A46AFA /* clusters.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 9B8CC21FB77A353ECC437199BB317363 /* clusters.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 9779300A3C4588C0B3793C0EEAFA0696 /* endpoint.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 6303FB2E62D7556F5DB77DD3A5EC121F /* endpoint.upbdefs.h */; }; - 977D31A09C777FB682BBBFD9CDF96B08 /* jwt_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F4EE9F5A1D5223ABF5B9850905E82F1 /* jwt_credentials.h */; }; - 97803C53DED83C5830A858D18C2A5E9D /* wrr_locality.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = F43E0662FD05DAEC8548519B75777AB3 /* wrr_locality.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 978A1140AFB45FA0AFC362633A69D049 /* FIRAuthTokenResult.m in Sources */ = {isa = PBXBuildFile; fileRef = F5010EE71550A293F1893EC35721FECF /* FIRAuthTokenResult.m */; }; - 9790B37090A15C8B19027E930D1BA86E /* slice_refcount_base.h in Headers */ = {isa = PBXBuildFile; fileRef = 0FC001E714139D0B27DA58324C56EBE1 /* slice_refcount_base.h */; }; - 979C045B04E1B066BE60356B99FEF6F2 /* stacktrace_generic-inl.inc in Copy debugging/internal Public Headers */ = {isa = PBXBuildFile; fileRef = D588211B948C15203FDABDD0CF5A5FF5 /* stacktrace_generic-inl.inc */; }; - 979D0837D8F4BBE5E44A06F1ED16632C /* secure_channel_arguments.cc in Sources */ = {isa = PBXBuildFile; fileRef = 936CA9C5F7CD89CA3CE009BEE806660C /* secure_channel_arguments.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 979DB67E3DC4F21271E05881D4478B23 /* load_report.upb.h in Copy src/core/ext/upb-generated/envoy/config/endpoint/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 15A1BE303BDB64B96512334CC58553FD /* load_report.upb.h */; }; - 979EF23ACA3E677BE994F47F665C85DF /* get_current_time_posix.inc in Copy time/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 78805CDED39A1B75118094B972E9AC75 /* get_current_time_posix.inc */; }; - 97B88FB026C795754ABECE0DBDE067F3 /* exception.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9F9EB9FE0EA2544B6DE15E05DE47EF61 /* exception.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 97ECB5DD3903CA2F2C04AD9C827D9345 /* load_system_roots.h in Headers */ = {isa = PBXBuildFile; fileRef = 0DF917ADF93C02952787C083C0950012 /* load_system_roots.h */; }; - 98120C20E17FA389161E757C0229E55A /* FIRAuthTokenResult.h in Headers */ = {isa = PBXBuildFile; fileRef = 6FF48038BF819D625A509E5DAD027800 /* FIRAuthTokenResult.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 9813B3D498C7ECBD7E75819513A27CCC /* trace.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 24206AFE77B0F19EECB7B5D202411858 /* trace.upbdefs.h */; }; - 981DB743455F0BA335FBAA1AEA003F67 /* x509_set.c in Sources */ = {isa = PBXBuildFile; fileRef = 0425F3E34C7B177BB60E6F39724B967F /* x509_set.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 982ACABF7FA2A19C7710422C9294CDEB /* inlined_vector.h in Headers */ = {isa = PBXBuildFile; fileRef = 19CB4B90FE8A0383092322CF0CFDF56B /* inlined_vector.h */; }; - 982D6D36FA92F72BA679C753812D3568 /* convert.c in Sources */ = {isa = PBXBuildFile; fileRef = 9946FA6DBF345A619B4D1E082F06617F /* convert.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 9831FEC2A3D703CC1393B684A416F720 /* wire_reader.h in Headers */ = {isa = PBXBuildFile; fileRef = CBC31EEA38EDE4AA625C923A3F2EA18D /* wire_reader.h */; }; - 98378D741E409EF4DC5BC4E33C1AD36D /* listener_components.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 4AB2D7CAE02AD13C08BD330638A71232 /* listener_components.upb.h */; }; - 98420B658AB8F380163307AD8E81E367 /* file_watcher_certificate_provider_factory.h in Headers */ = {isa = PBXBuildFile; fileRef = 84FA9BC8A082FDD586774F74A33D2EE6 /* file_watcher_certificate_provider_factory.h */; }; - 98494DD577EFD19FB6B6139F15E72572 /* security.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 077EFF9F3EF59167E0DEB42E51E3E93F /* security.upb.h */; }; - 987E0FB6351E22C4A4F8AD27BDECF19A /* FIRFieldValue.h in Headers */ = {isa = PBXBuildFile; fileRef = C852CAB06B011F79FEB2ED5206841923 /* FIRFieldValue.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 987EA066020262193F602053033262D6 /* a_int.c in Sources */ = {isa = PBXBuildFile; fileRef = 498924F002E148C19F59782E5E42A1F3 /* a_int.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 9885532D8D497DEF4B8AF5C4A271CB65 /* strutil.cc in Sources */ = {isa = PBXBuildFile; fileRef = 994D8465EFBE52A42629F2A93DBF103A /* strutil.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 988DC76A06A84D2ED2F973521DF7BAA8 /* json_util.h in Headers */ = {isa = PBXBuildFile; fileRef = C1F8550FF099F093E51C3BDF4A0F798F /* json_util.h */; }; - 9892C237B98DA9D354BE97323FA429C5 /* init_dump.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 725E6F4CF9E7CBF17245C63A497D04A2 /* init_dump.upb.h */; }; - 989DADD4D53DA77324D892AF89FB4156 /* base.h in Headers */ = {isa = PBXBuildFile; fileRef = 298E941846B394F119C4DAD5BF26A5CD /* base.h */; }; - 98A21F938FF7D49F1D5D9FB029790249 /* stacktrace_riscv-inl.inc in Headers */ = {isa = PBXBuildFile; fileRef = FC62437D59875DF3D4930A076152D69B /* stacktrace_riscv-inl.inc */; }; - 98AA906D97F381F759EE01A578B1A965 /* stl_type_traits.h in Headers */ = {isa = PBXBuildFile; fileRef = C4E34597B14DB579FD699639D72696C4 /* stl_type_traits.h */; }; - 98AD43B4647056DF8C0358D6F4585E6D /* FirebaseCore-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = ACD9F36B8B89E40BA619C3548BE1D1DE /* FirebaseCore-dummy.m */; }; - 98E1C3EFC95C958E7EE920DEADF20524 /* completion_queue.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B06CEBE0793FBE33C4712A6E92EBB8A /* completion_queue.h */; }; - 98E23D5C9E0C488F8F07862D4AE62A4C /* string_ref.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C07D8003D83CF55A7B8F310F65ED095 /* string_ref.h */; }; - 98E3AAC91EDEF62AA0DCBA0DACC8D51D /* block_builder.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4814DD23E64C444E95AE02FE86E36EB4 /* block_builder.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 98FB2E6D0AF99CF0B660F12D4D1811DD /* beta_distribution.h in Headers */ = {isa = PBXBuildFile; fileRef = 9DB099F422DEAE5C9819AC7ADB0AF1B7 /* beta_distribution.h */; }; - 9901AC133CCDDCFB1EC5A42939C305CC /* polling_resolver.cc in Sources */ = {isa = PBXBuildFile; fileRef = 44AA50AEA617B6562511EC6C56E3C3C7 /* polling_resolver.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 990FE9D8031D04FE286F6C2411BDBE15 /* manual_constructor.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = C7DBB5B1AAAB9AA6646DB95114D9EBB4 /* manual_constructor.h */; }; - 9912FD011B1E95249FF0A6D2D40836B0 /* ssl_utils_config.h in Copy src/core/lib/security/security_connector Private Headers */ = {isa = PBXBuildFile; fileRef = E1BCB43F5ACED0B2A69428E1E0C26355 /* ssl_utils_config.h */; }; - 9923C5927072AAE226BC7AD530206556 /* ofb.c in Sources */ = {isa = PBXBuildFile; fileRef = 237C2014E894CEA77D8DE38BC84609C4 /* ofb.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 9932486421DD1E32EBE432299626C815 /* api_trace.cc in Sources */ = {isa = PBXBuildFile; fileRef = EC75AE9C7489530528412280EF4BE174 /* api_trace.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 99434445BB5709F27725C4C7DBAC41F6 /* windows_engine.h in Headers */ = {isa = PBXBuildFile; fileRef = C346FB307EAB43E4890CD3B08C48FEBB /* windows_engine.h */; }; - 994DA9B1BCA3D8664505D475CC9E31B6 /* call_finalization.h in Copy src/core/lib/channel Private Headers */ = {isa = PBXBuildFile; fileRef = C427A5024BD0C5565DFC74DC86D2E541 /* call_finalization.h */; }; - 995069848438ED9DF8E86CC0D5A8102E /* chttp2_server.h in Headers */ = {isa = PBXBuildFile; fileRef = BAE09CAC8D64864773B942C42AECA757 /* chttp2_server.h */; }; - 995C5F0593DFB56AB9B8B3B6A34E71B3 /* file_external_account_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 77F45682034E5E49781F6B95BA3D8A07 /* file_external_account_credentials.h */; }; - 996C26E8220E44F9BA95DCFA21044107 /* listeners.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = E29197D0898C1483D626B4F1790037CA /* listeners.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 996D8743D51906C38C7939F41742DC96 /* http_status.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 2AFBB0E023D5D7D4335EC10B3DAA2E88 /* http_status.upbdefs.h */; }; - 99723D76026A7EBFDDB5B4B5E3AE5037 /* server_cc.cc in Sources */ = {isa = PBXBuildFile; fileRef = E6566312956BAB549CFCA7039FDD6FE4 /* server_cc.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 997461DEE9BDF3F537D65C4C0008CB8D /* FirebaseFirestore-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3230029473DC4A88131A7D55079A2EB2 /* FirebaseFirestore-dummy.m */; }; - 997E38A38B4AD0E4832A4356C3CC9301 /* FIRAuthAPNSToken.h in Headers */ = {isa = PBXBuildFile; fileRef = C1AB4BF0B36F02B935C393D7B59C8C18 /* FIRAuthAPNSToken.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9982CF7679FACCFF9617210D42A568E5 /* socket_windows.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 5C706862ED66421F97CA47041AED9E69 /* socket_windows.h */; }; - 998620D5BD68F9EB5E6BD8C1B9873CF9 /* ref_counted.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 1C087812611DD789464B8293CB08C565 /* ref_counted.h */; }; - 99889ABC81BC308E6B47DD36ECB3E2E7 /* proto_buffer_reader.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = E5359379FC10D3F77FF50503BA5F5F19 /* proto_buffer_reader.h */; }; - 99A54D11D2FBF193A2D7D2AF0810AB5A /* GULMutableDictionary.m in Sources */ = {isa = PBXBuildFile; fileRef = 8F331CD633F22585B4462B041D7C6F9F /* GULMutableDictionary.m */; }; - 99B831F3A48C23B08FBB67A704089782 /* gpr_types.h in Headers */ = {isa = PBXBuildFile; fileRef = AB55889357BD0B51C471DCF129DE7491 /* gpr_types.h */; }; - 99B9F43386A4AD53842AEAC5AADD2211 /* block.h in Headers */ = {isa = PBXBuildFile; fileRef = D654589D2B7BA6F642EFE99831408557 /* block.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 99C54546AF6150A49DB0CD38B7C63D37 /* prefilter.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F8F68011599A37679C69A6BC10FB9E8 /* prefilter.h */; }; - 99DA4B5EC19DF79EC213857E35CC9F39 /* div.c in Sources */ = {isa = PBXBuildFile; fileRef = 8736B2B7B6E3C11BB6F2BDA957A865A4 /* div.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 99DCA77AF6169B289BD729D635FF4504 /* status.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 010534D293688125225F9A18822035A2 /* status.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 99DCAECC2FC9257DFDA13D13E3759097 /* client_unary_call.h in Headers */ = {isa = PBXBuildFile; fileRef = C8A5F5D46C0B1ED71FB2F7D21C5FE0B1 /* client_unary_call.h */; }; - 99DCD473195F178EA615EE217E222103 /* core_codegen_interface.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 4AEEBFD269A1040AC399650FDC0A3BD9 /* core_codegen_interface.h */; }; - 99DDC95E2DDB1FE9C1DD7D029FE99A57 /* bootstrap.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = BE62B0F7FF80B367DE2B224425E3AFB3 /* bootstrap.upbdefs.h */; }; - 99DDF92DAB1D4900D950E68BC09F8809 /* resource_quota.h in Headers */ = {isa = PBXBuildFile; fileRef = 43E71514D4554E01A6957C0ED3C73B1C /* resource_quota.h */; }; - 9A12A740C78668D6DC7921BEF8903C90 /* FBLPromise+Delay.h in Headers */ = {isa = PBXBuildFile; fileRef = A7921AFE336345CA7A451D685B145835 /* FBLPromise+Delay.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 9A1490ED8A3A83CB3D19C836EF179A83 /* csds.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 642ACDB1EA8365F1ACF3CCD7B4654AF3 /* csds.upb.h */; }; - 9A53B1A55C223AFA4514FD7A322C7229 /* log.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 9ADC4838B72C90F19E552A45DE8F0C47 /* log.h */; }; - 9A5415BFE1C933659033A9E3B4FA3113 /* evaluate_args.h in Copy src/core/lib/security/authorization Private Headers */ = {isa = PBXBuildFile; fileRef = F89B1E7217556C8058C1B1492B6DD6D1 /* evaluate_args.h */; }; - 9A5BCFA659D90C1B660830A821760912 /* outlier_detection.h in Headers */ = {isa = PBXBuildFile; fileRef = A4CC2A4E07ED5C589FB43C94977A3B06 /* outlier_detection.h */; }; - 9A5DC0A9489CEF6EA017FAC9D39BA856 /* grpc_ares_wrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = C8622210E6CD5A198731B7CFC1989CA1 /* grpc_ares_wrapper.h */; }; - 9A6D42B667664ADBCEB62FAADD70B458 /* google_default_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = AF78A9D368188EE23CFE66BE0203AE23 /* google_default_credentials.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 9A818A09A5AAFC9C8EEFDE0577FCF5CB /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = C56CAD6FEF4D5B0C413772E8CAED7FD5 /* internal.h */; }; - 9A8220A34862F2C8358955516670D5C6 /* host_port.h in Headers */ = {isa = PBXBuildFile; fileRef = 33D32CF9DD8FF148548D1DB3F5F6BFC4 /* host_port.h */; }; - 9A88C406A3B053BDCAC32370338A9067 /* FIRComponentContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B3556C6520BE1382062DF1EDCAE22FA /* FIRComponentContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9A98EDFEB1188F3E3B7B9A698F034C91 /* grpc_service.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = A34E7F79675E30FBA8CF8367DD807154 /* grpc_service.upbdefs.h */; }; - 9AA46D199210013EA5A64F8543C18A24 /* call_combiner.h in Headers */ = {isa = PBXBuildFile; fileRef = 344ACC36B17FC8167067E434D8405371 /* call_combiner.h */; }; - 9ABA84DD9F9F9C7737A91994A3BA7A61 /* escaping.h in Headers */ = {isa = PBXBuildFile; fileRef = B50F571D4C6B41233971217B9CF0E454 /* escaping.h */; }; - 9ACAF379AAB777387213EEB1BC96750F /* upb_utils.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = ED2B97F127847B10C87C9925BF1C055D /* upb_utils.h */; }; - 9AF135EB777E365D3E4024175D0A7E0B /* xds_resource_type.h in Headers */ = {isa = PBXBuildFile; fileRef = 7CE573937799F08AB8B9EE9F30455699 /* xds_resource_type.h */; }; - 9AF250A778B66534340412AE724D9EC4 /* prog.h in Headers */ = {isa = PBXBuildFile; fileRef = FA273065DD3BB0E3B3891CE0BFD1BDA4 /* prog.h */; }; - 9B1774FC74E240A969E6A138D6CBC59E /* obj.h in Headers */ = {isa = PBXBuildFile; fileRef = 4042EBE7F65AF424E71FCA03CC332773 /* obj.h */; }; - 9B1A2CCBBB2FF254CA791C935154E24D /* status.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = A3E3233D995B2BC8E7817318911B7B70 /* status.upb.h */; }; - 9B1C9095627C0516918E3D5AB7E44F13 /* secure_endpoint.cc in Sources */ = {isa = PBXBuildFile; fileRef = DC370DDB91D9BBA829C11C1CF572B14C /* secure_endpoint.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 9B1CC84F7F03D3B5FDED555A47108A55 /* default_event_engine_factory.h in Copy src/core/lib/event_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 93BC0C8A2928C262C2EA37A096C25783 /* default_event_engine_factory.h */; }; - 9B2FF98EB297C8BB900692762D7B7979 /* service_config_parser.h in Copy src/core/lib/service_config Private Headers */ = {isa = PBXBuildFile; fileRef = C508BED4A2017ED4D125467788FDB416 /* service_config_parser.h */; }; - 9B39FCE5827188F866D9874F1A493F00 /* status.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 29E5C156BBAD95179DEA6EFA2CC24305 /* status.upbdefs.h */; }; - 9B3E2BAE38DBBBFF69A7AB8B5D1D93EE /* struct.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = DD266D40382F30E91821538F308B9C37 /* struct.upb.h */; }; - 9B54039BE2978A8839AF03FBA2A3237B /* subchannel_pool_interface.h in Copy src/core/ext/filters/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = 8AF126228940DFBB0169093B1627DC10 /* subchannel_pool_interface.h */; }; - 9B7E037DAF83B229623F5138D3E02FA9 /* packed_table.h in Headers */ = {isa = PBXBuildFile; fileRef = B741B5E1D0A54476A498636D5106EC42 /* packed_table.h */; }; - 9B80107AB9B906283D6F9D1F94C1D470 /* aes.c in Sources */ = {isa = PBXBuildFile; fileRef = BC00455AC6C581B961898488144CC358 /* aes.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 9B849FC4B4F2278F9118E30519C774B0 /* schedule.cc in Sources */ = {isa = PBXBuildFile; fileRef = DD0996E34BF22C2A10CD9FE16EE2C68E /* schedule.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 9B86F3FC996B70C8E5A21CC8901ABCA3 /* health_check.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 42F5A83768EA56ECD8B187D5BBC9729B /* health_check.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 9B88FA74ED4528EF007113C7691FD604 /* utility.h in Headers */ = {isa = PBXBuildFile; fileRef = AEAC7A743D481BAE51F0D1CAACC0B82F /* utility.h */; }; - 9B9D68EA3E1932D5BAAAC21AE9D14716 /* FIRFilter.mm in Sources */ = {isa = PBXBuildFile; fileRef = 471A65B86F7026E28EAF9DD25789E568 /* FIRFilter.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; - 9BA956609402DCBA1BE3264C843D3383 /* FIRStartMFAEnrollmentRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = EC5EBBF8CA2A8C829FAD55533A990CF5 /* FIRStartMFAEnrollmentRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9BAEBD31782CBFDF89B7B50BAFD4E358 /* xds_api.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 9E3C54000181AAAF157A7700F1E89832 /* xds_api.h */; }; - 9BB23ADC4E417F852C9DC9A388D96124 /* timer.h in Headers */ = {isa = PBXBuildFile; fileRef = 81FF50584EEE39E0E1601504C2917C96 /* timer.h */; }; - 9BB2B78A35D7268FF2364F305EF54914 /* hash_policy.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 932B8FCC5C539EC567D98AD4AC3F00F2 /* hash_policy.upbdefs.h */; }; - 9BB482409500D13EEA3452A406AE9AF7 /* resolver.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4E055439FF5B3CC31E680570D6DBB750 /* resolver.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 9BB53970BD349845723BA33EA5739D73 /* pkcs12.h in Headers */ = {isa = PBXBuildFile; fileRef = F1F0E7D62B87E55F757D1D62E975CE27 /* pkcs12.h */; }; - 9BE6638668935B8FDE2BB485CE2DCF1A /* timer.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 00E070AF0A0D570AA32BCF71D39C1C4E /* timer.h */; }; - 9BE8EAA282BA8B2DF208F37BBE100735 /* v3_pci.c in Sources */ = {isa = PBXBuildFile; fileRef = CD221A5EBFC7DB448FCE360B91865AA2 /* v3_pci.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 9C01DDF34B433BF113534729C1746D8F /* tcp_client_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 59915C66E81FA26B40805A8DB514E1F2 /* tcp_client_posix.h */; }; - 9C0384024D5049BF2DB00AA244BB4BF7 /* message_size_filter.h in Copy src/core/ext/filters/message_size Private Headers */ = {isa = PBXBuildFile; fileRef = 4D36AF9EE5791B878E4BA43E2C34234F /* message_size_filter.h */; }; - 9C1355FD9A8CEC668033BAD4DE0B4224 /* optional.h in Copy types/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 95407501728C6F7F67AEFF1908758714 /* optional.h */; }; - 9C159591A51767C52CCD314C05C49170 /* HeartbeatsBundle.swift in Sources */ = {isa = PBXBuildFile; fileRef = CF853DA8F3F25FEA0C49B382492050AA /* HeartbeatsBundle.swift */; }; - 9C172BC0FF0B10C737566AD2E6F83A20 /* grpc_security.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = FF37696428EE1051ADDBBD9AE3B8FEA5 /* grpc_security.h */; }; - 9C1B4EBF6929D94EE7D5DEF58C771E3C /* transport_stream_receiver_impl.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A91BF0679525A06A66682783F9DD8C5 /* transport_stream_receiver_impl.h */; }; - 9C391F169710C3C50F72D3A19A1524E0 /* murmur_hash.h in Copy src/core/lib/gpr Private Headers */ = {isa = PBXBuildFile; fileRef = 06C01CD6ECB4DB8B2FC4240C7A7CB62B /* murmur_hash.h */; }; - 9C39302419253145828F0F69ACE33DFD /* randen_detect.cc in Sources */ = {isa = PBXBuildFile; fileRef = D9F297A60D62500B24EFF32C3261A573 /* randen_detect.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 9C4B63A6B3A371797DD4637F2840B625 /* syntax.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 2A7D2FF6173D8DE0A107DE2F930F13AF /* syntax.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 9C4F5C9593B4570B7FFFE430FEC1B200 /* grpc_method_list.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = B049DE461AA1CC94A072979096BE57C9 /* grpc_method_list.upbdefs.h */; }; - 9C4F857603DE00470941656B95D59EB4 /* http_uri.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 751AD17722D4C9100D4429537720B298 /* http_uri.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 9C5363ED8F52C347BE5D70261376D18E /* cipher.h in Headers */ = {isa = PBXBuildFile; fileRef = 59EF36BF4F79771B64C36DB8BBDD0920 /* cipher.h */; }; - 9C66ADDA9EA021009958058C41D9ABF8 /* secure_endpoint.h in Copy src/core/lib/security/transport Private Headers */ = {isa = PBXBuildFile; fileRef = AD2E12207946547B6E6B68790692F2B9 /* secure_endpoint.h */; }; - 9C6928F5E503B5C025CDF16BB2638CC3 /* tls.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = C3305968FF0543665BC614A27723F5BC /* tls.upbdefs.h */; }; - 9C6AA8C60FD2118F3F6523FB6E2C3FB5 /* background_queue.cc in Sources */ = {isa = PBXBuildFile; fileRef = 018FB099107C1B9D30BF97F7306BCE03 /* background_queue.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 9C7421AA0DB842EC08D7AE7C336325EB /* work_serializer.cc in Sources */ = {isa = PBXBuildFile; fileRef = 21D332C63FDD0A327DF11689DFCDB201 /* work_serializer.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 9C74B0A65A0CC51EE42A4D6487B32126 /* message_size_filter.h in Copy src/core/ext/filters/message_size Private Headers */ = {isa = PBXBuildFile; fileRef = C8D5AA504C413C950D1B594F15E196E8 /* message_size_filter.h */; }; - 9C7AE14EC1E84C09B9FE816C1EA18E11 /* thd.h in Headers */ = {isa = PBXBuildFile; fileRef = DD10F7256FDD72CB5B38A204933FDEFE /* thd.h */; }; - 9C7E861F62DA95FCF17997B5E5C0E10E /* trace.cc in Sources */ = {isa = PBXBuildFile; fileRef = FD5C926B169100E43975F149C5E2D00F /* trace.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 9C85B6DC4E4BDD98B5D1989AFC48D8AD /* port.h in Copy base Public Headers */ = {isa = PBXBuildFile; fileRef = AB76D999C9ABCA718FC360F0332E0F9C /* port.h */; }; - 9C895CB310AF707F1989F69235BFD100 /* compression_types.h in Headers */ = {isa = PBXBuildFile; fileRef = 81AA2138E20060E7B193DCE068D5CBB1 /* compression_types.h */; }; - 9C9174FD79CDA2A06C08B1E02421CC61 /* channel_stack_builder.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6BF6B0CC722E832FB4616822FC4E1468 /* channel_stack_builder.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 9C9F7778A51E639CDE45C48E1BE120F0 /* no_destruct.h in Headers */ = {isa = PBXBuildFile; fileRef = BE976FF31E3EFC8F3A9A35234659F126 /* no_destruct.h */; }; - 9CA2A991595FD31161E5EDCCB3F6F062 /* api_listener.upb.h in Copy src/core/ext/upb-generated/envoy/config/listener/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = E06AE2FEE43559ABACD13C304CE87102 /* api_listener.upb.h */; }; - 9CA9BCD02E64CB8FC656DC8B8F49FB2A /* pem_oth.c in Sources */ = {isa = PBXBuildFile; fileRef = ABCC6D488CD6F5465384E1CAD633446A /* pem_oth.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 9CB31E791EC1BA8AEB08D9351B441AB7 /* ads.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/service/discovery/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = B1924A8540B5948CCCD6505E51B7E327 /* ads.upbdefs.h */; }; - 9CB945B056A532009D099682CAF7BC3D /* uniform_helper.h in Copy random/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 96E82519BC47272FA3E2117D8958D8AA /* uniform_helper.h */; }; - 9CBF30013ECB20BE8DEB8B100ED4B672 /* pem_lib.c in Sources */ = {isa = PBXBuildFile; fileRef = 5809F16E1565F6CA14FF9115A226C2B7 /* pem_lib.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 9CC2E4262ED4DCAED0C8A71482971341 /* checker.h in Headers */ = {isa = PBXBuildFile; fileRef = F7D547DD535F6DEB05AEBCDC9899AF48 /* checker.h */; }; - 9CE4D7EFC43DDFB720100662D82C4CFD /* sync_posix.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 0864CA5A01B9210E75D570FE804711DA /* sync_posix.h */; }; - 9CF66B52DB02A77678BCB8305CE4F330 /* sync_abseil.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = FD614FF5A204C9A46304C9B2FCD76F4F /* sync_abseil.h */; }; - 9D09A605FA6A9333230144CA8C9BC98D /* server_address.h in Headers */ = {isa = PBXBuildFile; fileRef = F4AB0837D6154CD500F86D65966EC78D /* server_address.h */; }; - 9D0F642334EA9FE79EAC16B0B66BCD20 /* client_authority_filter.h in Copy src/core/ext/filters/http Private Headers */ = {isa = PBXBuildFile; fileRef = 4862B1E05E14E6DAA2870C9F290C2DE6 /* client_authority_filter.h */; }; - 9D222100143F3C60E8F8BB6EE5BEEA86 /* server_address.h in Headers */ = {isa = PBXBuildFile; fileRef = B5AEE86292B51CFD21969FB61AAE8E47 /* server_address.h */; }; - 9D2419298664CCD397BE5C771BAFDA28 /* annotations.nanopb.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3B32B1F1E09CEEDBF447CABE86592ED9 /* annotations.nanopb.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 9D27426BAE3957001999461D29843F84 /* zipkin.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = F3120CE4BC39237FD543B7217D3B6C90 /* zipkin.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 9D2A3EB56059D465B3DA2886DB57C942 /* matchers.h in Headers */ = {isa = PBXBuildFile; fileRef = 7502A837CC53F38AAD8556DFB716330F /* matchers.h */; }; - 9D328802053B7BE14AB21A7DC2E7012D /* FirebaseCore-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = D7375A3ADA6615435BD64AB6CA000629 /* FirebaseCore-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 9D35FE379EF746A44CF165941F75E9F6 /* mem.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = C4F7C55FB495334E5FD1560D585965EE /* mem.h */; }; - 9D39224913F5FD1A91C8F9E556E29D76 /* port.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 8C4A149D171AFA29986FD92EAAF3CE09 /* port.h */; }; - 9D3BCAC271ED1E2C72A24454F0B4B843 /* FIRWriteBatch.h in Headers */ = {isa = PBXBuildFile; fileRef = 5679B6B360A9D56E5390A072D8C20AD5 /* FIRWriteBatch.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 9D4847DC28A086B5D7C0524BC9AA591E /* regex.upb.h in Copy src/core/ext/upb-generated/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = FD76DB8B1C84D0CA7A8F2C22FF9CFAAD /* regex.upb.h */; }; - 9D50C6A81BBC4CA6A81E6E39AA644C0B /* uri_parser.cc in Sources */ = {isa = PBXBuildFile; fileRef = E4F3F93FC028B79CAE315F17B276D3BC /* uri_parser.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 9D5F295ED9F7597E0D069885D266A855 /* FIRUserInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 030B7DEEE1BD4F2D308AC78EBB0F0F30 /* FIRUserInfo.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 9D619D7196BF272310D71E48F4AF65F1 /* FIRVerifyPasswordResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 48BFA24DB91B4F48D1FE2CB683127234 /* FIRVerifyPasswordResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9D631D5A73D3439A2EB3F68DD77A2A2A /* base.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 68C239C60B8E52D5988C72A7A491602B /* base.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 9D6569919B9033218BB043C17DEF58CE /* certificate_provider_factory.h in Headers */ = {isa = PBXBuildFile; fileRef = ADC7D617245F4925E8E802FE2851624B /* certificate_provider_factory.h */; }; - 9D7F346D56E1B525CA86AE8CA718E367 /* function_ref.h in Headers */ = {isa = PBXBuildFile; fileRef = D637067B913200CB7802A5C3D7395CBB /* function_ref.h */; }; - 9D8B7CB4CB094AAA8F707A91E7E6131E /* client_channel.cc in Sources */ = {isa = PBXBuildFile; fileRef = 83C49915B4E2E3A662A1BF4ED2CDEE28 /* client_channel.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 9D99C9D9133A1E38863EEB04107E4CAB /* custom_tag.upb.h in Copy src/core/ext/upb-generated/envoy/type/tracing/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 84A4F3F91B2C9D52ACC491186DE3BA54 /* custom_tag.upb.h */; }; - 9DA3C478F994910356D76ADC9AB4379D /* zone_info_source.cc in Sources */ = {isa = PBXBuildFile; fileRef = F224930808921BE4F210A6CCAAE592EE /* zone_info_source.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 9DB0A0FBAE905247A0648F24F13FCC7D /* xds_client.h in Headers */ = {isa = PBXBuildFile; fileRef = C64C3CBC9FDC946919B982478C692E19 /* xds_client.h */; }; - 9DB69E9124F97E070315FC8F91CBC153 /* d1_srtp.cc in Sources */ = {isa = PBXBuildFile; fileRef = 78C1B6A66357E854B9307DE2D5F87DC0 /* d1_srtp.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 9DBA02A437EB4AC86E42F1FA85B49FAB /* type_traits.h in Copy meta Public Headers */ = {isa = PBXBuildFile; fileRef = DB6B065074B8D78FBBE33493FA80E477 /* type_traits.h */; }; - 9DC736FC0B5D13EC0C53E5E0740D019C /* GULNetwork.h in Headers */ = {isa = PBXBuildFile; fileRef = 499FE9B2FF9C133B079D8F52F5109B43 /* GULNetwork.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 9DC7BA340F98075696CC08A883D121EE /* hpack_encoder.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 704E8748DDB35FAF66471C49C504C5DF /* hpack_encoder.h */; }; - 9DC9D44638FC1357215CFE78368396F2 /* packed_table.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = C696EDE0BDCE8052D82F55490A08DB80 /* packed_table.h */; }; - 9DCC78D309B16341A3E526B29DA8EF7E /* metrics.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 523794809B51B648FD57064BA081DC90 /* metrics.upb.h */; }; - 9DCC87C95A56D5E3ED75F8981F341B11 /* seed_gen_exception.cc in Sources */ = {isa = PBXBuildFile; fileRef = 41672B98A8255E20F55CC81C990582F9 /* seed_gen_exception.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - 9DD3B03D41258DCBF365CC8339CFEB50 /* thread_pthread.c in Sources */ = {isa = PBXBuildFile; fileRef = 5A6DB7A1DA911ECF9958B15032F751CF /* thread_pthread.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 9DDD30D1DA104B32EAC94F11AED7FC72 /* prefilter_tree.h in Copy third_party/re2/re2 Private Headers */ = {isa = PBXBuildFile; fileRef = B903D4DEFC7342FE0063E6E284FFC0A8 /* prefilter_tree.h */; }; - 9DDDC1EFEE831A3BC5BCBEDE6E91D912 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6E336DC2534E1E69B7828F6012B874C6 /* Foundation.framework */; }; - 9DE13F10E924F2E62547A7E64A6FFA15 /* decode_huff.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 5D71FA456F5CC276DCD6818F1FC5679C /* decode_huff.h */; }; - 9DF3B7F34D36071FC1868D68E5D03CED /* http_inputs.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = F4B0D6D086A465BD30BA7402D497718E /* http_inputs.upbdefs.h */; }; - 9E07FABA0E02613C3109633844CE5A97 /* md5.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3CBD302CC0B8EA28E6C29CAD109FA4F3 /* md5.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 9E0B82C560400B3D7A5E8401399A4A03 /* FIRSignUpNewUserResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 8C2D8E60B8DD73E74E64BA02300F6645 /* FIRSignUpNewUserResponse.m */; }; - 9E1DFADCE8D4136810EFF3F506469713 /* activity.h in Headers */ = {isa = PBXBuildFile; fileRef = D98B0B1364291A20272519B09E728D02 /* activity.h */; }; - 9E48E7A1D8F57D799FBC65D2BBAE4B36 /* ads.upb.h in Copy src/core/ext/upb-generated/envoy/service/discovery/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 6798E263C7C5EA17A26793A0714EF4EF /* ads.upb.h */; }; - 9E5575788405CE393292593E852933A8 /* channel_stack_builder_impl.h in Headers */ = {isa = PBXBuildFile; fileRef = A590B23F87299401E5D446F0B1E26DB3 /* channel_stack_builder_impl.h */; }; - 9E5ADF5D4834D4D01C3F95CCFE6C34BE /* security.upb.h in Copy src/core/ext/upb-generated/udpa/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = 19C4F5543656C428F09D47C6E17FABA3 /* security.upb.h */; }; - 9E6538F693F5AFF8ABD7316AA2F3E242 /* dynamic_annotations.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = C2412C2A3DE452FC48580DA2AE379834 /* dynamic_annotations.h */; }; - 9E6823C8EF820AA5349AF7959F44FB16 /* huffsyms.h in Headers */ = {isa = PBXBuildFile; fileRef = 9D36B227BF49390FFB4DC7950433A2E4 /* huffsyms.h */; }; - 9E6A5ED26E811431F20C2EE6D1AC6A35 /* server_initializer.h in Copy impl Public Headers */ = {isa = PBXBuildFile; fileRef = 2A3B11ED631F1883AF4E338DCED55465 /* server_initializer.h */; }; - 9E748B08A17FBDA5961665AE51AB582D /* external_connection_acceptor_impl.h in Headers */ = {isa = PBXBuildFile; fileRef = AD59B65829EA51515373573B12B1F26E /* external_connection_acceptor_impl.h */; }; - 9E7D9BE6A38A8F6C3DDBD25D19625AE9 /* socket_option.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 9CE9D1ED01E586499FA49574DFC0A04F /* socket_option.upbdefs.h */; }; - 9E825C4F03B5355C2B500823639946F3 /* pollset_set_windows.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B3115FB24152FFA95CA7917CD2F9ED1 /* pollset_set_windows.h */; }; - 9E840A5A4ACFA2C85A70B6099A06D302 /* FIRCollectionReference.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D898CE712703E831FE8B73B3A0292B9 /* FIRCollectionReference.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 9E8959F9AF6D7051104D9AFF28AEF682 /* FIRSendVerificationCodeRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = DF48F3E62DB57D23DA30B3A8A4ECAE95 /* FIRSendVerificationCodeRequest.m */; }; - 9E8ED85C46498A6760AACFE9160280B2 /* any.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = F01953BFA85C7D4454673CA1C0210ED1 /* any.upbdefs.h */; }; - 9E941FE2BB9587C4EE0DB7196167EDD7 /* http_connection_manager.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 138C85F2E2FBD194C63B8E3AC8B59609 /* http_connection_manager.upb.h */; }; - 9E967C28784129DE7AECEF48DD013D71 /* authorization_policy_provider.h in Copy security Public Headers */ = {isa = PBXBuildFile; fileRef = A8CE24F6E2CE893BDB9D00AECBEF5F21 /* authorization_policy_provider.h */; }; - 9E98F7AF0266C1FF765A9156F5576C51 /* statusor_internal.h in Copy status/internal Public Headers */ = {isa = PBXBuildFile; fileRef = D5101239B8BEA293E6A10ADA36E3C9C1 /* statusor_internal.h */; }; - 9EA355687B528CCBC33D4F3C713EF3A3 /* decode_huff.h in Headers */ = {isa = PBXBuildFile; fileRef = 7A67F4ADED1D8EAE12E545FF2135B2CA /* decode_huff.h */; }; - 9EACC41C04BF751D42CEC53B27218728 /* grpc_connection.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6EC846317B709186F9758E972A6C9FDF /* grpc_connection.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 9EAE8FB2ED7A3193E637CD72810E5A88 /* parse_address.h in Copy src/core/lib/address_utils Private Headers */ = {isa = PBXBuildFile; fileRef = 48CE49C03EE094E4D3931D0F06DC696A /* parse_address.h */; }; - 9EB5F46B8B8B4F44F5B806DCF9AB9F5A /* span.h in Copy types Public Headers */ = {isa = PBXBuildFile; fileRef = 02CCD7ECDB0F2D55A4F9279D35FF4B86 /* span.h */; }; - 9EB910D1CACE5B987EC137E8EC229214 /* FBLPromise.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A66A991AFDA73024CA4A83E8C419108 /* FBLPromise.m */; }; - 9EC55EECF94C121CCA69BE87D4960DC5 /* internal.h in Copy crypto/fipsmodule/bn Private Headers */ = {isa = PBXBuildFile; fileRef = 4560AC8C4A0FBBD9C575F8DBE37D1948 /* internal.h */; }; - 9EE0922A0FCEB97A2BD5DDEAE289A1E6 /* init_dump.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 83BCBD8913368A4D7D627ABC388471BD /* init_dump.upb.h */; }; - 9EE1EB564985AEAE11D3E5E9A8B82052 /* a_d2i_fp.c in Sources */ = {isa = PBXBuildFile; fileRef = A488D54FFBC330077FBF21FD836C7E39 /* a_d2i_fp.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - 9EE54793382BA04A0234240E4FBF709F /* opencensus.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 9FACE661387F5F53E609A1427068B813 /* opencensus.upbdefs.h */; }; - 9EEFBCB14180C6F1C73C8B80964470B4 /* executor.h in Headers */ = {isa = PBXBuildFile; fileRef = DF9248F8632D47E65700F68F120F89A2 /* executor.h */; }; - 9EF6ECAE26257189BEB5E3A14A61DEEA /* interceptor_common.h in Headers */ = {isa = PBXBuildFile; fileRef = D70F9BCB20D2D297FE29FBD3FA60BDB2 /* interceptor_common.h */; }; - 9EFFAD6400B47EDCA6D0EA45BB65304B /* FIRGetProjectConfigRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 1D780F1CC26400888513316ADA2DF632 /* FIRGetProjectConfigRequest.m */; }; - 9F1952A6A4D7589F12E965E72ED342E1 /* policy_checks.h in Headers */ = {isa = PBXBuildFile; fileRef = E4EA0DD7FBC34C06DF9C1A78C15D1F42 /* policy_checks.h */; }; - 9F1C7F3FD55B2A8F41D949A9450E05EA /* connectivity_state.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 1482EA741A890385794839EA2CF8107A /* connectivity_state.h */; }; - 9F344512158E34C69847ACB647F08306 /* fault.upb.h in Copy src/core/ext/upb-generated/envoy/extensions/filters/common/fault/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 38E257665B0ECE3EE3E6E3FC9A355908 /* fault.upb.h */; }; - 9F60F610E6767C05043B432F8C3F2979 /* ssl_session.h in Headers */ = {isa = PBXBuildFile; fileRef = CADB821EEF7B32DC74157BCDEF6A9342 /* ssl_session.h */; }; - 9F66DDD0455C58FC7F0CE07BAEC8F42B /* httpcli.cc in Sources */ = {isa = PBXBuildFile; fileRef = 54A4C452D72F5192D61186F24C060D34 /* httpcli.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 9F6B308CADF428A625198DC8400E6151 /* channelz.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D5CF40EE7AD60D5023793ABD71D8D0A /* channelz.h */; }; - 9F6DA8B72ACDAA87F44966A27928AC4B /* lru_garbage_collector.cc in Sources */ = {isa = PBXBuildFile; fileRef = A8B9AAA6BB6FE63B57970ED7E057B10A /* lru_garbage_collector.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 9F70152DDD22AA7143ABA5A55EDAEC30 /* FIRAuthNotificationManager.h in Headers */ = {isa = PBXBuildFile; fileRef = DEA7D6290FB25ED9BF566AA2FCFE648C /* FIRAuthNotificationManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9F7456210C3ADAF90C84B08EFFE00839 /* grpc_root_certificate_finder_generated.cc in Sources */ = {isa = PBXBuildFile; fileRef = AA8B78D00C90CDF4189F04D9F26BD698 /* grpc_root_certificate_finder_generated.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - 9F7E2EF6FA01AA536EC842366997BE5D /* dtls1.h in Headers */ = {isa = PBXBuildFile; fileRef = 5F0F918542AF47A0A5D64E15E43C5BB0 /* dtls1.h */; }; - 9F7F55F3A6E20813835819EB5961113A /* http2_settings.h in Headers */ = {isa = PBXBuildFile; fileRef = 65416ED0373A4CA19EB0B6CF4D732370 /* http2_settings.h */; }; - 9F82773AABF42EB17175B2C0E3062C87 /* secure_credentials.h in Copy src/cpp/client Private Headers */ = {isa = PBXBuildFile; fileRef = 1C804E76A5EC6FA9CC2F80A0523C6546 /* secure_credentials.h */; }; - 9F8762BED1BD23966A43B1BE666072A2 /* duration.upb.h in Copy src/core/ext/upb-generated/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = ACFC142DFC406C2332224C832F68BB8A /* duration.upb.h */; }; - 9F8925810B8CCA6E3109C11BEE47BD99 /* ostringstream.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B3CF4491472F38C5859F81F7DC14EA0 /* ostringstream.h */; }; - 9F994227B8BFBE031092BB10A190F9E4 /* xds_api.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E3C54000181AAAF157A7700F1E89832 /* xds_api.h */; }; - 9FB0FBBD4DB377AED8CB12F4EFB2B2C2 /* timer.cc in Sources */ = {isa = PBXBuildFile; fileRef = D542D463504E6A57C68E605192593783 /* timer.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - 9FB64F235BA1E7330EFD9E8BC8530EEE /* alts_grpc_privacy_integrity_record_protocol.h in Copy src/core/tsi/alts/zero_copy_frame_protector Private Headers */ = {isa = PBXBuildFile; fileRef = 4CBD2DA5AF23D05371273038813442D9 /* alts_grpc_privacy_integrity_record_protocol.h */; }; - 9FB8B3C571AD9149D3EA19EE6EBCC03E /* config_dump.upb.h in Copy src/core/ext/upb-generated/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = C11215E6720095E129DC3BFCBC99FD34 /* config_dump.upb.h */; }; - 9FBD20B73F39FA068818A7C3D661C17D /* substitution_format_string.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 75DD5BF8D95AA27C2637D80816D3A30C /* substitution_format_string.upb.h */; }; - 9FBFC70687A05FE2AF75D56F9787B126 /* rbac_policy.h in Copy src/core/lib/security/authorization Private Headers */ = {isa = PBXBuildFile; fileRef = E77B4D66F6075235B8399BA732A8B39E /* rbac_policy.h */; }; - 9FCECFA7821EB9A4EB745389B5CF5DDE /* syntax.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/api/expr/v1alpha1 Private Headers */ = {isa = PBXBuildFile; fileRef = ACBD2765C696BE0C99C66D5005CD44E4 /* syntax.upbdefs.h */; }; - 9FDCE99BC084DEDFB80F99B2F37F8A45 /* ecdh.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 93D0A2031131711A048901AB90D5BB18 /* ecdh.h */; }; - 9FE4A3CAA98C37D1E05D1DEDFE21133D /* pool_urbg.h in Headers */ = {isa = PBXBuildFile; fileRef = DDD0ECC2DFF834BA66AF17E2A60A69A2 /* pool_urbg.h */; }; - 9FE5E96D978BB0DB48A9564BE8553E80 /* router.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/extensions/filters/http/router/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = C9CC380E5CD27BAA280EC6FFD46E817A /* router.upbdefs.h */; }; - 9FE8FC7884E10139EDFB5CA3641D3E7F /* xds_bootstrap.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = E011348B10B6B69A81AD38B50CAC6F65 /* xds_bootstrap.h */; }; - 9FEDF39123891C8E4084ACC28C20E28A /* connected_channel.h in Copy src/core/lib/channel Private Headers */ = {isa = PBXBuildFile; fileRef = EEB2DF6EAA27D4F4070C3CB8F2A9F9E8 /* connected_channel.h */; }; - 9FF295E54F9511775A5736663B97CF8B /* FIRRevokeTokenResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = B6F763F8E761D51991DC18A7BEB3D6C0 /* FIRRevokeTokenResponse.m */; }; - 9FFBA2BE4EFA05B7582F486462790419 /* certificate_provider_registry.h in Copy src/core/lib/security/certificate_provider Private Headers */ = {isa = PBXBuildFile; fileRef = 81D16BCC8091077027780C7A49CD622A /* certificate_provider_registry.h */; }; - 9FFE9DB932389638BAE8D50B3CF984FA /* bin_encoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 915CBB4C8E3DF85B5720CB4944C7FB30 /* bin_encoder.h */; }; - A000DCF48A4CAC5F07E210936F4E7D1F /* FIRAuthTokenResult_Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 47966719743DBDFE3EA0E7807EC57A09 /* FIRAuthTokenResult_Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A005470A98F97842FF26122BB344B727 /* mutexlock.h in Headers */ = {isa = PBXBuildFile; fileRef = 95D9606B4E6C7D614CB6934E51455D3E /* mutexlock.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A0081FB0BD16CFD0F65DEB15F5BECE8B /* seq.h in Headers */ = {isa = PBXBuildFile; fileRef = BBF9D82CB030E0580E8E813B97B78C07 /* seq.h */; }; - A00C52B7A401BB6D49FA4D6D01D086FE /* FIRGetAccountInfoResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = C1DD1ED98A7670A43287C0E1FF3B26B0 /* FIRGetAccountInfoResponse.m */; }; - A0128836B6EEC67FE231F95158507DEE /* string.upb.h in Copy src/core/ext/upb-generated/xds/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 8D0CA8486581ADBC2362788F8FBD96DC /* string.upb.h */; }; - A016F8A36FF5499F7E8B8494C6178DEC /* FIREmailPasswordAuthCredential.h in Headers */ = {isa = PBXBuildFile; fileRef = 0FC93416721A53218A385CE125CCC17E /* FIREmailPasswordAuthCredential.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A0267F587AE95A1B90CE6EEB723E72C4 /* mul.c in Sources */ = {isa = PBXBuildFile; fileRef = D0F1323D76B57E1FC8B9EB16C6FF9BA4 /* mul.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - A030264F1BA7E10087703C27A56B44DE /* iomgr.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = F09371D8E1BDC697CFBDB94012B76BE6 /* iomgr.h */; }; - A03EE5A05CBF42EF0D5E9ED800FB1CA8 /* json_object_loader.h in Copy src/core/lib/json Private Headers */ = {isa = PBXBuildFile; fileRef = 9C8AEB3336DAA85F1BE33A4478950EDF /* json_object_loader.h */; }; - A04718673A7061951291F7D37E72C802 /* wakeup_fd_pipe.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 882FA820A914F9DB47B274DBD324DB86 /* wakeup_fd_pipe.h */; }; - A04AC90695636884CC901A851FC9187A /* lightstep.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 2CC5911D1AA7258ED37D328DD3577840 /* lightstep.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - A05D134E5933D89D1149BF73D7010A47 /* time_zone_fixed.cc in Sources */ = {isa = PBXBuildFile; fileRef = 83E7DD1707FE6C7B1F53FD828397DEDE /* time_zone_fixed.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - A05EA3E335AC4BD781C040D14F51946E /* grpc_context.cc in Sources */ = {isa = PBXBuildFile; fileRef = D51AD44419F4EF94CEED3BB200631976 /* grpc_context.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - A06CA4B6B505C8006F7F0E6D6EF42ABA /* sync.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 1433FF61669DF6AE8B034989C2EE7053 /* sync.h */; }; - A07B2A614A90535626BC1B40EA9B5C7C /* context.h in Copy src/core/lib/channel Private Headers */ = {isa = PBXBuildFile; fileRef = 0D6A0A6A622EE2DD10856BF2120B85C8 /* context.h */; }; - A080358781CE1C4B4148E52238AAA736 /* log_uniform_int_distribution.h in Copy random Public Headers */ = {isa = PBXBuildFile; fileRef = 667E24C6A2AA29ABD2E5C1924C33B6F4 /* log_uniform_int_distribution.h */; }; - A0A08414F0E68078B96E55BC4628AD9A /* extension.upb.h in Copy src/core/ext/upb-generated/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = AE8C374CFD33BAB906F085E13C66FEC1 /* extension.upb.h */; }; - A0AD7D522CB63E00DBD417B51EF03241 /* endpoint.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 62F31A570C21E4784474A1A9BD23A4B6 /* endpoint.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - A0B2A9575E251C2147F8660DCBFDA332 /* health_check.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 4905DEDED50FDA250A1F79866DB0C5F8 /* health_check.upbdefs.h */; }; - A0BFE842E5236465813F672230CD6D8E /* collection_entry.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 66FF31333A00D1CCF92B7A56582111B5 /* collection_entry.upb.h */; }; - A0C8DFC92AFBD918392BA054EB5CA45D /* load_system_roots_supported.h in Copy src/core/lib/security/security_connector Private Headers */ = {isa = PBXBuildFile; fileRef = 4BE4B22FC4440CF7E4A38053BB7519A8 /* load_system_roots_supported.h */; }; - A0D07DF0730C1A484DB4BB76BB8814C0 /* transport_impl.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 47509376033A3C34BA5D277828F8123F /* transport_impl.h */; }; - A0E8EF52CD47DCFFD1337D828E76867E /* binder_credentials.h in Copy security Public Headers */ = {isa = PBXBuildFile; fileRef = 53EE4E6DDACBC578020A1B75F103332F /* binder_credentials.h */; }; - A1083924EC10FE0D53B381576FA9DDA0 /* resolver.h in Copy src/core/lib/resolver Private Headers */ = {isa = PBXBuildFile; fileRef = 19CA51DFF75942055965196F29F926E2 /* resolver.h */; }; - A126A9E158604C62BEC6D5F4225872B5 /* node.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 0FF30A4123BEAC65003F342CEC6FE777 /* node.upb.h */; }; - A13C3EA6EF64565992646E2E5170D3C8 /* protocol.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 67AFE159430D49510A65B94BAB6602DB /* protocol.upb.h */; }; - A13F2F0AC145AB37A6137F23F0578492 /* jni_utils.h in Copy src/core/ext/transport/binder/client Private Headers */ = {isa = PBXBuildFile; fileRef = E8DC3D839B8CC36E6D01312BF46C9412 /* jni_utils.h */; }; - A147F7F281BBCA2683F43C17B34BCE85 /* load_balancer.upb.h in Copy src/core/ext/upb-generated/src/proto/grpc/lb/v1 Private Headers */ = {isa = PBXBuildFile; fileRef = 0286AD1737C7A52B8606497313F87F76 /* load_balancer.upb.h */; }; - A14A6D539715C91D1B257989077AAB59 /* default_event_engine_factory.cc in Sources */ = {isa = PBXBuildFile; fileRef = E682C0F925C18950ECEB21217B36C4E0 /* default_event_engine_factory.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - A157C22DAB36FD40D95FE6D930DC8D9B /* create_channel_internal.h in Copy src/cpp/client Private Headers */ = {isa = PBXBuildFile; fileRef = 91EA8C3BA5D0333B7E2F3976816531AD /* create_channel_internal.h */; }; - A15B5BCF21837CEAF3419976C1314396 /* context_params.upbdefs.h in Copy src/core/ext/upbdefs-generated/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 1CFE3CCE9E01BCD85301BDCAFC3A0D2B /* context_params.upbdefs.h */; }; - A1659CD33E86E27C73553ABCBE8A6EAD /* document_snapshot.cc in Sources */ = {isa = PBXBuildFile; fileRef = CF7B83713A6C4159FCA5F77BE9DB26F8 /* document_snapshot.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - A169219036DBE79C43D61EB4B566C638 /* circuit_breaker.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = FFF8FAD09582E2B875E0C5C50797144F /* circuit_breaker.upbdefs.h */; }; - A16CE54A5813C71EC90FA4DB4E4388E1 /* lhash.c in Sources */ = {isa = PBXBuildFile; fileRef = 23E6AAB4C16B77CD3CCB5FE80E354B13 /* lhash.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - A17475EF4B9CBF59CE774693328FBCFC /* FIRMultiFactorAssertion+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = D8AD4877FDC38E511D78B82AE2712C28 /* FIRMultiFactorAssertion+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A18EEA6F4D13B71BB34F3D414976ECF7 /* cipher_extra.c in Sources */ = {isa = PBXBuildFile; fileRef = 5B99439A029E2DC329A7B5A7A4EDD9AD /* cipher_extra.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - A18FB572EC7A10B53C79181A283E2B0F /* http_tracer.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 8CBF6F5274998BF4495F5A8B0E1A43E7 /* http_tracer.upb.h */; }; - A1B55F65DB4D87FE8F82E9207414EBCE /* struct.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 3C180102BA32CE9B12AF39D1E5AB3210 /* struct.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - A1C66DEB514B813F6A9C1BB86B1AC27F /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 6610712D920973C1CDA4D107D969B88A /* internal.h */; }; - A1CF3F4C91DA984D58E9BD5EA397DE4B /* SystemConfiguration.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3B7879FD2FF62773440D4069832105C3 /* SystemConfiguration.framework */; }; - A1D1F145E55CC5CC44D5BA981E84DB2B /* checked.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/api/expr/v1alpha1 Private Headers */ = {isa = PBXBuildFile; fileRef = C8F9BD48AED4FF4EC42CDE0F45E6C48E /* checked.upbdefs.h */; }; - A1D3360D3183460ED89043029D7D5BE2 /* FIRVerifyCustomTokenRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = DB18355BF15904A258EAF86207DD711C /* FIRVerifyCustomTokenRequest.m */; }; - A1D8B1A4DD5F4A59ACFCAD2910E14CE3 /* http2_errors.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 20FDD67BF2AEF2E98D354BB4F6AD025A /* http2_errors.h */; }; - A1DC91DE543643A43F0395F2A6A4A44A /* resource_locator.upbdefs.h in Copy src/core/ext/upbdefs-generated/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 79D93757864157DE03BF62355E41CD82 /* resource_locator.upbdefs.h */; }; - A1DE1A830C0C8CFF431A4A2FF0BD64F9 /* trace_config.upb.h in Copy src/core/ext/upb-generated/opencensus/proto/trace/v1 Private Headers */ = {isa = PBXBuildFile; fileRef = C423E40113C2313E3E064E1040D13D49 /* trace_config.upb.h */; }; - A1FDA1E603DE4EFA26A43E82EE9FB913 /* python_util.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 2D914461D85784124AA8CE79666C3308 /* python_util.h */; }; - A203475C8663AF346B704636B29312D1 /* load_file.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2E1F25ACEC57995CFB39BF3FE0B38575 /* load_file.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - A20AD2A6044BCA36FB7397A2909D0C87 /* exec_ctx.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 2848F4F17649B517CB956FFC47DC5FB0 /* exec_ctx.h */; }; - A226ED67BBD7EB93483D4C2BB6D30B24 /* buf.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 579A2429C6C7C7DFF8A90E17A9C23E1E /* buf.h */; }; - A22F0FAB8524C202BA438A71CF1587AF /* proxy_protocol.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 648DB80FB60129CA418F4346506E0F4D /* proxy_protocol.upb.h */; }; - A24648CA096BF69EDE6CB2CE34F91AC8 /* FIRAuthOperationType.h in Headers */ = {isa = PBXBuildFile; fileRef = B9B0ACBBDF67217FDD7447DDAEB5D847 /* FIRAuthOperationType.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A248B0149DD72D33ED6FFA0562E27DD4 /* ssl_key_share.cc in Sources */ = {isa = PBXBuildFile; fileRef = BEA2E868C6692EBB946FE99F0966AE3D /* ssl_key_share.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - A24AE1F9A6BBBBD4F0BD19216CCC31DC /* xds_route_config.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 2357F4805073EC8381563D69EF59E164 /* xds_route_config.h */; }; - A24CE4427939FFDC7E8F607F32ECFE79 /* binder_constants.h in Copy src/core/ext/transport/binder/wire_format Private Headers */ = {isa = PBXBuildFile; fileRef = 3433683EDB408361D8D03D5683A9CA4B /* binder_constants.h */; }; - A2580519B894AFA8A93E8811167F6E90 /* work_serializer.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 84AD84E8D9A75BF251E8D08E2DDBBA1C /* work_serializer.h */; }; - A25BADF9180077F4772425FE18C9729E /* pb_decode.h in Headers */ = {isa = PBXBuildFile; fileRef = B1B3C1C43E24BAFDC291F8871C0BD7DE /* pb_decode.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A2785B96252BC41715BF3BF6CB098BC4 /* metrics_service.upb.h in Copy src/core/ext/upb-generated/envoy/config/metrics/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 3E841452D22D8D7B6EBA233662941B3D /* metrics_service.upb.h */; }; - A28E86EA729F1F937699E81109DB03E5 /* frame_handler.h in Headers */ = {isa = PBXBuildFile; fileRef = 87AEB60D43C2547DBCCA459222582EA4 /* frame_handler.h */; }; - A293A7A1C861391FDC66D5844C3DA327 /* hash_policy_traits.h in Headers */ = {isa = PBXBuildFile; fileRef = E863353054D2963313D783489FA04695 /* hash_policy_traits.h */; }; - A293ED8AF7A99A86E13B1E7350D190FA /* xds_http_fault_filter.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 3D46EDF9122ABA759BFC755058F54AB6 /* xds_http_fault_filter.h */; }; - A29EA2CF6FA4EC36A11D114727E2F79D /* arena.c in Sources */ = {isa = PBXBuildFile; fileRef = 57FF00184BBCBACB0BD93313AE0295AB /* arena.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - A2A50AB21721983F655FA222ECE429EB /* arena.h in Copy src/core/lib/resource_quota Private Headers */ = {isa = PBXBuildFile; fileRef = DE820F2E71A04F0A28988E4DC46B251F /* arena.h */; }; - A2AE3DE21ECB026F7122629DF8AB2226 /* poly1305_vec.c in Sources */ = {isa = PBXBuildFile; fileRef = 034F4021FE6064A1FABBAEA00C6403F4 /* poly1305_vec.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - A2B614D4F3584C268EF75452F51FB029 /* local_store.cc in Sources */ = {isa = PBXBuildFile; fileRef = 23FA38B13623911A587BFA9A240B3677 /* local_store.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - A2B615114B6F3500E10E31033C4A3783 /* text_encode.h in Copy third_party/upb/upb Private Headers */ = {isa = PBXBuildFile; fileRef = 84DBC34CB824C9FDB85E6A78932C4484 /* text_encode.h */; }; - A2B6EDC7537DFFBC9647A9CB38D68A11 /* security.upb.h in Copy src/core/ext/upb-generated/xds/annotations/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 077EFF9F3EF59167E0DEB42E51E3E93F /* security.upb.h */; }; - A2BF3ECFF8D096B0FEBD8D8DF4C014DF /* span.h in Headers */ = {isa = PBXBuildFile; fileRef = 02CCD7ECDB0F2D55A4F9279D35FF4B86 /* span.h */; }; - A2C95346F84F598EA9BCA134F849F45C /* p256-x86_64.c in Sources */ = {isa = PBXBuildFile; fileRef = 5A18A4B3C0859743D5C261E93B181286 /* p256-x86_64.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - A2C986CE7F155D82D57426CC43931666 /* load_system_roots_supported.h in Headers */ = {isa = PBXBuildFile; fileRef = B6A734E7B3D25E06D6A4451C43895EBB /* load_system_roots_supported.h */; }; - A2CA6CAA86DE7E299A6D7D0AE6E8D133 /* mutex_stats.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = DF0F460DF0C069ABE4DBA0AF2834BF7C /* mutex_stats.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - A2E4691AE588A88B97EE2EB5758B5F5B /* config_source.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = E10A46004BAC723BCFA4A70A47C3F1B3 /* config_source.upbdefs.h */; }; - A2E7DD39012D93DCBBB264956B8B21FE /* FIRDeleteAccountRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = EF987D90C3E4E320E506F0BAE0D9A2A1 /* FIRDeleteAccountRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A2F41A54C3E80FD773F1381BE3A4DD23 /* propagation_bits.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = A7A23B7ABD1D59F3882FBE7ED91812A8 /* propagation_bits.h */; }; - A2F90147D1BE4E52605E22C83EE8E12E /* matcher.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = D555AAB15669F020F25A660632399869 /* matcher.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - A30256A5FECCEA4ACA96B1CDC36F6AB9 /* options.h in Headers */ = {isa = PBXBuildFile; fileRef = 24BA90FFDCA5A2EF40F57CAF3466DB8C /* options.h */; }; - A30BD31920EE1AF2E957C55DF6A37A3A /* iomgr_posix_cfstream.cc in Sources */ = {isa = PBXBuildFile; fileRef = E235A67EBF15F76631816A0F064AE352 /* iomgr_posix_cfstream.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - A312A747ED7CE691B97F79E6AA9D90F4 /* sync.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = D241217DEE1757179523A5124F7785C3 /* sync.h */; }; - A31A7FA6361B90EB33ABA17C6D03152C /* FBLPromise+Any.h in Headers */ = {isa = PBXBuildFile; fileRef = 98F3546FA89C5563049C8DDFD3987A8E /* FBLPromise+Any.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A32BB9431FD9FD63448AD419EACB100E /* layout.h in Copy container/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 05218FB6CA186A4EF0EA1D5DCE406677 /* layout.h */; }; - A32C0DDCC3636CCA83CFFA1829945F63 /* grpc_tls_credentials_options.h in Headers */ = {isa = PBXBuildFile; fileRef = A6AE9C55E3DA473D56A4C2144013731A /* grpc_tls_credentials_options.h */; }; - A32D31E5F1E065545337A299CB426E0A /* xds_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6A635F33D61E117112CA04E90990D870 /* xds_credentials.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - A34C224525C2A5DB498789E9D86F9FA1 /* metadata.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = F13D20ED03E9841DAC9C84E812DD3B39 /* metadata.upbdefs.h */; }; - A35B2B0DFF75E48CBBA7DAEEB06E7D2D /* grpc_server_authz_filter.h in Copy src/core/lib/security/authorization Private Headers */ = {isa = PBXBuildFile; fileRef = CF28EDD4A8C16D5FA2A5334AFBC158D3 /* grpc_server_authz_filter.h */; }; - A35B4B377042800A973EFC9ED2A5FB66 /* health_check.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 4905DEDED50FDA250A1F79866DB0C5F8 /* health_check.upbdefs.h */; }; - A362F55F16A69FE0C7966F5A36E9449B /* inproc_transport.cc in Sources */ = {isa = PBXBuildFile; fileRef = 705A9FCD35B183BE3D5CB9A74D96614B /* inproc_transport.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - A36C7597FD62234A7FA11714018579D1 /* bitmap256.h in Headers */ = {isa = PBXBuildFile; fileRef = 056BF016156B3FBB28C6A4BC43BE4099 /* bitmap256.h */; }; - A37E95D086ED76F5F5ADD19F7810690A /* sync.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 0263F571A4B0EFEE1AF6452C0E09133F /* sync.h */; }; - A39EA39A033513861C58CF5290E37A01 /* grpc_if_nametoindex.h in Headers */ = {isa = PBXBuildFile; fileRef = 3ADECC74F92D4955B7E72247A83B3768 /* grpc_if_nametoindex.h */; }; - A39FF6AC3984FEEE949C1029EC964EB0 /* xds_routing.h in Headers */ = {isa = PBXBuildFile; fileRef = AC8AC73E3AFD7B618E391654E911B0E8 /* xds_routing.h */; }; - A3AA3D16716E4C92730970D51BB7CF30 /* channelz.h in Copy src/core/lib/channel Private Headers */ = {isa = PBXBuildFile; fileRef = 88689FC16461B95CAEEAE8D66E3305B3 /* channelz.h */; }; - A3AE14480A0B2B2D79A36E6DBFE61661 /* core_configuration.h in Headers */ = {isa = PBXBuildFile; fileRef = 14A49D5AC98299B72F170D4107A58485 /* core_configuration.h */; }; - A3AF7B29BD47B81B926113B7528CFBFE /* NSData+FIRBase64.h in Headers */ = {isa = PBXBuildFile; fileRef = D9713073AD099962997A449A10DB0B0C /* NSData+FIRBase64.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A3B6BA5720550FDDF26EEA32870D663B /* builtins.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5AE44DBFFD1D7C9E8C6728E2C4DC8577 /* builtins.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - A3BB98D891FFC13021006DD8899C2B75 /* ssl_credentials.h in Copy src/core/lib/security/credentials/ssl Private Headers */ = {isa = PBXBuildFile; fileRef = B5FD1CC94C881524E960128E42768BC7 /* ssl_credentials.h */; }; - A3C5DE265FA2645E6E791E4CDA3F48DC /* pollset.h in Headers */ = {isa = PBXBuildFile; fileRef = 762C8F07AACD976E8C989F77F571079A /* pollset.h */; }; - A3D3620A5210C20260FCC57E30C77572 /* tls_utils.h in Copy src/core/lib/security/credentials/tls Private Headers */ = {isa = PBXBuildFile; fileRef = 8FAB184EDFF10B625D62C6DD4F6E019F /* tls_utils.h */; }; - A3DB845B131E20977F3CD5210A8417D2 /* hashtablez_sampler_force_weak_definition.cc in Sources */ = {isa = PBXBuildFile; fileRef = E455881EA353F2E9D320FB09BB1031E9 /* hashtablez_sampler_force_weak_definition.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - A3DE06B6294FE179F2547F6D68F66C72 /* listener_components.upb.h in Copy src/core/ext/upb-generated/envoy/config/listener/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 091869829B459C88E13334F509715B47 /* listener_components.upb.h */; }; - A3F4B1F7466CB36B3F4D75450E7C2878 /* nid.h in Headers */ = {isa = PBXBuildFile; fileRef = 28095137FAD0FF653301E6FE3F465084 /* nid.h */; }; - A3F4F506BD2454EFDD7A86435430A637 /* orca_load_report.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 33129397BEB630E69985E604A171C2A4 /* orca_load_report.upb.h */; }; - A3F972824ADDB6DC0077C172FAA15419 /* socket_factory_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 3DA08BA8B50DC72DDB36532E53EF6857 /* socket_factory_posix.h */; }; - A3FCE07899F915C7BAAE9BAF89BE5097 /* udp_listener_config.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = B6E08BC63095ED074431E520176CAC4F /* udp_listener_config.upbdefs.h */; }; - A4055A00B528BAC90E63401EB2EA9F23 /* common.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = A83744DCEBD753A2CAB7F3D09FE8EB0A /* common.upb.h */; }; - A4084FC1C55123691A0E3B44EA1340E3 /* validation_errors.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D71D6CA4DF4585FBC6033687F37E0A1 /* validation_errors.h */; }; - A40993FD4C13EC4A5EDCD38A6A22E830 /* backoff.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = A4B884E0F6477324A11CAD093CC5E691 /* backoff.upb.h */; }; - A40BC34FFB28402AE789B8E36235FA0C /* slice_internal.h in Copy src/core/lib/slice Private Headers */ = {isa = PBXBuildFile; fileRef = 08937DD8CEA1E5C6D1FFD7BF2DAAC6E6 /* slice_internal.h */; }; - A40D6628699F031602032E75DC02F250 /* dynamic_filters.cc in Sources */ = {isa = PBXBuildFile; fileRef = BFF3FEF0F9834F6A5FE6625E4D2117EE /* dynamic_filters.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - A4103D6404BED06A158017D9EED1278F /* FIRDeleteAccountResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = F6DDCEF3C10E8170FD2184A99774326D /* FIRDeleteAccountResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A41B4FE99B84B8F9F20FAB5DBB3795E8 /* validate.upbdefs.h in Copy src/core/ext/upbdefs-generated/validate Private Headers */ = {isa = PBXBuildFile; fileRef = 29B46AD96DCA45527893F593F08C5239 /* validate.upbdefs.h */; }; - A41B9BFA6D9369FC6D49E4D832A2BD33 /* certificate_provider_factory.h in Copy src/core/lib/security/certificate_provider Private Headers */ = {isa = PBXBuildFile; fileRef = ADC7D617245F4925E8E802FE2851624B /* certificate_provider_factory.h */; }; - A41C508025AC9BAF7FB1084AE9B7B3B3 /* key_field_not_in_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 818209FEDE4C40891B8F42B00FE690E0 /* key_field_not_in_filter.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - A4372037A211248C07A0312968C487A2 /* resource.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 0634F16BCF6BE1DB9FE0849F05115E3C /* resource.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - A43AACD094189DEA02C48B55D588F3EB /* datadog.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = A20142CF651CE7EB218D259ACC1A0602 /* datadog.upbdefs.h */; }; - A4404DF72CB7146DEF4D5433F92EB66A /* key_wrap.c in Sources */ = {isa = PBXBuildFile; fileRef = 4F986AD521AB6183B6760C59D28DB935 /* key_wrap.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - A44BAA90019BF12EFC323487B26AFEB1 /* metrics_service.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = F66CD89E0828D169F5EA29EF15313ACD /* metrics_service.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - A469F55201EF63B6700A76C8B694B94D /* grpc_security_constants.h in Headers */ = {isa = PBXBuildFile; fileRef = 148F8EF09D530248CE191A8B6D575D62 /* grpc_security_constants.h */; }; - A4705793489A5E5CA522DD837458F4B9 /* obj_mac.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 5F0893E574A1F0E0E5383E10AC78F47A /* obj_mac.h */; }; - A47D9ED8F9504D8B191105FAB1DD45D3 /* subchannel_interface.h in Copy src/core/lib/load_balancing Private Headers */ = {isa = PBXBuildFile; fileRef = 54C25DAA2253A55609D9120E82A6957A /* subchannel_interface.h */; }; - A4951399D8D426C93145A7E650FE600B /* httpcli_ssl_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = F4CE3853A857EFCBD5352B9F289DD353 /* httpcli_ssl_credentials.h */; }; - A49F44887975A68611F3047079752D69 /* frame_data.h in Headers */ = {isa = PBXBuildFile; fileRef = 4DFDC825C68BEFF359AB77D63963DA3F /* frame_data.h */; }; - A49F63D26FD90FB243BE29F1C5E32F80 /* connected_channel.h in Headers */ = {isa = PBXBuildFile; fileRef = 9571519B462BAFB1775DF31A4958FA56 /* connected_channel.h */; }; - A4A0C2CEB8B3CB8156EDA24F5EDA8281 /* create_default_thread_pool.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3EADB00A7F92A434ECB62E508C4C1ED2 /* create_default_thread_pool.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - A4A71BF23CAA5451A4F12828FF1D62CF /* tchar.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 6747F980D1FB521C984E987FE2A1DD62 /* tchar.h */; }; - A4AC6EDB21F3C3723EDBAEC1CE279E3A /* sockaddr_windows.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 0016F3697BB2D507CF5B838ED0900BEA /* sockaddr_windows.h */; }; - A4B3C1D526520B53A94BD10AA1806E28 /* FIRAuthProtoStartMFAPhoneResponseInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 7AA5BA9F40B8B6DB0E0AC7EE6DD0808F /* FIRAuthProtoStartMFAPhoneResponseInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A4CA92C700EABDD587B323393FF66574 /* local_credentials.h in Copy src/core/lib/security/credentials/local Private Headers */ = {isa = PBXBuildFile; fileRef = 8F4C1DA0086D63908548B978FF04C4C7 /* local_credentials.h */; }; - A4CAC5120FD017A0D76D8F5AA98002D0 /* discovery.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B9AB857B8D9653E68D1A3909D4D9907 /* discovery.upbdefs.h */; }; - A4CFECBFAAD49A4B5EC36B2C7C83FD7D /* leveldb-library-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = E14D924058E8A29436C3435693CC0FB2 /* leveldb-library-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A4D82D78F2A3AEF51BF490FD0D65892F /* utf8_range.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A2BC83680056E5E24FD01A22FCECCD3 /* utf8_range.h */; }; - A4F8FED3030DD856C0AFA2EBFF542284 /* host_port.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = C4DC48646BC2BEBE1373ED3FCCB4589D /* host_port.h */; }; - A500ADF3DA58D7B13F7F903F3847707A /* stats.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/metrics/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 2FBFB689B8154175D5E4803A6C1F5C57 /* stats.upbdefs.h */; }; - A500AF3583680B5718B7EA757905FF7A /* unicode.c in Sources */ = {isa = PBXBuildFile; fileRef = 84C80F7E574416EBB12F83AB21D66BE6 /* unicode.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - A503B2137D972BC5D010ADCE5CA555F5 /* config_source.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 42F87903F3FA822AFAF183B8B91DFE37 /* config_source.upb.h */; }; - A5173898BE38F1651A9CAC831AF50D1F /* time_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8CCC207B78A0EBB69AFCE7A0D14056AE /* time_posix.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - A51A71F8DC05ADA1D7BDF5E708F05A24 /* FIRAuthProto.h in Headers */ = {isa = PBXBuildFile; fileRef = 2160B691C74D2CDA4D8D350C4756DA34 /* FIRAuthProto.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A5239EC9B7DC664B78D53E34F1DAC5EE /* transport_security_interface.h in Headers */ = {isa = PBXBuildFile; fileRef = 626DBE3B2E122C648FBF932E289733B9 /* transport_security_interface.h */; }; - A523BF186DF39DDC7D6C4B2FB1479107 /* config_selector.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3A38A39751745D4AC1841F472A785A98 /* config_selector.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - A52D3892FD2AF609BE9EECB91B94701D /* xds_channel_args.h in Headers */ = {isa = PBXBuildFile; fileRef = 30012554A58375A1CB09BED5718C39E3 /* xds_channel_args.h */; }; - A5433DA19BC28313B2F9E5862EBEB707 /* async_generic_service.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2DBB683C00DC4D500F1E3FA4DAA22E55 /* async_generic_service.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - A54393EA2A3FB4F96D47FFB8C5BE850C /* atm.h in Headers */ = {isa = PBXBuildFile; fileRef = 86C110E4B87D4A8172FDE17B03F863C0 /* atm.h */; }; - A55B0B239A59F8F281FF5CEC35ED6444 /* transport_security.h in Headers */ = {isa = PBXBuildFile; fileRef = 889289290E4C2097E30A53E9751D3313 /* transport_security.h */; }; - A59552FB4180D2DF8FBA000DC88E2372 /* context.h in Headers */ = {isa = PBXBuildFile; fileRef = 722220320CCC5D15E0B999E405B1E9AB /* context.h */; }; - A59E3BE1169905C611D6D910412BBD3B /* bin_decoder.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = D884B3BD252F16CAE2950D93B9C1E36C /* bin_decoder.h */; }; - A5A5F67E624898D6AEA4230A5A498824 /* string_constant.h in Headers */ = {isa = PBXBuildFile; fileRef = D813F11BF7510E7FD0EB0F97697E2106 /* string_constant.h */; }; - A5AEECE39A0BAC5C07B9AE6D3E7A585B /* symbolize_darwin.inc in Copy debugging Public Headers */ = {isa = PBXBuildFile; fileRef = 680366A2B1EBCB97FC1D5185CB51269E /* symbolize_darwin.inc */; }; - A5B68C7374EE6F24F00D3B3E5B92040C /* x509_cmp.c in Sources */ = {isa = PBXBuildFile; fileRef = 4D089AE32962EFFB68C08CC2F47C17EC /* x509_cmp.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - A5B95C4418258F793D799C3E39943E0A /* rbac_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = CF9C125AF3CBC4F8F791D25DABDBD207 /* rbac_filter.h */; }; - A5C29288B25782DADDF2478D885A9548 /* iomgr_fwd.h in Headers */ = {isa = PBXBuildFile; fileRef = 8354E6BBB5B8A3E785119E033C2760AD /* iomgr_fwd.h */; }; - A5DEEE030F3252C0B6F93AAFDF1A277C /* tls_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 00A259C3A6174660FA72514B4A203212 /* tls_credentials.h */; }; - A5EC5FD67C8C81D255BD639F37CA9457 /* load_system_roots_fallback.cc in Sources */ = {isa = PBXBuildFile; fileRef = ED80E6395FD0033E0037F717D794A377 /* load_system_roots_fallback.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - A5EC765AC2562C075A453DB05026FEE0 /* cord.cc in Sources */ = {isa = PBXBuildFile; fileRef = D79CE00C5F399529BFB44E3F7DC24340 /* cord.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - A613AA221B6E1FD044D6068A9286B504 /* xds_listener.h in Headers */ = {isa = PBXBuildFile; fileRef = 1345E13BA4FDBB3AFFA68283018BDF09 /* xds_listener.h */; }; - A615567455C083E932F5DFA7B5C60D37 /* xds_common_types.h in Headers */ = {isa = PBXBuildFile; fileRef = B75E4169D83E141C565BBCBCBD9FEBC6 /* xds_common_types.h */; }; - A61797B32B3EE0632C7D6AA18D39925B /* fault.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 950AA27C19BE01503CAA741334CFD596 /* fault.upbdefs.h */; }; - A6250E9DE3EC560D2781BF7D2A2BC60A /* hpack_parser_table.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 837DBE4C996FF2B821EDF138B5E9D19F /* hpack_parser_table.h */; }; - A62A6B81EAA9FE57F928CC84B9ED903F /* tls_spiffe_validator_config.upb.h in Copy src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 3ACBE943965D4328EC514EB23BBE6178 /* tls_spiffe_validator_config.upb.h */; }; - A62DB646885A7A1EB87BDF5B17BB1664 /* migrate.upb.h in Copy src/core/ext/upb-generated/udpa/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = 1331C08243CDF5C2C9DA95CDD2B9DFC2 /* migrate.upb.h */; }; - A635B5481A6AC5A768C117A8FCA71793 /* ssl_session_cache.h in Headers */ = {isa = PBXBuildFile; fileRef = F3C81E35007D1F699291632281EB5C27 /* ssl_session_cache.h */; }; - A638D689426752CF6C4FA14BA215FE33 /* security_handshaker.cc in Sources */ = {isa = PBXBuildFile; fileRef = 92A8C8886534F99480F5CEC565823CC3 /* security_handshaker.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - A64A801C3B3C8E1C67A49B93DCA1D742 /* socket_option.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 9CE9D1ED01E586499FA49574DFC0A04F /* socket_option.upbdefs.h */; }; - A65B384FD6C698C712575F3C2EB2311F /* filename.h in Headers */ = {isa = PBXBuildFile; fileRef = 97CE042FF191783F04C7E53A2EEF0734 /* filename.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A65BCE865C70982B508FB21F7E355382 /* NSURLSession+GULPromises.h in Headers */ = {isa = PBXBuildFile; fileRef = C6950B776810277517D10A3C46CDFF59 /* NSURLSession+GULPromises.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A65BED4DDE670185B9DFBFC86069615F /* bind.h in Headers */ = {isa = PBXBuildFile; fileRef = 1BBF3844FAF1D7CCCABA78FF41D836BC /* bind.h */; }; - A660F813737A574893E29699AB0D05E1 /* watch_stream.cc in Sources */ = {isa = PBXBuildFile; fileRef = 32B516A1BEC4CFF25A8E8D66A5322BB8 /* watch_stream.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - A66B53C8AC9181581237284BFC652FEC /* endpoint_components.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = A611E9F99015DD53907500A2E3D508C0 /* endpoint_components.upbdefs.h */; }; - A6762B1237AD753C7B5824AFBB0C4C4F /* udp_listener_config.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 73904E35E3272E4B4F32DEF5EF36419F /* udp_listener_config.upb.h */; }; - A68D9C73C2E73A8207B2BE4FB0400505 /* mutex_stats.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = D3F17948EAC57FFC40F95EA43A8B86EE /* mutex_stats.upbdefs.h */; }; - A69DBBC1CA1524398FA12018C1C44528 /* syntax.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = C512AB1E093E5AD78494F964236C3508 /* syntax.upbdefs.h */; }; - A6A8C6FA0B245A36F5BB0107D9905DF4 /* ssl_stat.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4389A8F4BA3BE3B78651D056A413B8D8 /* ssl_stat.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - A6AB52313E50066B83FDE2BC0F7C6F66 /* time.h in Headers */ = {isa = PBXBuildFile; fileRef = 94CC9A71D59DD942E500FF67B096A19A /* time.h */; }; - A6B23181F1DD10121BD6A7B8DE0A9AAC /* tcp_connect_handshaker.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6EF9A7564CA1555B504ED72735CE94AC /* tcp_connect_handshaker.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - A6BA564316A6EB03982070BBD79E566C /* call_creds_util.h in Copy src/core/lib/security/credentials Private Headers */ = {isa = PBXBuildFile; fileRef = B50709D7BFD8B79913FC9ADDF0C80491 /* call_creds_util.h */; }; - A6BBF8D80CB8288C2E7A696802A1B0EC /* stats.h in Copy src/core/lib/debug Private Headers */ = {isa = PBXBuildFile; fileRef = 2DEFEFBC6DA2130ADB90992ADBA6042C /* stats.h */; }; - A6C808B5DEA893687BAEB257E1E42341 /* string.upb.h in Copy src/core/ext/upb-generated/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 23E140B7B8465179F585CC67FB7ACC7C /* string.upb.h */; }; - A6D073E91C6214B2B461435D505D9ED6 /* string_apple.cc in Sources */ = {isa = PBXBuildFile; fileRef = A5D04B395D420B5F4AC1334B57B5702B /* string_apple.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - A6D9D440781C2FFF8A4FE4584AE9123C /* grpc_if_nametoindex_unsupported.cc in Sources */ = {isa = PBXBuildFile; fileRef = 06AD0B0949883C13EC0B57C10703568D /* grpc_if_nametoindex_unsupported.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - A6E6C514E849F5975B85416DC253C015 /* stacktrace_win32-inl.inc in Headers */ = {isa = PBXBuildFile; fileRef = 266365B20E9CD9F0B66E131ACB113400 /* stacktrace_win32-inl.inc */; }; - A6F65A52177FB28C051F3220610B2401 /* connectivity_state.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = A34626575DFDE7D52F83F0AA88A3A41C /* connectivity_state.h */; }; - A6F844DF385B247BFA70DA441D153152 /* extension.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 299E519AEC2EB90A55F52BA73DEEAB2E /* extension.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - A70B2E1007FA05A882E4BFE9E24B528A /* value.upb.h in Copy src/core/ext/upb-generated/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 62D461F7A3AFADCDB3F7990CEE96E7B1 /* value.upb.h */; }; - A70E9932184914B3857BA035DB056154 /* alpn.h in Copy src/core/ext/transport/chttp2/alpn Private Headers */ = {isa = PBXBuildFile; fileRef = 92EA783791A6255700D99F0EF89822CD /* alpn.h */; }; - A71547F0D92AA14D6968A77C0609E783 /* examine_stack.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = E662517F1982D613C313307261F668C5 /* examine_stack.h */; }; - A71DCB3A1B6122F25F67F58C68575B2A /* FIRGeoPoint.mm in Sources */ = {isa = PBXBuildFile; fileRef = 322458ADDB75562BBC219C9FBDD0C3F3 /* FIRGeoPoint.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; - A726153E6AACE46695646E42A73ED817 /* sleep.h in Headers */ = {isa = PBXBuildFile; fileRef = 954DE2846E6D97CCB538E7A20E709212 /* sleep.h */; }; - A72ACA7801DB82799337B0C02A0B04A8 /* completion_queue_factory.h in Headers */ = {isa = PBXBuildFile; fileRef = C15445F7FD481BFCFC514C9C64D98039 /* completion_queue_factory.h */; }; - A73CEAD4466E408E9210218B395C96E4 /* cord_rep_ring.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2D8AA2A9E8946D1CBCA6659B7ED67C1C /* cord_rep_ring.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - A7461A18138653B230B34DCD5C409443 /* v3_ncons.c in Sources */ = {isa = PBXBuildFile; fileRef = 7537AD5783E3C9459853A2C1F73D2EBA /* v3_ncons.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - A7544102980455D7AE209474CB358CF6 /* ssl_session_cache.h in Copy src/core/tsi/ssl/session_cache Private Headers */ = {isa = PBXBuildFile; fileRef = F465A47AB5112A82C393049F0AA971BF /* ssl_session_cache.h */; }; - A76A606CF7135E717561DEFFD6D5840D /* grpc_tls_certificate_verifier.h in Headers */ = {isa = PBXBuildFile; fileRef = 381A3485DDA7E4F2E64C3127D0E847FD /* grpc_tls_certificate_verifier.h */; }; - A76EAD654BA93FFFD61D389D37E1F1C4 /* python_util.h in Headers */ = {isa = PBXBuildFile; fileRef = FB6C7492955F5B9D7E1C21ACB1F7B4AE /* python_util.h */; }; - A772CDCFD6874CC17272ACDFE8070833 /* fault.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 3575F8D3ABA823BD4E0C775B378CAD64 /* fault.upbdefs.h */; }; - A782010CFA039842FE609F64D3CDFDD2 /* msg.h in Headers */ = {isa = PBXBuildFile; fileRef = 76B70E6BBB8BA139078B677FB12B6838 /* msg.h */; }; - A788B95CEBE59D0D30030FBB2FB22E6E /* authority.upbdefs.h in Copy src/core/ext/upbdefs-generated/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 3CF1D78C3C2E17B49A9E25964B735374 /* authority.upbdefs.h */; }; - A79FCB1B58206B9925B578B935153577 /* map.h in Copy third_party/upb/upb Private Headers */ = {isa = PBXBuildFile; fileRef = B107EEC70CAE13297AA0F42B5110BFCA /* map.h */; }; - A7A2605CB6F97C44F30F3668F217F3EE /* sample_recorder.h in Copy profiling/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 3AA6E176F35E2BC57CAF04250568093A /* sample_recorder.h */; }; - A7A3BCE8545C0D901E3B907B518A1445 /* grpc_method_list.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 46B718ECD83A634DF60B69CFB56C57CE /* grpc_method_list.upb.h */; }; - A7A4DEF5B1C1BD765F835C2E497AD67A /* stats.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7D92486790536239236C8CF54739A4A1 /* stats.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - A7AD6C385204769A159E7A34EC8CA9D8 /* value.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 3C5D527AA998FA1582770E1C2BE83A8F /* value.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - A7D4D9E663E2E84100E24D588BC39A1E /* closure.h in Headers */ = {isa = PBXBuildFile; fileRef = D14C93F06504E9FCD5A66106DCE2AE21 /* closure.h */; }; - A7DB520EB8A6E1187C271A9B374D17A5 /* alts_tsi_utils.h in Copy src/core/tsi/alts/handshaker Private Headers */ = {isa = PBXBuildFile; fileRef = D2D7040DC5A7FA0BEFF8B141CF2C6E70 /* alts_tsi_utils.h */; }; - A7E103C27DB7F4F470B046CF1EED8446 /* wakeup_fd_pipe.h in Headers */ = {isa = PBXBuildFile; fileRef = E12BA41198BA4031424EB611B0130794 /* wakeup_fd_pipe.h */; }; - A7E1B6B7F81D194C2009AC33B935DDD7 /* message_value.h in Copy third_party/upb/upb Private Headers */ = {isa = PBXBuildFile; fileRef = 5A2E6485B6CC467E45DCA237903107FA /* message_value.h */; }; - A7E20C94B2395C3495C9E0ACC3B41979 /* try_seq.h in Headers */ = {isa = PBXBuildFile; fileRef = 045D682F705DE385F3D68839734D5F7D /* try_seq.h */; }; - A7E3561E6EE763F2FF9203AC33968502 /* const_init.h in Copy base Public Headers */ = {isa = PBXBuildFile; fileRef = BBE3B451B22C221428555FAED52DB364 /* const_init.h */; }; - A7ED8402044F877D9BF9DEECE7251775 /* duration.cc in Sources */ = {isa = PBXBuildFile; fileRef = DAFE7175CE7DA983C7E26F30792C0BDE /* duration.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - A7EF58F1EA8F000FE63E9AC5790B51B0 /* csds.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = C3C2BE33AAF01FCCA0A4154693B2D576 /* csds.upbdefs.h */; }; - A80636E29764CD2B95CBB12F2759DCEE /* FIREmailLinkSignInRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 64942CF36E750B68834864AFE7A428E6 /* FIREmailLinkSignInRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A806FD55A8319997CDA747597B3723D2 /* experiments.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A554462DB74083987B93EC6EE500BB4 /* experiments.h */; }; - A80B718C6CFB03ECC3F10E8820513E1A /* check_gcp_environment.h in Copy src/core/lib/security/credentials/alts Private Headers */ = {isa = PBXBuildFile; fileRef = C242FF702C027D94383C1DBC3CBADA06 /* check_gcp_environment.h */; }; - A80F08A044D51A993E79F398830D2551 /* write_batch.h in Headers */ = {isa = PBXBuildFile; fileRef = B0C24668DBC4DFB82149DF483748390A /* write_batch.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A81FCFE91A2EB6BF23E4EF36CE88A4FD /* filter_policy.cc in Sources */ = {isa = PBXBuildFile; fileRef = DEC031706F1A948053DC00B43A1C1485 /* filter_policy.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - A834B6EEB32BE9BE1788796334644CE5 /* xds_client_grpc.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = C0F27C18CD6D20D0AD0F3DA5CCF9C4B6 /* xds_client_grpc.h */; }; - A83687CF5268EFA55A31981C77C3CC63 /* python_util.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D914461D85784124AA8CE79666C3308 /* python_util.h */; }; - A83F3ACD736B1FC02EACAEF8C3BAB2A7 /* matcher.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = E6325262776E75174B9DA7B9C2B7007E /* matcher.upbdefs.h */; }; - A841EB21E5D9FE250967D4E734BC1605 /* resolver.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 3B1AA9559BDE1C0FD02B513FF76C89EF /* resolver.upbdefs.h */; }; - A84903E6A23B17C4FCA8AC390E0B5639 /* handshaker_factory.h in Headers */ = {isa = PBXBuildFile; fileRef = 139E6A898F396ADD0382390D071FA6F9 /* handshaker_factory.h */; }; - A85BF792E748369521B2677ED47A917A /* security_context.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C9EB4B6A882977B31E8F54C0FA991E9 /* security_context.h */; }; - A8615EAB5FDB39E02B0E8381F9466066 /* security_policy_setting.cc in Sources */ = {isa = PBXBuildFile; fileRef = 605D983B33DE71B5BCEC0C12B68F0569 /* security_policy_setting.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - A862C26A62B6C46DD56FA228746843D0 /* histogram.h in Headers */ = {isa = PBXBuildFile; fileRef = 87BCADE734EFA9986098AE5E3B9AEA40 /* histogram.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A8672641BBC88CD12ED0FAF8B06C6FB2 /* version_edit.h in Headers */ = {isa = PBXBuildFile; fileRef = 89A37B88DCA67A4FC56437D76A3C606D /* version_edit.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A86E1C599404354EE8C9465AFFFB589C /* decode.h in Headers */ = {isa = PBXBuildFile; fileRef = AD102AEB5C4E3A23B73D64E4B4E8889D /* decode.h */; }; - A874C8708AA61D7F0EB6E23FA5B638FA /* error.h in Headers */ = {isa = PBXBuildFile; fileRef = AB2850FB9853861A0558E11F6C64924A /* error.h */; }; - A87BBE945C0E554D5949ACC8EFF202C6 /* atm_windows.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = F33905D91F86FF1AD248AA7734E4AEB2 /* atm_windows.h */; }; - A88261C9BD73A1C50C0B17679538618F /* syntax.upb.h in Copy src/core/ext/upb-generated/google/api/expr/v1alpha1 Private Headers */ = {isa = PBXBuildFile; fileRef = 98866ABCB9191514A9F591B7FAC0E62B /* syntax.upb.h */; }; - A88E87AD59FAE3090B1F19D856C9FB6A /* binder_security_policy.h in Copy security Public Headers */ = {isa = PBXBuildFile; fileRef = 449F252B8F734C44E2239A3321D2E672 /* binder_security_policy.h */; }; - A89065D49CBAC2616B9335FE699A9B80 /* fork_detect.c in Sources */ = {isa = PBXBuildFile; fileRef = 41CF845524B4D03216B3E587FF11F5F2 /* fork_detect.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - A8B35A690233E3D30F984A0BDF9A7E15 /* rand.c in Sources */ = {isa = PBXBuildFile; fileRef = C972D099DEF49A095E205A442C94CDD2 /* rand.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - A8BD3694F738C674202F912E712C1008 /* charconv_bigint.h in Headers */ = {isa = PBXBuildFile; fileRef = 57015A3555BDA5B5476363053AC3962E /* charconv_bigint.h */; }; - A8C0AF23B353449DC0A593FF7DE26EB8 /* sparse_set.h in Copy third_party/re2/re2 Private Headers */ = {isa = PBXBuildFile; fileRef = 7D48FED36BE16E0456D8B6718B78A529 /* sparse_set.h */; }; - A8C19A8C995F8E6DCED64A2C7E9E1801 /* rbac.upb.h in Copy src/core/ext/upb-generated/envoy/extensions/filters/http/rbac/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = E4183EBAA2C8EEFD2A4BDB04924BCE7D /* rbac.upb.h */; }; - A8CDCD35CF141593C68C4C139DF79100 /* server.h in Headers */ = {isa = PBXBuildFile; fileRef = 67086824536AD3BA315A8B5E49F55B8E /* server.h */; }; - A8DBA8D6611D921049E4543A92058079 /* backoff.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 177DAEA4216A6CE5F8E42BA6E16AB9EB /* backoff.upb.h */; }; - A8E60E7C944D6B778800FDA0BCFFB179 /* wnaf.c in Sources */ = {isa = PBXBuildFile; fileRef = 8930948D9D5CF1ED27D395B1EDA92DC9 /* wnaf.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - A8F9913AE637D82A4A1048DE2A656924 /* spinlock_linux.inc in Headers */ = {isa = PBXBuildFile; fileRef = 2B32D26986FD325538594D0BF3A8C178 /* spinlock_linux.inc */; }; - A90319855692FFA7DCE4D917CE4EF38C /* inlined_vector.h in Headers */ = {isa = PBXBuildFile; fileRef = 9BAB1D78A738E6B11192431A9C1C1EB4 /* inlined_vector.h */; }; - A90BE563F4B5462C22752D741ED2067B /* handshaker.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = AFDF165D1B7F5B1692B5114842AAD1F1 /* handshaker.upb.h */; }; - A93A35CFC25F438E3FFED61CE2822426 /* duration.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = ACFC142DFC406C2332224C832F68BB8A /* duration.upb.h */; }; - A93D4C253E2CE934D8BE8FC39472D8B0 /* string.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = F2824B7066940497B80155061765CF95 /* string.upbdefs.h */; }; - A94845CD7A495257004F3BF5D62A2E64 /* endpoint.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D56127644C72E2FD0CCEB3AC015FE17 /* endpoint.upb.h */; }; - A94A19737B2B73DE5D1EB5279B0F4D8C /* status.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 34F53D5BE1F3C538EB74CE713C2D673D /* status.upbdefs.h */; }; - A95B44A6F2919B04B2C32EB07E733F82 /* authorization_policy_provider_vtable.cc in Sources */ = {isa = PBXBuildFile; fileRef = 909904BD4BB698B790BCE64649DD0143 /* authorization_policy_provider_vtable.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - A95FF0F6113838434E49ED631BFA674A /* load_system_roots.h in Copy src/core/lib/security/security_connector Private Headers */ = {isa = PBXBuildFile; fileRef = 014C69344E5FD2245680BF492F49DECD /* load_system_roots.h */; }; - A96621210E21E9E581F7D2E972B6DA42 /* def.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 8F126583FC51D8C29967B9C0614883CD /* def.hpp */; }; - A967A0A32EF56D792C087A0E18E8B2F6 /* oob_backend_metric.h in Headers */ = {isa = PBXBuildFile; fileRef = E4866A1273C33A17D1CC8DD6F80BCE92 /* oob_backend_metric.h */; }; - A978BEF6F5EDA55FF02F07DBE8BA3704 /* http_tracer.upb.h in Copy src/core/ext/upb-generated/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 8CBF6F5274998BF4495F5A8B0E1A43E7 /* http_tracer.upb.h */; }; - A97B596BE271F035C6DC5BE15376D702 /* deprecation.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 8191DCA630090C33832EA084A1B77A9C /* deprecation.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - A97E4CF4CE9E3B0FC9508EA65741643A /* string.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 186E07F8A9CA37AFC47C52BD0872617C /* string.upbdefs.h */; }; - A981C99FDCDD83A2F58DC58F753A7877 /* v3_info.c in Sources */ = {isa = PBXBuildFile; fileRef = 608C3A3543BC52AF33520B50D1213221 /* v3_info.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - A9903E4BB76509D9C2F0D1734CA09FBA /* env.cc in Sources */ = {isa = PBXBuildFile; fileRef = ADD4969D6D815F70337DC182DD83FCDF /* env.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - A99210C43E25AB6B0A66266BF47643EC /* GoogleUtilities-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 5BF7660098B22650743132F0226AB30C /* GoogleUtilities-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A99A6B10016DD657C435A100B1832D6E /* FIRIdentityToolkitRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 2AE18FE86949AC953AE9174B86F6CBC0 /* FIRIdentityToolkitRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A99C646069541E46F4B6B295CD458D6E /* stats.h in Copy src/core/lib/debug Private Headers */ = {isa = PBXBuildFile; fileRef = 2DC76C83BA21A07D6D3B59C97EEB682E /* stats.h */; }; - A9A12902D30878EF83B4C93F93AA327C /* migrate.upbdefs.h in Copy src/core/ext/upbdefs-generated/xds/annotations/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 659FEFDE9FF9E10D9A33FBC1DABF8FB8 /* migrate.upbdefs.h */; }; - A9B0805A1F59167288A019D4422B6456 /* oob_backend_metric.cc in Sources */ = {isa = PBXBuildFile; fileRef = D572EE6500E19D585DA2FA27E4DFF3E1 /* oob_backend_metric.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - A9C2D910A2DE45BE4FB2A3D0394625CE /* activity.h in Headers */ = {isa = PBXBuildFile; fileRef = D3E7BE352B35AC6630DEA115CFA2D853 /* activity.h */; }; - A9CAD8B3C38F073463C684A1E41B6F77 /* sync_generic.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 11E3EB04FA5D3932C280E18008A2810A /* sync_generic.h */; }; - A9D241BA01B478618CB85B9EC829F076 /* iomgr_internal.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = DBCFDC629FB39D3F37E1BD3238A12F04 /* iomgr_internal.h */; }; - A9E06CCB32C82AD381DED38AB9805960 /* timeout_encoding.h in Headers */ = {isa = PBXBuildFile; fileRef = 5DA515DDBC6DB17BF5D9035F8FCF91B6 /* timeout_encoding.h */; }; - A9E419257AF60AFD2E621091EE5B41C2 /* config.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = 94346C8CBF02031E36C76E7552E5D9F9 /* config.h */; }; - A9E778A7741D50BF8AEDD1F82F8D3648 /* waiter.h in Copy synchronization/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 1091DA9A1993928A94677295C3CE0488 /* waiter.h */; }; - A9EF62ED6DD92A4D356A34E3A1866AE1 /* tls_certificate_verifier.h in Copy security Public Headers */ = {isa = PBXBuildFile; fileRef = 07B5614E6363884F610B39068C12B1E7 /* tls_certificate_verifier.h */; }; - A9F1354F17502DFBEBC635A4793FAE11 /* fault.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/extensions/filters/http/fault/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = A31DE3B1E7A336F231F7F2247652A4DF /* fault.upbdefs.h */; }; - A9FB21D59BC08CA0A715E64354FBE9E9 /* randen_traits.h in Headers */ = {isa = PBXBuildFile; fileRef = B9C1D0132E95573FF582F483DAF2B64A /* randen_traits.h */; }; - AA02759420CD4180BFA3B81B362BCFC3 /* alloc.h in Copy src/core/lib/gpr Private Headers */ = {isa = PBXBuildFile; fileRef = 3E3B9724C33E603269CD4A9091E8B422 /* alloc.h */; }; - AA04EFE4864CE92BE76CEFDB93BD938A /* format_request.h in Copy src/core/lib/http Private Headers */ = {isa = PBXBuildFile; fileRef = 525B19BD992D61DC26F8A0F11C53690C /* format_request.h */; }; - AA086B44D890FBFABFC5404BCAB14E07 /* opentelemetry.upb.h in Copy src/core/ext/upb-generated/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = B4C04ADE81EC4AC94E52FFE68769FC29 /* opentelemetry.upb.h */; }; - AA0945755918A534DE7058203FF7FF6A /* rbac.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 0B511B4215F8C302EF71B18E5016243E /* rbac.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - AA14DF8E3F38B64358E15AC24A6F5C01 /* http2_settings.h in Headers */ = {isa = PBXBuildFile; fileRef = F8E99FF62420723DE95F7778C21149FA /* http2_settings.h */; }; - AA2809E40D7C6FE46A8632D33768FDC8 /* slice_buffer.h in Copy src/core/lib/slice Private Headers */ = {isa = PBXBuildFile; fileRef = 6691054229FE27550E269235F3E624AD /* slice_buffer.h */; }; - AA2D8FDD7E50B73FDDF498F1E822062F /* status.upbdefs.h in Copy src/core/ext/upbdefs-generated/xds/annotations/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = CB6D2A218F89B0DA61D3FFD1B0104124 /* status.upbdefs.h */; }; - AA404F48187717E7AC80823D27A1669D /* pem_x509.c in Sources */ = {isa = PBXBuildFile; fileRef = 6DFB44E9E14BC8C47F5C2DC9E1F521B6 /* pem_x509.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - AA4799FB94B80891DE1D2204CE510FA6 /* resource.upb.h in Copy src/core/ext/upb-generated/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = C825D1178B5DEA48C2971D88DEB6EBA5 /* resource.upb.h */; }; - AA4E9ACC51C28C03D926C573A68272F7 /* percent.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = F1F368FF3D07CCBBA01831AD2F10ACDE /* percent.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - AA519A6B500964B758607BF2A46A9DE1 /* core_codegen.cc in Sources */ = {isa = PBXBuildFile; fileRef = 29E5210F43DFB47F6E3158630C96DD2C /* core_codegen.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - AA52D08D9EA0A6F7CFC0EB0692A0CE6F /* string.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D0CA8486581ADBC2362788F8FBD96DC /* string.upb.h */; }; - AA5CC3257D8054674591911F85C0C621 /* time_zone_libc.cc in Sources */ = {isa = PBXBuildFile; fileRef = BA0E0886274B5593711AB4FF4BE3FA1E /* time_zone_libc.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - AA7150DB06375F01EE08DD3CBC39E8E9 /* init_dump.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = CD41922F5C84A94E1008911B2759F293 /* init_dump.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - AA718A7EB07EA9C37271A6DF824B34AE /* async_stream.h in Headers */ = {isa = PBXBuildFile; fileRef = CD39CECA9330EC8A739E013A746B76F6 /* async_stream.h */; }; - AA727BC927ADB7BCDE0840A4B3E145BE /* zipkin.upb.h in Copy src/core/ext/upb-generated/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = A9634BE1AA404E2B168CEAD0A5503CF9 /* zipkin.upb.h */; }; - AA8E6ECC916F2EE0D106DBB0FF7E91A3 /* port_undef.inc in Headers */ = {isa = PBXBuildFile; fileRef = 973D09FA8B84178D1BDEF9F4850AEDC6 /* port_undef.inc */; }; - AA900A24AD262BB1989D33DC927C4D0A /* metrics.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 2BCE260B03AF3F48775E998B397CAFBE /* metrics.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - AAA6A7979F5384BAADF00179CBE08473 /* Storage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4B7E7237991BD74BC55049495059B2C4 /* Storage.swift */; }; - AAA6E29D530278E66A1E907597482E42 /* p256-x86_64.h in Copy crypto/fipsmodule/ec Private Headers */ = {isa = PBXBuildFile; fileRef = A3B1EE468A2818746D586FEAEA120196 /* p256-x86_64.h */; }; - AAA830D5480B20A81503456692DA61A7 /* bytes.c in Sources */ = {isa = PBXBuildFile; fileRef = 9C5B1C7F06A60345842A6C954ADCB41E /* bytes.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - AAC6C38ACEBAEC20A175BAA0238568BE /* bio_mem.c in Sources */ = {isa = PBXBuildFile; fileRef = 4CA4F9A5994DABB86460BB8C3B5BA7B3 /* bio_mem.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - AADE288A09829CB5CE2B9F40F9A2DCEE /* message_allocator.h in Headers */ = {isa = PBXBuildFile; fileRef = 337D14FE64F04CAF68645EB8093FD65A /* message_allocator.h */; }; - AAE159C5A34511DDCB95BDF9E53C15CD /* event_service_config.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 6591BCAFB4298119AB4185E24A528D76 /* event_service_config.upb.h */; }; - AAE68E317152F41532DB48C8CAA58B4E /* dynamic_annotations.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 49390ED3B202EAAD55CB4A2272AC14CD /* dynamic_annotations.h */; }; - AAEAEF36DCD65EF62B2FD73E01867D42 /* fake_security_connector.h in Headers */ = {isa = PBXBuildFile; fileRef = 58E5F9881F917BE0F51C8DE05FCE722B /* fake_security_connector.h */; }; - AAEDCB7FAE73E5E4FDBDA09FAE867A9B /* GTMSessionFetcher.m in Sources */ = {isa = PBXBuildFile; fileRef = 85F9CBCAE10FA908E60594BBCC8AC8BA /* GTMSessionFetcher.m */; }; - AAFBBE9A75A5BDA1A4F7D30DBD20D79A /* channel_trace.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B6F66AD8D11C51D98571C63EA0937A1 /* channel_trace.h */; }; - AB009568588DDEAF1CDD83137FB34B2B /* number.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = CCDB0181164357A278EFF369D70EA8AA /* number.upbdefs.h */; }; - AB047A861921DCF1BBE19C9AF7EE8C09 /* tls_record.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1738FC80FDEF63C2FB7F3782C3C99FC0 /* tls_record.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - AB0E88E6159F76E58851F2A9566270B1 /* endpoint_binder_pool.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E21D04A398C9A1C5EFC27FAA6DD00C2 /* endpoint_binder_pool.h */; }; - AB134C42AF2F84659F59AAF574B94A3C /* ecdsa.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 36D4A2D5DB33A05913107137DE0BCF73 /* ecdsa.h */; }; - AB150C0638665D46E63800896D6153AC /* FIRSetAccountInfoRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 87F7D3AE37F85569FCC718DD21ADCF14 /* FIRSetAccountInfoRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AB23F613A07AFB4CDCB183252D429C00 /* service.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = F03AB99DB75B087CA03DAE5446FE6764 /* service.upbdefs.h */; }; - AB24BD32BF1B2CE862761025167C57DD /* tostring.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1751ED9CFE13D8329D036BB821C81DEF /* tostring.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - AB2CC62CD57E67193D4E543ABE33188C /* call.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D005D8A4BD29D324B5F19F3D39C900C /* call.h */; }; - AB322AF38BFBB64D4095239764A6F559 /* re2.h in Headers */ = {isa = PBXBuildFile; fileRef = FC4CDF69ABA1641838F9C784D8FDB19A /* re2.h */; }; - AB3982DD6A388E34DDD9069374058579 /* log_reader.h in Headers */ = {isa = PBXBuildFile; fileRef = 1FFD6800917D68054C7B14ED82357771 /* log_reader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AB3C7C9045DA52E85EF6E0845A83F0BF /* bernoulli_distribution.h in Headers */ = {isa = PBXBuildFile; fileRef = A2900DB0FAEF91A2665F824BF2CA8E05 /* bernoulli_distribution.h */; }; - AB56131442489DE30286CA0E34273834 /* struct.nanopb.cc in Sources */ = {isa = PBXBuildFile; fileRef = CFBE020DB1A63E9237BB951E0C08C89C /* struct.nanopb.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - AB5E202B549FDD409ECCE8939FF09DC8 /* message.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3A9A77D417395A339197A0213DDE226C /* message.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - AB71CDB731585020FA7A70919E7441DA /* slice_refcount.h in Headers */ = {isa = PBXBuildFile; fileRef = A5AAD1B37ECC49505758A64FDF845AA2 /* slice_refcount.h */; }; - AB876C7ADCC70CE9FA8616B846816CD2 /* internal.h in Copy crypto/pkcs7 Private Headers */ = {isa = PBXBuildFile; fileRef = 6806EE93DA3A5F6092FA3DDE23A02A83 /* internal.h */; }; - AB89F4C1019196747BB421DD0CDD7E13 /* hashtablez_sampler.h in Headers */ = {isa = PBXBuildFile; fileRef = AA49DD5B4B2C5FBA17F0B9BB89C1C4AC /* hashtablez_sampler.h */; }; - AB905D91AE5FC59B867E6E6BD0D21AF4 /* proxy_protocol.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 8368D024F6289CD4C6ED674FE54117EB /* proxy_protocol.upbdefs.h */; }; - AB9A57A70EA1CB8F5AF4EA65F4B5C4F8 /* aws_external_account_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = EE10331B89000F8BF42398330720C39C /* aws_external_account_credentials.h */; }; - ABA38803B39D29B0EC86D73D205CE271 /* memory_quota.h in Copy src/core/lib/resource_quota Private Headers */ = {isa = PBXBuildFile; fileRef = BD74A7D724DB1A5B3C5C74F294A3BA8A /* memory_quota.h */; }; - ABA5276F5E9C51CD889D581BBEB11F1F /* evaluate_args.h in Headers */ = {isa = PBXBuildFile; fileRef = 1136CEB901CB7E04E4754B6C11C64C9E /* evaluate_args.h */; }; - ABA6A046C5E13A65840DC351EA19BDB0 /* ssl3.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B1EC8407D1F38484594FAB9262A7590 /* ssl3.h */; }; - ABAE716F87977032CBADA8537EBFE68F /* raw_logging.h in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 4A84271205C910073062A075B8C4731D /* raw_logging.h */; }; - ABB1B2B41F34EA653B07E00AEE4E005A /* FIRAuthRecaptchaVerifier.h in Headers */ = {isa = PBXBuildFile; fileRef = 5955E56DFC74566E66F9624940E3FD41 /* FIRAuthRecaptchaVerifier.h */; settings = {ATTRIBUTES = (Project, ); }; }; - ABBE2CFE5759B97B9A0BAF37B9F5393C /* xds_channel_args.h in Headers */ = {isa = PBXBuildFile; fileRef = 4DE350BCAB150FD0C901C800523B0F62 /* xds_channel_args.h */; }; - ABBF3950B24A13BA0601D55DA1CD17E8 /* mutation_batch.cc in Sources */ = {isa = PBXBuildFile; fileRef = 699572CE718D8499EECECE2D16326F24 /* mutation_batch.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - ABDFA8DBF3083CD820281CEE356568DF /* promise_like.h in Copy src/core/lib/promise/detail Private Headers */ = {isa = PBXBuildFile; fileRef = BDA5E4E514C83B4080FD1C9F615C1286 /* promise_like.h */; }; - ABE7481183A07928F259D9593F3D4776 /* transport_impl.h in Headers */ = {isa = PBXBuildFile; fileRef = 47509376033A3C34BA5D277828F8123F /* transport_impl.h */; }; - AC12FFB59B30EB8442ABF44392C0FAB0 /* FIRUserMetadata.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A1F3A96B2533F58C7FCC8BB56117326 /* FIRUserMetadata.m */; }; - AC13B4F8F5FDE7061180A387AD025FC5 /* str_split_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D9AD7EB3568EDB85941E58DD7A083B3 /* str_split_internal.h */; }; - AC1ED5CC510C180158887D73C2C3DE3F /* scoped_route.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/route/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 7E790E8D4079407D8A687C10752C12FF /* scoped_route.upbdefs.h */; }; - AC25A4FC8087AFFB112B062D79197A2E /* object_value.cc in Sources */ = {isa = PBXBuildFile; fileRef = 45E81D9E7235332FA5B87A9A6EFB4FF6 /* object_value.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - AC2A191F1F01D34015C96F08FCE4CD5D /* resolve_address_windows.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 85DFFF7A0CE9899F31F4CC4E802D8695 /* resolve_address_windows.h */; }; - AC2F6DB82AF22B0C81546BAC275581D0 /* deprecation.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = BADA9DD4147C58B4A1DFE6C39F5533C8 /* deprecation.upb.h */; }; - AC35C70DD39DE2DECAA99AEB39B31B31 /* subchannel_stream_client.h in Copy src/core/ext/filters/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = C6BB651F60B4112E1C9DC2EB8FC9970F /* subchannel_stream_client.h */; }; - AC3A8E6A9A4C6AC15057B40155740CEB /* outlier_detection.h in Copy src/core/ext/filters/client_channel/lb_policy/outlier_detection Private Headers */ = {isa = PBXBuildFile; fileRef = A4CC2A4E07ED5C589FB43C94977A3B06 /* outlier_detection.h */; }; - AC4516631FEA1A9FF475F5D944C8CEE3 /* pollset_windows.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = F91B93F17DD3F4F3DB3813463EC4E57A /* pollset_windows.h */; }; - AC454DB998FBD51AFF2D64AA9B665882 /* security.upbdefs.h in Copy src/core/ext/upbdefs-generated/udpa/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = 0E08E597B6588B1CFEAD63915941B59F /* security.upbdefs.h */; }; - AC4BE316D972ECB984ADDC8D43F1C220 /* unaligned_access.h in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = A7956C890CA8D02BDBF18721515796DF /* unaligned_access.h */; }; - AC5582E13CA0C785C8F15C345EEB666A /* validate_service_config.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = C1C87356DFC6FE99B19F02CA41C7B4F1 /* validate_service_config.h */; }; - AC6675A7DAA9C624F25DD5E5FDE35566 /* pem_info.c in Sources */ = {isa = PBXBuildFile; fileRef = 0337E27580348BC2BA7F890F50247592 /* pem_info.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - AC75C28B78683BC22F8618ACD5D9D774 /* tcp_server_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 327D1FA8ADCF1DA2B9CE13E0FE10F59E /* tcp_server_posix.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - AC86C6A254C9C4B30313F6C438A4AF7E /* variant.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C8DB9B69197BB9C109C319C1AD91FD6 /* variant.h */; }; - AC8A89CBA4602C2184B5B217156DE8F2 /* bn.c in Sources */ = {isa = PBXBuildFile; fileRef = DC9E868AEA429743C699E1D2DF8EDA02 /* bn.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - AC946EBF144C5ACEB8656A31D071524A /* stat_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9A3A71594F0896A8AAE0979EEF764104 /* stat_windows.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - AC958ECACE4390F9C46612185A835BA3 /* notification.h in Headers */ = {isa = PBXBuildFile; fileRef = 0DE2F018DBEF2901EC4F00D8A8C6659D /* notification.h */; }; - AC9F229B39AE63C79FAA99DBED658EC2 /* promise_factory.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C9FD610C0A93C16EB93688CF4A8259D /* promise_factory.h */; }; - ACC1B37CD5442D8EAD536ECE7B1B29E1 /* FIRSnapshotMetadata.mm in Sources */ = {isa = PBXBuildFile; fileRef = 816E641178492EC88C56FE354C504DD9 /* FIRSnapshotMetadata.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; - ACD11358DD5999490F66F98B35BED960 /* resolve_address_impl.h in Headers */ = {isa = PBXBuildFile; fileRef = 93FD06B4F774E91B657616EB576AE8B7 /* resolve_address_impl.h */; }; - ACD69A94407940195418C963547A3157 /* alts_record_protocol_crypter_common.h in Headers */ = {isa = PBXBuildFile; fileRef = AA5B1D1D0A643DB8CEB80159391843CB /* alts_record_protocol_crypter_common.h */; }; - ACE6CADC02B32A1A9D32476DB9F49A01 /* tcp_posix.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 2B097773EB8859DC62C5F211C7FC588D /* tcp_posix.h */; }; - ACE7B21B192B7C0D8AF682755366E001 /* secret.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = A6B67B5FA8091DDB641099C405597FFF /* secret.upbdefs.h */; }; - ACF6035EFB6979C0EFEAB7B171F778AC /* alts_frame_protector.h in Copy src/core/tsi/alts/frame_protector Private Headers */ = {isa = PBXBuildFile; fileRef = 1842BC35A00C980B3160A6747CCCB0EB /* alts_frame_protector.h */; }; - ACF7E7CD51B027E676B2D319D2C291CF /* resolve_address_impl.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = C0242C4A3C1FEF4E6FBC2B09A181701C /* resolve_address_impl.h */; }; - AD1833DF5009F95E4D54204E57C6150F /* iocp.h in Copy src/core/lib/event_engine/windows Private Headers */ = {isa = PBXBuildFile; fileRef = 050E8F52FF88618E647955659FC57E4E /* iocp.h */; }; - AD1AAA78BA27CFB1F2A722F5A35AE0F2 /* cordz_handle.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0CE4CB8589E6AF043320D355DDAA85CA /* cordz_handle.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - AD1ADD5AAEDCFF0E7368A3B9426827E8 /* pollset.h in Headers */ = {isa = PBXBuildFile; fileRef = CA571D814A2DB230278A56265823500E /* pollset.h */; }; - AD336376DA55DB3A6EEE985D7AE3501A /* xds.h in Copy src/core/ext/filters/client_channel/lb_policy/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 3A77CACF24E2E68E9FE8D4A93DF64164 /* xds.h */; }; - AD376128A2E5796D3770061B0FE0AB22 /* cpp_impl_of.h in Headers */ = {isa = PBXBuildFile; fileRef = D3404BE51F98EEF2353171792296D24D /* cpp_impl_of.h */; }; - AD42C13D2D82062ED0BF6C70B374D2B7 /* thd_id.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = F14EA4A79F04D99144CBFE0787E816DE /* thd_id.h */; }; - AD477FA67C5327F8BF8C17BBE36A7570 /* cpp_impl_of.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = D3404BE51F98EEF2353171792296D24D /* cpp_impl_of.h */; }; - AD4E12B62FA5165CAF11C5E4DA1ED787 /* http.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 19592F0E05108D751480092990690648 /* http.upbdefs.h */; }; - AD5091CDE5B67032FC5CDD73078EB261 /* migrate.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 1331C08243CDF5C2C9DA95CDD2B9DFC2 /* migrate.upb.h */; }; - AD610A6FCB8A721EDABD909223205AA3 /* port_platform.h in Headers */ = {isa = PBXBuildFile; fileRef = C9F1394FADFD9EE76F7E79149B926BB1 /* port_platform.h */; }; - AD631FDA82890E7F48E4C3AA27042CDA /* log_windows.h in Headers */ = {isa = PBXBuildFile; fileRef = E7CD0E83823EDDC865203CA0CD24DF32 /* log_windows.h */; }; - AD77291749EDA6052EF473A011DC8D17 /* transport_security_common.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = F22823DC0FD49D8659DC9C863AD32CE6 /* transport_security_common.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - AD84B48322A81DE909CCACFC94449CAF /* local_transport_security.h in Copy src/core/tsi Private Headers */ = {isa = PBXBuildFile; fileRef = 635E7706B3303D4C01DE0094FBBFBAC1 /* local_transport_security.h */; }; - AD9A7D3721C8339783589D8157267E51 /* xds_listener.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7086B792686202D9BD88A862ACDD3DD0 /* xds_listener.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - AD9EA316427BCFCFBAECE111D4823D1F /* ssl_session.h in Copy src/core/tsi/ssl/session_cache Private Headers */ = {isa = PBXBuildFile; fileRef = CADB821EEF7B32DC74157BCDEF6A9342 /* ssl_session.h */; }; - ADC66238E73437568EE1F80D3748B89E /* metadata.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = AB0A1508E260C87F9964408175904AE3 /* metadata.upbdefs.h */; }; - ADCF1B6576F524C11A11E01003A76A34 /* GULNetworkLoggerProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = D00AB63BCC5186AF5981A764662C132B /* GULNetworkLoggerProtocol.h */; settings = {ATTRIBUTES = (Public, ); }; }; - ADD5F1AC58B0033D8CACC32BC6A63DDF /* evp_asn1.c in Sources */ = {isa = PBXBuildFile; fileRef = CB83D76D56579BBBADD73EC1BEE7CC69 /* evp_asn1.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - AE00A7E05ADF1B80E63E60C26041CF35 /* alpn.cc in Sources */ = {isa = PBXBuildFile; fileRef = B2CB95538112C6205BCF43043A0D96ED /* alpn.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - AE22455EEB9B3D92E7AE9ABD087850D7 /* matchers.h in Copy src/core/lib/security/authorization Private Headers */ = {isa = PBXBuildFile; fileRef = 7502A837CC53F38AAD8556DFB716330F /* matchers.h */; }; - AE2B22EB24216F9EB8B866DAA955A1F1 /* rbac_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 53660483CC051A5A551C354394CA2EEE /* rbac_filter.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - AE2CE731F4DD895B589B44037F89C77D /* memory_lru_reference_delegate.cc in Sources */ = {isa = PBXBuildFile; fileRef = 119B519B0144C0E738614234A202ABED /* memory_lru_reference_delegate.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - AE3D20142D77CC4BB7EE0917B068BCBB /* channel_args.h in Copy src/core/lib/channel Private Headers */ = {isa = PBXBuildFile; fileRef = 1E211DB1275783D9C78059A105BE417F /* channel_args.h */; }; - AE488864C7CCD1ECABD78D92EEBD4406 /* pair.c in Sources */ = {isa = PBXBuildFile; fileRef = 903D130B9FF62FD794FDD89A3321E9A7 /* pair.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - AE4C2D6FB8F0215D82CC0F8E66365F30 /* notification.cc in Sources */ = {isa = PBXBuildFile; fileRef = 588FD11B90900BDCD531B3BCFF90A23B /* notification.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - AE4C3812137D194122EDEB2C8F9F9E81 /* pollset.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0178E167F0E133055F578A6E27533F55 /* pollset.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - AE53405D37C0CAF35F706C0E972EED21 /* certificate_provider_store.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C4D5A755BD5FCD21AB8C2D0ADB8873B /* certificate_provider_store.h */; }; - AE55CB602CF6C8AF7AB85DF7CFE7F79B /* trace.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = B4506DB31A7BECF90EFC74D9C93C44AC /* trace.upbdefs.h */; }; - AE589A064357A629A83FE804D4E77573 /* rls.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 605FE44A9239FEDD2A4221429C15E070 /* rls.upb.h */; }; - AE5E2A0197567A23D850350E5F66E1FC /* context.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = 9A4407D02E6FB6572E5689E2E7EF98CA /* context.h */; }; - AE63BC127976FA325C9833A4B189BD82 /* extensions.cc in Sources */ = {isa = PBXBuildFile; fileRef = D7D82F0D1A66634D69610ABE7DE857B9 /* extensions.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - AE69C9221093175E81E233B76E28BD78 /* duration.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = 8BA9D1BCE1A72B46CF4B8526ABA1E33A /* duration.upbdefs.h */; }; - AE72F609CAABF708B103628B06B2C961 /* mpscq.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = A2340583FE1D961F4BB2F5B02FC39D52 /* mpscq.h */; }; - AE7FB602A85EED04B8B5F858B643D9F9 /* FIRTOTPSecret.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E4341521875D24C9C5F296031E65450 /* FIRTOTPSecret.h */; settings = {ATTRIBUTES = (Public, ); }; }; - AE917E3C141F5883522A2347866A0D22 /* xds_api.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 54F6335D179B673204FEAA39B5D88F7A /* xds_api.h */; }; - AEB71260EDD5A8264F0706347F955AC9 /* annotations.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B24BD0A3D0A318FAD9CF5933A7644A7 /* annotations.upbdefs.h */; }; - AEB80BAE858A8B71FA58A7F7B9ABAD09 /* FIRCreateAuthURIResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 0DF9D9F9BB28D79DF52D3C5334674377 /* FIRCreateAuthURIResponse.m */; }; - AEBFD05BAEF3A68EBD4219CA392377B8 /* message_allocator.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = E4B3B000F04698C2544DD063CD5B0912 /* message_allocator.h */; }; - AEC6B99775C79BD6AA2D0D451A7E3DF5 /* FIRTOTPMultiFactorGenerator.h in Headers */ = {isa = PBXBuildFile; fileRef = 138CA2946B39091949E841709031E65D /* FIRTOTPMultiFactorGenerator.h */; settings = {ATTRIBUTES = (Public, ); }; }; - AED91842BB398E22F7880601C955983D /* bin_decoder.h in Headers */ = {isa = PBXBuildFile; fileRef = D884B3BD252F16CAE2950D93B9C1E36C /* bin_decoder.h */; }; - AEED44BBB4671BD817EBB54B02CF206B /* FIRAuthRequestConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = D1817AA542CBBC67BCE8442F9E5419AA /* FIRAuthRequestConfiguration.m */; }; - AEF4AD4FD2A6822E1AA3F34C7D4A1258 /* FIRAuthWebViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 4AE7117E188A1986ED90299EE00B7C47 /* FIRAuthWebViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AEF5718B510166E26C902B6A76ED5253 /* string_util.cc in Sources */ = {isa = PBXBuildFile; fileRef = 932ACBE39D4B9A034968C27E1B6D6437 /* string_util.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - AF063F8F40C659D290DF2DDE61C26A23 /* config.h in Copy src/core/lib/experiments Private Headers */ = {isa = PBXBuildFile; fileRef = B12CC9F0DBEFB367E64D68D3999E92AA /* config.h */; }; - AF13ACE37525DEA66528257373359901 /* output.h in Copy strings/internal/str_format Public Headers */ = {isa = PBXBuildFile; fileRef = 3025549F4662802E6E043C29EA116C83 /* output.h */; }; - AF1A88B552D9F37D898E25F2A2ECFFE3 /* health_check_service_server_builder_option.h in Copy ext Public Headers */ = {isa = PBXBuildFile; fileRef = 2D26254D99475D263C91C35A23C96262 /* health_check_service_server_builder_option.h */; }; - AF1F1FBE47ECB31C27DBEEAAECF65D93 /* table.cc in Sources */ = {isa = PBXBuildFile; fileRef = 045EA26138D5685BF99ED1B0A8E48909 /* table.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - AF26C75064C63ACA602FC21CFD488D98 /* config_source.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = D529347EB9D0ABF6B3B32ACE949FF9AA /* config_source.upbdefs.h */; }; - AF2B4FF56A533B48B14BA95CB4B42006 /* cord_rep_btree.h in Headers */ = {isa = PBXBuildFile; fileRef = 8FAEE300B6D0508E05E10360A13251C5 /* cord_rep_btree.h */; }; - AF379EC6A57C9BE0F6EAF73C5E570BA3 /* FIRAuthRequestConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = 6ADFB8953096194E6130E5A39600DCE2 /* FIRAuthRequestConfiguration.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AF3911C91F424BD53858EC9C817C8123 /* stream.cc in Sources */ = {isa = PBXBuildFile; fileRef = 913FF0432CFB90217E21CD9369D28FBA /* stream.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - AF4C102E59270522CC65777E7ABE5889 /* mpscq.cc in Sources */ = {isa = PBXBuildFile; fileRef = 98D1A3FB47EA8E1409E66473005A7D97 /* mpscq.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - AF615104E7B48566EE354ECC69DC33A8 /* filter_block.cc in Sources */ = {isa = PBXBuildFile; fileRef = F81F81178673EF57253255E5164BF4AB /* filter_block.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - AF726F4BEB35DEF1A97C22A6F9985941 /* sync_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = F82E6C6994D8E3235EA1C0577749B899 /* sync_windows.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - AF77F29FF2BF4B04F1616C28D2D4A93F /* common.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = A66317ED8A2DB02175C05C9907EBD7A6 /* common.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - AF8966AE6D3A270D3471DB8A2E1BC96F /* FIREmailLinkSignInResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 8ADCF644F09FEC6F68206AE1AAC85531 /* FIREmailLinkSignInResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AF9C742D83E75D3B5D8348E3C30A9485 /* arena.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9DFB11D410DA0AB966F59CEC22756302 /* arena.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - AFA61ED640357B1572BEC60E08E9A8F3 /* cordz_info.h in Copy strings/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 7B2B6E19BDB6AEC69A93C29DE098EB15 /* cordz_info.h */; }; - AFB480B1C31915018AE3E901FE1DB848 /* load_report.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/endpoint/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 7EE6FA028BB605D92790816C975472EA /* load_report.upbdefs.h */; }; - AFB765A07F27856565E677E40E882DE1 /* query.cc in Sources */ = {isa = PBXBuildFile; fileRef = 960F307D5647AF6EBCA155E81F152B41 /* query.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - AFB959E60B077A6AB088A2B976DC294F /* parser.h in Copy src/core/lib/http Private Headers */ = {isa = PBXBuildFile; fileRef = B89FF6A5B7AA3C70DCBFF568B92DFABA /* parser.h */; }; - AFBF83B65424C713F52DB5E092B8FB7E /* promise_factory.h in Headers */ = {isa = PBXBuildFile; fileRef = 470DDA3D7EBDA386014E4071AD8F3BE1 /* promise_factory.h */; }; - AFC2890F60BFF1651D1A4C48C7D05C4B /* tls.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 7D12BE4FBE6EAB93D2DE1C808BB61360 /* tls.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - AFC40523DF4CD4009752ADC5731A06C4 /* time.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 15FA802375E52FE64C2C51A885C9A7C9 /* time.h */; }; - AFCC3EBBAE4A242D7A0DFC2057FAC0A6 /* barrier.h in Headers */ = {isa = PBXBuildFile; fileRef = 37F0393FA22A723EF3B2F2DD1F51B51C /* barrier.h */; }; - AFCD1C290CF2747CDA4C04CB07A8DAB6 /* xds_resource_type.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 7CE573937799F08AB8B9EE9F30455699 /* xds_resource_type.h */; }; - AFCE26F692461D0D1DD0D6FCA3437319 /* utf8_range.h in Headers */ = {isa = PBXBuildFile; fileRef = DD94E2B1E647F10987C14E3BBEEAAAA7 /* utf8_range.h */; }; - AFD51DBFD871810B171E1C3D7C12C6B9 /* security_connector.h in Copy src/core/lib/security/security_connector Private Headers */ = {isa = PBXBuildFile; fileRef = C8A61EB9E8ABF4F52BAB3A399E68166F /* security_connector.h */; }; - AFD601FCA0FAF990C2B5177EACD25B5F /* container.h in Headers */ = {isa = PBXBuildFile; fileRef = F582DAD6A25A9B67645A1AD78C1FC072 /* container.h */; }; - AFE05AA888DC170CC1C70940059CF566 /* table_cache.h in Headers */ = {isa = PBXBuildFile; fileRef = 08280339E4D147B796EB54AEB5130F2A /* table_cache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AFE380D0070AA4DDBED7C549FEE2F068 /* client_channel_channelz.h in Copy src/core/ext/filters/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = 7F92C856A59D62760DE32F1288F77A1F /* client_channel_channelz.h */; }; - AFE5330A5550848A0258E8F9ABBC995E /* string.upbdefs.h in Copy src/core/ext/upbdefs-generated/xds/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 8D37120699B40C0605266C112A938644 /* string.upbdefs.h */; }; - AFE86D51AC7DFA4ECA6DA4935C6C6DEE /* socket_option.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = BBD7798AB013C053F2E76491C5B6EFAC /* socket_option.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - AFE95DDE722B7F52FE49EAC9AFB8E009 /* tcp_server_utils_posix.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 655F0313FE586FC42B0F470D7F116EB7 /* tcp_server_utils_posix.h */; }; - AFF255B493CA6BED3038E9C679BD4209 /* ratelimit_strategy.upb.h in Copy src/core/ext/upb-generated/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 60E97D2B0FBDFF885802A1B8ECE2742B /* ratelimit_strategy.upb.h */; }; - AFF909164563F2519FB4C4719F1E7D26 /* xds_http_filters.h in Headers */ = {isa = PBXBuildFile; fileRef = 15D241C6BDA2A5BA32E7EE30BEC9D97B /* xds_http_filters.h */; }; - AFFB30620BC56E9FA9719D7DE8A5188D /* endpoint_components.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = C98549136003E3F3C8FF4AEC08999405 /* endpoint_components.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - B0037D398D06A03F37CB7B7663475339 /* FirebaseCoreInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = B35637FBB9E159D0CE8786B3B384B9B5 /* FirebaseCoreInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B01234F60C4EFCB2FDD193B86909BBAC /* memory_target_cache.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1C4211ECBF43B68AF35C84179AABD645 /* memory_target_cache.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - B015A5AC9BD4ABBDF388BCA7CCDD4359 /* google_c2p_resolver.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8673121A5CD578B8E93FD17F72E46DE8 /* google_c2p_resolver.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - B01607CB6F0B290FE976D78BE83A4058 /* xds_lb_policy_registry.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = E80D6440B217AA6D91C35A25792CFAD2 /* xds_lb_policy_registry.h */; }; - B02F02B9F01567DDEED054B286C1662F /* trace.h in Copy src/core/lib/debug Private Headers */ = {isa = PBXBuildFile; fileRef = F5923D73CFEEDA3A2F0E6C0C0B7B7F6C /* trace.h */; }; - B0395CD9F2BED18D0ED4EE83BD0DC752 /* channel_args_endpoint_config.h in Headers */ = {isa = PBXBuildFile; fileRef = 83F728CDE206600531C8D2129D28BD4F /* channel_args_endpoint_config.h */; }; - B03E3130C4FBC3A1C210D1789C9C76D6 /* message_decompress_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 41AC16BCD9A08381A3F97850B0C9BF21 /* message_decompress_filter.h */; }; - B03EAE82A982CF82143EE6BAEDB9BFCD /* fault.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = DC2153613327B730E31849A0E7E3978B /* fault.upbdefs.h */; }; - B041F2DD5C61BB5807E8C2E3DB0BA587 /* init_dump.upb.h in Copy src/core/ext/upb-generated/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 725E6F4CF9E7CBF17245C63A497D04A2 /* init_dump.upb.h */; }; - B0484711B0E003ABC22B70E35F39299D /* udp_listener_config.upb.h in Copy src/core/ext/upb-generated/envoy/config/listener/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 7524712DFC385C720AF25C19ACF9EE9A /* udp_listener_config.upb.h */; }; - B055F6F359CAABD22368827D402425BF /* cord_rep_crc.h in Headers */ = {isa = PBXBuildFile; fileRef = A39167BE79E4645A7CD3691B989E9D33 /* cord_rep_crc.h */; }; - B0597BC4C4E109175016B7A181D4FFC5 /* dsa.c in Sources */ = {isa = PBXBuildFile; fileRef = 27E612A472C523C503F785A151FC9232 /* dsa.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - B065B4425FBFD82374B4A3694A858F7B /* resolver_factory.h in Copy src/core/lib/resolver Private Headers */ = {isa = PBXBuildFile; fileRef = 75606B314D67942B56C36F7DD4A70B06 /* resolver_factory.h */; }; - B06B94B21AF5513E5D81F8829781BCDA /* internal.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = F85DE9BF32D8BA891F129029BC36039C /* internal.h */; }; - B077094343712A0F67ED6441E60D2703 /* remote_event.cc in Sources */ = {isa = PBXBuildFile; fileRef = 526CD969E1DB97E5F128C9ACF806D905 /* remote_event.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - B07A7E64B559FE0B9111D29FCB23A430 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6E336DC2534E1E69B7828F6012B874C6 /* Foundation.framework */; }; - B07E49D9918C4AE349BE664C559B2388 /* chunked_vector.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 1CA9FA7ACCBB7A0C93FB4ED61A315110 /* chunked_vector.h */; }; - B092A97301436F731BB6F24CB4A832AF /* secure_auth_context.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E0D54AA93EC0E6C62683A9577A8968D /* secure_auth_context.h */; }; - B0AB462A84CE8C383AAFE0138BF5FCBF /* set.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E3E7675CE17E4AFD6F620315D2DAC07 /* set.h */; }; - B0B14685E0B8E5FD1940CF267FCA33B7 /* socket_utils_linux.cc in Sources */ = {isa = PBXBuildFile; fileRef = BDC5DC5233CF25321EF143D3B0B425DA /* socket_utils_linux.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - B0BA23726D39C17ABF843B6C2F01A71A /* quic_config.upb.h in Copy src/core/ext/upb-generated/envoy/config/listener/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 13CA3ADCC25F6A6286E6FD7DCC900368 /* quic_config.upb.h */; }; - B0CD877BD90F773E97933857553A0799 /* polling_entity.h in Headers */ = {isa = PBXBuildFile; fileRef = BFFED9C1285C281437A5AA43F8E82956 /* polling_entity.h */; }; - B0E88E9C8F4D9EE11E995DC134F5368A /* FIROptionsInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = DDE1AF07776869A16A9FABA838FA5754 /* FIROptionsInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B1011C1CBA1C6A50F4C5FF814589377D /* gaussian_distribution.h in Headers */ = {isa = PBXBuildFile; fileRef = DBD5D1A7A6FF8951E79D73FBF5F9FFDF /* gaussian_distribution.h */; }; - B10251CCE8422BAF3F188C56A47FF4ED /* http_connection_manager.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = E0EDBDD3D6684AD9C71F6B95BD8AAEAD /* http_connection_manager.upbdefs.h */; }; - B107B0178CBB99248D2E1A9002597784 /* useful.h in Headers */ = {isa = PBXBuildFile; fileRef = 993B7D504BEA09B730554F884D0A6336 /* useful.h */; }; - B10C8CFEE30F8C079498284E8CF38CD8 /* dynamic_filters.h in Headers */ = {isa = PBXBuildFile; fileRef = 02CC35C334D5A5FEEA94346CF765DC82 /* dynamic_filters.h */; }; - B11885A5BCA38A951DD80E2545467F6E /* typed_struct.upbdefs.h in Copy src/core/ext/upbdefs-generated/xds/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 44604EF6DA4D53CBB1F128CAFE32509B /* typed_struct.upbdefs.h */; }; - B11E003CE5B30F1C3136311251BECA6D /* credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6EFEED697261126865B276A933C46AEC /* credentials.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - B12E949B55F3FD6D7784CA02CE82C95D /* any_invocable.h in Copy functional/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 90D87CCF06818BEA988476B14CE8EEEB /* any_invocable.h */; }; - B13A34CC97DC784ECCA0E138DC28CD2C /* a_dup.c in Sources */ = {isa = PBXBuildFile; fileRef = 35C3478E58EF9BDAEBE26A644E68106D /* a_dup.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - B146BFD4E27BAFB1D88762D3D583BAAD /* httpbody.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/api Private Headers */ = {isa = PBXBuildFile; fileRef = 084B8E1EF4D0EC492AAE5CD86A26089F /* httpbody.upbdefs.h */; }; - B1701632894879E3AAB14D26FB39BCF4 /* trace.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A87E9C209C3BD82B43A7A406C094F41 /* trace.h */; }; - B17075B829D7E932EBA0BE5E2A382FF0 /* aws_request_signer.cc in Sources */ = {isa = PBXBuildFile; fileRef = FBE690A1D4965A7AA47C9F74B6B3E40F /* aws_request_signer.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - B172C0930684C7FEAB107C580BB76724 /* GULNetworkInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 2ED2F950F249C0D4D90500EAD145B65B /* GULNetworkInfo.m */; }; - B17CFEBC912B2F149E3E7D9DFD19B05A /* local_subchannel_pool.h in Copy src/core/ext/filters/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = B2CDFF6C746D1B8C9DC1FED9D101EACE /* local_subchannel_pool.h */; }; - B1810D921BB11CFF0A8DDF15EC04504B /* migrate.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 237BBF148B7CD307E75CA243F706D46E /* migrate.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - B18D6A6D00919A705F4A55FBD192D3B7 /* block_annotate.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 1E73586FCC03ED1B3303A48E00AFF265 /* block_annotate.h */; }; - B19120B99DDEC75D25FA65325B560424 /* collections.h in Headers */ = {isa = PBXBuildFile; fileRef = 210CFB2D8B044E4DBA8071468CFEF8F3 /* collections.h */; }; - B1A2B09E51F41A4B8001CFBCA6087410 /* jwt_verifier.h in Copy src/core/lib/security/credentials/jwt Private Headers */ = {isa = PBXBuildFile; fileRef = F1476C9EB62ECB6FAC56BB8E477A4A17 /* jwt_verifier.h */; }; - B1B1174A078D18ED281B55D4C4903AD7 /* common.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 409E713A61C962A168AF3B702C1E9B5E /* common.upbdefs.h */; }; - B1B414FE8E9E620DDF3409B9E5A88280 /* memory_remote_document_cache.cc in Sources */ = {isa = PBXBuildFile; fileRef = 932587BFC6F2FC4B233E9F033C0D54BA /* memory_remote_document_cache.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - B1B4CD4C6CC54709115C8CCC08EC6B79 /* extension.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 5515FF80F48EFE037E28FEA13CFA3436 /* extension.upbdefs.h */; }; - B1C08AB778A75503BA89B292F943515C /* murmur_hash.h in Headers */ = {isa = PBXBuildFile; fileRef = 06C01CD6ECB4DB8B2FC4240C7A7CB62B /* murmur_hash.h */; }; - B1C0A5D44270298DEBA8DD772A0DD1AE /* memory.h in Copy memory Public Headers */ = {isa = PBXBuildFile; fileRef = D0B126EA435E296288D24FAA98699F54 /* memory.h */; }; - B1CF053EA5C5E357FC9B4337B513D102 /* FirebaseAuth-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 28F988009744B2E8737F4C10A3DAF024 /* FirebaseAuth-dummy.m */; }; - B1CFC69AD97F8D3D3C3DD86988E1D88E /* listeners.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = D4D0B6AEC023331FAC1735EE543DF7AE /* listeners.upbdefs.h */; }; - B1D7E30E17333E14D7624A9F668AEB0D /* xds_routing.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 3FFFAF029ABF7DCE2482970E72A6FDD0 /* xds_routing.h */; }; - B1E8E085479469A70F119D37D9DDB421 /* proxy_mapper_registry.h in Copy src/core/lib/handshaker Private Headers */ = {isa = PBXBuildFile; fileRef = FC8AA6D2A84ABF0D286C16E664E6303E /* proxy_mapper_registry.h */; }; - B1EA5B25332BA3854450E185F24993AB /* gsec.cc in Sources */ = {isa = PBXBuildFile; fileRef = 67EF3CC730EEDB4BA19DB1232444325E /* gsec.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - B216D5D6D9F356108C8E1544D8C81980 /* handshake_client.cc in Sources */ = {isa = PBXBuildFile; fileRef = BB68A991482989B8EF2B042FD66AD8B8 /* handshake_client.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - B21807FCFE9FAFA0985D1446B0012DB3 /* x_spki.c in Sources */ = {isa = PBXBuildFile; fileRef = 426DBCF93F06A2D81CC0547A49242F5B /* x_spki.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - B22392738DA82BF5437E8061739D060E /* ev_epoll1_linux.cc in Sources */ = {isa = PBXBuildFile; fileRef = C327170635042EAE8899B0354ECF3B98 /* ev_epoll1_linux.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - B22DCF74FDFC475C6BC7531E155F2DCA /* chttp2_server.h in Copy src/core/ext/transport/chttp2/server Private Headers */ = {isa = PBXBuildFile; fileRef = C7A8029F35D8B8CC23D0DB3F3BD041D7 /* chttp2_server.h */; }; - B22F5C77E63B580F593A29F9D9F853E1 /* any.h in Copy types Public Headers */ = {isa = PBXBuildFile; fileRef = 6E199E8664953B806DA63229D4B47818 /* any.h */; }; - B2362CA3C78F257328C888582FA0141A /* binder.h in Copy src/core/ext/transport/binder/wire_format Private Headers */ = {isa = PBXBuildFile; fileRef = 5DB582511550650827F09433C9E85599 /* binder.h */; }; - B23753822F0BC231A0A4E6D6C04DC92E /* frame_handler.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8BEC4E31F6DD4BEDABEB2E60E92DD19F /* frame_handler.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - B266AD9E8108D6CF8A1F8F1866BB5FE9 /* config_source.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 42F87903F3FA822AFAF183B8B91DFE37 /* config_source.upb.h */; }; - B26DF458B61D820A938AE6277D88F418 /* versioning.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 6BACFDF66245BCEB464CF653D7B4CD95 /* versioning.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - B2745F541268D796C58434E4BCB5BC47 /* pollset_windows.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F81FF239BF2881CBED9B53AF5145E5F /* pollset_windows.h */; }; - B285304ED285F82AE1E72A913BD50689 /* resolved_address.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 6FC58F6072465A6829CCA8C8E8FF0F10 /* resolved_address.h */; }; - B2A6B75C35FA441F83E1F93C1C71C0D3 /* security.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = F86620DAD0C1B9617E38E9E0AEDA349E /* security.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - B2A8A0AEF702A1435531E53D4ADDACBC /* jacobi.c in Sources */ = {isa = PBXBuildFile; fileRef = 7E39E757FD0BFAB8F3CA056C8E641BE4 /* jacobi.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - B2ABC53B6E354C3593E65F7B9D681706 /* optimization.h in Copy base Public Headers */ = {isa = PBXBuildFile; fileRef = 9FE6450A7BBB0E0C5BFCBCA7ECD8838B /* optimization.h */; }; - B2B0B5EE655A98101DE873AFE80E8573 /* test.h in Copy third_party/re2/util Private Headers */ = {isa = PBXBuildFile; fileRef = 017A1CC21502A56709FACABB0263B6F1 /* test.h */; }; - B2BFFCEC085539EC24755074B1A4E79C /* FIRComponentType.m in Sources */ = {isa = PBXBuildFile; fileRef = FF20D92329942D51EC5773CB25AD6BE1 /* FIRComponentType.m */; }; - B2CA1D1D46E0F795A880FCDAF2E9F64B /* socket_factory_posix.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 3DA08BA8B50DC72DDB36532E53EF6857 /* socket_factory_posix.h */; }; - B2D3C37641244DC658B4FF7CD90108DE /* derive_key.c in Sources */ = {isa = PBXBuildFile; fileRef = 3B4EA5001DF5A95AA069FB8283A85A92 /* derive_key.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - B2D64536A3306EBFA015C1A410219EE2 /* security_context.h in Headers */ = {isa = PBXBuildFile; fileRef = F0AA1987F49D49EC272AEF1CDEE44A7D /* security_context.h */; }; - B2D985F4DF8764D2D05C8B4D9716A7D5 /* slice_refcount_base.h in Copy src/core/lib/slice Private Headers */ = {isa = PBXBuildFile; fileRef = 0FC001E714139D0B27DA58324C56EBE1 /* slice_refcount_base.h */; }; - B2E1463DFC017D23D17B6F407DCD9DE4 /* pkcs8.c in Sources */ = {isa = PBXBuildFile; fileRef = 593056ABD00C208F10A56E3427D84A2C /* pkcs8.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - B2E15B8BA7AA33318DE8EBE2DEB9824A /* grpclb.h in Headers */ = {isa = PBXBuildFile; fileRef = E699520FAE0C8EBAB84E309418FFAD30 /* grpclb.h */; }; - B2E2924AD09D89D6645DF7609C572A31 /* iam_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 54A02406232C8593A4CD231CBFFF9EF4 /* iam_credentials.h */; }; - B2EEBA1A6E7739A282A436B7131FBD61 /* slice_internal.h in Copy src/core/lib/slice Private Headers */ = {isa = PBXBuildFile; fileRef = 9CF3F3A2EE81EBB23EC4234A586D0D88 /* slice_internal.h */; }; - B2F83D69E375044AB30EB01A960DA950 /* GULReachabilityChecker.m in Sources */ = {isa = PBXBuildFile; fileRef = 77B5513277BC5822D463B69ADC95F8AB /* GULReachabilityChecker.m */; }; - B2F9313189379974D66DB4CA274AAA68 /* cord_buffer.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2CFC72481901EF1CF6CC0FAA9CA494E9 /* cord_buffer.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - B2F9DE266E93E1D28995CAA3204417D4 /* syntax.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 68899930347F6398814220466D1DA45D /* syntax.upb.h */; }; - B2FC23C4CEAB444166CE21430CA32876 /* leveldb_lru_reference_delegate.cc in Sources */ = {isa = PBXBuildFile; fileRef = D64F92344063F07651988AD6B2638334 /* leveldb_lru_reference_delegate.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - B307FFF17B5C55C1CCC85BB02C1F0642 /* grpc_alts_credentials_options.h in Headers */ = {isa = PBXBuildFile; fileRef = 75C66052B609A65DD80D56D52385135D /* grpc_alts_credentials_options.h */; }; - B30AA9BD0449FFF0BBDC00B25AAB21AD /* FIRTimestamp.h in Headers */ = {isa = PBXBuildFile; fileRef = 6FE6838E46BFD0D4DE02F6D2FCBAA9D8 /* FIRTimestamp.h */; settings = {ATTRIBUTES = (Public, ); }; }; - B313B60FF025C5BD2DE658335BEB8965 /* async_stream.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = CD39CECA9330EC8A739E013A746B76F6 /* async_stream.h */; }; - B313D4218BDA77BFC8F7BC7916F735AB /* global_config_generic.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = BA5CD05E3208B39C9E786F4AABE2A978 /* global_config_generic.h */; }; - B315F96D15CD14DD00096A47C492136C /* gethostname.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 7082B127535C072E0A4D2E35E8F507B3 /* gethostname.h */; }; - B31BBF4AD01418DF468BD02BD028E8FB /* wire_writer.cc in Sources */ = {isa = PBXBuildFile; fileRef = D113D84DF0155F3528589F888FC9E10B /* wire_writer.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - B31C0B6DCFEED7784823D49F19849E6A /* versioning.upb.h in Copy src/core/ext/upb-generated/xds/annotations/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 43AC3D2DEF5D82E0D4EC4BB0CEE6E359 /* versioning.upb.h */; }; - B321AD704F84D6810312F35755BC6EA5 /* sleep.h in Headers */ = {isa = PBXBuildFile; fileRef = E972D2002937D3DDC13EA710BAF777FD /* sleep.h */; }; - B348C898DF7DC170D64932A85370FF53 /* internal.h in Copy crypto/chacha Private Headers */ = {isa = PBXBuildFile; fileRef = C09D10EF6C83D49AF260DC5F7313A8E6 /* internal.h */; }; - B34CC3BFBA0B4BCD022EC7BAEEB3D963 /* call_combiner.h in Headers */ = {isa = PBXBuildFile; fileRef = 9417A4697062445A2054B51CE12F0187 /* call_combiner.h */; }; - B3547A4059D63E9DD8692829CB8427FF /* route.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 6BE3AB8DD0F3F0A6E3DA66BA882C62EC /* route.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - B35C3D1BEB4257081CBDB7196098CE8F /* metadata.upb.h in Copy src/core/ext/upb-generated/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 396D0E09EB10E85067B861A943D52CF3 /* metadata.upb.h */; }; - B36D7566842D316811B1ABBC13F19E4D /* rbac.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D890AB1006AE73CD3FAF69FE7B83F30 /* rbac.upb.h */; }; - B388FB5CD9BB4AC1493A528C77FCACF1 /* http_status.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 2865D4C43C8C65CE4907FB7135F10939 /* http_status.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - B38CF89F0DD263532E8886DACD384DF2 /* transport_security_common.upb.h in Copy src/core/ext/upb-generated/src/proto/grpc/gcp Private Headers */ = {isa = PBXBuildFile; fileRef = 702960BEF13540BFC2B118960A714A34 /* transport_security_common.upb.h */; }; - B3929C88A923D6128CBA6159A431E2FB /* http.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = B319FEB429B242CF30FA994BD31775DD /* http.upbdefs.h */; }; - B3961809EEEDAA1A17AD5D4AAFCBCA5A /* FirebaseAppCheckInterop-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3A576FED4141FC5A1271EFD8611C8A4B /* FirebaseAppCheckInterop-dummy.m */; }; - B399AD9FCDB1DA40739355A7714FD90B /* transport_security_common.upb.h in Copy src/core/ext/upb-generated/src/proto/grpc/gcp Private Headers */ = {isa = PBXBuildFile; fileRef = B8576BC91BBDBB64B820D587C0C2CB69 /* transport_security_common.upb.h */; }; - B39CDFDF47A0C7D9614407BD83D2D213 /* certs.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 539ABCC72228C715467E75FE10A31D6C /* certs.upbdefs.h */; }; - B39E0D62E1F65AD12B9B0B6160768D21 /* vdso_support.cc in Sources */ = {isa = PBXBuildFile; fileRef = 898A5CF6E3669F81B49981290EDBC7DD /* vdso_support.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - B3BEF84C8A9F6593D981341630A811B8 /* distributions.h in Headers */ = {isa = PBXBuildFile; fileRef = B845BB5213F2A9ED12CDE34590DA2ABB /* distributions.h */; }; - B3D6C7524B5E8F23F5FF674A2DF95C62 /* collection_entry.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = D604AAA6012030F1A3B507CE757376AA /* collection_entry.upb.h */; }; - B3D6CA251EF30CA0D2C9774C8BF51667 /* time_averaged_stats.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7C4EEEF6CCC9EFF0049FB44830635214 /* time_averaged_stats.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - B3EEA63CC2F1ED11C8AD10276BF3D6DB /* token_bucket.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 1CECB88D71D7BDF7E0A14D93CBD65AFF /* token_bucket.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - B3F726F5740063D87F40E98ED419A68D /* FIREmailPasswordAuthCredential.m in Sources */ = {isa = PBXBuildFile; fileRef = 3AA97A7C0C06BA437D076E32AEB18D57 /* FIREmailPasswordAuthCredential.m */; }; - B4069D600734B067FCF4DBB9B238F8AD /* FBLPromise+Any.m in Sources */ = {isa = PBXBuildFile; fileRef = 28FD5E2CF767D85250B386948985D0BA /* FBLPromise+Any.m */; }; - B40F20D15EA29C47B1686B1CD585AFB2 /* timer.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1D66AE195A622BA6B4699D8C2292663B /* timer.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - B422202B129DF41ACF032FD967A34DE4 /* frame_goaway.cc in Sources */ = {isa = PBXBuildFile; fileRef = ADFA82BF47AEB5DDFF8952C8640319DC /* frame_goaway.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - B4262EEFFB14F1252A8D30F39A8F7E21 /* resource_quota_cc.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0C7BDD2CB05AADB06C3868BEBB2FC798 /* resource_quota_cc.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - B42E1B466C832F58FA1EAC51E7A2E971 /* call_creds_util.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4237353321590370C33B334D492BDDCA /* call_creds_util.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - B4315CCF86FEC7C6CFA2141B0E8A5D8B /* csds.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = A70AC419A37C643C06499E6E11CD83FB /* csds.upbdefs.h */; }; - B4315DE875EB25E7CB3FFCBD2DD4714E /* zipkin.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = F6A138CB1E3B37DCCC67A02FC54DFD8D /* zipkin.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - B43E660989108BBFCC44DE7A850839E6 /* frame_handler.h in Copy src/core/tsi/alts/frame_protector Private Headers */ = {isa = PBXBuildFile; fileRef = BE065CCB87EB67D32B7E424DA5A1C1D9 /* frame_handler.h */; }; - B4482EB5AF047C4C3297A4997FEADC46 /* jni_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = E8DC3D839B8CC36E6D01312BF46C9412 /* jni_utils.h */; }; - B46582E2F4A2A84C1D521C93938590F4 /* ssl_types.h in Copy src/core/tsi Private Headers */ = {isa = PBXBuildFile; fileRef = 10B2E2A67BFD5580AC1757E458797646 /* ssl_types.h */; }; - B46829C8A7E0EF4C51275E0E89819D67 /* socket_option.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 70D5EA727A8D7BA42C15BA41689F03B4 /* socket_option.upbdefs.h */; }; - B4684123155F249D04A73D74D1762C3F /* pcg_engine.h in Headers */ = {isa = PBXBuildFile; fileRef = B5B9A4DBF9C375779C98F1F46154BBBE /* pcg_engine.h */; }; - B4716190165802BDB1D1C66F9054C38D /* symbolize_unimplemented.inc in Copy debugging Public Headers */ = {isa = PBXBuildFile; fileRef = 6CB7FD367506BBFE8EC1550725D493D5 /* symbolize_unimplemented.inc */; }; - B471D9B41137EFFC69A0E865D11281D2 /* rpc_method.h in Headers */ = {isa = PBXBuildFile; fileRef = 8221C0F94BE4C238CF5AEAEB4694E512 /* rpc_method.h */; }; - B475BB372DCB7E44AE8704F655C9AF93 /* evaluate_args.h in Headers */ = {isa = PBXBuildFile; fileRef = F89B1E7217556C8058C1B1492B6DD6D1 /* evaluate_args.h */; }; - B47697EB3B3D3AF1C33FDF6E5B190FD0 /* race.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = 858A462A922E3B82A20CA6FAD2D03618 /* race.h */; }; - B4848DE26B734E53725911DAE230AB7E /* ssl_security_connector.h in Headers */ = {isa = PBXBuildFile; fileRef = CDDD2D73791FB482AB9782B867AC2F70 /* ssl_security_connector.h */; }; - B48B2B36360325970C989D055F9F1913 /* wrappers.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = A550F95AAE9F531FC223DD3E232C20A1 /* wrappers.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - B4A7CADD336FD4E43B2AB7749B445F2C /* GULAppDelegateSwizzler.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B6EC0E30B096DC802D2AAE2C55019DF /* GULAppDelegateSwizzler.h */; settings = {ATTRIBUTES = (Public, ); }; }; - B4A8BD8E5DFB3AE57491E923B2807054 /* channel.cc in Sources */ = {isa = PBXBuildFile; fileRef = 687AB0BB816A0703C0E4E969966E9CBA /* channel.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - B4B2CF46B7308CE468507CA11C6466E3 /* slice_buffer.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = DFF142006B20473458FC13F34C3A6DD3 /* slice_buffer.h */; }; - B4B5A41B3262362FCE35DDC837962DC2 /* FIRAuthAPNSTokenManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 5193F0BDE0AB361BF772B69494B70A4D /* FIRAuthAPNSTokenManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B4C0A1E94B641712FA1344FCEF0BEB4B /* time.h in Copy time Public Headers */ = {isa = PBXBuildFile; fileRef = CD40F471A44CB4871795E41BED3CDE82 /* time.h */; }; - B4C3973B28074681E8AFBC7C6D5E7D3D /* serialization_traits.h in Copy impl Public Headers */ = {isa = PBXBuildFile; fileRef = E5CEB58737BE690A784E875E176DCB77 /* serialization_traits.h */; }; - B4C94EF68C52CD59343839D89025B173 /* xds_http_rbac_filter.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 9FA1B513CD394CDC8478B730059E1409 /* xds_http_rbac_filter.h */; }; - B4E622F6EBB5D8F2A9B3D9B226A1CA80 /* handle_containers.h in Headers */ = {isa = PBXBuildFile; fileRef = 717036DF4B82F7C432B925261402AD15 /* handle_containers.h */; }; - B4EB82CB036100F3538A4A39D34D6060 /* xds_api.h in Headers */ = {isa = PBXBuildFile; fileRef = 54F6335D179B673204FEAA39B5D88F7A /* xds_api.h */; }; - B4F66FE4A298C9A0B2CFB4D8E5C0B824 /* atomic_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = B224191A057319667DF0E6A1CBD7D0A3 /* atomic_utils.h */; }; - B4F7C419C5DCF9E1EC04EE100013EBC8 /* bad_optional_access.cc in Sources */ = {isa = PBXBuildFile; fileRef = 460D4A75DA76D45D9E41A2638CCCAF08 /* bad_optional_access.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - B50FE4AE9BDDCB4352EB6255442D4F48 /* nid.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 28095137FAD0FF653301E6FE3F465084 /* nid.h */; }; - B51A40B7062C860F53142D1710522F16 /* x509_txt.c in Sources */ = {isa = PBXBuildFile; fileRef = 42639D986C862DF1254B51467DEC74B6 /* x509_txt.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - B52A05369BA39E9535CC26402DB65A7F /* leveldb_overlay_migration_manager.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4F0E7CB18E742B2087BE213E82BA08CD /* leveldb_overlay_migration_manager.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - B52E99C393C5C404D8B4FC98AC6E6C7B /* sensitive.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 1DA0DB6D2819859B62E1C5B754F07771 /* sensitive.upb.h */; }; - B52F70D495559FEE959B43109A43735E /* FIRResetPasswordResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 9BBEA7919718605CA84548EAB738BD30 /* FIRResetPasswordResponse.m */; }; - B538D5D51ECB27617E588443FFF76834 /* discrete_distribution.h in Copy random Public Headers */ = {isa = PBXBuildFile; fileRef = 9E9255E30DE5392E33A0227FBF7BA275 /* discrete_distribution.h */; }; - B53F768CAE4165527579DEB60FCE73C0 /* periodic_update.h in Headers */ = {isa = PBXBuildFile; fileRef = 2853B6FFC5EB1390F8B01F29542CD2B7 /* periodic_update.h */; }; - B547DDD605C8AC7A7503EA72BDD81A08 /* mini_table.c in Sources */ = {isa = PBXBuildFile; fileRef = B0952C805B8A58C13E829BFD6B54AE7C /* mini_table.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - B552121C3711ABC2C42E61283E818B3C /* grpc_server_authz_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 7EE5557F04C9C2B2802C3F67E065CC1D /* grpc_server_authz_filter.h */; }; - B552A58845909CDDEBFED3D0C6C43351 /* certificate_provider_store.h in Headers */ = {isa = PBXBuildFile; fileRef = 9069C6857E78A10833895731C135A115 /* certificate_provider_store.h */; }; - B55AD09663DE301BBCA454469C9CEC94 /* hpack_parser.h in Headers */ = {isa = PBXBuildFile; fileRef = B367AE0FD2DF019465999B0AB60B270A /* hpack_parser.h */; }; - B5617E1D1B08EA42A0248EEBA633CCAB /* alts_tsi_handshaker.h in Copy src/core/tsi/alts/handshaker Private Headers */ = {isa = PBXBuildFile; fileRef = 91DB6135A2522289145F86EBC4D64FE9 /* alts_tsi_handshaker.h */; }; - B56AA5FCBE1759890914E3A6FDCF7A19 /* FIRFacebookAuthProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = A20727CD3FB217D605F611CA4A1CDC26 /* FIRFacebookAuthProvider.m */; }; - B5749E9DF28EB9A5C4B1EB32C82408A0 /* duration.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 1473D1F16FF623CD44FF9FE997589B66 /* duration.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - B5820623937E34001484A607D5C606E7 /* call_combiner.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 9417A4697062445A2054B51CE12F0187 /* call_combiner.h */; }; - B58B17EDE8E11A7005C548602CE85253 /* tap.upb.h in Copy src/core/ext/upb-generated/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 1C0ADF90A07901007BF2B7E7A82B1D5B /* tap.upb.h */; }; - B58B76E7E7433D5F9FA7784E3CD1EAC9 /* overload.h in Headers */ = {isa = PBXBuildFile; fileRef = 225A86FCC4F24113CBAE01AE913D4E14 /* overload.h */; }; - B593FCA7EDE588C2C5F45E1743DC88C5 /* evaluate_args.h in Copy src/core/lib/security/authorization Private Headers */ = {isa = PBXBuildFile; fileRef = 1136CEB901CB7E04E4754B6C11C64C9E /* evaluate_args.h */; }; - B59F60BD11427F463F10FBF899B0E6B8 /* orca_load_report.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 627AB2FA042DA10851D02C9567850C54 /* orca_load_report.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - B5A9199766BFA2B5E52EADCB17420F73 /* randen.h in Copy random/internal Public Headers */ = {isa = PBXBuildFile; fileRef = FA68B73040DF565D7EB1F0E6E7858688 /* randen.h */; }; - B5AA7F9850D6DF5A7B9D2224005018BC /* port_undef.inc in Copy third_party/upb/upb Private Headers */ = {isa = PBXBuildFile; fileRef = 973D09FA8B84178D1BDEF9F4850AEDC6 /* port_undef.inc */; }; - B5AACE617FCA997C852ABE2226102599 /* url_external_account_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 546BC79BE2B19A814F67D07637E8EEDE /* url_external_account_credentials.h */; }; - B5C14272A5E07C0E30168078B617170C /* x_info.c in Sources */ = {isa = PBXBuildFile; fileRef = AE44FC55DB50C233E621EE8C33D2EBAA /* x_info.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - B5C1A9C528ECA6CA4E374E14018457FB /* decode_huff.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D71FA456F5CC276DCD6818F1FC5679C /* decode_huff.h */; }; - B5C305F1C6A33C0294A7746E9F5F86DA /* float_conversion.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6C63ACCCFCD0CCC9EBD16D6129AABEC7 /* float_conversion.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - B5CB927B7C437D0ACB550E4ABC40F2D5 /* algorithm.c in Sources */ = {isa = PBXBuildFile; fileRef = 0DE2E73D4603621B7AA680EB4199ACF2 /* algorithm.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - B5CF80500732CFA0755B4B643F3BDB15 /* status.h in Headers */ = {isa = PBXBuildFile; fileRef = 113864E342C765136F0D5A56B210FB09 /* status.h */; }; - B5E4A023044726EA6311DF25B9419DD1 /* xds_listener.h in Headers */ = {isa = PBXBuildFile; fileRef = 12C217239A5100F16ED795FCC3090BC7 /* xds_listener.h */; }; - B5EC1B913EF63F3CC0449934663B04A5 /* block_annotate.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 9CE7982D4FAE4829DC26AE3BF3E24C8F /* block_annotate.h */; }; - B5EF45343B0ED12E090FE6C4AA2891D2 /* internal.h in Copy crypto/asn1 Private Headers */ = {isa = PBXBuildFile; fileRef = 5F22DE2FD8C5049C2446ADDD71014688 /* internal.h */; }; - B5F7D0749571ECFDB50BF83284031A31 /* bootstrap.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 2212EC5D07C1E8B7C8A24C7D22A91C4E /* bootstrap.upb.h */; }; - B5FB7ECE53D843044701AD820A2BBCA2 /* binder_android.h in Copy src/core/ext/transport/binder/wire_format Private Headers */ = {isa = PBXBuildFile; fileRef = 72B799D7CF081A4F0F17D35FF74CADD0 /* binder_android.h */; }; - B61C37B5A68B3F5385E0361CFC8126A8 /* http_inputs.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 9191D05A0B38957452ECFA760D80CFFB /* http_inputs.upbdefs.h */; }; - B620E39CD95DDCEF62D2A4C2C19CC207 /* migrate.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 659FEFDE9FF9E10D9A33FBC1DABF8FB8 /* migrate.upbdefs.h */; }; - B626D73DF704A130C49B3478B2D8C8FA /* vdso_support.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D8108D8B644676C6E928A1C252614F1 /* vdso_support.h */; }; - B628D73823A606D0462F8E0C9ADEECF3 /* health_check.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 2DB7CEC54180C1A475EB9B35A5C97635 /* health_check.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - B63DFD88F259130D6152FAD7C25B6425 /* exec_ctx.cc in Sources */ = {isa = PBXBuildFile; fileRef = F920C71C4B5B0690282543174B195718 /* exec_ctx.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - B64DD454354C5D6A35ECE4470DC9B94A /* opencensus.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = A1BDFB7CCA66BEAC717CFC676AA12A76 /* opencensus.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - B65FFD960721B0EA11C3310F56274F37 /* binder_connector.h in Copy src/core/ext/transport/binder/client Private Headers */ = {isa = PBXBuildFile; fileRef = 39D949EA50CA8F9E6BDDBD4A26FF2769 /* binder_connector.h */; }; - B6653EA00C31D963E65484FE89714E55 /* FIRSignUpNewUserRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 45999E1EA437166DBA5793231C531C43 /* FIRSignUpNewUserRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B66BC545C4EA4379E945200208A7A42B /* http.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 1165571B49A5871EDCEFE0D735B6D138 /* http.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - B66F7B80042D2E304DEB0AB3FD0E5D45 /* FirebaseAuth-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 22B188125BB13FC2AD60F4E2FB8EA8C4 /* FirebaseAuth-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - B67C64F32FC2B6D42CE56939FE336DF1 /* slice_buffer_api.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5ADC95A05159E9A7BF399E81A02EF3EE /* slice_buffer_api.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - B6828994FDA3CCABBF9A40612ECE37B8 /* json_encode.h in Headers */ = {isa = PBXBuildFile; fileRef = E6E0BE5532F3B3BD5DF662B48CCF9CB4 /* json_encode.h */; }; - B683A85925F920162BD958A54CAAC1F3 /* security_connector.h in Headers */ = {isa = PBXBuildFile; fileRef = C8A61EB9E8ABF4F52BAB3A399E68166F /* security_connector.h */; }; - B68493AF047FB793272827E231C2F644 /* flow_control.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = A106A8FB735171799A9E7BD055E14D43 /* flow_control.h */; }; - B69BA8564E5D088796E80BC20DD1BFEC /* create_channel.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 277AA69A94219A1A3B3996F2FE0BB55A /* create_channel.h */; }; - B6A2553FB145DFA2681E4F8672D1A156 /* type_check.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 85C6556189D5572177565DD94F6659A3 /* type_check.h */; }; - B6A69A931162ACCCE5A5F11425134A0D /* FIRAuthInternalErrors.h in Headers */ = {isa = PBXBuildFile; fileRef = 184D1A8484B271AC5F4BB80557F17552 /* FIRAuthInternalErrors.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B6A88F39B5E40C08C3BE577C2848E50F /* number.upb.h in Copy src/core/ext/upb-generated/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 0CC8FEB777ED475C57683441DCC2299B /* number.upb.h */; }; - B6AFDDE9389DBD02DA71884036B72DF7 /* alts_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = 425884339893268BE59E26ED8C67658D /* alts_credentials.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - B6BF6CD7F6481A752F8CE15130C3B139 /* err.c in Sources */ = {isa = PBXBuildFile; fileRef = C67523D886858CF1F62B1E0818D39362 /* err.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - B6CA8FE315CE8B0B703F9DCA594ADE13 /* md5.c in Sources */ = {isa = PBXBuildFile; fileRef = 003347B816C9863C2C9F6BC5CAB6D054 /* md5.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - B6E104AA1AA971922A48E23D0AF894E1 /* mini_table.h in Headers */ = {isa = PBXBuildFile; fileRef = 80385C8C2256402D3B2A4EAB15E588F6 /* mini_table.h */; }; - B6E2B7FB3A6F1D580D182F511E5DA370 /* pem_all.c in Sources */ = {isa = PBXBuildFile; fileRef = 93DA2AAFB02711A35946504164108AA9 /* pem_all.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - B6F1F20378275F4FBAE84D07948A5484 /* internal.h in Copy crypto/pool Private Headers */ = {isa = PBXBuildFile; fileRef = 84B3B8485E6D720F6C7280236233C2EA /* internal.h */; }; - B6F30F8CAFB2DBA825D489262E53E79A /* socket_utils_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 52D84E70155B87C243F4C1CB7479D60F /* socket_utils_posix.h */; }; - B6FE8638B340DC15296E645B054B0F75 /* outlier_detection.h in Headers */ = {isa = PBXBuildFile; fileRef = 682A4FC28DC3D3C3CEFBBB4E0D43CD6D /* outlier_detection.h */; }; - B7028EB06EC6AFAD7974A6DF31A0DFD3 /* status.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = C2996EAF4B42FE90D8D845220A93C79B /* status.upb.h */; }; - B7229C33805C661660C26AA2A4F8CCAE /* binder_server.h in Headers */ = {isa = PBXBuildFile; fileRef = BD9BAC017C5EF0EA3195A89371FB1D71 /* binder_server.h */; }; - B723AE76974903691AFA8167D01FDA86 /* tap.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C026E164309BD57461813C31AEC0F43 /* tap.upbdefs.h */; }; - B7344B2C1FE9BE2C32FA047FFA2ECB0F /* listener.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 465C992A00DF734E450EA64547316D35 /* listener.upb.h */; }; - B73DD7DD06629592107063D213A19EEC /* xds_bootstrap_grpc.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = BF56CB2B89C7D4D258DEC7DB187293AC /* xds_bootstrap_grpc.h */; }; - B73F2305686CAA8EF0600A84B9221477 /* iam_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = B8D0BA64E81CF9C79EB253E44F5E39CD /* iam_credentials.h */; }; - B7672DB3967D834306ACAA05916C79DA /* tls_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 8FAB184EDFF10B625D62C6DD4F6E019F /* tls_utils.h */; }; - B76B74E62E4CCA57D8F9CE7C7571389E /* experiments.cc in Sources */ = {isa = PBXBuildFile; fileRef = 62C5546236C9A6E5DD5C319C6474149A /* experiments.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - B77AF36F7A7FA6B56D54751724BF244A /* elf_mem_image.cc in Sources */ = {isa = PBXBuildFile; fileRef = 31307B076E97E3677B561AE63CBA1D5F /* elf_mem_image.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - B78E2BC0695CCBB8DEBC8CEBDE3CA54B /* windows_logger.h in Headers */ = {isa = PBXBuildFile; fileRef = 81F07F542622C34DE7B68B3D00354D73 /* windows_logger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B7926345C4B0A5850430C2FD13A37F68 /* extension.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = BC77B6B14B47437A609BBC2D60EECC9F /* extension.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - B79BFB7963453EC3E278345B91851607 /* cookie.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 986662053D5F252238E4520FE5B38F18 /* cookie.upb.h */; }; - B79F9F79587249E3120E43D39AD0932E /* FBLPromise+Then.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D2578513CB6EEA16F28F9B0B4F36BD4 /* FBLPromise+Then.h */; settings = {ATTRIBUTES = (Public, ); }; }; - B79FEF60F5D2A04CBD11F44828BB4B55 /* bloom_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2530748983BAAB8D32D112BF6325BAF2 /* bloom_filter.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - B7ADF4661DC8316D397777950B83D36C /* channel_stack_type.cc in Sources */ = {isa = PBXBuildFile; fileRef = F5711C4E8E7A5EAAAE1DFFBEF04E782C /* channel_stack_type.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - B7B6CAE626B365F9B7D3FFF1FF505030 /* unique_type_name.h in Headers */ = {isa = PBXBuildFile; fileRef = F1E9C750906F68CBC1F36E60EBB506F2 /* unique_type_name.h */; }; - B7BB09F820C7CA0B6F7B096E2E12B1DE /* metadata_batch.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 848B821801DA3575DC6745DFCF758650 /* metadata_batch.h */; }; - B7C23F39F38C7BA83235122110BEABEA /* Heartbeat.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5300D7C68AB06FD3378D77E031FFAD13 /* Heartbeat.swift */; }; - B7CD4EE1B70A39B60678D65371C65B40 /* FIRWithdrawMFAResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = BC6242DCEEE9250B3CD0FAE74A883E4B /* FIRWithdrawMFAResponse.m */; }; - B7D802E7A5F90DB2077580641F097CAC /* server_context.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D51E10E873AE8F8D9C3E343E01F34F7 /* server_context.h */; }; - B7DA6751607A94190487E1195F371F1E /* clusters.upb.h in Copy src/core/ext/upb-generated/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = F24F85271883EDB871609F9D406928B4 /* clusters.upb.h */; }; - B7F1B9C8F58E06F43461CD98476028ED /* security_policy_setting.h in Copy src/core/ext/transport/binder/client Private Headers */ = {isa = PBXBuildFile; fileRef = B308F0294D589DF651EB712562FF1C15 /* security_policy_setting.h */; }; - B7F21FD1F96718A345D5E0E3E6D572A4 /* cleanup.h in Copy cleanup Public Headers */ = {isa = PBXBuildFile; fileRef = 51FD51F75DDB42A3A9B76BE91ADFDE02 /* cleanup.h */; }; - B7F35A6EAE5E0FA25106D050359F1B82 /* byte_stream_cpp.cc in Sources */ = {isa = PBXBuildFile; fileRef = 91AB5FE31E12C9E1DB94E0F5CCDEA183 /* byte_stream_cpp.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - B7FE6D650E72479284AD930C5FCD5A66 /* FIRVerifyPasswordRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 4F701D5835D97013D2431EC213F1E23E /* FIRVerifyPasswordRequest.m */; }; - B807E5B470E079C5AF55D1B21A20F259 /* socket_utils.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = D52ADBAC85E227A9DECCEC6F34776599 /* socket_utils.h */; }; - B80DBE4DD1C1CF6FE423DDA3C1EB190C /* status.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = A205E0A9B9138F7FC515247064C77BBB /* status.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - B820E1B7357468E306369B7161611237 /* stats.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = F721AC5581D35C86FFD072B5144336D1 /* stats.upb.h */; }; - B82BA0299FF455E98684F97A0D35EF31 /* xds_cluster_specifier_plugin.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 2BE5A8A0969AB2C5BCA16A49B7DB030A /* xds_cluster_specifier_plugin.h */; }; - B84837A749CAED3C65A5E1FF94539AFA /* cord_internal.cc in Sources */ = {isa = PBXBuildFile; fileRef = 978548C282C4A24205D1B88481C226FE /* cord_internal.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - B85367EE6C9307B55C2085B4ECA85BFA /* tls_method.cc in Sources */ = {isa = PBXBuildFile; fileRef = FF975FBCC0880A23B459EB732EC2F7DA /* tls_method.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - B858A2404F585C457238A9B4B3F1CC9D /* opentelemetry.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 270120CDAE7BAB9C3809949056763408 /* opentelemetry.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - B85D21823E601D94D16EBCF084265155 /* loop.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = 220CAD286B49150C1CCB39A6B7D19735 /* loop.h */; }; - B86C703C49E590553077DE960B87567A /* invoke.h in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 40AC164038E11F2390A9FB94AD128995 /* invoke.h */; }; - B8800CEE21629DA9296F986CAA92EB97 /* channel.h in Copy src/core/lib/surface Private Headers */ = {isa = PBXBuildFile; fileRef = 913F64102EF1A9950DC5DFE664C3DDCB /* channel.h */; }; - B88C62FD2C658E04B989A0AF38FFBCC5 /* binder_server.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5027D12C5A01C823EF016ACDC2223C88 /* binder_server.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - B8915618EC4ABC4FEAAD61EE41B908A3 /* sync_abseil.h in Headers */ = {isa = PBXBuildFile; fileRef = FC4A72E07C612940809EDE591D1C940E /* sync_abseil.h */; }; - B892E283AC0E5F2C81CE42EBDCD26E20 /* GULSecureCoding.h in Headers */ = {isa = PBXBuildFile; fileRef = 0104B37091C693AC47DE79AA35D34CD9 /* GULSecureCoding.h */; settings = {ATTRIBUTES = (Public, ); }; }; - B89774D8EF9BE0CBD969A48E05EE3CA0 /* event_service_config.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 4CB302D376AA289CC2E13FDC9BD2D0C7 /* event_service_config.upbdefs.h */; }; - B8A7150D949CF1CEB7F0729BA6405059 /* dsa.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = CE90D8B6D6A4CC76FC090F64F7E6723E /* dsa.h */; }; - B8B1005E7ECF21202B936BBC59042B00 /* composite_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = C931BBD1054EB919B3359D742C0417E6 /* composite_credentials.h */; }; - B8B93D543D0026687F772C88F38B1380 /* binder_constants.h in Headers */ = {isa = PBXBuildFile; fileRef = 3433683EDB408361D8D03D5683A9CA4B /* binder_constants.h */; }; - B8EB00155D46E9064EDEE44ED19F3E81 /* http.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 691FED75920CDA87F00C6C52A59CF129 /* http.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - B8EEB4FAFB391F02CC8DE97B102941B4 /* http_connect_handshaker.h in Headers */ = {isa = PBXBuildFile; fileRef = EEB143FAE4584022A0EF93F2DB20CA6E /* http_connect_handshaker.h */; }; - B90A76305B09A789BDAC31DE030B62E0 /* FIRBundleUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = 69C61FF6745919F7D8F5093F81A37A72 /* FIRBundleUtil.m */; }; - B919FDDDB76F74F10C3FE146B348B729 /* struct.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = A501483E8B822A0B814FC13801F2C284 /* struct.upbdefs.h */; }; - B92A06517CC66F32FC2B387EDE59F4A7 /* leveldb_migrations.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9F26FAACD22DD45E08C229F2DD119542 /* leveldb_migrations.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - B92B6ABF777B6DFA0F617A567FEF53EA /* status.h in Copy third_party/upb/upb Private Headers */ = {isa = PBXBuildFile; fileRef = 4C28D633474CF61599409602163AB165 /* status.h */; }; - B92D2C437BB4C24F6921183CAA4FCCDE /* alts_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F9309A80B991B45C41D372EF7F02657 /* alts_credentials.h */; }; - B93AC6AAB7D6800271FF44FA7E47E6A0 /* grpc_service.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 5FFDBA3DC6A285E9AE3E4A59FA86D5FF /* grpc_service.upb.h */; }; - B93B32215815D6D4212E7F5678330274 /* upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 3BD90E818DD2D4334EB9A39CA84CDCB7 /* upb.h */; }; - B9422AB24B2F3A238064C12C6BB2406B /* http_tracer.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = D36008E20FD2EAB10F54E1B33F078563 /* http_tracer.upbdefs.h */; }; - B9423E458A73233BF6CD7D25A3B5604A /* iomgr.h in Headers */ = {isa = PBXBuildFile; fileRef = F09371D8E1BDC697CFBDB94012B76BE6 /* iomgr.h */; }; - B946AE4639299D6DF87741C00B6EE30A /* match.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = DE8D18979C6AAECAAA42F4068F348F60 /* match.h */; }; - B94D87B7F4F7D41D1FF41BAC6F2EB574 /* ssl_utils.cc in Sources */ = {isa = PBXBuildFile; fileRef = 552C7E81B4607B1144C0BEBBFDEAFDFB /* ssl_utils.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - B953D21512A66D05C279E1025944E27B /* pb_common.c in Sources */ = {isa = PBXBuildFile; fileRef = E109B17627DDC15CE11B11980E3B4543 /* pb_common.c */; settings = {COMPILER_FLAGS = "-fno-objc-arc -fno-objc-arc -fno-objc-arc"; }; }; - B96804B0B783C3EA5E2E86A60457089B /* internal_errqueue.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 83DD8EC8753EDE10EFE3C0A163FA0164 /* internal_errqueue.h */; }; - B96C1712BDBB20B0BCD535F153D3508A /* time_util.h in Copy src/core/lib/event_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 22301206311EA22AD5A3ADF53892E791 /* time_util.h */; }; - B971DF761722158E44004AD5D78742C9 /* cord_rep_consume.cc in Sources */ = {isa = PBXBuildFile; fileRef = A2E4909DF886B5885126D6ED4C1EAFD4 /* cord_rep_consume.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - B9A1B2A8A4F2980F867ED5B7B463FB46 /* ratelimit_unit.upb.h in Copy src/core/ext/upb-generated/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 1518A275EF5F14FE540310B7DEAB1853 /* ratelimit_unit.upb.h */; }; - B9BEBFC77D991FC5630EC0C0C68CBAFD /* stats.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/metrics/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 92479FC78EF86A6D60DDD788A64916DA /* stats.upbdefs.h */; }; - B9C0A483324191DDBDE540127E060924 /* port_platform.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = 9C427FD5018B3CFA0ABE2C1747E25B59 /* port_platform.h */; }; - B9E46E7DDD8595DB51E5A94C44CB4FB4 /* alts_record_protocol_crypter_common.h in Copy src/core/tsi/alts/frame_protector Private Headers */ = {isa = PBXBuildFile; fileRef = AA5B1D1D0A643DB8CEB80159391843CB /* alts_record_protocol_crypter_common.h */; }; - B9ECAFC5A8FA0B664AAD0041F7BD977B /* load_report.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/endpoint/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 8A05B002E1C2350C88136402F7C62FA2 /* load_report.upbdefs.h */; }; - B9F0B4A7A1E009A6EC35B62825EBEC11 /* message_decompress_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 22ECEDC0ACF605625183D0EBEC36F1A9 /* message_decompress_filter.h */; }; - B9F592939F23A7BC323A03EA18579A4C /* xds_client_grpc.h in Headers */ = {isa = PBXBuildFile; fileRef = E9BD16718BBC907203D2A917F8413F87 /* xds_client_grpc.h */; }; - BA059980E6BA32FA1B7369FFFBCB9B1A /* time_zone_lookup.cc in Sources */ = {isa = PBXBuildFile; fileRef = EE4811E5DB8598D3186D040D1177052B /* time_zone_lookup.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - BA114D02D3ED161C82A337C7EE83C8DA /* stacktrace.cc in Sources */ = {isa = PBXBuildFile; fileRef = D099C72096815AFA6C4589ABEB1DD498 /* stacktrace.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - BA11746EDF1DB18E70DDF9E850F43004 /* quic_config.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 89CE7E704B22BFEBF30F6FD8D911D5B8 /* quic_config.upb.h */; }; - BA13ADBAC788FF045A443041FAE245D5 /* FIRGetRecaptchaConfigRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 89512A5FF8D45D6221769BD69F26E3BA /* FIRGetRecaptchaConfigRequest.m */; }; - BA21632C2FF338B5AABF52274FDCD25F /* context_list.h in Headers */ = {isa = PBXBuildFile; fileRef = C52E852B752BF8243E306C8280D84A4E /* context_list.h */; }; - BA21FEA0D3F2DC6FE9B0CD3E313FAEC5 /* win_socket.h in Copy src/core/lib/event_engine/windows Private Headers */ = {isa = PBXBuildFile; fileRef = 43473412FF8B04FB6CDF0EBA049B58F1 /* win_socket.h */; }; - BA2C06F053977BE17F629F1914DEFAF6 /* internal_errqueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B78422793D3D90DC6C812587B5B826C /* internal_errqueue.h */; }; - BA2FC034CACA94F4E03982C5DF9862B3 /* huffsyms.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D549777CD84CBAB4CF0DDAF063CA817 /* huffsyms.h */; }; - BA32B10E8E7748AAB2EE3BE3032F45CD /* backoff.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6071149C2FF4694B726158839C8DA594 /* backoff.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - BA51824FCACA7F9562C66BA0416EF726 /* service_config_impl.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A36D9C035BCFD1324F484913C6463A7 /* service_config_impl.h */; }; - BA65257AEBEB32771531CCDD1EB00C59 /* aead.c in Sources */ = {isa = PBXBuildFile; fileRef = A85E78AB97547B75BCEE618583AD6E4E /* aead.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - BA695031EB11CF2E559412C98D6B4205 /* deadline_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 45F12C68E6AA6CE8860D74166036B9A9 /* deadline_filter.h */; }; - BA6F925CE3D8E27A231C793C1C381F9E /* route_components.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = F2F27E2C8D76E032A5D4645E115F9716 /* route_components.upb.h */; }; - BA781C837F9A9CDD5F0DC431CCD3064C /* trace_config.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 306175127D60E11E57515EB8E9BCF1B0 /* trace_config.upbdefs.h */; }; - BA7A20B8AD73C6300ED25B6EF31DDF1A /* timestamp.upb.h in Copy src/core/ext/upb-generated/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = 8A312DABDC0469C0664D6E045F608BF1 /* timestamp.upb.h */; }; - BA8105D9427F448DD99C099BF91315C2 /* certs.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = EFE26B08110609F263FBFEE200189021 /* certs.upbdefs.h */; }; - BA878488E82F69DA9B43F2A527EEBE0B /* malloc_counter.h in Copy third_party/re2/util Private Headers */ = {isa = PBXBuildFile; fileRef = 4797401D1B22D884FDB2731470EBC952 /* malloc_counter.h */; }; - BAAB8E3455CF807467AA5E016F30DECF /* sync_abseil.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = FC4A72E07C612940809EDE591D1C940E /* sync_abseil.h */; }; - BAACF4CB7E038CF68AA64609BA65A522 /* ads.upb.h in Copy src/core/ext/upb-generated/envoy/service/discovery/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 28A42F16914161A6286E0EDE25C50C58 /* ads.upb.h */; }; - BABBA197C5D4AD248560AC5FBDD9B012 /* default_event_engine_factory.h in Copy src/core/lib/event_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 0516547BB153B89651DDB0CADA3D6E7A /* default_event_engine_factory.h */; }; - BABEC22348D47D66DE02F64451424568 /* annotations.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B2AAF91ECA5991AA1FE684962D3C2FD /* annotations.upb.h */; }; - BAD3F749CD2C96C80B011E075C5818AF /* filter.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 5F8D4753A60F89C16344108636A22117 /* filter.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - BADB641F5DDE94A104B2F5F445521E54 /* arg.h in Headers */ = {isa = PBXBuildFile; fileRef = 2EA0FF97D96F7BF03649833B91EA20AD /* arg.h */; }; - BADC004E5566865D260E0B26D186F64F /* ads.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = DACE2DB445C20AFA2C26835146371E81 /* ads.upbdefs.h */; }; - BAE1DB56DCC4AE82817AFE9BF5F13371 /* resource_quota.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = CEA0B12F3C2E518D0293CDC130498C4D /* resource_quota.h */; }; - BAE6C0C1056D9E8FA8F51ABCA6205649 /* thread_manager.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9F4D190F3C75B4879C3B3478C0264BB1 /* thread_manager.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - BAEBE01233DDCD6D0BD94DCC3669C046 /* xds_lb_policy_registry.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F5790C6D4AA210C8AE0821F86AB2270 /* xds_lb_policy_registry.h */; }; - BAF475A301D52915C05CC37109F6ECA6 /* discovery.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = F25DC0FC565A224A06B6AFAA464034C7 /* discovery.upbdefs.h */; }; - BAF647A0C4319697837AF208B06096AD /* endpoint.h in Headers */ = {isa = PBXBuildFile; fileRef = 626C1127ECEC310CAA6FED22EDCC4AE3 /* endpoint.h */; }; - BAFCD3530DDF288443B6E11829E7B83A /* GULHeartbeatDateStorable.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A8A453018D8AE9C76D49B5914C40EA6 /* GULHeartbeatDateStorable.h */; settings = {ATTRIBUTES = (Public, ); }; }; - BB025C910C02CC85E51427AFF05FD31B /* windows.c in Sources */ = {isa = PBXBuildFile; fileRef = BF3A0595CAF1A22256145E688D7A5A81 /* windows.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - BB0D30D5A029B0277AEA82360CF1971B /* exponential_biased.cc in Sources */ = {isa = PBXBuildFile; fileRef = BFB367A192FF65F971BBD18084894380 /* exponential_biased.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - BB0DF8E438BDE07E5AB9C563CC6B9F66 /* dns_resolver.cc in Sources */ = {isa = PBXBuildFile; fileRef = 380B094704F420D4E0EC9F2759DAC40F /* dns_resolver.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - BB1028197132CB4BC6008A851FAE57FB /* log_windows.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = E7CD0E83823EDDC865203CA0CD24DF32 /* log_windows.h */; }; - BB111206BD42FCB8A7E5A1F322C3F8BB /* md4.c in Sources */ = {isa = PBXBuildFile; fileRef = AE4E1FD8D0B3217DF4D3446EFC25D5B9 /* md4.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - BB1127D384BBAE46187E344845F44C47 /* address.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 67B36A3B6FDCF2B3C62DF46148B52179 /* address.upb.h */; }; - BB17895C4892391269A8A1E7A40A66B7 /* server_config_selector_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 1FFA8BFF04370260E7DF86886A867442 /* server_config_selector_filter.h */; }; - BB19B270E0EC2C4DEF091EB42437C8B6 /* tcp_server.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 9A89AC2EAC9A7D029B95EFF11FDACC7B /* tcp_server.h */; }; - BB2042B99B27C761FA76800A774A55A6 /* lockfree_event.h in Headers */ = {isa = PBXBuildFile; fileRef = D8AA4D3FF56DE7C182CD080A13F596E7 /* lockfree_event.h */; }; - BB2166B9CD7195CE8EE1D0E5A9E1EA9E /* frame_rst_stream.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = CAB0F8A65AE5476329220A0184EC3515 /* frame_rst_stream.h */; }; - BB554C7F81D724F41742BF277F24ACDF /* node.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 570D74242F34E9983FC76E8429332A46 /* node.upbdefs.h */; }; - BB6D2B058F0260EA82110B2209B0E260 /* cluster.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/extensions/clusters/aggregate/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = F0D345DE53FF111656F06E1389977340 /* cluster.upbdefs.h */; }; - BB707155C4392823714C02D27858B0D0 /* tchar.h in Headers */ = {isa = PBXBuildFile; fileRef = 99ADED98F966D8D3F351A5CBE0D4E23B /* tchar.h */; }; - BB739E6095AA54E0B8B16C95ED2B20D0 /* trace.upb.h in Copy src/core/ext/upb-generated/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 8804887D943121340330F2566D6637A9 /* trace.upb.h */; }; - BB73B8F3135A93FA75DEC90943E070BD /* create_channel_binder.h in Headers */ = {isa = PBXBuildFile; fileRef = AF4BCB4559B0D03F46ED51304095FE0C /* create_channel_binder.h */; }; - BB7AB92C30317FC194842B114AD5D9F4 /* e_aes.c in Sources */ = {isa = PBXBuildFile; fileRef = 0FF4608DF04A1BEDBBE67DCFA3EB2C7F /* e_aes.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - BB838CA74C4FD692948571C59F544854 /* credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 6199E30F0237F0382BBEA7AAF6C29D19 /* credentials.h */; }; - BB8574EC0E06946B5FE5F2A6AEB43171 /* transport_op_string.cc in Sources */ = {isa = PBXBuildFile; fileRef = 77C985060699802A833C647F87F4FE4D /* transport_op_string.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - BB858F69BA265BC386F9CE28D099B90B /* parsed_metadata.h in Headers */ = {isa = PBXBuildFile; fileRef = 5683FA40D6FA0D9DCDB888F619339694 /* parsed_metadata.h */; }; - BB980B34A790DFA995362600FF6AEA9F /* FIRTransaction.h in Headers */ = {isa = PBXBuildFile; fileRef = 320DBBF2F6AE8B771191D7380958FAF5 /* FIRTransaction.h */; settings = {ATTRIBUTES = (Public, ); }; }; - BB9BCE11F7A8524D7783FC7AA3205657 /* pb_encode.c in Sources */ = {isa = PBXBuildFile; fileRef = 25DCAB504EC68CFA3E22BFF45F0F204F /* pb_encode.c */; settings = {COMPILER_FLAGS = "-fno-objc-arc -fno-objc-arc"; }; }; - BBA8A98A114DF8357290260824D1F3FB /* timestamp.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = BF67D8E88F34C35D3AF370D64825472F /* timestamp.upbdefs.h */; }; - BBB37EE5D2EA181C70610B7BFC565203 /* promise_factory.h in Copy src/core/lib/promise/detail Private Headers */ = {isa = PBXBuildFile; fileRef = 470DDA3D7EBDA386014E4071AD8F3BE1 /* promise_factory.h */; }; - BBB925D33612717BE246C4FB4F28BF58 /* FIRAuthAPNSTokenManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 496D800EFD7E242BC303D05A20DC1B4E /* FIRAuthAPNSTokenManager.m */; }; - BBC87317140A5E08E2EDDE771ED004F0 /* verify_mutation.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3AB1E9B05CA3D23CB6A370322FAB7C54 /* verify_mutation.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - BBC98777DE85277AD6E3F737DF49674E /* grpc_authorization_engine.h in Headers */ = {isa = PBXBuildFile; fileRef = C1AD48A333E26FFA1823649866494797 /* grpc_authorization_engine.h */; }; - BBDAFD761823E5D4053202E0956B8565 /* internal.h in Copy crypto/fipsmodule/digest Private Headers */ = {isa = PBXBuildFile; fileRef = BF65F024458FD5B168F862AB8F2A3C2A /* internal.h */; }; - BBF5DB27986F9BDB2337C6434A8B6DC9 /* global_config_custom.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = A8E438A2D1EC2135495CEE14C1854BAA /* global_config_custom.h */; }; - BBFF44D6E21993EBAF780409273CDD7C /* socket_utils_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = BDAA16E71EF33BB62C9C1B92818B8823 /* socket_utils_windows.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - BBFFEC3D524B415F40050D0949219053 /* tcp_server.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 9844E3A37FFD6175761AEBA2983074A8 /* tcp_server.h */; }; - BC055358E5E859F8E8933618C9C4157A /* charconv_parse.h in Headers */ = {isa = PBXBuildFile; fileRef = F0FF2C5B4810C16E40C17E03FD13DDF4 /* charconv_parse.h */; }; - BC0747ACBE04E93682A5C76C62995B2C /* hash_policy.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = D6376C70990502E9AB8F64641BF2D03F /* hash_policy.upbdefs.h */; }; - BC21DA5EDB65D7DF52C1E2E3A8005766 /* method_handler_impl.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 120C12EBC55DA13576A550C7D52CE356 /* method_handler_impl.h */; }; - BC312462C9F8418357DDDFCD09BD4F36 /* error_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B05C0E180F3A12885A769A071238B78 /* error_utils.h */; }; - BC35B8DA7D24A1755AF5B7D478637BD2 /* demangle.cc in Sources */ = {isa = PBXBuildFile; fileRef = DCE3E91AEE1C5D325FC9EAAEB6F76CE5 /* demangle.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - BC3A029B51653115100E36B926AF2FB2 /* stats.upb.h in Copy src/core/ext/upb-generated/envoy/config/metrics/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 92C5FEE6A4D726E49B64835A36B09969 /* stats.upb.h */; }; - BC3F79232FBAB121EAD85CBFC794E01F /* FBLPromise+Validate.m in Sources */ = {isa = PBXBuildFile; fileRef = B478908D138FC80D3F1A294EBDA76D04 /* FBLPromise+Validate.m */; }; - BC4550BAF9FDF6834D777996B5B98160 /* FIRMultiFactorSession+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 0BC130ED50A9D0965C7DA9599DDA20E2 /* FIRMultiFactorSession+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BC5265B3AEA8216017CD113BD0649263 /* pollset_set.h in Headers */ = {isa = PBXBuildFile; fileRef = B7C3000EA46587728528978ACF048E10 /* pollset_set.h */; }; - BC595F00D3395F7DB572B12A311CD5DE /* cord.h in Headers */ = {isa = PBXBuildFile; fileRef = E49B91EBADD885860BFBD5956A2B9BAC /* cord.h */; }; - BC61285B7368F96D1F1F36A07D17EBC3 /* timer.h in Headers */ = {isa = PBXBuildFile; fileRef = 89AB0D470DCAA47CE66441AEAFAA9726 /* timer.h */; }; - BC634600EAAA2488AD59B9C67D3A9DAC /* transport_impl.h in Headers */ = {isa = PBXBuildFile; fileRef = 32D2E6A16B9A52394281683B7706D5EC /* transport_impl.h */; }; - BC67AF12F30FDEF8B5CB6C42F4432E52 /* uri_parser.h in Copy src/core/lib/uri Private Headers */ = {isa = PBXBuildFile; fileRef = 52F9419BDF7CFB1A64EA4A2D5256A294 /* uri_parser.h */; }; - BC775D5205DC3AA54983E657F6C56E4B /* percent_encoding.h in Copy src/core/lib/slice Private Headers */ = {isa = PBXBuildFile; fileRef = B0C19F84BBB23A1A7EC659C47BCA9E70 /* percent_encoding.h */; }; - BC788FC1F0F56CBB7DFF773D22D3467F /* string.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = F2824B7066940497B80155061765CF95 /* string.upbdefs.h */; }; - BC86164795C8F0AD4EE438ABD98F226B /* aggregation_result.nanopb.cc in Sources */ = {isa = PBXBuildFile; fileRef = CB19AE531B13D29E7491B996C5203D33 /* aggregation_result.nanopb.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - BC9B0493D60F9E051957EE160BF95FAA /* global_subchannel_pool.h in Headers */ = {isa = PBXBuildFile; fileRef = AFF59EFE45D095EC84DBF7E430E571FC /* global_subchannel_pool.h */; }; - BC9BDDA4773F1D1F45FF0B896C48A104 /* log_writer.h in Headers */ = {isa = PBXBuildFile; fileRef = 893054A5C15F075FA41B57FDD5921EBF /* log_writer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BCA2F5701048E6FB6665AA1E85271159 /* log_severity.h in Headers */ = {isa = PBXBuildFile; fileRef = 06DCCCBA38736B0AB76BC0E3DDE92FC5 /* log_severity.h */; }; - BCA78FF7643709BEDAC13C7C3B7CA6F5 /* tcp_server.cc in Sources */ = {isa = PBXBuildFile; fileRef = F6C1E8823AA215DC20395E2F03891E75 /* tcp_server.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - BCAA3AC7B3E38F95A595E0666E0534E3 /* retry_throttle.h in Copy src/core/ext/filters/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = BEECC412575A1BCD57C035E6E7DE6000 /* retry_throttle.h */; }; - BCDE0DFF5C30764A28A07F79FA4BFE6A /* error_cfstream.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 0B1205A5AA2B18BA0CA094E864D8268F /* error_cfstream.h */; }; - BCE2229FC15A00881E44861B3A851ED8 /* prefetch.h in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 80AAAF09ABB2AAA0D3DFFDBB21E4F4AF /* prefetch.h */; }; - BCE37C09CCF588EC6C639526DD99BDF5 /* FIRAuthDataResult.m in Sources */ = {isa = PBXBuildFile; fileRef = FEA140D5E29CF06E1D2173B7EE05AC5C /* FIRAuthDataResult.m */; }; - BCF904820E3688D015DCFB1E1B2AFF82 /* api_trace.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B5D7F37145C59A36E04A33B8FC194EB /* api_trace.h */; }; - BCFECB5044476ABEE8DD327FEFC98C2D /* view.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4F777712A036CB356574BBFEB25DBFD7 /* view.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - BD099587F48349AD0481DA9B6AED9643 /* target_index_matcher.cc in Sources */ = {isa = PBXBuildFile; fileRef = 88C79FDE92BEAF68B5D7A55F4F976B56 /* target_index_matcher.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - BD1884AF9DAB028582D3E46E2519D058 /* lame_client.h in Copy src/core/lib/surface Private Headers */ = {isa = PBXBuildFile; fileRef = 6976A310739358E04A136BBD397833B3 /* lame_client.h */; }; - BD27CB280FF9C546C396F5AE03E12B36 /* regexp.h in Headers */ = {isa = PBXBuildFile; fileRef = 150B2B6BFDF59CAE192AD0CABF0ACA37 /* regexp.h */; }; - BD40C689B48D793906F3A049EA42142D /* refcount_c11.c in Sources */ = {isa = PBXBuildFile; fileRef = F8B2BDBD40F3FFCE489C2369D566F3BF /* refcount_c11.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - BD4953D32BEFD66DF43FC78F454768FE /* trace_config.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = C423E40113C2313E3E064E1040D13D49 /* trace_config.upb.h */; }; - BD4BB53D7D2623D65655FF8824066C54 /* auth_filters.h in Copy src/core/lib/security/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 10B23199AFE7B3BEA038A34B76D43A53 /* auth_filters.h */; }; - BD4D08B6B1D8016B256252261E0D6425 /* activity.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1252EEEA9B3170B907D71520E1BB9226 /* activity.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - BD4D21D29FAA02B5E55919715E48E8DB /* polling_entity.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9F80153F4F865D29F5D70B226F655659 /* polling_entity.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - BD4FC47DFC2DE8355896DF558D89A583 /* benchmark.h in Copy third_party/re2/util Private Headers */ = {isa = PBXBuildFile; fileRef = A4CB92C65C9CE37A9A610F84EC988284 /* benchmark.h */; }; - BD651776204D851F74793E2EC9728029 /* grpclb_client_stats.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6349E18ED9BC599E24798EA657788567 /* grpclb_client_stats.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - BD6FFE28E7860E49D602886A54FC9954 /* kernel_timeout.h in Headers */ = {isa = PBXBuildFile; fileRef = 3FD506A5CBFA0523639A3865A5C91A8B /* kernel_timeout.h */; }; - BD722763F352E1E72CA79947A3CD39A2 /* connector.h in Headers */ = {isa = PBXBuildFile; fileRef = 127C2BB3447A6AAA56AA95089268906F /* connector.h */; }; - BD88E5A8E628D74EBCB1994F0762B8C0 /* discovery.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/service/discovery/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = F25DC0FC565A224A06B6AFAA464034C7 /* discovery.upbdefs.h */; }; - BD8A70AEDF8F992EBA07A102B1A13F4D /* proxy_mapper.h in Copy src/core/lib/handshaker Private Headers */ = {isa = PBXBuildFile; fileRef = 37B71D016F5AB4B39D0BE3A2EC98DF0C /* proxy_mapper.h */; }; - BD95A34CB34B800BA47314CEA732D51C /* grpc_alts_credentials_server_options.cc in Sources */ = {isa = PBXBuildFile; fileRef = F1295F8A4D359E5913D7CB235E55E5C7 /* grpc_alts_credentials_server_options.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - BD99DAA9C4B9C38D80411136110DDE66 /* spake25519.c in Sources */ = {isa = PBXBuildFile; fileRef = 363D6848FA832967E80C1336837CB963 /* spake25519.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - BDC15B93C231B107894B23F454263993 /* zipkin.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B6426BB091FEC3121191B22CFD06518 /* zipkin.upb.h */; }; - BDC1989D6F3C3386B25FD2CC3C10C90E /* filter.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/cluster/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 71CBA075A30CC6A9B5F327E0ED9EB95F /* filter.upbdefs.h */; }; - BDC58260B93D446E344A061198A6FBAC /* experiments.h in Copy src/core/lib/experiments Private Headers */ = {isa = PBXBuildFile; fileRef = 2A554462DB74083987B93EC6EE500BB4 /* experiments.h */; }; - BDD015EAE49DDD9F5ECD977E4415BFC5 /* service_config_impl.h in Copy src/core/lib/service_config Private Headers */ = {isa = PBXBuildFile; fileRef = 9CB12FAFC8CD35E09D681B64D0A5E2B9 /* service_config_impl.h */; }; - BDD1991C15529D84D403620ACEA5ABD8 /* periodic_update.h in Copy src/core/lib/resource_quota Private Headers */ = {isa = PBXBuildFile; fileRef = 2853B6FFC5EB1390F8B01F29542CD2B7 /* periodic_update.h */; }; - BDD8A9845A4BC1C7578DEF1F98DB7D35 /* x_x509.c in Sources */ = {isa = PBXBuildFile; fileRef = DBEBF77680EC83F7C179F2E19DCF9361 /* x_x509.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - BDE8FF2E71EAAC5568C9B51C0D549484 /* channel_idle_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = BDC629D461FB5C7939453610137521B1 /* channel_idle_filter.h */; }; - BDF79EB0ECFC7DBF83417E8B1C55D74E /* csds.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 98E8D00800CB8F924243803E45430FB0 /* csds.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - BE0FD6A58C037A2AEAA87FE20E462CED /* channel_create_impl.h in Copy src/core/ext/transport/binder/client Private Headers */ = {isa = PBXBuildFile; fileRef = B414BCDF82778AF6AEDCFD8241619875 /* channel_create_impl.h */; }; - BE185C57D62F6D4952F8CBAE0E8AF7D5 /* config.h in Headers */ = {isa = PBXBuildFile; fileRef = CA5FFAB144207DF2E74DC466FFCF6FB7 /* config.h */; }; - BE193E9F0E5DA1DC28743C6B5CC48DB7 /* idle_filter_state.cc in Sources */ = {isa = PBXBuildFile; fileRef = EBCD39418F7F7E55480D70FC2B972F2C /* idle_filter_state.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - BE1AA2069F822FE3CB469F346EE08384 /* tcp_windows.h in Headers */ = {isa = PBXBuildFile; fileRef = F99A33B60C6433761912B85D85A09CF2 /* tcp_windows.h */; }; - BE32CE3828B6045D5BFDF589E412192A /* FIRSignInWithGameCenterResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 83DC017B516EF1CE4D3544B110C618C6 /* FIRSignInWithGameCenterResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BE3CF43E7FC06D75C9327DDBBFF17DF1 /* byte_buffer.cc in Sources */ = {isa = PBXBuildFile; fileRef = AE2278CE659340040C067C139F57861A /* byte_buffer.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - BE40D7E7977FC5A221CF473660FF9DD8 /* chacha.c in Sources */ = {isa = PBXBuildFile; fileRef = 8DEA50C2D4B505B88A4D348FBE5FE455 /* chacha.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - BE4DCC8D174531F28588C6F4D08D5512 /* tzfile.h in Headers */ = {isa = PBXBuildFile; fileRef = 1023D207CA9A892BC0F1ADF3F866AC62 /* tzfile.h */; }; - BE54DE3EC7417851536F77B0F2021554 /* compressed_tuple.h in Headers */ = {isa = PBXBuildFile; fileRef = C25CCB73644B884EEB1B796F9FAC6DAD /* compressed_tuple.h */; }; - BE6A356B34F09D8E469F0C157E2B221B /* metrics_service.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/metrics/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = A4C7F687737E0863C1664AC8F6B58258 /* metrics_service.upbdefs.h */; }; - BE7C1D931C3E59A31694152F9A26B037 /* wakeup_fd_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 11CF5C9502D8AD9415678A36EB6C13FD /* wakeup_fd_posix.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - BE88FB76737E8C60190A5DA8DBFF6765 /* cipher.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 59EF36BF4F79771B64C36DB8BBDD0920 /* cipher.h */; }; - BE8D4A14BF6B7B53FCDEB045C55AC3A6 /* substitution_format_string.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = A186B0CB5F97B50221217601950819E9 /* substitution_format_string.upbdefs.h */; }; - BE9505DE0CF46D305AD0F1F616F5C622 /* handshaker_factory.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A6043BA6228715407F893402899D7F7 /* handshaker_factory.h */; }; - BE99DC2E1FF9D0EC7B49579DA31AAA1F /* zipkin.upb.h in Copy src/core/ext/upb-generated/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 9B6426BB091FEC3121191B22CFD06518 /* zipkin.upb.h */; }; - BEA2218A8EFA46D01CF8E8ECC5A19C3F /* cfstream_handle.h in Headers */ = {isa = PBXBuildFile; fileRef = 2FAEEFFF1D96A6D1A7DB9564B24F3163 /* cfstream_handle.h */; }; - BEA3E66720C4F3B9668E1C09275D918A /* FIRAuthURLPresenter.h in Headers */ = {isa = PBXBuildFile; fileRef = 9CE01FD2AB1C984419523D3E9A4BD8FC /* FIRAuthURLPresenter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BEB2F96342D9BB9A2CFA9DCC607E169A /* chttp2_connector.h in Headers */ = {isa = PBXBuildFile; fileRef = B7BA602B8ABA36FB78E050D701AFA340 /* chttp2_connector.h */; }; - BEBDD17758477541CACB11E723DEB73E /* fast_uniform_bits.h in Copy random/internal Public Headers */ = {isa = PBXBuildFile; fileRef = BE8B2513C819015AFEE44E7F0481AB14 /* fast_uniform_bits.h */; }; - BEC051B3033BFC13515D886E9B670CD0 /* fault.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/extensions/filters/common/fault/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = DC2153613327B730E31849A0E7E3978B /* fault.upbdefs.h */; }; - BEC90C46D9B40EF820AC70952A4F25C2 /* path.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 467BA4014208F0E720792971663D263E /* path.upb.h */; }; - BECFEA94EB43B30AA80139161E038AC1 /* string.h in Copy src/core/lib/gpr Private Headers */ = {isa = PBXBuildFile; fileRef = D825C55CBD86EDE548F326999266D7F7 /* string.h */; }; - BED19D7DDE2503505746FE94C907D0EC /* chacha.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = E2CDD2CAD7BF8D3904FCB525D6896108 /* chacha.h */; }; - BEDF793A41BD9D94D75703B96B4D1859 /* siphash.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 602DF832695D428540A68EBCC1CB05DF /* siphash.h */; }; - BEE56EDA3C09A03CE029B67E798F182C /* write_batch.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2B753E1984903757C52DB81EE42F4EA6 /* write_batch.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - BEEC876AC8AAB97026A9EBB7DF10E142 /* parsed_metadata.cc in Sources */ = {isa = PBXBuildFile; fileRef = D7740C278A1FE9F516CEBD1B6FD3CEF0 /* parsed_metadata.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - BEEC9B2095DBC7A59D7063B4ACCF1524 /* tls_credentials.h in Copy src/core/lib/security/credentials/tls Private Headers */ = {isa = PBXBuildFile; fileRef = 00A259C3A6174660FA72514B4A203212 /* tls_credentials.h */; }; - BEF905C6C7163917B49B856E0723C97B /* call.h in Headers */ = {isa = PBXBuildFile; fileRef = C953FFD2316336751F5A9712665291CA /* call.h */; }; - BEF933B1A2C21322BB93C063BBF4B399 /* circuit_breaker.upb.h in Copy src/core/ext/upb-generated/envoy/config/cluster/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = CDC391759035FC76DDF36BFA4D915896 /* circuit_breaker.upb.h */; }; - BF066DBC30098EFC0B5AD94111E18E5F /* tcp_client.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = B4D171BD9D1D0A833C72E50075FDFBE7 /* tcp_client.h */; }; - BF0E268716A840C9F238870D4400BE28 /* path.upb.h in Copy src/core/ext/upb-generated/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = F30ABE59C7AA770983E2028F2D16DDBE /* path.upb.h */; }; - BF16E6219D7636C23629BB173EB89244 /* httpbody.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 084B8E1EF4D0EC492AAE5CD86A26089F /* httpbody.upbdefs.h */; }; - BF21A42119B4DF34B5C9A4666E58A52B /* x509rset.c in Sources */ = {isa = PBXBuildFile; fileRef = 3815A6BA42057C3F99842FA6B7823213 /* x509rset.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - BF2B4EFBED71E6DB06415A8B7943C5F2 /* checked.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 3B4A06CBAD268E78F4BA1ADE5814C5F3 /* checked.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - BF301E0D91AF2C37B74111A5E7911744 /* delocate.h in Headers */ = {isa = PBXBuildFile; fileRef = C4B2DA00F24CA3A88B31D4F26F3F8B40 /* delocate.h */; }; - BF4D2022C88A06046386A8CA2E4CD894 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6E336DC2534E1E69B7828F6012B874C6 /* Foundation.framework */; }; - BF56F67E39B43011D9BCC79038B7E2A1 /* hpack_constants.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 9C1AFCB9A8411B20F1D6034A95257D48 /* hpack_constants.h */; }; - BF58FF1B16F09CD54C62E9912135E460 /* tchar.h in Headers */ = {isa = PBXBuildFile; fileRef = 6747F980D1FB521C984E987FE2A1DD62 /* tchar.h */; }; - BF6538A2BE6FB275CB8C50117B8C9FDC /* struct.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 51336D71B379B293BCA3C8B3E9D9EBFF /* struct.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - BF9E94543F49C68E56386EEBCBF654EC /* symbolize_win32.inc in Headers */ = {isa = PBXBuildFile; fileRef = EB78ED5DC25B9D2E1D5497D7B62C1330 /* symbolize_win32.inc */; }; - BFA35259B30704EBFB6164C669FEC897 /* examine_stack.h in Headers */ = {isa = PBXBuildFile; fileRef = 13B4BBFDD69B0F7BAADB4D65F659A97E /* examine_stack.h */; }; - BFA9751288F385620B34F2A5805C3602 /* variant.h in Copy types/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 5C8DB9B69197BB9C109C319C1AD91FD6 /* variant.h */; }; - BFABC552B8FDB67589BAF133F7416505 /* percent.upb.h in Copy src/core/ext/upb-generated/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = EAFB7829E5251C2D9974FD41D25A95FA /* percent.upb.h */; }; - BFB4F094AA41C6D9C4A20847C1E14A0E /* executor.cc in Sources */ = {isa = PBXBuildFile; fileRef = 56723D415501F9F9B8EA04A3B4C72D16 /* executor.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - BFB799ED01C351ACF99731A6C4544618 /* two_level_iterator.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4B379C69A3F0C28D20D25AA29D1715B2 /* two_level_iterator.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - BFCE4EBDA163FA92B911F1A10B7339DA /* activity.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = D98B0B1364291A20272519B09E728D02 /* activity.h */; }; - BFEC2D829667843901691588084C301B /* client_channel.h in Headers */ = {isa = PBXBuildFile; fileRef = AC46BE2233BA5C2F7CBF991ED9D80B7D /* client_channel.h */; }; - BFF5600C1A93FA3AECCB16DD4BDC2AD4 /* xds_resolver.cc in Sources */ = {isa = PBXBuildFile; fileRef = EA02F77236767F0F6C4B4A89B70A23CF /* xds_resolver.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - BFF578C1FA3632B3304EA7E1753989E2 /* FIRComponentContainer.m in Sources */ = {isa = PBXBuildFile; fileRef = 642BEF8EE7132285CFAA9EDF81B8E84A /* FIRComponentContainer.m */; }; - BFFA52B67AA982B649D87A974619089D /* front_binder.h in Copy functional/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 57447590CA8373001BB53BF27B93E004 /* front_binder.h */; }; - BFFFA89A4604F55081ACBA5DE215582F /* orca.upb.h in Copy src/core/ext/upb-generated/xds/service/orca/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 6A6EF1E314E936D183FC23458DFE21DF /* orca.upb.h */; }; - C0018E6C9B8B1999EC479D07AB9FA074 /* ext_dat.h in Headers */ = {isa = PBXBuildFile; fileRef = A72DD36EAAF8B821F3802132B4314307 /* ext_dat.h */; }; - C0063994A6BEACBC003E341DEEC2B7AF /* load_balancer.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = B125F20B87F5BEE037AE4C8889A59085 /* load_balancer.upb.h */; }; - C012565030B3E925262E0D2AAEEE578C /* route_components.upb.h in Copy src/core/ext/upb-generated/envoy/config/route/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = F2F27E2C8D76E032A5D4645E115F9716 /* route_components.upb.h */; }; - C02230ADBD015D65622671CAA6D9880B /* fake_security_connector.h in Copy src/core/lib/security/security_connector/fake Private Headers */ = {isa = PBXBuildFile; fileRef = C5516F0D86CC1D1C8C1E509C8E19EFCB /* fake_security_connector.h */; }; - C028F9A39AEFADB9B037143F062ECCB5 /* montgomery.c in Sources */ = {isa = PBXBuildFile; fileRef = 08EBFCBC0C18E57241F4E726DCF80B82 /* montgomery.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - C02FD5343C89734D46ECC32B74F14D28 /* alts_tsi_handshaker.h in Headers */ = {isa = PBXBuildFile; fileRef = 91DB6135A2522289145F86EBC4D64FE9 /* alts_tsi_handshaker.h */; }; - C033099021BDEF6E765AB2EC6DAA9FCF /* reflection.hpp in Copy third_party/upb/upb Private Headers */ = {isa = PBXBuildFile; fileRef = D804FD736B1C64446935A1966AEC30DE /* reflection.hpp */; }; - C03A5BAE7993BEDF525C0CD7414CCA56 /* ordered_code.cc in Sources */ = {isa = PBXBuildFile; fileRef = EFF861E1E51296E502941231B2B718BF /* ordered_code.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - C049104E3436F08843C1902F7AAF501A /* trace.h in Headers */ = {isa = PBXBuildFile; fileRef = B4D3883CF738697B611F2B0E8F1D1CB3 /* trace.h */; }; - C0577ACC610C9086B14FF789BDFBE7B6 /* arena.h in Headers */ = {isa = PBXBuildFile; fileRef = 224FBB78930502C92A4690575D668721 /* arena.h */; }; - C05B5182A276E9431F7EC2D78F84CAE3 /* per_thread_sem.h in Copy synchronization/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 120973E92D7D51F45C77777F8A6F1C99 /* per_thread_sem.h */; }; - C05CA430885962E2A6DE9A597CAC3257 /* s3_lib.cc in Sources */ = {isa = PBXBuildFile; fileRef = 47A8305E6A9E14C2635BAA90AAE38FA6 /* s3_lib.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - C06DB2A6B5B31512F7795636B7019CD2 /* race.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = 7C6B1B0D746462EF9C3B17F1935779CC /* race.h */; }; - C0B14044790DA3EF75554622854F78ED /* GULReachabilityChecker+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 0AA43F5227C5ACB14CA49123563CA91E /* GULReachabilityChecker+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C0BCB7FE9E5F52B0EEBD750EA8D34A56 /* versioning.upb.h in Copy src/core/ext/upb-generated/udpa/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = D9D5761B1CE7AF87935B073653B703A2 /* versioning.upb.h */; }; - C0D40E3C62A8F4B65DC3C076B8EE44FE /* spinlock_akaros.inc in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 321F515DBCB9A9485EC57A0201F2A855 /* spinlock_akaros.inc */; }; - C0E7698BEBAE9AC6A36D4280C7B7F617 /* tcp_client_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9AC103B972DC6DFD9CD206F2CB580ABE /* tcp_client_windows.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - C0E982C5948EF7D89F377ED17D370D68 /* parser.cc in Sources */ = {isa = PBXBuildFile; fileRef = D75F6B2620E0448875334D06E8AAC929 /* parser.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - C107CFF6160CA7AED0AD48B9D4C42427 /* call_metric_recorder.h in Copy ext Public Headers */ = {isa = PBXBuildFile; fileRef = 5E4F5F7C9E12D4FF1D60882C8C7DA5FD /* call_metric_recorder.h */; }; - C10E55D07651206585EBEF6009BFE269 /* FIRAppCheckInterop.h in Headers */ = {isa = PBXBuildFile; fileRef = B4A4E676048BADE896E89881963D4DB6 /* FIRAppCheckInterop.h */; settings = {ATTRIBUTES = (Public, ); }; }; - C13FA76825FED71EA9A46BF8F41673CF /* arena_promise.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = E10387926F647BB9DDBE12A4B65DB06E /* arena_promise.h */; }; - C13FAE2DEB50A05DD4CE92846ADB6327 /* stream_map.cc in Sources */ = {isa = PBXBuildFile; fileRef = A6E52397D0320FBBA9C5C2F477CFDE34 /* stream_map.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - C147828F251E0D3960EF0EBF356B3D40 /* geo_point.cc in Sources */ = {isa = PBXBuildFile; fileRef = A22F02E4D515A4A1F92DEA3928A1AF06 /* geo_point.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - C14F6CE9F05894FC539817502C3D433C /* waiter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2557103E165BDC04D127A9C3EF01B0C2 /* waiter.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - C15567D0CA00B89E77FE18DE915009F8 /* matchers.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E64D0B8B12B69B0C836CA639796945E /* matchers.h */; }; - C15EEA878BCD9FF6BC5045654139B5D0 /* notification.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = BD7DE0A7F2233E31D3BEFCB227B715FF /* notification.h */; }; - C1640A330522F27049AF9A68C1A558D1 /* FIRAuthDataResult.h in Headers */ = {isa = PBXBuildFile; fileRef = 29A77F5C79177E1D95D7008E32713B9A /* FIRAuthDataResult.h */; settings = {ATTRIBUTES = (Public, ); }; }; - C16A760AE29FCA6BEB7C093D64157F09 /* insecure_server_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = EC674551ECDC7FA70C3E9C4267482DBC /* insecure_server_credentials.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - C16BA9DBD517ECBFE0EA9A790D8A4549 /* FIRAuthKeychainServices.m in Sources */ = {isa = PBXBuildFile; fileRef = 80AF1F0D0C509D9CF4E8B525F2373ACA /* FIRAuthKeychainServices.m */; }; - C173A236B3493D0F0AB98F229511ADA7 /* document_reference.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2D8C876FDB4E11E8F348ACF9B15B4DFA /* document_reference.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - C174CEDCC66AE6DF190EB9DF49184DDB /* lockfree_event.cc in Sources */ = {isa = PBXBuildFile; fileRef = 95044DAE92E09B759F3B7AB2241FC7C0 /* lockfree_event.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - C17B2C6C5B0FD6447313D32D7F58A526 /* client_authority_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = A4D6807DD3206F07A821CFCDDA6E7C46 /* client_authority_filter.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - C18100D72D10770B7EE0AA2900A32A09 /* deprecation.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = B61959DBB0F6AA639E23D8205FB46A4E /* deprecation.upb.h */; }; - C18E4574BA28E777E6168DA8126B95E0 /* json.h in Headers */ = {isa = PBXBuildFile; fileRef = E75D00358011D9CF92780BAB8E8F1F83 /* json.h */; }; - C195748012B715B13F24103382803532 /* http2_errors.h in Headers */ = {isa = PBXBuildFile; fileRef = 20FDD67BF2AEF2E98D354BB4F6AD025A /* http2_errors.h */; }; - C1967EDCD22AEC8B8095C86B0C26CBDC /* cert.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = EB687A1C0E258E86C833917065296818 /* cert.upbdefs.h */; }; - C196CC313ED8E04FBA6AD9E51347BC8A /* api_listener.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = F4FFEBF1F06860FB111A0CF5E60C7AD9 /* api_listener.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - C19A80E7C4E2EB9F74045BA1FC12DEAF /* timer_manager.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = C1C3B6962E58BCD82356E5A8027EB1C0 /* timer_manager.h */; }; - C1B8966106E14DC155C09D9A3E4A639B /* mutation.nanopb.cc in Sources */ = {isa = PBXBuildFile; fileRef = 726E97FBB8766A83600F9B855C766B9B /* mutation.nanopb.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - C1BE61EC55AC185A8F6133A7435CA45B /* resolver.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B4F5E6C381AE1487BF4F78354B290E5 /* resolver.upb.h */; }; - C1E528D42C8342E899132B74EC1BDE00 /* user.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7AFE56D22EBCF861D6AA052B22106714 /* user.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - C1F16999B59CA019E41FB76BC90E2AFD /* connectivity_state.h in Headers */ = {isa = PBXBuildFile; fileRef = 1482EA741A890385794839EA2CF8107A /* connectivity_state.h */; }; - C1F250775E6B5A4AD99D4120C8E849EB /* FIREmailLinkSignInResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = A209EC5AAD973918D1087D9E92075C02 /* FIREmailLinkSignInResponse.m */; }; - C1F8D59A652C0A6611E677000DF2E642 /* skywalking.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = B30762529350C4D96A5AE1F90DBD9F1E /* skywalking.upbdefs.h */; }; - C213300CDD814131153C7DA539602BF7 /* skywalking.upb.h in Copy src/core/ext/upb-generated/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = A72E0E9E243C57737901FE4ACF35D259 /* skywalking.upb.h */; }; - C223A2CD4AEB4F7B0A2E74A6C3280754 /* call_metric_recorder.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E4F5F7C9E12D4FF1D60882C8C7DA5FD /* call_metric_recorder.h */; }; - C22A4666831FA1223DAFA0A4E744D714 /* fake_resolver.h in Headers */ = {isa = PBXBuildFile; fileRef = 223C3024FDFE60D37016A63F6FC82BA5 /* fake_resolver.h */; }; - C240CCBE8155416A6F5C845A025D4E00 /* FIRAuthAppCredentialManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 7576F7EA725B4D9612A77492008ED5A9 /* FIRAuthAppCredentialManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C248A2FA0D04B0BF161BB3FA0C6058BD /* forkable.h in Headers */ = {isa = PBXBuildFile; fileRef = 69710F8E722FA67AA07F795BFE22C367 /* forkable.h */; }; - C249BFBF2EA1DADC042815770C4EA29C /* ascii.h in Headers */ = {isa = PBXBuildFile; fileRef = 2666B3846875F005A0A8300CBCBCB647 /* ascii.h */; }; - C255437A9EF90CDE3BDF1430BC3631A5 /* mutex_stats.upb.h in Copy src/core/ext/upb-generated/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 7E535D616BFB308C5B02F22AD0EE1B2A /* mutex_stats.upb.h */; }; - C2751289B319B866B5EA5A21B22D91A4 /* secret.upb.h in Copy src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 0837FB8A12ADE2BB2305D0FEDBF7ED1F /* secret.upb.h */; }; - C2782F01D245F30307297CE116D1F916 /* array.h in Headers */ = {isa = PBXBuildFile; fileRef = 2913ED9CFC98345166BD46004FDB9F04 /* array.h */; }; - C2810D67C5FA138D30D5AC3C317C91B9 /* annotations.upb.h in Copy src/core/ext/upb-generated/google/api Private Headers */ = {isa = PBXBuildFile; fileRef = 8B2AAF91ECA5991AA1FE684962D3C2FD /* annotations.upb.h */; }; - C29C24214289CBBA83339B96DF5FC628 /* thd_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 86EECCDC7950DF55E642EB7707D1B0F3 /* thd_posix.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - C2A3FE45E95477386CAE5C34CB4C5147 /* http_inputs.upb.h in Copy src/core/ext/upb-generated/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 60943C8515DC3BEB09B4519B1BE22C11 /* http_inputs.upb.h */; }; - C2B020FFEE8A93BEBECEAF888528E1E4 /* promise.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = A7A27F20AA6A790B3928D35C17CF6A55 /* promise.h */; }; - C2B63672DA7DB66E0A781165B58A746D /* timer_manager.h in Headers */ = {isa = PBXBuildFile; fileRef = C1C3B6962E58BCD82356E5A8027EB1C0 /* timer_manager.h */; }; - C2BA79FF8E41C2DAEFA7F483628BBEE3 /* tmpfile.h in Headers */ = {isa = PBXBuildFile; fileRef = C28C366BC02EC0B45971B167642AA847 /* tmpfile.h */; }; - C2C2677E06B7256EFF7C4885CBCCCDE4 /* s3_both.cc in Sources */ = {isa = PBXBuildFile; fileRef = A5DAFD3CFE50769E757F5D667AF4FA5A /* s3_both.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - C2C7883BEAF9AABBA2C7961135180EC0 /* utf.h in Headers */ = {isa = PBXBuildFile; fileRef = 1FB19D674A6C63A47203BE6CD3206057 /* utf.h */; }; - C2D31B3AD55A7DBEE5FFB8D23BF40E04 /* FirebaseFirestore.h in Headers */ = {isa = PBXBuildFile; fileRef = 779F52AEEB1E15C23BA30257920E1078 /* FirebaseFirestore.h */; settings = {ATTRIBUTES = (Public, ); }; }; - C2DB19C21AB026CD54B530704F0381AC /* alts_grpc_record_protocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A013A714F4AED8C5DD374B85A646101 /* alts_grpc_record_protocol.h */; }; - C2EB3DF5419F10CD26A26B3AE33CE418 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6E336DC2534E1E69B7828F6012B874C6 /* Foundation.framework */; }; - C3000BC675695430200CF0C940E4B933 /* fake_transport_security.cc in Sources */ = {isa = PBXBuildFile; fileRef = E6C87C4DCBEA5CF8E1B5F290096DEBB9 /* fake_transport_security.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - C3026042A3CD6D2C5A20E22486F8673B /* handshaker_registry.cc in Sources */ = {isa = PBXBuildFile; fileRef = D352468E805194717B8576CFC6103D30 /* handshaker_registry.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - C3075AD5A8345B7F936F820277773996 /* scoped_route.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 684FC0BC69AD400F535589D1D61529FF /* scoped_route.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - C30A04ACA31D9E71E8D9A9980CECBAA1 /* pollset.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = CA571D814A2DB230278A56265823500E /* pollset.h */; }; - C320C286ABE198ACF93F28EADF52C980 /* dynamic_filters.h in Copy src/core/ext/filters/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = 02CC35C334D5A5FEEA94346CF765DC82 /* dynamic_filters.h */; }; - C322CCD47740C5B41DB2B33F2C3A3956 /* pool.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = C906C0D8C324DF20573A0BDB06754FEB /* pool.h */; }; - C3249EBA62BC5D7C5B4C56652818A657 /* ec_montgomery.c in Sources */ = {isa = PBXBuildFile; fileRef = 94267E25916F43D7425266CDAD5D8DA5 /* ec_montgomery.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - C324B33C5AE1D31E903B934CFEF426CE /* slice_refcount_base.h in Headers */ = {isa = PBXBuildFile; fileRef = 6499ED3474FFF05C0E5B27761D1C05D5 /* slice_refcount_base.h */; }; - C32B2839415A89CE8C32FB4600A2DFF0 /* external_account_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = E8BC8950CF0E6BF62C84F441193AB580 /* external_account_credentials.h */; }; - C32C0948830015F0476B64EE366614D7 /* xds_resource_type_impl.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E49450A0245D82B48D393C7F99C7DDC /* xds_resource_type_impl.h */; }; - C337BA3FA91510F99F9B1389518F8191 /* reflection.hpp in Copy third_party/upb/upb Private Headers */ = {isa = PBXBuildFile; fileRef = 78F7AEDE4094100DFD6C569F2EDE090E /* reflection.hpp */; }; - C34B3FB5194510ACCFD1EACF7C794BD6 /* FIRDeleteAccountResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 5809005D6A643FA2CD8B9E5FD0929C7B /* FIRDeleteAccountResponse.m */; }; - C354A6EB7C8DF919ADB62BAC2288A2B0 /* bin_encoder.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6ABE979A579013EE5CBBA339B0992C57 /* bin_encoder.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - C3551E8467B691D490A42240192ACD1C /* create_channel_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 91EA8C3BA5D0333B7E2F3976816531AD /* create_channel_internal.h */; }; - C35B910577FB83530E26ADBE5C30982F /* call_test_only.h in Headers */ = {isa = PBXBuildFile; fileRef = 09C20EACCD4D4D4AA6CD6CC0B302EDE2 /* call_test_only.h */; }; - C375D0E911BD7337A5B6FAF310B5CFB8 /* spinlock.h in Copy src/core/lib/gpr Private Headers */ = {isa = PBXBuildFile; fileRef = E1623AD4E106EF42A12BE6F4A8926843 /* spinlock.h */; }; - C390384BE805789E7F7DD9224A2FA1D4 /* time_zone_impl.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8E89AEDF61E0BE66CD6E77AD4034898C /* time_zone_impl.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - C3920E4C6C12803DF29CBCBA546F9D2C /* message_compress.h in Headers */ = {isa = PBXBuildFile; fileRef = CBA1CC04E7A5513BC868E42A02EA993B /* message_compress.h */; }; - C39B42703B392FBCE7705FA4CA8FFB59 /* load_balancer_api.cc in Sources */ = {isa = PBXBuildFile; fileRef = 493B841C63E9E70E741D381FAA7EB85F /* load_balancer_api.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - C3B0A42535F64CBE2509187F5B345EF8 /* time_averaged_stats.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 43276600EC6EAE64185A8F8A6263CA00 /* time_averaged_stats.h */; }; - C3B135934B786329B692A33C64D2D5B9 /* orca.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A6EF1E314E936D183FC23458DFE21DF /* orca.upb.h */; }; - C3B9DD8EA672476450C9FAD1D614EE64 /* FIRStartMFASignInResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 6BFBBCCF5C1949980FA94EB9E01DBEA9 /* FIRStartMFASignInResponse.m */; }; - C3C602A1F8CFA18EC88E5AB74A52F6A0 /* create_auth_context.h in Headers */ = {isa = PBXBuildFile; fileRef = F8271F010FD7CBF18956D1BA9754E960 /* create_auth_context.h */; }; - C3CFDA62C9039FA5DB4601BB01F63DE0 /* blake2.c in Sources */ = {isa = PBXBuildFile; fileRef = 4FED8EFDB285A0A7E0152A20806369B7 /* blake2.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - C3E8604B479826CAB26A1A78FAA3D0AB /* certificate_provider_registry.h in Copy src/core/lib/security/certificate_provider Private Headers */ = {isa = PBXBuildFile; fileRef = C16BA8733C7B297294E7CE39AE15BA5C /* certificate_provider_registry.h */; }; - C3F6DB0735669E6F713117BC39CE6919 /* bin_decoder.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = F69F0560872FDB1AC4E6D0D2CC113940 /* bin_decoder.h */; }; - C3FF2D64FF9820B5D4C0E67DC6D5950C /* grpc_method_list.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = A6C366CA67F3B366939079830CB8BB7B /* grpc_method_list.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - C41F33CA1861A9DBC0C081C1F973F0EA /* time_precise.h in Headers */ = {isa = PBXBuildFile; fileRef = CE02D107B5C581A98AB1F9B66822C0B0 /* time_precise.h */; }; - C41F7388320E7DC0C82C1325A603A14F /* scalar.c in Sources */ = {isa = PBXBuildFile; fileRef = BD6D4268B2596D2A7512F128602E4628 /* scalar.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - C424D1CCE345BD6FF3689C644F2DD621 /* service.upb.h in Copy src/core/ext/upb-generated/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = CC72A9402C9409D8ECDCCABA84960771 /* service.upb.h */; }; - C42D88647BDEE31BFEBD0835EC8553B1 /* FIRTwitterAuthProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C159C663FAF0F9387223336097E40AD /* FIRTwitterAuthProvider.h */; settings = {ATTRIBUTES = (Public, ); }; }; - C42DA8BC73D79507A040D2B5949734CC /* opensslv.h in Headers */ = {isa = PBXBuildFile; fileRef = D2B77739ABE06062E09E9D909642D93B /* opensslv.h */; }; - C430064647CE2B13DD8F75CAC42FD333 /* http_status.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 2AFBB0E023D5D7D4335EC10B3DAA2E88 /* http_status.upbdefs.h */; }; - C4312965DE5A1A14962625B39FEBD554 /* FIROAuthCredential.m in Sources */ = {isa = PBXBuildFile; fileRef = CE048244AF35E3A3497EEEA8A00C9E59 /* FIROAuthCredential.m */; }; - C4340E480A05DBBDE09D6DD6F2DFD218 /* percent_encoding.h in Headers */ = {isa = PBXBuildFile; fileRef = B0C19F84BBB23A1A7EC659C47BCA9E70 /* percent_encoding.h */; }; - C43ACEDBBB26929C0C0F3A2B640FC66E /* FIRSetAccountInfoRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 15DD4881A40AFD7AA8AAF82760BD77E7 /* FIRSetAccountInfoRequest.m */; }; - C4435FD091DE84DFC620E28DC3474529 /* uniform_real_distribution.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AB7C208B5F419F1ADF907917C8EDDAB /* uniform_real_distribution.h */; }; - C44C66792B0843F0CC439E6FC868E8FD /* custom_tag.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 3340F1EFB30DF475E91F8448CC0D12CF /* custom_tag.upbdefs.h */; }; - C455458420C153406DE0BCB432381A76 /* call_tracer.h in Copy src/core/lib/channel Private Headers */ = {isa = PBXBuildFile; fileRef = 77A2A15AFFA01D245A379428F38CAEC5 /* call_tracer.h */; }; - C4570FBB5F02518957B39BBA095C0CB9 /* ecdsa_asn1.c in Sources */ = {isa = PBXBuildFile; fileRef = E3556224A3970AA83A6D9EFF47FD791B /* ecdsa_asn1.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - C45CADC7E6181DEA88C026A6F0B129C0 /* internal.h in Copy crypto/cipher_extra Private Headers */ = {isa = PBXBuildFile; fileRef = 022506EE4C4F2FC4C54187B3A8DB97DB /* internal.h */; }; - C462C47B9A7FB631F495E77424CB8981 /* ratelimit_strategy.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = C04D3699CAACD78C0AE091952ED4AAFC /* ratelimit_strategy.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - C466BBE9F7A25300650212CCF875A403 /* poll.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = 0F19488CE91969939757AF32AF3050D4 /* poll.h */; }; - C46A639C981678205041057F73AAD888 /* rbac.upb.h in Copy src/core/ext/upb-generated/envoy/config/rbac/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = A207A2984BAECC3DC2A18FD3F003D75F /* rbac.upb.h */; }; - C47853C215F96D2DD3DE17BAF52B62F0 /* reflection.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 78F7AEDE4094100DFD6C569F2EDE090E /* reflection.hpp */; }; - C47DE0D313D36B21D86C50F0BFC868B4 /* connected_channel.h in Headers */ = {isa = PBXBuildFile; fileRef = EEB2DF6EAA27D4F4070C3CB8F2A9F9E8 /* connected_channel.h */; }; - C4885E97329EBA443284CB72DD1D9A4A /* channel.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 911EA92095E7913F4BCF5650897CFD52 /* channel.h */; }; - C48E05F223922CDC8140EEC23F66C044 /* FIRFirestoreSettings.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B36E65F05DB381EA991BD16AB53BDA2 /* FIRFirestoreSettings.h */; settings = {ATTRIBUTES = (Public, ); }; }; - C4943D67700E672E900010DD9A62AAAF /* FIRFinalizeMFASignInRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = A7045899A59CF82A8E1173B7BDDA8019 /* FIRFinalizeMFASignInRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C49E28972F3CFC0FF34AEC937BA81DB3 /* empty.upb.h in Copy src/core/ext/upb-generated/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = 2251B7CDBF5C4541E60B1F5BFEBBF4AF /* empty.upb.h */; }; - C4B1D875F4582867B2F75938B905A5E7 /* msg_internal.h in Copy third_party/upb/upb Private Headers */ = {isa = PBXBuildFile; fileRef = 64F75CB8AD8FB246982389E337AB7450 /* msg_internal.h */; }; - C4C304E50728ADD8AEA125887E7A1075 /* mini_table.hpp in Copy third_party/upb/upb Private Headers */ = {isa = PBXBuildFile; fileRef = 3A322B4302CA5F4C4581C0A9C895ABA7 /* mini_table.hpp */; }; - C4C43F5D49E46178233EB7D92871711A /* ssl.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 993AA317356A486F0CA104D0DE838092 /* ssl.h */; }; - C4C714D7FDE98CDA8E173BEA5B76FAC5 /* seed_sequences.h in Headers */ = {isa = PBXBuildFile; fileRef = 62C0DF30B6A036767B05313E8E340DBF /* seed_sequences.h */; }; - C4CAF050EB0BEA02D4288D4A677390D0 /* extension.upb.h in Copy src/core/ext/upb-generated/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 5578B99147B7935FEED758D90B000502 /* extension.upb.h */; }; - C4CAFB864C8E9ABE2D7E9AA5931C1BD7 /* backup_poller.h in Headers */ = {isa = PBXBuildFile; fileRef = 42694FA75E2F6A63EED5401CD00C1EEF /* backup_poller.h */; }; - C4D555D2E97E702E09CD1351B56EB2B0 /* exponential_biased.h in Copy profiling/internal Public Headers */ = {isa = PBXBuildFile; fileRef = AFC43F118AA2CD9ACEF0DB3854781958 /* exponential_biased.h */; }; - C4D971E16BD078F749460E7C2F019AE5 /* cordz_statistics.h in Headers */ = {isa = PBXBuildFile; fileRef = CCF241C45EC44BAF57F498C01A697084 /* cordz_statistics.h */; }; - C4F0E5F3E38A80CA84D41F3A9D26BB7E /* upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 472908D0FA32FF83EB1C98D618CD8F8E /* upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - C4F617B8ECCD522DC34A84857BB126D2 /* bits.h in Copy numeric/internal Public Headers */ = {isa = PBXBuildFile; fileRef = DD0CEE86A51A959D825B8F764A44135D /* bits.h */; }; - C4F9B2F7C2DA10472C7ECD70DC11DC1A /* metadata.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 4C8C29A15A74FB46087B5D1B9100D667 /* metadata.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - C4FAEE0345794927256B15264913F4BB /* cleanup.h in Headers */ = {isa = PBXBuildFile; fileRef = 51FD51F75DDB42A3A9B76BE91ADFDE02 /* cleanup.h */; }; - C501EE8577F951F989D3116ECE22A591 /* channel_args_preconditioning.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8780BBF38EEF34E9C83B2DE0D262ECC0 /* channel_args_preconditioning.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - C508CA610DC3775B7910F127E1B7FEE3 /* backoff.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = A4B884E0F6477324A11CAD093CC5E691 /* backoff.upb.h */; }; - C5179416B6AA22803D73398F4FB1D283 /* latch.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = E8802DCBAB5F1DA891DD4CA46EFC7476 /* latch.h */; }; - C51E586CAD9F14636901EAB6B3099E44 /* HeartbeatStorage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 139D7D030A54A5A74CBA4A86CD427D61 /* HeartbeatStorage.swift */; }; - C53607689AE5849C3EE4E45965E59BA9 /* ec_asn1.c in Sources */ = {isa = PBXBuildFile; fileRef = BE965D2D14C3172682E5E75EB4D38CE5 /* ec_asn1.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - C53CE4090ED4AFD1AD67FF107C1EF329 /* trust_token.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 139AF6D02A92BA34E5F403A7A92B5E45 /* trust_token.h */; }; - C5434CF743479FE1AAB25C53CBAEC27A /* alts_counter.h in Headers */ = {isa = PBXBuildFile; fileRef = DA6DF344A1EA21110E741BC9F289A8FE /* alts_counter.h */; }; - C55DF7F3DB33F4873CF26F0B28AFFB3C /* FIRPhoneMultiFactorGenerator.m in Sources */ = {isa = PBXBuildFile; fileRef = 5BD56AA7A2CFC6D576101018A24800C9 /* FIRPhoneMultiFactorGenerator.m */; }; - C55EFAD16647FE1C4C0061E0E9D17694 /* endpoint_cfstream.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 150B0238429C2211A35706B836B6FE88 /* endpoint_cfstream.h */; }; - C573DFD72FA1B2D380CD962BCB09E96E /* circuit_breaker.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/cluster/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = FFF8FAD09582E2B875E0C5C50797144F /* circuit_breaker.upbdefs.h */; }; - C5742276DD2622FEBF04CC35FD22D20E /* ev_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = A88434D3635635EA4C0C18CB712F73F2 /* ev_posix.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - C57DCC25FCEB1CF24598D98A050FF3D9 /* FIRActionCodeSettings.h in Headers */ = {isa = PBXBuildFile; fileRef = 9897E439A4F232003B40FF1A7F7FDCD7 /* FIRActionCodeSettings.h */; settings = {ATTRIBUTES = (Public, ); }; }; - C581099EFB4B504E89780A0AC28B8872 /* http_inputs.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 60943C8515DC3BEB09B4519B1BE22C11 /* http_inputs.upb.h */; }; - C596B78D981789CF04233526200E7E27 /* FIRComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = 81254AEBF64CAAEABF9CE39E14A1F6E8 /* FIRComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C5A6C25AF232CE6CC6AE2706E12A7356 /* transaction.cc in Sources */ = {isa = PBXBuildFile; fileRef = 45B48D94DEADFEDBDEFCBB3239C776EF /* transaction.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - C5B058BD660E327B4C9F91B0A6CC1F6A /* traits.h in Copy random/internal Public Headers */ = {isa = PBXBuildFile; fileRef = D01EF5D6975F05F6DCCE20E325E16661 /* traits.h */; }; - C5B686B143279D7E57CF5B589FE03DE5 /* service_config.h in Copy src/core/lib/service_config Private Headers */ = {isa = PBXBuildFile; fileRef = 2D2B5932D59CF896AF331C7455E83E87 /* service_config.h */; }; - C5C1A88B0899DCA9CCC16BA67A913CF1 /* filtered_re2.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4CEE2C4FE7E9393F6F04F080373DCE1C /* filtered_re2.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - C5C481F33611DF421804A9DB66922B74 /* inlined_vector.h in Copy container Public Headers */ = {isa = PBXBuildFile; fileRef = 19CB4B90FE8A0383092322CF0CFDF56B /* inlined_vector.h */; }; - C5CA76C214A5B3212D1F4ECDCAA6C98D /* handle_containers.h in Copy src/core/lib/event_engine Private Headers */ = {isa = PBXBuildFile; fileRef = B55E618971BCAC5BD107FA2401098156 /* handle_containers.h */; }; - C5D340C75852469BEF3CC1D0A94CA718 /* mutable_document.cc in Sources */ = {isa = PBXBuildFile; fileRef = 87F44ED0BCEE0839EE70046C16633179 /* mutable_document.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - C5DA303F9DE7C9B192BD805580BA2CB9 /* security.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 05603E080B7957664B50E13BBACA7222 /* security.upbdefs.h */; }; - C5F3CCCD4B93F322040EC0115D4238D8 /* timeout_encoding.cc in Sources */ = {isa = PBXBuildFile; fileRef = C221188F3FCEDF04418B4B3FF0C31AED /* timeout_encoding.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - C5F8DFD98BB560446C93D8D813610357 /* mutex.cc in Sources */ = {isa = PBXBuildFile; fileRef = FFBCD6E9A0E6F1DE65424AF3D0C8F820 /* mutex.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - C6018EC9F67265D040C8A423AADB1664 /* discrete_distribution.cc in Sources */ = {isa = PBXBuildFile; fileRef = 17D95BE4C8D51C1E086ABF442672DC9A /* discrete_distribution.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - C60762FA865F2D015AF82A2A0FFD880B /* optional.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D9DDF413C634F2C569FE3630DE09562 /* optional.h */; }; - C627425035126F3D41AB86DDAFCEC8E0 /* output.h in Headers */ = {isa = PBXBuildFile; fileRef = 3025549F4662802E6E043C29EA116C83 /* output.h */; }; - C62B2FBF55B39691A00A3BDB0AF66289 /* atm_windows.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = C930590AC06A73A0B3686C8EC790DC70 /* atm_windows.h */; }; - C642C0FCFF8E0BCBC24B0B5C2B55C1E9 /* grpclb_balancer_addresses.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D0176963172D4448F8F3BEF74E31304 /* grpclb_balancer_addresses.h */; }; - C6453C8B60BFAD6AD252E2347B1DDD69 /* stream_lists.cc in Sources */ = {isa = PBXBuildFile; fileRef = DF83025E4BD51FB9F0D27CB29305D266 /* stream_lists.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - C6469FCB4FCD1CB26C6049ECBB85F22E /* timestamp.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 5BED6A13971AF289354334A6AB6F183F /* timestamp.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - C64870E9EC41D1A330D510970215D575 /* FIRMultiFactor.h in Headers */ = {isa = PBXBuildFile; fileRef = 534DC6D1DC5F2230E2293F6EA5469D22 /* FIRMultiFactor.h */; settings = {ATTRIBUTES = (Public, ); }; }; - C65C97147A271819A356AD2C9E5A4AB4 /* message_compress_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = C2A5EF6AF2FE70B8E669CF19490766EF /* message_compress_filter.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - C666208DAC339850248EE9C3F6990343 /* hash_policy.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D7102E0832D113DB8685B47A97E882E /* hash_policy.upb.h */; }; - C66889C63E4E752AB53102B6CDC2566F /* composite_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = 616EA307C2DD626543957DA7845F3561 /* composite_credentials.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - C685AF5C77FC0335D8233AB884FDB6BE /* tls_credentials_options.h in Headers */ = {isa = PBXBuildFile; fileRef = E3DB1F14CF4DF2DBF75D7F11C6F9E33C /* tls_credentials_options.h */; }; - C6A21FF48935722E3AD557EE5B58F9F9 /* extension.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 72F7E21BE89BC99807A36CCB4EA90755 /* extension.upb.h */; }; - C6A75A812B0519ACB455F94AF95EF945 /* inline_variable.h in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = A3B6B704338E1D9AB7E752CFB91F4C63 /* inline_variable.h */; }; - C6A7B7ABDDFF4CA34C93FC091FDDCA8F /* GULURLSessionDataResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = F7F5AE73BF6E2A721496093579E84F54 /* GULURLSessionDataResponse.h */; settings = {ATTRIBUTES = (Public, ); }; }; - C6AE628524DAC4E0F4C78F36F97B7938 /* chttp2_connector.cc in Sources */ = {isa = PBXBuildFile; fileRef = A00965BC296F5962B28F6BBFB378D9EA /* chttp2_connector.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - C6B4A4AD6DDC2C3044B471510418E99B /* cluster.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = D0F264205FC248E97089541A953C9FCE /* cluster.upbdefs.h */; }; - C6C2B6EE1EBF12930835BFDA1641712A /* xds_api.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4A3082BF8D45B270736707BDDBE46BF1 /* xds_api.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - C6C85CC98A719293FC7C01818593FD6A /* deprecation.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 2C78FC38FA900F6FBB02043937093CD8 /* deprecation.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - C6C9C6A2A197CACAD326530A454C344D /* gcd.c in Sources */ = {isa = PBXBuildFile; fileRef = 65484BA53ADB21B9354A1AECABAFF212 /* gcd.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - C6D35B15A99DDB5A828A03344BD5F3F5 /* SafariServices.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4D1F60313EDE14B0F8C5057996F65A9D /* SafariServices.framework */; }; - C6D4EEABEEE70D04EDD402D25060EFF2 /* string_util_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = 68C1DD396516234BA2C51EF11565EE2B /* string_util_windows.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - C6D9FFCA679740F50EBD5DB0193D5617 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = D54E9FFC1AA99B02DACABB7501948E36 /* internal.h */; }; - C6DE6F2A532765314AF3B5F86D57E5A3 /* dtls_method.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9579AEA0C639344D1ACAE061089FB993 /* dtls_method.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - C6DF13324C9B0889D81CDCEFE879A0A9 /* file.c in Sources */ = {isa = PBXBuildFile; fileRef = F839E2A91CE80382B12B0F06E72096D4 /* file.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - C6E4B4BE64E5723B88EA7E277E53E1CE /* crypto.h in Headers */ = {isa = PBXBuildFile; fileRef = 89EC5C7C3F96252D5A3A3E9C5B53ED87 /* crypto.h */; }; - C6E5D216CEE302693F3933667ECB9FF5 /* slice_buffer.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F0934EBA9CBCBBD3607760701C315AA /* slice_buffer.h */; }; - C6E9E83CFDDF9E633F1A1B79C5C62D56 /* target_data.cc in Sources */ = {isa = PBXBuildFile; fileRef = 49BD80CD795324336288115C9871BB52 /* target_data.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - C6F91CA0FB0A34A5662A691886F1C243 /* cpu.h in Headers */ = {isa = PBXBuildFile; fileRef = 79C0C6E9286973AAD930A1477B7F9D90 /* cpu.h */; }; - C71A029DD6A2C77A0E60476BF754EAE8 /* binder_auto_utils.h in Copy src/core/ext/transport/binder/utils Private Headers */ = {isa = PBXBuildFile; fileRef = 33A88C7415B9C77919580468A27A29F8 /* binder_auto_utils.h */; }; - C71CB889565D628D908EA2B06448C91B /* iocp_windows.h in Headers */ = {isa = PBXBuildFile; fileRef = B2E865DE3AFE2C120A9B6CC307EE7E3D /* iocp_windows.h */; }; - C71E373C7BB169063832D485D81D0749 /* protocol.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 76CDFB2232C2A0DB66E7A61B309A0923 /* protocol.upbdefs.h */; }; - C720514F8EEBAE8A848FA154A8B99635 /* boringssl_prefix_symbols.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = A92B78475FEC0A38FF26D0B1326DDA4B /* boringssl_prefix_symbols.h */; }; - C72D7A11F28CA9BC6EF1CC3B79B3E3F5 /* retry_service_config.h in Headers */ = {isa = PBXBuildFile; fileRef = FB7BCBDAD672580F386A1B6B8EBBA620 /* retry_service_config.h */; }; - C72E1969DEA020C64B48489C517D6949 /* retry_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = EA0A644A6BB640FF063BC68B3227136A /* retry_filter.h */; }; - C72FBCD9B84840CEE7A430DE877936DC /* FIRTimestamp.m in Sources */ = {isa = PBXBuildFile; fileRef = 2A4BC126184283F634A70FC24FAB527A /* FIRTimestamp.m */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; - C7322D4071B4B5D1D5348C42934BC620 /* hash_function_defaults.h in Copy container/internal Public Headers */ = {isa = PBXBuildFile; fileRef = E9CBCA2F7CCF7873C235AA7517B87F08 /* hash_function_defaults.h */; }; - C73802820A10BE778B8D8B3071E7F5B7 /* config.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4F47FDAD31792661958BD344023637B4 /* config.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - C73D9AF6508E3AAF8D9DA8A6E6F695D6 /* duration.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = 88E28CC52CED0E3F92A4CD567F6479C9 /* duration.upbdefs.h */; }; - C743B764901F145A471C761491B78EA7 /* matcher.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 1286728D64CAAEFC4147B36CC6CC3CBE /* matcher.upb.h */; }; - C750003100B17F1EB186A3D16FF50D9F /* ec.h in Headers */ = {isa = PBXBuildFile; fileRef = A09DE1080290FF60E871CD128A3781C8 /* ec.h */; }; - C75D047E9B4460C58732C706BF2A6DBD /* thread_quota.h in Headers */ = {isa = PBXBuildFile; fileRef = 3990D9F719024BA5F88C3712DF7C80BD /* thread_quota.h */; }; - C7744000080E5B1B42341AFAB72BB976 /* ssl_aead_ctx.cc in Sources */ = {isa = PBXBuildFile; fileRef = 686883483813F592C61194D39E2972B8 /* ssl_aead_ctx.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - C785B1C2D9001D4F312FBD43BD0AEF85 /* cmac.c in Sources */ = {isa = PBXBuildFile; fileRef = 858854339B254E98CE39BB4BCDB511AE /* cmac.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - C78B782C7795ACB10D5E53A66AD885F1 /* httpbody.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 909DDA92FEAD88E6369056CC5E1D4B25 /* httpbody.upb.h */; }; - C78CAF8D8BFD83A8E1AAFB57C2F97F44 /* slice.h in Headers */ = {isa = PBXBuildFile; fileRef = 31538717DE44174F76E7921728F0ECFF /* slice.h */; }; - C793F12C1B2E8065F7F344839A2EFBB1 /* FBLPromiseError.m in Sources */ = {isa = PBXBuildFile; fileRef = 9C7AF2791725107CFB962B4EB8EFD66D /* FBLPromiseError.m */; }; - C7A408B98BA316D956014F5FC3ECF4B6 /* ring_hash.h in Headers */ = {isa = PBXBuildFile; fileRef = C16B783CCDF675B2068FC1A52AB09D53 /* ring_hash.h */; }; - C7AEE045453AE038FACB7B50803FCC2B /* x509_vpm.c in Sources */ = {isa = PBXBuildFile; fileRef = 0767F443854EE11AEB1AE0E9F66A771D /* x509_vpm.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - C7B05582D122AEE22CC081A6BBFE7A7D /* a_strex.c in Sources */ = {isa = PBXBuildFile; fileRef = B46483763E2857622D651C0D31200976 /* a_strex.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - C7B086F7AE5518B03CC66BB0EDE3132D /* semantic_version.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 79A0C919A26E9A21266195C5A67FE6DC /* semantic_version.upbdefs.h */; }; - C7B5CCBAEEBF60921CF96484A13F90F1 /* table.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C824D77D7F37525D1AA5EBB985A046C /* table.h */; settings = {ATTRIBUTES = (Public, ); }; }; - C7B614DBB6B943C512DC9B7F4645ADA0 /* casts.h in Headers */ = {isa = PBXBuildFile; fileRef = 762F98456A81D63C7632832560CEEA87 /* casts.h */; }; - C7B8A90D68DCED172232DE4E4A2ADDF2 /* http_tracer.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 8E01E7F74394EC112630BFF4E89E8EAC /* http_tracer.upbdefs.h */; }; - C7C63732BFE0EED2B5031E2783C4941F /* xds_http_filters.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 15D241C6BDA2A5BA32E7EE30BEC9D97B /* xds_http_filters.h */; }; - C7C790F5F57E99744D8F2569BF9D96B7 /* common.h in Copy container/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 42D34499225FBE825CADB32FCF087DE9 /* common.h */; }; - C7D743524D6A098882C94D0761191BA4 /* remote_store.cc in Sources */ = {isa = PBXBuildFile; fileRef = C097AF0E10E8516C84BA2F55FC1C9FE1 /* remote_store.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - C7E546DA9956280FDF3909F0BE32081C /* rbac.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = A207A2984BAECC3DC2A18FD3F003D75F /* rbac.upb.h */; }; - C7E569F0A1AF4C0A2D5D266B08DFA8FC /* cleanup.h in Headers */ = {isa = PBXBuildFile; fileRef = 9402DC9EEBC82A8B50F21346EFE3825B /* cleanup.h */; }; - C7F944171B41DC1F36D994357F6E48A5 /* number.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = D2346A851A8D274E0726A3ACED92086D /* number.upbdefs.h */; }; - C81FEB7834F851E28594AFD46D5FD433 /* base.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 00A47C8B6DD59E2481D98DC277879480 /* base.upbdefs.h */; }; - C83C9A411E19D0B8A862CFD42C3A9A99 /* name_print.c in Sources */ = {isa = PBXBuildFile; fileRef = 079383B4BBC29ABB512059412E263624 /* name_print.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - C84369BD89A29EADA24AFE68CD613C72 /* call_log_batch.cc in Sources */ = {isa = PBXBuildFile; fileRef = B545C4772B765F5A4A136D3ED4BDCB4C /* call_log_batch.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - C844257E3F169475F779DAF9F11CDA69 /* aggregate_query.cc in Sources */ = {isa = PBXBuildFile; fileRef = 311135A38FB9B4F980524B49FD6F620E /* aggregate_query.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - C85C734AC220502FD5F4C201EC3D98FB /* secret.upb.h in Copy src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 1F13B65A25AAC2D139846A8BD9C33817 /* secret.upb.h */; }; - C85FEF359FEAEF27D89927744F5B71EE /* resource_quota.h in Headers */ = {isa = PBXBuildFile; fileRef = CEA0B12F3C2E518D0293CDC130498C4D /* resource_quota.h */; }; - C86B078E26F7E924137112EB5EC135B0 /* xray.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = E9B73F9A3BF74896438423DD4E1C2270 /* xray.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - C86E0BB36329A16C7D451E66B20569DC /* FIRAuthErrorUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 180481C14161F7B5D4859DAAEFB3555D /* FIRAuthErrorUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C880ECBF1D57964845A7FA88886CB126 /* chunked_vector.h in Headers */ = {isa = PBXBuildFile; fileRef = 1CA9FA7ACCBB7A0C93FB4ED61A315110 /* chunked_vector.h */; }; - C883E57AAC2B6E39807D3FE1F187F74B /* ev_poll_posix.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 834C045E06AE607E28692F51AFBE2F2F /* ev_poll_posix.h */; }; - C885ECB8FD355937DDBE50016F2FB6D9 /* common.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 2AFEEB84849AAC59EA163A468E67209A /* common.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - C8863D7CA7047A494624ADAFF69B1A1A /* load_file.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 31C2BCBDB222630431F638FACF0F9414 /* load_file.h */; }; - C88B1B0E97450AFDB49B5537C08FD16C /* secure_random_arc4random.cc in Sources */ = {isa = PBXBuildFile; fileRef = EFBDB8F895AFBE8CB5F8C7007A0B8BA2 /* secure_random_arc4random.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - C88C38D0A4F2B0E2F64A17DCB7B3F20E /* FBLPromise+Delay.m in Sources */ = {isa = PBXBuildFile; fileRef = 64A38D50022AC8327753F04316558DFE /* FBLPromise+Delay.m */; }; - C88F47F876D3FCCD5F3115C122CEC3E7 /* channelz_registry.h in Copy src/core/lib/channel Private Headers */ = {isa = PBXBuildFile; fileRef = CD48AC94385B20DFD0E96B95B8D64973 /* channelz_registry.h */; }; - C890323C10CF55E341E4FF224ADB349E /* uniform_real_distribution.h in Copy random Public Headers */ = {isa = PBXBuildFile; fileRef = 1AB7C208B5F419F1ADF907917C8EDDAB /* uniform_real_distribution.h */; }; - C89311DC631C0639D33E952B9B406CCE /* transport_stream_receiver.h in Copy src/core/ext/transport/binder/utils Private Headers */ = {isa = PBXBuildFile; fileRef = B69D17F3254FA6BC4751F424967D265C /* transport_stream_receiver.h */; }; - C8A2DF4219E0D42723D67E98452AA653 /* extension.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = AE8C374CFD33BAB906F085E13C66FEC1 /* extension.upb.h */; }; - C8A4831AE13199A7CA8CE523C07AEDE3 /* polling_entity.h in Headers */ = {isa = PBXBuildFile; fileRef = A5EE704383DA9A5204931F226D0887FA /* polling_entity.h */; }; - C8C9B8687D99009253CB221E4F131292 /* metadata.upb.h in Copy src/core/ext/upb-generated/envoy/type/metadata/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 9AEB08A55A2FF9FF722C548609176A1B /* metadata.upb.h */; }; - C8FA008FA899BC0010A8B186A7D4C553 /* slice_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 9CF3F3A2EE81EBB23EC4234A586D0D88 /* slice_internal.h */; }; - C8FAEEECE453A396FA203BFCE0E4891F /* encrypted_client_hello.cc in Sources */ = {isa = PBXBuildFile; fileRef = E3A79B59FFE16B84C2ADCA787EE3D4C9 /* encrypted_client_hello.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - C8FCA77A3708C38807483AEEA89432BF /* resolver.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B1AA9559BDE1C0FD02B513FF76C89EF /* resolver.upbdefs.h */; }; - C90957B97CAA89197C3FE6736702CECE /* memtable.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D04202FC32AAD86A4CF0BAA7BB993EB /* memtable.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C9117DBF378968235DFB794FB3BE8A05 /* xds_client.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = C64C3CBC9FDC946919B982478C692E19 /* xds_client.h */; }; - C91D5A1E21470FA3F32C062CD05B7BF7 /* FIRAppInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = CEA3302FA04EED422385A71409FCB713 /* FIRAppInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C924AF90A6EE3ABC36F693754D183B68 /* backup_poller.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5E71E0E2135FD8BE46A183C3C89361EA /* backup_poller.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - C92555C30BEC4A1222A538A13F7E4DEE /* config_dump_shared.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 3E280793D99C21902483E68E8A614975 /* config_dump_shared.upbdefs.h */; }; - C92BA75D0880734172B1CC73C9D11FAA /* http_tracer.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 29D1C34FC7947809E87213616C12289A /* http_tracer.upb.h */; }; - C92BB0D47776F2101AB933E0F6CF5A01 /* fake_transport_security.h in Copy src/core/tsi Private Headers */ = {isa = PBXBuildFile; fileRef = 1642B1ACAD9E3ED5F07F9FC9B17C2D13 /* fake_transport_security.h */; }; - C92DAD1C8AFC370DA938B7F8772355BF /* status_payload_printer.h in Headers */ = {isa = PBXBuildFile; fileRef = 6BAAF94F7474841BC5D09A557640A7EA /* status_payload_printer.h */; }; - C92FC4EA7BF3C782F30749D61C2676B9 /* alts_counter.h in Headers */ = {isa = PBXBuildFile; fileRef = E2816B4D12C694A24AF3924582465DC8 /* alts_counter.h */; }; - C9323D13748FE9D134AC54E7E3573642 /* http_connection_manager.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = A381CF726D852B08A76346FD749508EF /* http_connection_manager.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - C9395092FB58C2EEF39F29470AE6AE1B /* FirebaseCoreInternal-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 8725E03DD151AC9A99D518784B08CA85 /* FirebaseCoreInternal-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - C942BB5C5DFBD7294446E8EBA4A18606 /* obj_dat.h in Copy crypto/obj Private Headers */ = {isa = PBXBuildFile; fileRef = 1218D61ECA8821C5D542D4C657DF8B47 /* obj_dat.h */; }; - C9541E126D884038C8D6B3BC367303DF /* firestore_client.cc in Sources */ = {isa = PBXBuildFile; fileRef = 56B9A055B9950E329EAF0B5318553000 /* firestore_client.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - C957E855040FF729486698639C362FF1 /* rls.upb.h in Copy src/core/ext/upb-generated/src/proto/grpc/lookup/v1 Private Headers */ = {isa = PBXBuildFile; fileRef = 605FE44A9239FEDD2A4221429C15E070 /* rls.upb.h */; }; - C958D49B1FB3650BE409E2BAD242B2A5 /* ev_posix.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 1E959A7D1ABD4C9B0C831B21AB593CD5 /* ev_posix.h */; }; - C9686CA46BCCC69911CE489B4CE20C6F /* transport.h in Headers */ = {isa = PBXBuildFile; fileRef = BA267A7BFC223E4B4292E586D9BF4306 /* transport.h */; }; - C979CC307B67BDDEBFE3AC67453AFD1C /* FirebaseCore.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D5212585C96DE98714922B74EF543B4 /* FirebaseCore.h */; settings = {ATTRIBUTES = (Public, ); }; }; - C99935CAB3080E46FC6F33366E4C6C55 /* document.cc in Sources */ = {isa = PBXBuildFile; fileRef = 39CF3D4298290AD557652E9185300916 /* document.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - C99E3C66FFB19621CDFDC95D48653F2D /* blake2.h in Headers */ = {isa = PBXBuildFile; fileRef = 73B6E3E6C51398A0AE3903EA6638EC19 /* blake2.h */; }; - C9B353192FD4A7574C5FCC92E67EC49C /* bin_decoder.h in Headers */ = {isa = PBXBuildFile; fileRef = F69F0560872FDB1AC4E6D0D2CC113940 /* bin_decoder.h */; }; - C9B9DCD761673A29DC4ED8D3970A2424 /* call_tracer.h in Headers */ = {isa = PBXBuildFile; fileRef = 77A2A15AFFA01D245A379428F38CAEC5 /* call_tracer.h */; }; - C9CD04D3538AD4AA155701F3153B443F /* useful.h in Headers */ = {isa = PBXBuildFile; fileRef = 054466AB0EC45613E8C82A662860D431 /* useful.h */; }; - C9F5A9AF14D204B8F61D130E25D1C168 /* global_config_env.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 9CA6047AD07D89A43FE08622059BA7DE /* global_config_env.h */; }; - CA01EF622957A1BFB6AABB8D1B24EB23 /* t_req.c in Sources */ = {isa = PBXBuildFile; fileRef = 89B80AD4F97A8246289BA11ADA12F794 /* t_req.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - CA19320BF0D4F9A2FBEC38BF197A27FD /* pod_array.h in Copy third_party/re2/re2 Private Headers */ = {isa = PBXBuildFile; fileRef = F1796EA61C64F626AEC1E4133E7138C7 /* pod_array.h */; }; - CA293E7A0BAE6A3EF714DC67DE569C54 /* channel_args_endpoint_config.h in Copy src/core/lib/event_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 2BD78645EA5EEDA4E4ECF3C16C67FCEB /* channel_args_endpoint_config.h */; }; - CA3A4AE7006EF89A9F4AA9BC72936113 /* parser.h in Copy strings/internal/str_format Public Headers */ = {isa = PBXBuildFile; fileRef = 03E5D973622DE685DEC76E0087E05473 /* parser.h */; }; - CA3D83EB64FA6BA56232E889F0AB826B /* common.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 10CA326DB9F12972F14D647CE44AD434 /* common.upb.h */; }; - CA46FB3802664C37B040512394B5AA19 /* authority.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = BA6B248A78ACF0D788AC72CE2FC38E52 /* authority.upbdefs.h */; }; - CA47E5D4B0199D00571EB7D0FEA61BC6 /* benchmark.h in Headers */ = {isa = PBXBuildFile; fileRef = A4CB92C65C9CE37A9A610F84EC988284 /* benchmark.h */; }; - CA59ADA99BAE13598BEE7DB0DA8B0811 /* path_transformation.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = C8F6F1676B155616E9903F57670EA87E /* path_transformation.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - CA65D7DF098BC8B1FF10864FA6612696 /* status.upb.h in Copy src/core/ext/upb-generated/xds/annotations/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 7ADD54AF90C2C87BE9129B46B64BDEC8 /* status.upb.h */; }; - CA67C602F4BAE72B8F5B9BBE7F75C749 /* cord_buffer.h in Copy strings Public Headers */ = {isa = PBXBuildFile; fileRef = 382E90F0A87E29EDCDFC3252CB2B6EAC /* cord_buffer.h */; }; - CA7E778A761F056C9439769746F4923C /* xds_resolver.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E0D3D2183C0DA16A02F8A13CB1B92F6 /* xds_resolver.h */; }; - CA9980CBA81B5D98DA71EF52B4A2BC40 /* google_default_credentials.h in Copy src/core/lib/security/credentials/google_default Private Headers */ = {isa = PBXBuildFile; fileRef = B736A889F53EC91A2B35712B25CCEAD1 /* google_default_credentials.h */; }; - CAA76ADB2BE6FC12EC2420016D80195D /* collections.h in Copy third_party/upb/upb Private Headers */ = {isa = PBXBuildFile; fileRef = 53DDA015F3A789693A8A38FB380474B4 /* collections.h */; }; - CAA7CEE708BFF4224161D3F96797D8F8 /* any.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E199E8664953B806DA63229D4B47818 /* any.h */; }; - CABAB02E5107EBB27065E5BCFACD6B14 /* grpc_types.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 8811C842AD76140DDB7EEEF636AE8492 /* grpc_types.h */; }; - CAC95EE13DC689A496BC859AF4CC18D2 /* slice_refcount_base.h in Copy src/core/lib/slice Private Headers */ = {isa = PBXBuildFile; fileRef = 6499ED3474FFF05C0E5B27761D1C05D5 /* slice_refcount_base.h */; }; - CACD11064391AD8DC1719A17EA6AAF78 /* memory_quota.h in Headers */ = {isa = PBXBuildFile; fileRef = 74229C80A51CEA8CCD70BE0FA15B3856 /* memory_quota.h */; }; - CACEB532F40561E9D38706B36EE7A04F /* matchers.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2FCFBA8D9B7AD7C2263B7F07A1101984 /* matchers.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - CADE2F875B671711E5977E64DFEDD967 /* rbac_filter.h in Copy src/core/ext/filters/rbac Private Headers */ = {isa = PBXBuildFile; fileRef = EFD9D4BBA3833E2F30730C16D57E41C4 /* rbac_filter.h */; }; - CAEE03BB929F2D0448BA80B359722C25 /* obj_xref.c in Sources */ = {isa = PBXBuildFile; fileRef = EF26CB6E8AA2DFC4DB0752853BE3EEDB /* obj_xref.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - CAEF7E223C8794F5F56534866C40C755 /* datadog.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 70B51A6956F26BA4629CFA56B549B088 /* datadog.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - CB02A18160130A5D8CEF2016CA94F8E3 /* logging.h in Headers */ = {isa = PBXBuildFile; fileRef = 0AB1D33F97938390017ECB2C80330571 /* logging.h */; }; - CB16D44395C6571D2851A379BB51762B /* firebase_metadata_provider.cc in Sources */ = {isa = PBXBuildFile; fileRef = DD10E2A6938CD42120EDE7E3DBEF270B /* firebase_metadata_provider.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - CB1955967C01912A77BB9A985F3A1746 /* slice_buffer.h in Copy src/core/lib/slice Private Headers */ = {isa = PBXBuildFile; fileRef = 27F655A7BC1E2925D46BAD3740135D3B /* slice_buffer.h */; }; - CB1B166A2EA54421C771FFB9A69830EE /* channel_idle_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5854DBE2DB9C896859118F6DBEB18FA3 /* channel_idle_filter.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - CB389B4366FABA9112252B76FED4B910 /* version_edit.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7E04463F8CC2A231D9041C1A32BFAA60 /* version_edit.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - CB5CAEF4372FED79D410B44162B05EBE /* atomic_utils.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = C7460E8D305448ABCFBAA5EEAA48214D /* atomic_utils.h */; }; - CB63913B2B7BF85845F778336DF697CD /* exponential_distribution.h in Copy random Public Headers */ = {isa = PBXBuildFile; fileRef = 6F9F39A2395BB25D92BACA14424B978C /* exponential_distribution.h */; }; - CB6EE8B318889185096B00CB7AAD9234 /* custom_tag.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 2897E521EAEF034519181E7343AA6455 /* custom_tag.upbdefs.h */; }; - CB70EEB41986D6E75530C2E26F6AB27C /* opencensus.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = ED18B67A1053473A48D5F9CD5AF528BF /* opencensus.upb.h */; }; - CB827885D4435E50DFE87B5404CD9F6D /* protocol.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = F69932F6D1F2F4D3ABFBDE3B9821360D /* protocol.upbdefs.h */; }; - CB96BB8260B85672618653D848117042 /* stats_data.cc in Sources */ = {isa = PBXBuildFile; fileRef = 37253A0CF4F309D3341749330B4D4BA8 /* stats_data.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - CBA07855EB5D58B896C05158405A2935 /* grpc_library.h in Headers */ = {isa = PBXBuildFile; fileRef = FF93AD3BFFDED6911242EEDEFC0EFA80 /* grpc_library.h */; }; - CBA36E75E9C89343DD64C92CDFEA2716 /* backoff.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 177DAEA4216A6CE5F8E42BA6E16AB9EB /* backoff.upb.h */; }; - CBB889971EE7420CA4D0F926413EFD9A /* voprf.c in Sources */ = {isa = PBXBuildFile; fileRef = 9EBA6C6F6531B08FE1BF37DA58FA2B07 /* voprf.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - CBBB66CD4B1BF570E0D6B6CF67DB9CA1 /* md32_common.h in Copy crypto/fipsmodule/digest Private Headers */ = {isa = PBXBuildFile; fileRef = 69CFD1307C912B9D47E120F558E4B0AE /* md32_common.h */; }; - CBCA8BA7188D375867680D4B0B5808B9 /* cpu_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4628D674F912E9CD140496EC33EF9B2F /* cpu_windows.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - CBD156F29B3DA6F010EC87AA413C5185 /* slice.h in Headers */ = {isa = PBXBuildFile; fileRef = E718061AAA1D23645FFB665A291A49AD /* slice.h */; settings = {ATTRIBUTES = (Public, ); }; }; - CBE7FEE6F284AC449AAD44FAF9B0F1FA /* sensitive.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B69B44ED2929E2569D2F2EB8BCD760D /* sensitive.upbdefs.h */; }; - CBF91A904C12B92F7647E2A3D49AE0FA /* resource_locator.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = D854186469E4DADB5B0A0C312FB64194 /* resource_locator.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - CBFD8DE068CC4D1C1F2B0EC8A26E95A9 /* http.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 92DA656D05D7F7EA7AAF5DB9CFBE8A20 /* http.upb.h */; }; - CC1730E28B86BD053F76062EC92AC97B /* port.h in Copy event_engine Public Headers */ = {isa = PBXBuildFile; fileRef = 3D71BD54336B8B478F5EC751A285F9DD /* port.h */; }; - CC21371D226F35319702055320CD7F2E /* status_util.h in Copy src/core/lib/channel Private Headers */ = {isa = PBXBuildFile; fileRef = B1C19B402B6BD2FE38CAB50FEF085788 /* status_util.h */; }; - CC2E8E258DA00549AC9403E3483176E7 /* env_posix_test_helper.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B0DE2EAB81BD4306949AF194DA81B31 /* env_posix_test_helper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CC3C1D907FB74EF59C3679248496B661 /* filter.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 178E062A4A9CEB480C27DC929BA13932 /* filter.upbdefs.h */; }; - CC486E3B2A512B4EE4E6DDAFCE7632D8 /* memory_allocator_impl.h in Copy event_engine/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 9B3EBFC9319A4B2839C203FB73ACBEC6 /* memory_allocator_impl.h */; }; - CC506257BF9571D871A0C8B982019B8D /* fake_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = E722747F87FDF4018D93C903D341EA8A /* fake_credentials.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - CC540967F7DF37159D1C6C0127F91926 /* quic_config.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/listener/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 754314632A7CFF878DBED6427474B473 /* quic_config.upbdefs.h */; }; - CC5A4623FE6E847505EA4B70748C458C /* xds_transport.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 71F8D8801DF0CED87D136EBDCF27594D /* xds_transport.h */; }; - CC5DE6F7A35659BBBE60185A6429D977 /* semantic_version.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 22DBB810D6FBE3C239E12E0E5A1E44A4 /* semantic_version.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - CC8EBD8E44B0C02827BB56717C84B7B9 /* siphash.c in Sources */ = {isa = PBXBuildFile; fileRef = 6694D89C132250DCEBF289F187424B61 /* siphash.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - CC9656C2626E2C6849BDB5FE94740C6E /* hashtable_debug_hooks.h in Copy container/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 529867BA488FC08C3043FABD9AA34F06 /* hashtable_debug_hooks.h */; }; - CC966E5850E71EB60744E62ACDA1A7B1 /* server_interceptor.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = BF0CEB606C8C1E4923B757CE76460C9C /* server_interceptor.h */; }; - CC9B3DF7FAC2C4C40B3EC7F4AB4CA7DF /* GULApplication.h in Headers */ = {isa = PBXBuildFile; fileRef = F71EDF2DA4FFB0076919B09D78AA80CC /* GULApplication.h */; settings = {ATTRIBUTES = (Public, ); }; }; - CC9F57C0D9E8E44CF81764BD721CFFB5 /* security.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = A8D2EBDBC6DB283DC7EDE9455670FED6 /* security.upbdefs.h */; }; - CCA6863FC7A18FBA939BD64536B50C5D /* fork.h in Headers */ = {isa = PBXBuildFile; fileRef = E5DF0D65B706CB3AEE1D5CE8B4432A02 /* fork.h */; }; - CCADB393AFFAF0A26BA00F05B82C3CDE /* handshaker_registry.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B48BEEE640A0C6BD075F5C236207552 /* handshaker_registry.h */; }; - CCB1EAFC2AA064C3626E0C74A89498B8 /* mutex.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E373C39844A705F9266F61407512500 /* mutex.h */; }; - CCB65557979D70C270FF589816FF2471 /* iomgr_internal.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 209DD28460CC2D690016A18981695D8C /* iomgr_internal.h */; }; - CCBB187D99822BD856EA79E1E252AB36 /* status.c in Sources */ = {isa = PBXBuildFile; fileRef = F1D4322981761FF288EC921A91D35DAA /* status.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - CCC935D252800399F3B3EE645A86DED7 /* grpc_method_list.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = EDBF17ECC5AF18F34F0DEF5529AEE7FE /* grpc_method_list.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - CCD421DF651A2B61A961D6A071E7B7F3 /* memory_index_manager.cc in Sources */ = {isa = PBXBuildFile; fileRef = 674DB6B7DD1EA16B25962F892CB65046 /* memory_index_manager.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - CCD73B0FE3539A3D9A3D721947711297 /* filter.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 8B0AF2E3FEADD3DC27BB0248F5B45490 /* filter.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - CCDAD221B4D3CB465C4E904E226F2B5C /* retry_throttle.h in Headers */ = {isa = PBXBuildFile; fileRef = 78D0500A48D763997049704814D5FC00 /* retry_throttle.h */; }; - CD07A87704682599BFF6D593D791BBDA /* timer_generic.h in Headers */ = {isa = PBXBuildFile; fileRef = 604431C45AC92D9F096CF2D24CD8D5B4 /* timer_generic.h */; }; - CD07C622B272388683757FF6D1F9CD7E /* unique_type_name.h in Headers */ = {isa = PBXBuildFile; fileRef = 921C872891295C9EB31BF8C5D51C590E /* unique_type_name.h */; }; - CD0C62DB42711A1B8DDD5407EE6E8F73 /* resource_name.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 452AEF02AF512CBA16C87AC120FF3F63 /* resource_name.upb.h */; }; - CD180D9F4727A14190D3BE91BCE224EB /* proto_buffer_writer.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = DB2D8A904EBAB17AAA0F1E6518918E67 /* proto_buffer_writer.h */; }; - CD1B3C86DEC378A8000199567220CE75 /* v3_pmaps.c in Sources */ = {isa = PBXBuildFile; fileRef = CFA2DD62EB2EABA2EAA56173C1C2531E /* v3_pmaps.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - CD1F099E19F6F83CAB6ACE1881600AA8 /* ecdh.h in Headers */ = {isa = PBXBuildFile; fileRef = 93D0A2031131711A048901AB90D5BB18 /* ecdh.h */; }; - CD2A55585CFF38EC9A960E6B1B24F211 /* hash_policy.upb.h in Copy src/core/ext/upb-generated/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 8D0FDD6996E0E4699B1071F1F2F9FEAB /* hash_policy.upb.h */; }; - CD362B3F5752093C534F1FC77596870E /* binder_constants.cc in Sources */ = {isa = PBXBuildFile; fileRef = C4608D907C436B88354273B77031B0DD /* binder_constants.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - CD3786E5F5624E3D733FA7EE202E8974 /* alts_unseal_privacy_integrity_crypter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0FB749D7A47FC3F2A138987E3DD790C8 /* alts_unseal_privacy_integrity_crypter.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - CD379FF441B1CB76D301A5F4BEE31672 /* FIROAuthProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 1772F3769D36BDB6BC4AC17C3BAAB52F /* FIROAuthProvider.m */; }; - CD4052EF79AEEED5185653910F8FEF9C /* channel_args.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E211DB1275783D9C78059A105BE417F /* channel_args.h */; }; - CD526ED7A5B7343FBE0E98831ECFEFCD /* FIRAppCheckInterop.h in Headers */ = {isa = PBXBuildFile; fileRef = C063A75FF1E196AB119FC3FE30E8C0B9 /* FIRAppCheckInterop.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CD5B3D27CF04F7A9FB7942DB0651080E /* ssl_utils_config.h in Headers */ = {isa = PBXBuildFile; fileRef = E1BCB43F5ACED0B2A69428E1E0C26355 /* ssl_utils_config.h */; }; - CD647B5A4B432C1F4D183994F7CABA10 /* slice_string_helpers.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F0708D2CB74F4243A26E9D51244D42F /* slice_string_helpers.h */; }; - CD6F5BD8FDFC0D495D313C7EDDB8EB67 /* flow_control.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = AF10B33C822A9966AA391F128E3E64CA /* flow_control.h */; }; - CD7325949822FD08AD57C0D5979F9496 /* authority.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 3CF1D78C3C2E17B49A9E25964B735374 /* authority.upbdefs.h */; }; - CD786366BF0732A6297307982103FF1A /* FIRGoogleAuthProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = CF4DCAFFFD0ACDD91AD15A08DA779387 /* FIRGoogleAuthProvider.h */; settings = {ATTRIBUTES = (Public, ); }; }; - CD808109A5C71CB24CA032AED2374845 /* decode.h in Headers */ = {isa = PBXBuildFile; fileRef = B478E5287CE2DF7E3CC1F33E266C74B5 /* decode.h */; }; - CD8A0DA5FF16D9B274B2ED7965A20B64 /* error_cfstream.h in Headers */ = {isa = PBXBuildFile; fileRef = CBAFF506D7DE87F1BD5EF87F77653E61 /* error_cfstream.h */; }; - CD95C0238F19260CD3FA19F74AA8031C /* statusor_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = D5101239B8BEA293E6A10ADA36E3C9C1 /* statusor_internal.h */; }; - CD9C1B8C1142AD0BBB15D698019ECCDA /* sensitive.upb.h in Copy src/core/ext/upb-generated/udpa/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = 1DA0DB6D2819859B62E1C5B754F07771 /* sensitive.upb.h */; }; - CD9CD162CA94FA8D681B218C964387F0 /* mem.c in Sources */ = {isa = PBXBuildFile; fileRef = 74C949B60CD86DEA88A6E37B0EC70FD6 /* mem.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - CDA1B17E473AFFCBC19476B647CDB5F6 /* FIRAuthProtoStartMFATOTPEnrollmentRequestInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 24F8EFC76F218C7292AA2B4884E7F66E /* FIRAuthProtoStartMFATOTPEnrollmentRequestInfo.m */; }; - CDAA1D85460FA5115368A1DB9F4040D6 /* http2_errors.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 52C0C161BF0634F95CFBB58486010B0F /* http2_errors.h */; }; - CDB35E639603446C2384AFC590A701BE /* dynamic_ot.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = D132D0176B8F6D4868648359B84E5179 /* dynamic_ot.upb.h */; }; - CDBFADCFC0F0B2D936883762FD07D10F /* FIRVerifyPhoneNumberResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = A203B8D6A5A1FFEBE812166A65A5E954 /* FIRVerifyPhoneNumberResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CDC2FC9F8564542B444120E90F8FD49A /* client_context.h in Headers */ = {isa = PBXBuildFile; fileRef = 4115FECB4A6A56EBC208F60EE3B9CECB /* client_context.h */; }; - CDFAA4C5C5F839DDD57BB98147EEE594 /* lrs.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = DD5743D0B76AA8D7B60617CCE1C28F68 /* lrs.upbdefs.h */; }; - CE0ED7F03A8E9BFA6D830ED8BC60B767 /* extension.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 5515FF80F48EFE037E28FEA13CFA3436 /* extension.upbdefs.h */; }; - CE16FD4F2BA1014EFCA2F60B9E068628 /* service_config_call_data.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A9D748A72C5EF3D4D0D6FDAD619166B /* service_config_call_data.h */; }; - CE21633F19BF9BED2B32C9C6EEDAE5DB /* authorization_engine.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A3023C771A2D4C19AA78C8C5DD0F961 /* authorization_engine.h */; }; - CE222A86D1513C2B358DF391F04979BF /* fake_credentials.h in Copy src/core/lib/security/credentials/fake Private Headers */ = {isa = PBXBuildFile; fileRef = 7122537F48940CE5086D0A86C5880E03 /* fake_credentials.h */; }; - CE449A9CB28340E9FBA27E7046382C68 /* value_util.cc in Sources */ = {isa = PBXBuildFile; fileRef = BC00C7B22917C65D4D4682491B942623 /* value_util.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - CE4E6576FC60BF109FE184B72D0766CE /* load_balancer_api.h in Headers */ = {isa = PBXBuildFile; fileRef = 346080040C30E4053AA2A7299F46A5C2 /* load_balancer_api.h */; }; - CE5C596636C1EB72096CC9772146A1A9 /* default_health_check_service.cc in Sources */ = {isa = PBXBuildFile; fileRef = 681A185F19E0F02CB112009600E9F9B9 /* default_health_check_service.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - CE5FF4351B489D99392BB334DF83FBEC /* completion_queue_factory.h in Copy src/core/lib/surface Private Headers */ = {isa = PBXBuildFile; fileRef = C15445F7FD481BFCFC514C9C64D98039 /* completion_queue_factory.h */; }; - CE61FE322C816D353CAC4DB64A64A6AB /* exponential_distribution.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F9F39A2395BB25D92BACA14424B978C /* exponential_distribution.h */; }; - CE6501E35C2BDFB0CAB1514FDE78824E /* notification.h in Copy synchronization Public Headers */ = {isa = PBXBuildFile; fileRef = 0DE2F018DBEF2901EC4F00D8A8C6659D /* notification.h */; }; - CE66931248F9A2AA83096CF272CFFE9B /* handshaker.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B9D55C7BC6752DBA75BF5318E4BEAAB /* handshaker.h */; }; - CE68B1DE8834738BF2C5D2A54C6E03E8 /* hkdf.h in Headers */ = {isa = PBXBuildFile; fileRef = D4422107FC580D2844C9BB18D9F6C52C /* hkdf.h */; }; - CE6ED0A41601B90289AAE331EA2ACEE1 /* call.h in Copy src/core/lib/surface Private Headers */ = {isa = PBXBuildFile; fileRef = C953FFD2316336751F5A9712665291CA /* call.h */; }; - CE7310127164F478BCA03A83A14FFDA9 /* credentials.h in Copy security Public Headers */ = {isa = PBXBuildFile; fileRef = 6199E30F0237F0382BBEA7AAF6C29D19 /* credentials.h */; }; - CE789315E17B10A31E43C64D0169770B /* firebase_app_check_credentials_provider_apple.mm in Sources */ = {isa = PBXBuildFile; fileRef = A9081E636F55C0408610B17204A26495 /* firebase_app_check_credentials_provider_apple.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; - CE85386FF9AB1162668C08161BC9D428 /* FirebaseAuth.h in Headers */ = {isa = PBXBuildFile; fileRef = FE9E715BFAA415CF6F36B3833BA13EE5 /* FirebaseAuth.h */; settings = {ATTRIBUTES = (Public, ); }; }; - CE8854FF4850D8BFD3E3F1A84B33D405 /* sync.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7D42CE31A98293DA4D63D88E8DD47FC6 /* sync.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - CE8981F7413E54BA67282FC1E5A98D5D /* evp_errors.h in Headers */ = {isa = PBXBuildFile; fileRef = DEC8F05DF24A0FFE32C6C26836CC2EDD /* evp_errors.h */; }; - CEA28DA0BD5BF72410128F64A93EC1D0 /* atm_windows.h in Headers */ = {isa = PBXBuildFile; fileRef = F33905D91F86FF1AD248AA7734E4AEB2 /* atm_windows.h */; }; - CEB1E9C161266211467A09456605CB39 /* env_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1BCB85E39B8709AB8B7E047AFE5D5447 /* env_posix.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - CEB37C9BE423CF7BC83C4749E4A8B510 /* server_callback.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = 7EE0654A2D4205A029F1A28C61017E50 /* server_callback.h */; }; - CEB4DDF4648BBF4C978CEF43641DAF8B /* hexdump.c in Sources */ = {isa = PBXBuildFile; fileRef = CA0C5ACC7B0E8DD16F85D1D9727C871A /* hexdump.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - CEC658C4628E6EAA74CF9334C3AC7EB2 /* frame_ping.cc in Sources */ = {isa = PBXBuildFile; fileRef = DA535398CB2B5272DE47D177A7690939 /* frame_ping.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - CEC80EDE84EF1AFE2F905C0ACEBC0F55 /* pem.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = BB62C2AA60E865911D2E87B2236182A8 /* pem.h */; }; - CEC8E258984E4320F37E8A912752BB37 /* e_tls.c in Sources */ = {isa = PBXBuildFile; fileRef = 8768E293985FFDB7ECC6DE7F772D8920 /* e_tls.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - CEDB2F3A32C17F0E5CD71A5AF9B58DAA /* match.h in Headers */ = {isa = PBXBuildFile; fileRef = DE8D18979C6AAECAAA42F4068F348F60 /* match.h */; }; - CEE045EDC3A8134D46222CC4DF487A88 /* auth_context.h in Headers */ = {isa = PBXBuildFile; fileRef = BE09DCA32BE3F5B9ADE90E9C36CC20ED /* auth_context.h */; }; - CEE0CD61738FAFD83C48B02BF4A6566F /* udp_listener_config.upb.h in Copy src/core/ext/upb-generated/envoy/config/listener/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 73904E35E3272E4B4F32DEF5EF36419F /* udp_listener_config.upb.h */; }; - CEE6C1863A574AA952E75AF8E3371D2F /* FIRWithdrawMFAResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = A426100975DC820276715A027B9F351A /* FIRWithdrawMFAResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CEE768C37689A5F3FC952011ADA16446 /* fork.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4DE69AA462853C53EA531DFCA2F89334 /* fork.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - CEF5FA04B3BFDD72E2D62689CE273060 /* tcp_server_utils_posix.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 0CB9F2E62605C9E6718C530233667D7B /* tcp_server_utils_posix.h */; }; - CF388B3D74CC113A2CCC9E1A844F710F /* workaround_list.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = 9725ACBD4D543CB07FE0A3B3D941A259 /* workaround_list.h */; }; - CF3CB5547DCDE7CBF3FC55EA48D7647B /* trace.h in Copy src/core/lib/resource_quota Private Headers */ = {isa = PBXBuildFile; fileRef = B41760AA119EB2FA9E13CC57A0B06D0B /* trace.h */; }; - CF4B9FC9209D324FB44906A5A5155B81 /* stl_type_traits.h in Copy strings/internal Public Headers */ = {isa = PBXBuildFile; fileRef = C4E34597B14DB579FD699639D72696C4 /* stl_type_traits.h */; }; - CF5102468D27D3EC0C89B13C83674359 /* format.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2E4EC37AD5CF94BC831DB3FADAB021AB /* format.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - CF5711AB5DF379892E4965E8D860DA63 /* grpc_nanopb.cc in Sources */ = {isa = PBXBuildFile; fileRef = 262F2933C136E248FAC5CC0C21B3266B /* grpc_nanopb.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - CF5C70C3F8086844AAC06904B0DEDBB6 /* write_stream.cc in Sources */ = {isa = PBXBuildFile; fileRef = 678D368A633EEEF83385F17AC5DB4681 /* write_stream.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - CF69EBFD9D3033D6E3EFD413E85B95BC /* serialization_traits.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C132BF366A57434EFC8D62AB9CAFB4F /* serialization_traits.h */; }; - CF6B574F3BE64A43559ADCB19DCA9975 /* outlier_detection.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 327583D1AE50D855A5DC66860F098F72 /* outlier_detection.upb.h */; }; - CF7DDE7A3FF50DC5CBE8DE5DB68BE0AB /* closure.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = D14C93F06504E9FCD5A66106DCE2AE21 /* closure.h */; }; - CF7E21742BA14CC02C846DE4B021503C /* curve25519.h in Headers */ = {isa = PBXBuildFile; fileRef = 6729B23B85A97CE38A810ECF62EB7A0D /* curve25519.h */; }; - CF9F2858BD51E0E2A41933EC100F0B4B /* channel.h in Headers */ = {isa = PBXBuildFile; fileRef = 742B356C761207A4316CE78B54794B5F /* channel.h */; }; - CFC25E236E208804FB99942C81CA5B81 /* resolver_result_parsing.h in Headers */ = {isa = PBXBuildFile; fileRef = B8E642D6A332C826846139E0C783BFD7 /* resolver_result_parsing.h */; }; - CFC862752D9B6588CAC55C6B17B1D053 /* custom_tag.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/tracing/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 3340F1EFB30DF475E91F8448CC0D12CF /* custom_tag.upbdefs.h */; }; - CFC965F16DC85948CAE6907AEEF94EBC /* FIRDeleteAccountRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 817B3FB5ECC867B28B733CB0B1D4D3E2 /* FIRDeleteAccountRequest.m */; }; - CFCFA4226B78503081142E98813EFE67 /* semantic_version.upb.h in Copy src/core/ext/upb-generated/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 04D1C1A69D8DCC157CDE20761C3A9864 /* semantic_version.upb.h */; }; - CFE06F067D9884AC367F2247D54CE3D3 /* xds_http_filters.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 051B374A3FE406984A474A5230AB898B /* xds_http_filters.h */; }; - CFE6E8E48BE0D2D367AD92A38C45A163 /* http_inputs.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 7B670716720AD7F64F3A11A1C46518BB /* http_inputs.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - D0010DC7A4FCFF68118E53CB59753666 /* matcher.upbdefs.h in Copy src/core/ext/upbdefs-generated/xds/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = E6325262776E75174B9DA7B9C2B7007E /* matcher.upbdefs.h */; }; - D0059226B224EC9C4913F5558E3B6960 /* parsed_metadata.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = D75CBA9AA71EC8444D8E502366C231E3 /* parsed_metadata.h */; }; - D0059AF971CF222E3BAC6A23BA49C9E7 /* secret.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 00842CD947022049AF21532D6F689155 /* secret.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - D009A09CDF148E796AD0159FEC1C562F /* FIRAuthInterop.h in Headers */ = {isa = PBXBuildFile; fileRef = 42098459F9DDB98C3E1E61025964ABEF /* FIRAuthInterop.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D01D6350A3CF7192406DE46DD8A85B37 /* time_zone_info.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D6F6587E2B9773CD8F2E3860F8BE665 /* time_zone_info.h */; }; - D01EA500B88FAB996F97EB1A8D69131E /* idle_filter_state.h in Copy src/core/ext/filters/channel_idle Private Headers */ = {isa = PBXBuildFile; fileRef = 64B430672EC15BDE4E66E14FB59B04F4 /* idle_filter_state.h */; }; - D02AF2BADB7492AFA65453AB33828400 /* skywalking.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = FC288893084AE5D080A397A27FA423FF /* skywalking.upb.h */; }; - D02C8BCAE243EF921246EEA2A4A5941F /* status.h in Headers */ = {isa = PBXBuildFile; fileRef = 93EA384982455290DC53F3B566C8941F /* status.h */; }; - D02ED6158DD9C0E86DEDE3C96C8D35FA /* def.h in Copy third_party/upb/upb Private Headers */ = {isa = PBXBuildFile; fileRef = CD8AC6E77275190A6EAAD6352C9DEF39 /* def.h */; }; - D04142CF7118B7E7F2B1A2E4123F2D16 /* PromisesObjC-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 95314A6C43AD6ABE31AD7AAD5A9B912D /* PromisesObjC-dummy.m */; }; - D04CA97CBF221F80DC13C2F9AC2904B9 /* altscontext.upb.h in Copy src/core/ext/upb-generated/src/proto/grpc/gcp Private Headers */ = {isa = PBXBuildFile; fileRef = 2F9A4FE4ADAB11BFF4D07BDAC28193BA /* altscontext.upb.h */; }; - D056123CF2E864416C6A96773E4D8220 /* status.h in Headers */ = {isa = PBXBuildFile; fileRef = D74BED51A47FDC2F8564D6C2B1022C74 /* status.h */; }; - D0575163ED37390567EE2DB1B2ADA720 /* channel_args.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B2F8B601960C5232B9ED3108E1D50FF /* channel_args.h */; }; - D0930FE0B7F4DD61695491BCEE6B80EA /* ev_epoll1_linux.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 7A0C856042B3542D4548E0BC5B91F8AE /* ev_epoll1_linux.h */; }; - D09766FF0D3F83C4A00370B45A192B0D /* ev_poll_posix.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = F3BAFE02740CB2591D3364FECCD9E42C /* ev_poll_posix.h */; }; - D0981A79B9297F5C699230E46BBE11A7 /* listener_components.upb.h in Copy src/core/ext/upb-generated/envoy/config/listener/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 4AB2D7CAE02AD13C08BD330638A71232 /* listener_components.upb.h */; }; - D0A682DF81940CF6329C88F7D321216A /* slice_buffer.h in Headers */ = {isa = PBXBuildFile; fileRef = DFF142006B20473458FC13F34C3A6DD3 /* slice_buffer.h */; }; - D0AAC8D33DFF264924BEE27A50539ED1 /* thread_pool.h in Headers */ = {isa = PBXBuildFile; fileRef = 8925B06C32C81CBDA5A5468F78CE70B4 /* thread_pool.h */; }; - D0B9A3692B2CF686209538E2CD5DB6A6 /* zipkin.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = A9634BE1AA404E2B168CEAD0A5503CF9 /* zipkin.upb.h */; }; - D0CF0898C98E0C758AA55DFD194F5D78 /* router.upb.h in Copy src/core/ext/upb-generated/envoy/extensions/filters/http/router/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = EB906685D4A23D624949C9FE94C89D89 /* router.upb.h */; }; - D0D1A7E02D9D1486C68F3CE8EE96BBA4 /* udp_socket_config.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = DC03C233DC75D21A360F1AF84BCFB94E /* udp_socket_config.upbdefs.h */; }; - D0D76ED3A1F206396A6F64B79D34C591 /* core_configuration.h in Copy src/core/lib/config Private Headers */ = {isa = PBXBuildFile; fileRef = 14A49D5AC98299B72F170D4107A58485 /* core_configuration.h */; }; - D0E8452B5637BCD567A6DF5BD4A8D3C1 /* extension.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = FECFA730A80621E7DB12C564525649FD /* extension.upbdefs.h */; }; - D100C9020565B1F667CF480E49ABC629 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = E73F026274DE9CA09BD13E67522C63CE /* internal.h */; }; - D10A7C40C8798FD4B7D0FB2A67B14232 /* common.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 7097EDB2F7F476C7B6DCAE79217FD1B5 /* common.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - D11B90B41C043695A3E09E9780FA7328 /* thread_identity.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B6FEFCF5951CCB876A05DED38B16567 /* thread_identity.h */; }; - D1327C8131D924A9685F2576D5DB530A /* db_impl.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8C195AE2A264D3FC94B4721E8D6FC997 /* db_impl.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - D132B7067D74937C537E31416701FB72 /* grpc_tls_certificate_verifier.cc in Sources */ = {isa = PBXBuildFile; fileRef = 35D4FD4083A50042E79FFD0C83FFFED5 /* grpc_tls_certificate_verifier.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - D138D7A8D45B7646A830BC73D462784C /* udp_listener_config.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 2AB6A0EA7F33BBCB167A9D0F6DE110CF /* udp_listener_config.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - D139F0E116D5FE753848834D5AA697BA /* FIRMultiFactor+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = A5A3C58614D496B0EDC360F5E203068D /* FIRMultiFactor+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D161629689A806DB3F9A5E1FDF4668C9 /* FBLPromise+All.h in Headers */ = {isa = PBXBuildFile; fileRef = 1FC764A39A8FE7D34672ED38C9EAA10D /* FBLPromise+All.h */; settings = {ATTRIBUTES = (Public, ); }; }; - D16E752AC2CD499A2EDCDC1C5C3B74ED /* path.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 4843BD24732CAA1BE51AF39CD2ECDE7E /* path.upbdefs.h */; }; - D1712543FF055233C0E4FAAE489E53F6 /* hpack_encoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 7FD49E5A4AAE8B9CAB8BFF4FBC86B3A6 /* hpack_encoder.h */; }; - D17283C991072CB46A790F96ACAF4763 /* s3_pkt.cc in Sources */ = {isa = PBXBuildFile; fileRef = EC81E633491AE5BD2651951FB564CE8B /* s3_pkt.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - D175C48BBC9A626C5C100280FAAB7A27 /* lame_client.h in Headers */ = {isa = PBXBuildFile; fileRef = 6976A310739358E04A136BBD397833B3 /* lame_client.h */; }; - D1766C3721D6CC7241A03752D3DC7183 /* httpcli.h in Headers */ = {isa = PBXBuildFile; fileRef = 528CEAAD4E90587ABAB45EDD96C0B9DC /* httpcli.h */; }; - D177501D6369ED2F06E5EE164D9DF224 /* no_destruct.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = BE976FF31E3EFC8F3A9A35234659F126 /* no_destruct.h */; }; - D18B5E5ED8FB6921451355EABAD44DCB /* channel_argument_option.h in Copy impl Public Headers */ = {isa = PBXBuildFile; fileRef = 7BB6274DCD40164FB9BE46A6BB87D3DD /* channel_argument_option.h */; }; - D18B63AC144A4B6524DDA0546B9A9427 /* status.upbdefs.h in Copy src/core/ext/upbdefs-generated/xds/annotations/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 74F2EF95FDEF519CE85D84228040B69B /* status.upbdefs.h */; }; - D1A3AABB80CC5447CCB6D731A73A8F29 /* xds_resource_type.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 304C032D2BE426AA583E780E60E8D0D4 /* xds_resource_type.h */; }; - D1A550B9FFF9ED07F332EE4EA978CA2E /* e_os2.h in Headers */ = {isa = PBXBuildFile; fileRef = BFD950FC833DB822B1DC3B5B7C4D70D9 /* e_os2.h */; }; - D1A6F90A482AFDBA1465116A40D34130 /* http_uri.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 7F373B40B843EC14251BE74C7E298E1D /* http_uri.upbdefs.h */; }; - D1A77870E0355AE86383ABE1F721EEE8 /* context_params.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = AAC0C904D9E314F597F12DC559C01017 /* context_params.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - D1AB1EC55BCA53B078AFC5B55B4B183A /* lightstep.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 70F9723A8FED976CF0866ADF9BD27168 /* lightstep.upbdefs.h */; }; - D1B8B671D9F2B640895740CB578F793F /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 36169A9BB6EA80ECA2B79CE6743341F2 /* internal.h */; }; - D1C41EDAD64DAA0859C2F293FFCA3DDC /* rsa_pss.c in Sources */ = {isa = PBXBuildFile; fileRef = E51A19381EB53E3EE3C4E891790B45B5 /* rsa_pss.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - D1C9484A6DDE00211148300DF21F0739 /* mutex_stats.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 50C4607A5E9C800D0DADB4059DC29BE7 /* mutex_stats.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - D1CD5092A12D9973AD980A77A4A2750B /* regex.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = FD76DB8B1C84D0CA7A8F2C22FF9CFAAD /* regex.upb.h */; }; - D1D744C9D0B54527B6D30037CDB90179 /* resolver_registry.h in Headers */ = {isa = PBXBuildFile; fileRef = 4CDE79020F08EFE07D8A5C7A08EB8F50 /* resolver_registry.h */; }; - D1E49B03589217F8A384CDDEA1AA0105 /* call_hook.h in Copy impl Public Headers */ = {isa = PBXBuildFile; fileRef = 88DBF16A12144E5220E91AB339862D16 /* call_hook.h */; }; - D1ED87E451B91D0A1CD42A3E93C8EE3E /* create_thread_identity.h in Copy synchronization/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 991FFDEDE586C37A4A55FCF5CCEAF8C8 /* create_thread_identity.h */; }; - D1F515610DDC309D94672605B7743750 /* fault.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 07F3D2DFC50BDFA20E205B29196F9AD9 /* fault.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - D1F5490304638273E4200FCD955A84D3 /* low_level_alloc.cc in Sources */ = {isa = PBXBuildFile; fileRef = BA2E64DD32858C304968AD7F988A66F1 /* low_level_alloc.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - D201AF66873A8C1D7890BEEEDFFC5A86 /* completion_queue_factory.cc in Sources */ = {isa = PBXBuildFile; fileRef = 34915FB06B4D197FAFFF29F2749E7318 /* completion_queue_factory.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - D20CA702B0FC9633701FB124C7C30F5A /* by_dir.c in Sources */ = {isa = PBXBuildFile; fileRef = 381827D7CE874AFD5179B42E152CC1F8 /* by_dir.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - D2143A275A7117E9F9E983AFBCC3F4CA /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = B866F69741C9FF4A74D0A64591F03CB6 /* internal.h */; }; - D2279ED2F718D987A837FF3ACB82CAEC /* lightstep.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 833C815FB9F330DD0CCD40F832505A7F /* lightstep.upb.h */; }; - D22A252B33B1CA99C27A7283176457A7 /* tcp_server_utils_posix_noifaddrs.cc in Sources */ = {isa = PBXBuildFile; fileRef = F130D519E593354BC0629DEBF3058E86 /* tcp_server_utils_posix_noifaddrs.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - D238CF52E852C83DAA880DE6C7B9F711 /* encode.h in Copy third_party/upb/upb Private Headers */ = {isa = PBXBuildFile; fileRef = 284E07F713CE39C11E3DBF8D704B1D29 /* encode.h */; }; - D23D9C355D480865EC897ADB58E75D88 /* cordz_update_scope.h in Headers */ = {isa = PBXBuildFile; fileRef = 21C95DAB370F06245ABB72AACC88EEB7 /* cordz_update_scope.h */; }; - D24DD0368B142B54B321F0309269147C /* default_event_engine.h in Copy src/core/lib/event_engine Private Headers */ = {isa = PBXBuildFile; fileRef = D249E20BCC56D29F5AE8F55086892344 /* default_event_engine.h */; }; - D24EB63AFAF29EA3FCE9F4ABEBEE4204 /* alts_iovec_record_protocol.cc in Sources */ = {isa = PBXBuildFile; fileRef = B182E15385357E2354E5B9F66470561E /* alts_iovec_record_protocol.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - D24FAFE7D7DED4B05435CB310603E7A8 /* json_decode.h in Copy third_party/upb/upb Private Headers */ = {isa = PBXBuildFile; fileRef = 5E785E4BC16356AC99F7A3E6AABC9C7B /* json_decode.h */; }; - D253E348F54B2B7A4020CB8581C6D857 /* matcher.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/common/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 65AA0752CA1CCAB85CDCF79822FFE962 /* matcher.upbdefs.h */; }; - D26DBF2A266AF23A76D46F85A6D04D06 /* resource.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = C825D1178B5DEA48C2971D88DEB6EBA5 /* resource.upb.h */; }; - D2852A690FE76A020D7075FCCD060F5D /* safestack.h in Headers */ = {isa = PBXBuildFile; fileRef = 9D67DA9212FD03285EFB13587382309B /* safestack.h */; }; - D28D7CED37C341C79574C0464B0EE2C6 /* transport_security_common.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = B8576BC91BBDBB64B820D587C0C2CB69 /* transport_security_common.upb.h */; }; - D29F7C9FC17151A49E327F32F9C6665E /* stat.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 1781BB0D9BFC6A8BF2634B1A513498E1 /* stat.h */; }; - D2A0230D0FB77441B2DEA2BFCE3A2492 /* external_connection_acceptor_impl.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0BACE8C27F28BDAAA4BA94FDBF4D48FC /* external_connection_acceptor_impl.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - D2A0C2DC43C7C302A0D09D02CBA57373 /* GULKeychainUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 35AD402BFFA0EB939C0552B3FEA54261 /* GULKeychainUtils.h */; settings = {ATTRIBUTES = (Public, ); }; }; - D2A4E752BC6F6CC4339334FDE332883E /* rc4.c in Sources */ = {isa = PBXBuildFile; fileRef = D3033DEC2E0AD711A8E8838BD221B258 /* rc4.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - D2B153EC2A15E95BA474E839009510D3 /* FIRGetAccountInfoResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 90A9A0B9284FC7D550BE12E42A26CCFA /* FIRGetAccountInfoResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D2B8C9D5145650961F75E5993149EA51 /* cord_buffer.h in Headers */ = {isa = PBXBuildFile; fileRef = 382E90F0A87E29EDCDFC3252CB2B6EAC /* cord_buffer.h */; }; - D2C098E820D15D64AD7AF124EFAC0FAF /* md5.h in Headers */ = {isa = PBXBuildFile; fileRef = 6545AE38DFE5BCD5EA3421121EC9E608 /* md5.h */; }; - D2CE239EF710D24A75E1F9DD4C11EB43 /* exponentiation.c in Sources */ = {isa = PBXBuildFile; fileRef = 473CEE855C0450139FC80C3F4F3FA7DE /* exponentiation.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - D2D9F3286E49FCA88AF6A7A1B68C6ACE /* FIRQuery.mm in Sources */ = {isa = PBXBuildFile; fileRef = DA17241A96D9E4CB286B5339D7BF57A3 /* FIRQuery.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; - D2E95D5E859160D89C9994C0F5E85DEC /* grpc_library.h in Copy impl Public Headers */ = {isa = PBXBuildFile; fileRef = FF93AD3BFFDED6911242EEDEFC0EFA80 /* grpc_library.h */; }; - D2F11A5DED372AB83B44FCF05C1D1CB1 /* upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C4BED0ACBE8292203F54DC3EAE6A267 /* upb.h */; }; - D308EB9E67038FA189DADB4FC6E53CEB /* overload.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = DC57842BE8C900E9F93A3705967815CC /* overload.upb.h */; }; - D30EA95C91E900469FCC5C91D81BFFDA /* firebase_metadata_provider_noop.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2C809026551253328C62242516D9B89A /* firebase_metadata_provider_noop.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - D317F70C194922522C4CC8EA5CDF6EE2 /* Pods-iosApp-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 54DC7F9924F99FEE67A9AD3BEE09A10C /* Pods-iosApp-dummy.m */; }; - D31F803B41D883A290B38576EB9F82E8 /* ratelimit_unit.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D005FBDFE35091B437E2B7B95CE9A3A /* ratelimit_unit.upb.h */; }; - D325B176752ABC44A29A4DDF215032CF /* alts_shared_resource.h in Headers */ = {isa = PBXBuildFile; fileRef = D66F6BE1403961D4B1C8C82EBC3380D4 /* alts_shared_resource.h */; }; - D3274D1D9964B238A1E10CC080615AC6 /* frame_settings.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = D3617CAB29D76AC20D363E3887C98908 /* frame_settings.h */; }; - D32D09272746A76379255FD65671E19F /* common.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 771458E14AAEAFC2454009D1AF1D09F5 /* common.upbdefs.h */; }; - D34007D0D382E4F0250289E2E97C4126 /* thread_none.c in Sources */ = {isa = PBXBuildFile; fileRef = D5B0DC95FE239AEB96C9D6FA5D39D508 /* thread_none.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - D34899E07AE5F232CF2D8C2AE1927CED /* ssl_session.h in Headers */ = {isa = PBXBuildFile; fileRef = F07D781B56E3309BBFB234313C631FAF /* ssl_session.h */; }; - D34BD7CB3E02F9B7F81981ECCFE97B4C /* windows_engine.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7E04F44490213FD76138C26843F14332 /* windows_engine.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - D34C18EF5E735A09C877F68EF9BAD5B3 /* status.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 1844EBE4FC14781156F8093B134BFFD1 /* status.h */; }; - D357CC8B4B41FBC1085A3C4312D80344 /* json_encode.c in Sources */ = {isa = PBXBuildFile; fileRef = C1E687ABF0173DBAE8C68A949D8C922C /* json_encode.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - D35B324030075CFABB22A76F87173E2B /* subchannel_pool_interface.h in Headers */ = {isa = PBXBuildFile; fileRef = CAF8524A716D611F8A5581F107F52FBD /* subchannel_pool_interface.h */; }; - D372BA8330CEBFD862CCA9A5D64CD44E /* array.h in Copy third_party/upb/upb Private Headers */ = {isa = PBXBuildFile; fileRef = 84C46E8FCB9D83D31ED409DDA687FBA6 /* array.h */; }; - D377BF261A1A751A13873208F3ABF5D2 /* hkdf.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = D4422107FC580D2844C9BB18D9F6C52C /* hkdf.h */; }; - D37EF87C7910FD62765BA0AEBB00FD8A /* export.h in Headers */ = {isa = PBXBuildFile; fileRef = E9817A1F4C42D2026D1B6459EB33B418 /* export.h */; settings = {ATTRIBUTES = (Public, ); }; }; - D38DC8FEEAAD59E35E68011A3D297293 /* compare.h in Copy types Public Headers */ = {isa = PBXBuildFile; fileRef = 2BB09620E3329C4697D1C8DF68E622DA /* compare.h */; }; - D3AB79EAD0226FF626951464259476DF /* binder_stream.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D48EEAB7CA7BCA59CECC34B0A589F33 /* binder_stream.h */; }; - D3AC99DBF8AC87DC310633BEC97BB8A6 /* optional.h in Copy types Public Headers */ = {isa = PBXBuildFile; fileRef = 1D9DDF413C634F2C569FE3630DE09562 /* optional.h */; }; - D3B2F05104AB63182588A2F80AEA807E /* auth_filters.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E05D7E91A4FC66661C3C2DA1D6CA248 /* auth_filters.h */; }; - D3BA9CCFED4C65321B4A8F738F498FDD /* protocol.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 1E997CA9154AF79B101D6E82B916EFF8 /* protocol.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - D3C80333F222A01DEDC6B79679E068F7 /* client_channel_factory.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F2011C6D64CD081085A14DC4892BCB9 /* client_channel_factory.h */; }; - D3D10CE2C902FE4D7A7FE7EAFA6EC313 /* bootstrap.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = D8E2E460771447000D79434A75C8505E /* bootstrap.upb.h */; }; - D3D8D008E8411E0866128DAF34EEC24C /* ev_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 64A786F90353B5C190F0C469477587E4 /* ev_posix.h */; }; - D3E903ECD7CA25F0E49496D2CFB9C4C6 /* status.upb.h in Copy src/core/ext/upb-generated/udpa/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = A3E3233D995B2BC8E7817318911B7B70 /* status.upb.h */; }; - D3EEA09BFA5347997AA4BA84BC8B3F4D /* security_connector.h in Copy src/core/lib/security/security_connector Private Headers */ = {isa = PBXBuildFile; fileRef = CF8D0C569836EEB33BF1DE9A53489B2B /* security_connector.h */; }; - D3EEE682364DCC19332CB30329CA5B4C /* GTMSessionFetcher-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 98F54189A112D65896EC9C81D3733FE1 /* GTMSessionFetcher-dummy.m */; }; - D402555EDC60B10B5568F783A0B92B03 /* secure_endpoint.h in Headers */ = {isa = PBXBuildFile; fileRef = AD2E12207946547B6E6B68790692F2B9 /* secure_endpoint.h */; }; - D40319ABA70B3C2B7625213EA7A09F83 /* transport_security_common_api.h in Copy src/core/tsi/alts/handshaker Private Headers */ = {isa = PBXBuildFile; fileRef = BA9B9EDCF29D7FD22271CB4ED3E858A4 /* transport_security_common_api.h */; }; - D40C25C1F402DA089C56E8FCE6C4830D /* call.h in Copy impl Public Headers */ = {isa = PBXBuildFile; fileRef = CB541BDCA4A37E80246FEC9AF33FAF09 /* call.h */; }; - D41EB959A36D07583396C847CB94D103 /* memory_mutation_queue.cc in Sources */ = {isa = PBXBuildFile; fileRef = 826C40E83E360394F067C1A71672DCFB /* memory_mutation_queue.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - D42011B24D231041E6E0EA942B6EEFBA /* server_callback_handlers.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = FBC1A1512CB4E182260321654AE71141 /* server_callback_handlers.h */; }; - D4211AE48DE51552903A0B6A1A595F25 /* gpr_types.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = AB55889357BD0B51C471DCF129DE7491 /* gpr_types.h */; }; - D42273CE054D93391D64C4D38AD0686E /* thread_quota.h in Headers */ = {isa = PBXBuildFile; fileRef = 5FC82169E23A83F404FC9210514B4663 /* thread_quota.h */; }; - D42494079306691C9C3916715C24A1BB /* server_context.cc in Sources */ = {isa = PBXBuildFile; fileRef = 452E303343CC1BBDAB931785FCA37A86 /* server_context.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - D42BDC3EC2752221FFDC642625531C16 /* unicode_groups.h in Copy third_party/re2/re2 Private Headers */ = {isa = PBXBuildFile; fileRef = 4418C9424B02438767AA9101D620F065 /* unicode_groups.h */; }; - D42C5AFCDB03D5FC12C5792DF46943F6 /* circuit_breaker.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/cluster/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 8879FF114F646378D6353C355300E510 /* circuit_breaker.upbdefs.h */; }; - D42D28BC25D0923D853751AC5948B648 /* FIRStartMFASignInRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = E2989E9CF29C43C9EC69735181AA1B94 /* FIRStartMFASignInRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D43EC1E57A14AD43864A1736676ED21C /* cpu.h in Headers */ = {isa = PBXBuildFile; fileRef = 308442F05C4D620147A8558452DCB40F /* cpu.h */; }; - D455B58FFA9867547F527886E48CC65D /* leveldb_transaction.cc in Sources */ = {isa = PBXBuildFile; fileRef = 52AF8092DA64472A441D58650E2F6628 /* leveldb_transaction.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - D47E133ABB3026F3C8FA53AADAA85238 /* route_components.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 206FC3208C8924001449698166E3F536 /* route_components.upb.h */; }; - D47F50D2488A2ACC6B3A8C33CD052CCA /* a_octet.c in Sources */ = {isa = PBXBuildFile; fileRef = B300D937FD1D0D25C2525CBA31D19B92 /* a_octet.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - D488F96B9122CE5C6F671806A85C099B /* stringpiece.h in Copy third_party/re2/re2 Private Headers */ = {isa = PBXBuildFile; fileRef = 9CC6C38CA5AC54E5BB752E1201DAB65B /* stringpiece.h */; }; - D48BB5ADD8721B4B2CE2B0BFD0C4A9A9 /* versioning.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = FD746BFD80A5E85B5D0273E5A13A3AC3 /* versioning.upb.h */; }; - D48EA20DDACC084052B9F25F9B156B92 /* low_level_alloc.h in Headers */ = {isa = PBXBuildFile; fileRef = A42C86430500DABACD590D16FE79A2E6 /* low_level_alloc.h */; }; - D49C2CCA93137F12D89CF20B08BCE08A /* d1_pkt.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7A06E548FF0CC1156FDC7971208ADEDF /* d1_pkt.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - D4DBCC210EEABCB3D5F65376CFC57176 /* FIRFirestoreErrors.h in Headers */ = {isa = PBXBuildFile; fileRef = 042807C3354340AA4272C4F8A2281FCF /* FIRFirestoreErrors.h */; settings = {ATTRIBUTES = (Public, ); }; }; - D4EDBF0AA3E74EA0B87ADDCB81E4290D /* completion_queue.h in Copy src/core/lib/surface Private Headers */ = {isa = PBXBuildFile; fileRef = 97989B741B4F436258246282CB32B5EB /* completion_queue.h */; }; - D4F5C33076816E2D7D48976B3593C7BE /* dynamic_annotations.h in Headers */ = {isa = PBXBuildFile; fileRef = C2412C2A3DE452FC48580DA2AE379834 /* dynamic_annotations.h */; }; - D4F8392777B05906CAF9265417F3ADD5 /* load_report.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 7EE6FA028BB605D92790816C975472EA /* load_report.upbdefs.h */; }; - D4FB16805679FC8F8AB9087B61B024EB /* flat_hash_set.h in Copy container Public Headers */ = {isa = PBXBuildFile; fileRef = F6C2630C568BADFFB7F5E9B9BF4CF5B6 /* flat_hash_set.h */; }; - D50951561A587D314E36361DD5506342 /* grpc_security_constants.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 148F8EF09D530248CE191A8B6D575D62 /* grpc_security_constants.h */; }; - D50E6BD0592491077B89FEAA68074F50 /* clusters.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = F24F85271883EDB871609F9D406928B4 /* clusters.upb.h */; }; - D52818F1E5C1E6D769A0195F611259E5 /* mutex_stats.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E535D616BFB308C5B02F22AD0EE1B2A /* mutex_stats.upb.h */; }; - D52D8D9A39504A3FE566E2A6CE15C49F /* circuit_breaker.upb.h in Copy src/core/ext/upb-generated/envoy/config/cluster/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 49B1D643AF51D3C998E932D069B17407 /* circuit_breaker.upb.h */; }; - D530F3A08010BF3040962C284E92024A /* server_context.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 7D51E10E873AE8F8D9C3E343E01F34F7 /* server_context.h */; }; - D53143650479EFEABBB3FD0CD211D7CC /* xds_cluster_specifier_plugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 93DF81CE698F227F3F1626A1A431B36C /* xds_cluster_specifier_plugin.h */; }; - D56BCF6FB34C7DB1FC6BC1314C0686FB /* parse.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1522AC1F5E5340CE17FD3B0621FF0D41 /* parse.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - D573108F415651FC27D0919B9386CA3B /* str_format.h in Headers */ = {isa = PBXBuildFile; fileRef = 3BFD5B29978F033F0AEA351AB9470BD2 /* str_format.h */; }; - D576817735CE923179DAD20348CBBF97 /* tls_certificate_provider.h in Headers */ = {isa = PBXBuildFile; fileRef = CC90D2B2F21BA630BFBDC9EF4507A7B5 /* tls_certificate_provider.h */; }; - D579F8FD93C9FB25EF6F80E3D8CCC56F /* elf_mem_image.h in Copy debugging/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 8D8B0177CF77D9CFF615706D581C270D /* elf_mem_image.h */; }; - D582FCF076360A52D36FB7E4B8B35245 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 7737457D1517E96773814F9AB4C5CE46 /* internal.h */; }; - D58544CB3AD86B7A5DE8CB23737E3AC9 /* iocp_windows.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = A642B9AD423A215C5CA785F2D238C99F /* iocp_windows.h */; }; - D586C99FE5BE64ABABDBB8BB1D66BC87 /* x509_trs.c in Sources */ = {isa = PBXBuildFile; fileRef = 13CA1E9F39FC5295801EDDD032B80C65 /* x509_trs.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - D58D9384DBBCB4F7981C3B6704FEFEC9 /* grpc_posix.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 39F508108094F547D50CCE8E8ED241F3 /* grpc_posix.h */; }; - D59171E16517394F28DAB7BFB9C4E92D /* FBLPromise+Timeout.m in Sources */ = {isa = PBXBuildFile; fileRef = 1B8A5C27DD761FCD7082FFBDC70E736C /* FBLPromise+Timeout.m */; }; - D597E46B90F8DE4B27142AFEC6F45ADF /* civil_time_detail.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2AB5C82DE51F53DC758CDC53327096B3 /* civil_time_detail.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - D59A312DC3E173860EBFA50D45848491 /* cookie.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 439C109346C1F19EE1A1308C8352D258 /* cookie.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - D59D5F585E662504D2BEFD59BCAC11E2 /* cert.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = B0D66B5C0FD6D8CAE0035E3F9AC0733E /* cert.upbdefs.h */; }; - D5A22740562A1EC0F7FF716CFD6164BF /* grpc_tls_certificate_provider.h in Copy src/core/lib/security/credentials/tls Private Headers */ = {isa = PBXBuildFile; fileRef = 2EFF8483796509D020B74F203A79C806 /* grpc_tls_certificate_provider.h */; }; - D5A45BEE640C1FAFC883744014C4EE25 /* varint.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = FD0F8ABA6CBB494DAFD5088EEBE221CE /* varint.h */; }; - D5A9F79544ADDD8F998FBC10285A515F /* x_exten.c in Sources */ = {isa = PBXBuildFile; fileRef = 7C6C8277D37F0DE15584B4195822F9EB /* x_exten.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - D5BB28E7F6918F75EC386BA3FA88D0D2 /* packed_table.h in Headers */ = {isa = PBXBuildFile; fileRef = C696EDE0BDCE8052D82F55490A08DB80 /* packed_table.h */; }; - D5BB52F5181BC6BC3D4840D92A89EDD9 /* extension.h in Copy strings/internal/str_format Public Headers */ = {isa = PBXBuildFile; fileRef = 192A711206B2630A44D58A1E6F7A765B /* extension.h */; }; - D5C149026BCC3CEEB7C896E1DADA74E2 /* def.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 47965232E48917F41362BCA0E50826A8 /* def.hpp */; }; - D5DBBD0F8873C8B1ECF47788FE2E1D06 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6E336DC2534E1E69B7828F6012B874C6 /* Foundation.framework */; }; - D5DD195CF009A7109FE0B60E7C7F0C6C /* internal.h in Copy crypto/fipsmodule/modes Private Headers */ = {isa = PBXBuildFile; fileRef = C34E9FE3035CB20012464087AEC1D846 /* internal.h */; }; - D5E8BA4EC52EC7632D51691B64DCDA34 /* get_current_time_posix.inc in Headers */ = {isa = PBXBuildFile; fileRef = 78805CDED39A1B75118094B972E9AC75 /* get_current_time_posix.inc */; }; - D5F2C0653D524D51AAC9D798A2DE7818 /* hpack_constants.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C8C6EBF64643A2187A66C46997FF6D5 /* hpack_constants.h */; }; - D5F58B54281A2357038CCC58A39222BB /* timer_generic.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = DABA218AAD32FCAF1F69EE2E9395EBE1 /* timer_generic.h */; }; - D5F702BEB34A1DEF196AC0CC7663F2C9 /* oauth2_credentials.h in Copy src/core/lib/security/credentials/oauth2 Private Headers */ = {isa = PBXBuildFile; fileRef = FE3B1861CF82858CA53393ACEF376B55 /* oauth2_credentials.h */; }; - D5F70EA8C7B093EA61FAAC0AF1A62EE1 /* work_serializer.h in Headers */ = {isa = PBXBuildFile; fileRef = 84AD84E8D9A75BF251E8D08E2DDBBA1C /* work_serializer.h */; }; - D602A94DDC9EC750C575188F2BC63F16 /* global_config_custom.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 968F64F3ECDA4A9A35FAE4632FFEBF25 /* global_config_custom.h */; }; - D6087215F1E52C685F5D25EF0BF2D696 /* grpc_ares_wrapper_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = 272B9A5B2DC3FEF40684FBBAA7BAF4CD /* grpc_ares_wrapper_windows.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - D62D429AB42AEFADA603C3EBB99EC8DE /* pool_urbg.cc in Sources */ = {isa = PBXBuildFile; fileRef = 440C4807CB381042D513B5686E592430 /* pool_urbg.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - D63344C8CAEB0C5DFCA0396B44138D87 /* FBLPromise+Do.m in Sources */ = {isa = PBXBuildFile; fileRef = 2E159FB0F890470CE0468CA58CD19B20 /* FBLPromise+Do.m */; }; - D637608279E541C6DDA7F959EF5941F3 /* byte_buffer_reader.cc in Sources */ = {isa = PBXBuildFile; fileRef = BF7E64E37EB0214F5E36BA43158B0E28 /* byte_buffer_reader.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - D63F8B0C5EBA8BA8FBAB3A9671F9F99F /* resolve_address_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = D8867A1D5700DD7A03E4E9EE7605C158 /* resolve_address_posix.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - D65B9AC398145A5465A76D8ADCB41525 /* base.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = A7A414A53DBA93BAFFAD52C8AB702783 /* base.upbdefs.h */; }; - D65CCE52B388B846CB4E0609E5685AF3 /* sync_generic.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = C237891B803AA0E37133C7C6F0325D49 /* sync_generic.h */; }; - D6614127B0D31656031D396EB4936CC5 /* FIRTransactionOptions.mm in Sources */ = {isa = PBXBuildFile; fileRef = 60A43A1A15E45FAEC7CCEB752C9FF372 /* FIRTransactionOptions.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; - D664DF49191FAEE1A52302A5184C20E4 /* crypto.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 89EC5C7C3F96252D5A3A3E9C5B53ED87 /* crypto.h */; }; - D665CA4ACE04C8F9DFE048732AF2F7FA /* unscaledcycleclock.h in Headers */ = {isa = PBXBuildFile; fileRef = C27A0FA65DBBEF2D25B48F71304500DF /* unscaledcycleclock.h */; }; - D66744CB4B284C48EB62389BD898A289 /* tap.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = FDC357D9B2DA0DC945D813E7985E2DBB /* tap.upbdefs.h */; }; - D66C3D30B51C1174E7A38EA401AB9E33 /* status.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F31210DF8106DF7B1674A5387208CCB /* status.h */; settings = {ATTRIBUTES = (Public, ); }; }; - D67D59EEC5471F9ECF6D94C1C7D3EECF /* pretty_function.h in Headers */ = {isa = PBXBuildFile; fileRef = B60FE234DAC8C841A1D7B482A81C468A /* pretty_function.h */; }; - D682319B6A9A68D40CAB931603C59656 /* frame_window_update.cc in Sources */ = {isa = PBXBuildFile; fileRef = F0ADF297B671B3020FE33E20E99EDCCA /* frame_window_update.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - D69467AD5D3126122E89C1AE875252DB /* proxy_mapper_registry.h in Headers */ = {isa = PBXBuildFile; fileRef = 55B36CCF75E31146A3418F3C8397AEA0 /* proxy_mapper_registry.h */; }; - D69EC5BA78902646E16F4627E0F9C98E /* certs.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = D2A73AEEDBF1782817A5B4787517F511 /* certs.upb.h */; }; - D6A8DA12D08B3DAAA0B05CFCAEA55FA1 /* api_listener.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/listener/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = CE67CB4080A540F6DCBDAFA4920D7D89 /* api_listener.upbdefs.h */; }; - D6B5AB930E9ABA932211709B4D973587 /* ssl_key_logging.h in Copy src/core/tsi/ssl/key_logging Private Headers */ = {isa = PBXBuildFile; fileRef = EE6CE92A5E94BB910E4A068B8A7F7A9B /* ssl_key_logging.h */; }; - D6B6998FED3FB30FD1CE95046BB2C4C1 /* civil_time.h in Headers */ = {isa = PBXBuildFile; fileRef = 39CA2812BFD62B232487F55ED0915306 /* civil_time.h */; }; - D6BFE4095AAE8FE0B9A6BB4E8348ED69 /* obj.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 4042EBE7F65AF424E71FCA03CC332773 /* obj.h */; }; - D6BFFA6CCA65A94FD3479B002C8168F4 /* empty.nanopb.cc in Sources */ = {isa = PBXBuildFile; fileRef = 99BE4C357917C5B87268B42A58D656DF /* empty.nanopb.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - D6C9870AB71F77DE491AA37EA4AE363F /* status_conversion.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = B0D6BEFD9528010EECB07970CB425B0E /* status_conversion.h */; }; - D6CA942E596C1C4F0F2531C99658A12D /* sha512.c in Sources */ = {isa = PBXBuildFile; fileRef = 2C4D580353877D237ABEDB948858B761 /* sha512.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - D6CB657038B6CFA9F1DC72329E6DC75B /* spinlock_wait.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A8986A61A03A7BAF9DDDC5B80D9EB9B /* spinlock_wait.h */; }; - D6EFEF520767A1FC2880458D930FAD6B /* security.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = F91A23F7AFBD4E34A0FF7C5F4F1D501F /* security.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - D6F97D40CE1E504241FFD323A11B5022 /* v3_int.c in Sources */ = {isa = PBXBuildFile; fileRef = D601ACB9600068C505CF39F3E7E11526 /* v3_int.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - D708C0B0D3AB7B569050879915068E2B /* gethostname.h in Headers */ = {isa = PBXBuildFile; fileRef = B10C8DDDF1F26579129C69F16CD8DE3B /* gethostname.h */; }; - D708C55539DB16C55D2A019795A6395D /* GULSecureCoding.m in Sources */ = {isa = PBXBuildFile; fileRef = 66CBACC04E32CE70A8EF3C0982CE028A /* GULSecureCoding.m */; }; - D70FD05F3ADBA0A0EC45300CA2A172D2 /* alts_record_protocol_crypter_common.h in Copy src/core/tsi/alts/frame_protector Private Headers */ = {isa = PBXBuildFile; fileRef = F0B9F2CF1DFA6CEADDF438D2727B0569 /* alts_record_protocol_crypter_common.h */; }; - D712E4FB02A3397F8ECC26F7955F201B /* hash_policy.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 932B8FCC5C539EC567D98AD4AC3F00F2 /* hash_policy.upbdefs.h */; }; - D71CC46305E0F6373B17CC8C6AD1435F /* config_dump_shared.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E280793D99C21902483E68E8A614975 /* config_dump_shared.upbdefs.h */; }; - D7441B1F639B0B282C29B7B9B1DB4B73 /* path.upb.h in Copy src/core/ext/upb-generated/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 467BA4014208F0E720792971663D263E /* path.upb.h */; }; - D74E7194F17B75515E12AC2D2C5BBFFB /* xds_cluster_manager.cc in Sources */ = {isa = PBXBuildFile; fileRef = 327BC8D07AAD7738AE459D1D2527F75A /* xds_cluster_manager.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - D763CF22EF06EEE19F14A9B42356B29F /* config_source.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = D529347EB9D0ABF6B3B32ACE949FF9AA /* config_source.upbdefs.h */; }; - D76DF2D7E89A4457C388AA90C6FDC01D /* x509_req.c in Sources */ = {isa = PBXBuildFile; fileRef = 2FB6213803210C01FCBA55285F94A3DA /* x509_req.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - D774B6C1F386E849072D87F81D92414F /* memory_quota.h in Headers */ = {isa = PBXBuildFile; fileRef = BD74A7D724DB1A5B3C5C74F294A3BA8A /* memory_quota.h */; }; - D77C6C13888D060346DA4B69BB7B1F8E /* xds_certificate_provider.h in Headers */ = {isa = PBXBuildFile; fileRef = 28A15E10BAACFA7CBF7DE5D45A81919E /* xds_certificate_provider.h */; }; - D78E67EBF92351C87C9CFBA959B668D6 /* migrate.upb.h in Copy src/core/ext/upb-generated/xds/annotations/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 4A7B922B3A183E563A5A2E361D2F73DE /* migrate.upb.h */; }; - D78EB64FD2B85952EC6DEDBE3FE2070A /* autoid.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5EFBD0382600267A7270504D7C8C5AC3 /* autoid.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - D7937341D60FCA5F47ABA67B8F66FC74 /* range.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B677005586E12690055682B28A8BA34 /* range.upb.h */; }; - D7973842BAD54CCBF2759BA153A5BEDE /* thread_identity.cc in Sources */ = {isa = PBXBuildFile; fileRef = E00203CDB509071CA2476DDBBB29D290 /* thread_identity.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - D7B101C1C0FBA348596051E24A6C87E9 /* service_config_impl.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9EECFBA7194D482B07A10FD2C85B03F3 /* service_config_impl.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - D7B91F6DA3BEF75B9345D26BF56606B1 /* sync_abseil.h in Headers */ = {isa = PBXBuildFile; fileRef = FD614FF5A204C9A46304C9B2FCD76F4F /* sync_abseil.h */; }; - D7BC81636DF99714E29BECE3CB8E7070 /* protocol.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 76CDFB2232C2A0DB66E7A61B309A0923 /* protocol.upbdefs.h */; }; - D7C805509B1B2E54EA6A41BA7987D15D /* thread_pool.cc in Sources */ = {isa = PBXBuildFile; fileRef = 30BCF3EFAE4D317FF2B7F827B91CA82F /* thread_pool.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - D7C88A7908035290B0FF8088A95A7D27 /* alts_iovec_record_protocol.h in Headers */ = {isa = PBXBuildFile; fileRef = E5DC5E815A3969509838E48EAE618421 /* alts_iovec_record_protocol.h */; }; - D7CE81B231CA01051FA13BA005D58BC0 /* address.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 67B36A3B6FDCF2B3C62DF46148B52179 /* address.upb.h */; }; - D7D24C01CFEDF0912D3111839D5D294C /* security.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 24D1A4EF638FB0DDC1616E15A53E7E2E /* security.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - D7E378F670230586E355DAD6F39FB0A7 /* resource.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 5660127BA17F0342C2293D076477DE32 /* resource.upb.h */; }; - D7F3CA591E6E5AE39400E9FFD2127CDF /* method_handler.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = E8762939BDDE72BF12A981968EC8D732 /* method_handler.h */; }; - D7F6C77BB0768B7527FD92AA48F6E77A /* combiner.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 2BF4588309DE5CD6475039ACC15D12CB /* combiner.h */; }; - D7F8762D24238A9E58014BF3FDCA5C90 /* client_callback.cc in Sources */ = {isa = PBXBuildFile; fileRef = BDC4760CD0AFFCB86CD0AC1F1989C9C2 /* client_callback.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - D803E2B26C9F78107743484AFDA20BB5 /* notification.h in Headers */ = {isa = PBXBuildFile; fileRef = 8DAE34F466CDFDC3CED464B2D788E082 /* notification.h */; }; - D812043C6B8E299CD28EA4D2EF260E4B /* idle_filter_state.h in Headers */ = {isa = PBXBuildFile; fileRef = 64B430672EC15BDE4E66E14FB59B04F4 /* idle_filter_state.h */; }; - D82167666B3F364C99F2B7BFDBA4E07E /* FIRFirestore.mm in Sources */ = {isa = PBXBuildFile; fileRef = B0B57116F683E8299C3929CE4BC5D5DA /* FIRFirestore.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; - D822520B589483E3E1B7F0CE4415C854 /* unix_sockets_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = AD878EE3680847148D33B693B1B39065 /* unix_sockets_posix.h */; }; - D83A683ECC20FBAA40F2236D557EF166 /* p_ed25519_asn1.c in Sources */ = {isa = PBXBuildFile; fileRef = 0E3A10DA4563742DC7391E98ACADBA62 /* p_ed25519_asn1.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - D83B44D85D45478B260E414DCCD49D3E /* memutil.h in Headers */ = {isa = PBXBuildFile; fileRef = 07E087072B663C7269710F818833F544 /* memutil.h */; }; - D83E5BF29EB1308250453FBD5AE89EFC /* value.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = B3138F21581DC0670575757E42970322 /* value.upb.h */; }; - D846F4330CBD3C155914907D25047B49 /* utf8.h in Copy strings/internal Public Headers */ = {isa = PBXBuildFile; fileRef = FE9601343DBA66A3E6452AE34A8E9C22 /* utf8.h */; }; - D84A391561BACFD0F59D3BCB5ECF7736 /* struct.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AF6B6A69AEB02ED1527DB0973FA6046 /* struct.upb.h */; }; - D854A095B46486C46E5A4CB0C11AB217 /* dns_resolver_selection.cc in Sources */ = {isa = PBXBuildFile; fileRef = 506BE959A8FF341230D42448ABDD67EC /* dns_resolver_selection.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - D8572CC574FE5E181623358FB74CDCA3 /* GULLoggerCodes.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A3917ED5CCDEAEC04D0490F77DC19F5 /* GULLoggerCodes.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D85D2403728C590EC9F19C7FB181A982 /* memory.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 3E8C38B68E50ECF8A8F8F3CD90CCD74C /* memory.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - D87168D3065202E3154E902C5370956D /* sockaddr_utils.h in Copy src/core/lib/address_utils Private Headers */ = {isa = PBXBuildFile; fileRef = 0AD5A08171A428E537C2520CD5F311E9 /* sockaddr_utils.h */; }; - D877EAFE28C0F9BDC7156821A4FB4FA8 /* FIRTOTPMultiFactorGenerator.m in Sources */ = {isa = PBXBuildFile; fileRef = EAB6D9169AA27102E2AA228BC1F6553D /* FIRTOTPMultiFactorGenerator.m */; }; - D8823118F8C8367D9DA186762FABA815 /* service.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = CF96B649FDA7326D3EE30CC6AFE6D4C7 /* service.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - D88307B5C253F901AFC75FA04EC5FA1F /* gcd_extra.c in Sources */ = {isa = PBXBuildFile; fileRef = A8C7ED750C0FC6E3364CBF754A504CBF /* gcd_extra.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - D890AAFD1B823FA6A76A9BD7F4D52B7C /* time_zone.h in Copy time/internal/cctz/include/cctz Public Headers */ = {isa = PBXBuildFile; fileRef = C422C7895336F0FEC0037B4ABAC6E2F1 /* time_zone.h */; }; - D8AED843CC91614E90669C1719A37D81 /* FIRAuthProtoMFAEnrollment.m in Sources */ = {isa = PBXBuildFile; fileRef = C8BC44CB7401C1106A0665B42B2C4253 /* FIRAuthProtoMFAEnrollment.m */; }; - D8BDBCCAA61BFAC457385A5AE16244AA /* x509_ext.c in Sources */ = {isa = PBXBuildFile; fileRef = 2A3BC2B6833E24DB9708868535DC5558 /* x509_ext.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - D8CEA956CD3DF1E3A4FE4E491A6DE717 /* slice_buffer.h in Headers */ = {isa = PBXBuildFile; fileRef = 27F655A7BC1E2925D46BAD3740135D3B /* slice_buffer.h */; }; - D8CF15D63614E42B378EB6DF8F610E55 /* regex.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = AA84801997A087F882A2A27535485628 /* regex.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - D8D295F744EEAEE20772787E72B85228 /* certificate_provider_store.cc in Sources */ = {isa = PBXBuildFile; fileRef = BFA4D4FEA64AC05FFD81C8C8E6339054 /* certificate_provider_store.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - D8DBE21F8BF84D44F89EEC67E4C0600E /* channel_trace.h in Copy src/core/lib/channel Private Headers */ = {isa = PBXBuildFile; fileRef = 2B6F66AD8D11C51D98571C63EA0937A1 /* channel_trace.h */; }; - D8DBFEB840893D47BF5A34632F584464 /* overload.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = B47C2D69E0434365A4BE655BCC7F355F /* overload.h */; }; - D8DED2783EB9ACF93D4CA44B4EB5C0E5 /* FIRDocumentSnapshot.mm in Sources */ = {isa = PBXBuildFile; fileRef = 58D0BC0962FFA577369408058F767285 /* FIRDocumentSnapshot.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; - D8E135E3B9FD1FA76CC621ED86FC883B /* tap.upb.h in Copy src/core/ext/upb-generated/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 4DCA0588686078EBF559251C99D85422 /* tap.upb.h */; }; - D8E21D692974029EAE4ABECDA154D00F /* aws_external_account_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = 67A06EB2141681007B622553A1A0ACA8 /* aws_external_account_credentials.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - D8E84C7A0E0333B311E47C5FD3CD261C /* periodic_update.h in Headers */ = {isa = PBXBuildFile; fileRef = FA7CA1669C3F392E7F6749EB19AC4389 /* periodic_update.h */; }; - D8EA23A6C0E956D61FFC0A17694303B9 /* xds_cluster.h in Headers */ = {isa = PBXBuildFile; fileRef = C286E783FECE8F5DEC16378728E217D8 /* xds_cluster.h */; }; - D8EAAE68003E3E9B332721377DEE14A6 /* time_zone_format.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5F1347A6ACE5A7FFDE80F51E86B62AF9 /* time_zone_format.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - D8EAD31AFD69CD9872D16637D0740826 /* FIRAuthNotificationManager.m in Sources */ = {isa = PBXBuildFile; fileRef = CDB9FAA98B5A5C2F27A7A31F9B36CB2E /* FIRAuthNotificationManager.m */; }; - D8EE9E2365D5A606E9DD01D14ADB9C2D /* backoff.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 1D7CF27997FD0A87CCE91DC194F66D61 /* backoff.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - D8F70F27FF545F33CF0944B988500CD2 /* tls_credentials_options.h in Copy security Public Headers */ = {isa = PBXBuildFile; fileRef = E3DB1F14CF4DF2DBF75D7F11C6F9E33C /* tls_credentials_options.h */; }; - D8FB370F85138B31F117FEBFFFA137F9 /* time.h in Headers */ = {isa = PBXBuildFile; fileRef = 425D58437AF65185850AD1738BA6E4ED /* time.h */; }; - D8FBD89D9D8080B75C451573137E4615 /* time_averaged_stats.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 76B91D5077AA64DFCFF64905FA48A626 /* time_averaged_stats.h */; }; - D902CA2646371DE5BF3BAAF9AA869F1F /* tcp_server_utils_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 0CB9F2E62605C9E6718C530233667D7B /* tcp_server_utils_posix.h */; }; - D90DA42A58B6C1BC71804576757E76B5 /* compression_internal.cc in Sources */ = {isa = PBXBuildFile; fileRef = D32DD869A495C70AC5DD97A3421EF51E /* compression_internal.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - D911D2387ACFF48044DF6DCC6623873C /* thd_id.h in Headers */ = {isa = PBXBuildFile; fileRef = F14EA4A79F04D99144CBFE0787E816DE /* thd_id.h */; }; - D91C94CB8899FEF8A1F3DC778400CFE6 /* http.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 8C7CF3978703F93475652EFF78FFBC7E /* http.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - D92C13C17F701C04FDC72D3D6F786E76 /* socket_utils_posix.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 52D84E70155B87C243F4C1CB7479D60F /* socket_utils_posix.h */; }; - D931A75DEBC483A8D4BF24541AF496AB /* FIRAuthProtoStartMFATOTPEnrollmentResponseInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 02FF7A85CD951688B07730AB777CD083 /* FIRAuthProtoStartMFATOTPEnrollmentResponseInfo.m */; }; - D9369F262EE6E746D7191A4C5929054C /* extension.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 72F7E21BE89BC99807A36CCB4EA90755 /* extension.upb.h */; }; - D93E8CA5504D6D6903DD241E027800FB /* struct.upb.h in Copy src/core/ext/upb-generated/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = DD266D40382F30E91821538F308B9C37 /* struct.upb.h */; }; - D93E96408F4C2CB7F00A48BC97ADC885 /* cordz_functions.h in Headers */ = {isa = PBXBuildFile; fileRef = B289C64090D6632B6C6BB85E9A040BC5 /* cordz_functions.h */; }; - D947D323FE3422A29709D7C35F20E68C /* buffer_list.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = D8291D10622727BF5085FBB44D8D3A1E /* buffer_list.h */; }; - D95BF4CBCF3ACF8789F263522CB890FE /* core_configuration.h in Copy src/core/lib/config Private Headers */ = {isa = PBXBuildFile; fileRef = B44DB9059811AD461CD3758CCF10A274 /* core_configuration.h */; }; - D95F19F0FFF88287F441281D69A8E3E2 /* service_config_parser.cc in Sources */ = {isa = PBXBuildFile; fileRef = 553747F2878660240CC64A8F8907F346 /* service_config_parser.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - D96871DB06923655569403CA0522C87A /* server_callback_handlers.h in Headers */ = {isa = PBXBuildFile; fileRef = FBC1A1512CB4E182260321654AE71141 /* server_callback_handlers.h */; }; - D9698F8BE47ED3CC29FB7EC502B72408 /* rbac.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/extensions/filters/http/rbac/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 81AC9E6107EE9351C13FAC2DF6C9D7A6 /* rbac.upbdefs.h */; }; - D96B2877EDB53D8AEB8F653BBB14B43C /* metadata_map.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = EF8C72DDF4645B8E68F3E8CF241F3DB8 /* metadata_map.h */; }; - D9828CF1D2AC5F1A94E025226C077E60 /* idle_filter_state.h in Headers */ = {isa = PBXBuildFile; fileRef = B6EC01A4C798811DD73CDE4FB1F74608 /* idle_filter_state.h */; }; - D9897C994019FD1EF544B759E5D64486 /* outlier_detection.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 6DE60ECB1E0C0B43FC3B8E7D5CEFD46F /* outlier_detection.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - D989E90822B525E632DA7057FB9A2328 /* descriptor.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 3CDB38CC3A2723099BA584C7552B5450 /* descriptor.upb.h */; }; - D9A070D49F27EE12E0B5A177B2D4E294 /* FIRGetRecaptchaConfigRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 2FF2D2C00B45F1B7B6E8E7786685BAEC /* FIRGetRecaptchaConfigRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D9A101331E92CD4CA4D77165873BACB8 /* deprecation.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = DB3815E8FB98651CA91C5C3E9A37387D /* deprecation.upbdefs.h */; }; - D9A2EA16E50C797B89CBEFA33102BFDA /* memory.h in Headers */ = {isa = PBXBuildFile; fileRef = F70464B62478D1860C6AE5575A233580 /* memory.h */; }; - D9A64EC09A473B1AB447778E420B3581 /* FIRAuthProtoFinalizeMFATOTPEnrollmentResponseInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = C05F1CE99780C4ADE06E6ACFF7272D17 /* FIRAuthProtoFinalizeMFATOTPEnrollmentResponseInfo.m */; }; - D9AC04573FABE62B307E82BC3101B4E0 /* utils.h in Copy src/core/lib/event_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 65155D084FBE12372CBA1E8DA86CC4A9 /* utils.h */; }; - D9B296ADC26A6301FDAD4DC1F0431AE9 /* grpc_server_authz_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 559D70D0074AB54F863B6E67468F9979 /* grpc_server_authz_filter.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - D9B4D94EA0EFFC01A03975F91B39393A /* collection_entry.upb.h in Copy src/core/ext/upb-generated/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 66FF31333A00D1CCF92B7A56582111B5 /* collection_entry.upb.h */; }; - D9B5A4BCAC772A85775C7E539201EC06 /* table.h in Headers */ = {isa = PBXBuildFile; fileRef = 082E49181F163988C9DB0E41034DCB96 /* table.h */; }; - D9BB3BA6A3105B4528C417316FCD6F95 /* channel_stack_builder.h in Copy src/core/lib/channel Private Headers */ = {isa = PBXBuildFile; fileRef = 7EC1FA7B92F243F3F92D0FD6893AF9EE /* channel_stack_builder.h */; }; - D9D2C4E900637E6BA4A28202B1E6FC99 /* struct.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E70880A680300C2F8EBCFCB8AB11FB0 /* struct.upbdefs.h */; }; - D9D61ED947A676E12376FDF0D4E114C7 /* tls_spiffe_validator_config.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = EC5F3AFDE0651C5F2482CF9FFB8310CB /* tls_spiffe_validator_config.upbdefs.h */; }; - D9DC971E2AEB484565523FD620FA8FD5 /* dynamic_ot.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 07DAEE9F3F44E822AB1F56231339D871 /* dynamic_ot.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - D9EB64D4DC1BAEF04C91438834CA426C /* env.h in Headers */ = {isa = PBXBuildFile; fileRef = E5CA22400BD4D4EA24C1FB27DB144305 /* env.h */; }; - D9EE15D8C73814D883FBEA6A87CA8EC4 /* representation.h in Headers */ = {isa = PBXBuildFile; fileRef = 302F88279ED3476551D7CF43993239AC /* representation.h */; }; - D9F12BB8920078E12ACA26C10AA4E843 /* resolve_address_windows.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 0F47CA234DE2F4DEA3B22F1B83CA00EB /* resolve_address_windows.h */; }; - D9FC43BB04FB5F569D53268DB7B44468 /* x_crl.c in Sources */ = {isa = PBXBuildFile; fileRef = 7747AD59ECF81529EF80AB023ABA2232 /* x_crl.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - D9FD177F7E0414FFDF0BB9B877D1982F /* sync_custom.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = 91BF4E6074A0720B29BEE759CEF640AF /* sync_custom.h */; }; - DA0349457A40B9061628F4855F77C38C /* httpcli_security_connector.cc in Sources */ = {isa = PBXBuildFile; fileRef = 68CD59BDFDBB8007FED4EC851B852E60 /* httpcli_security_connector.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - DA069E0355D810616595AE9FCB3D64F6 /* msg.c in Sources */ = {isa = PBXBuildFile; fileRef = D4EC4EF36452A330D6B3417CB84B2778 /* msg.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - DA08BFB9E2362C0BC2429BD0F25A31F3 /* socket_option.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 3BCF691DC99C8D9743A3AA74FF645890 /* socket_option.upb.h */; }; - DA237E1F77974C43E561244949E8EF59 /* options.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9234626C2196E30A0F3884645936B11A /* options.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - DA28741F16B2774371F753B05F691DCE /* security_handshaker.h in Headers */ = {isa = PBXBuildFile; fileRef = AC8B515E9882F2F80A27025C3F996B38 /* security_handshaker.h */; }; - DA3BFD78BAA3921ADAF1C2901FBA24EB /* google_default_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = B736A889F53EC91A2B35712B25CCEAD1 /* google_default_credentials.h */; }; - DA47151865955265787623E17ACA046F /* thread_annotations.h in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 98A708F22C6CBB16326AF5FB550C6F8E /* thread_annotations.h */; }; - DA4F0919830717655451E480427D58B8 /* tasn_utl.c in Sources */ = {isa = PBXBuildFile; fileRef = DD3F87E488F063E80C292D0405B28E15 /* tasn_utl.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - DA4F6601DD48B541EB9F62CC605C06E3 /* xray.upb.h in Copy src/core/ext/upb-generated/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 0548C87ED687A4B5A91049F19F9B237D /* xray.upb.h */; }; - DA5D9F4E6BCDBB8B8DFCFE90473E3BA2 /* d1_lib.cc in Sources */ = {isa = PBXBuildFile; fileRef = D3062085B1798FAC16AF7C8453528058 /* d1_lib.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - DA5F6B70AB3E367442FAC6C868DA6E5F /* extension_registry.c in Sources */ = {isa = PBXBuildFile; fileRef = 08FB3B0CD74D21F7758718A0E59002BD /* extension_registry.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - DA650CD8A63950FCE21CB4C8CEC15A8F /* validate.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 660CCFDEDD5B3D9FDC02F4707996D582 /* validate.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - DA7C477CB1B69AF8E5155ED940EA6C12 /* handshaker_registry.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 2B48BEEE640A0C6BD075F5C236207552 /* handshaker_registry.h */; }; - DA88849A0D723E931802828182366032 /* cpu.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = 308442F05C4D620147A8558452DCB40F /* cpu.h */; }; - DA92E3889F5552AE02BEC5B5A0B8BF52 /* charconv.h in Copy strings Public Headers */ = {isa = PBXBuildFile; fileRef = 130B2FB7210B5C6ECB851A60F7B1E91E /* charconv.h */; }; - DABA0A7B2794F9B422B608A62E798FFC /* transport_fwd.h in Headers */ = {isa = PBXBuildFile; fileRef = 28FCCE9D66DC001A7F7A675EF8A00E82 /* transport_fwd.h */; }; - DABDE99A8527002E329050169D8E693B /* extension_registry.h in Copy third_party/upb/upb Private Headers */ = {isa = PBXBuildFile; fileRef = 965F190E7DB563FDC560EF52BA7A9626 /* extension_registry.h */; }; - DABEE8DABD24E317253A8589ADC4CB12 /* http_uri.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 049C189516E0D237833FC2030C50E041 /* http_uri.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - DACC08B488545A72DF4EFA90B317CDA4 /* common.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = A476216E2694E77BEC254D311D426525 /* common.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - DAD4DA2BC15BF7E4273563CF46207A3A /* subchannel.h in Copy src/core/ext/filters/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = 8C9331B71B158937C138EDF9DCFF23B7 /* subchannel.h */; }; - DAEE17D0B567C103D18FB8DEDE9E3EB7 /* backend_metric_data.h in Copy src/core/ext/filters/client_channel/lb_policy Private Headers */ = {isa = PBXBuildFile; fileRef = B9B3DFBB12D28F9317CF324A89657824 /* backend_metric_data.h */; }; - DB07F1505867F831B5ABDAF2D597BE0E /* handshaker.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = FBAACB464419902BCFC817EDDD4869A2 /* handshaker.upb.h */; }; - DB0B9AF2F2C1A41972C021E6E6FD6696 /* unscaledcycleclock.h in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = C27A0FA65DBBEF2D25B48F71304500DF /* unscaledcycleclock.h */; }; - DB0E39864A42362B78D6088682128B96 /* metadata.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = F13D20ED03E9841DAC9C84E812DD3B39 /* metadata.upbdefs.h */; }; - DB17FF0D4318F4CD34048A7B27D3B116 /* collections.h in Copy third_party/upb/upb Private Headers */ = {isa = PBXBuildFile; fileRef = 210CFB2D8B044E4DBA8071468CFEF8F3 /* collections.h */; }; - DB196236B8A586F3727362661BD7FE5C /* deadline_filter.h in Copy src/core/ext/filters/deadline Private Headers */ = {isa = PBXBuildFile; fileRef = 2C4BF08538BF564BE1A81112221DDE88 /* deadline_filter.h */; }; - DB1C10C3733792F57F73EB606447B0C8 /* json_reader.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2DB4309F3B1FC1A442E9F4F485C1BAB8 /* json_reader.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - DB1F848A9EC7EE9257FA5E3A53883CC4 /* pkcs8_x509.c in Sources */ = {isa = PBXBuildFile; fileRef = CDBC4E3B11C8751DA88B42305922FA7E /* pkcs8_x509.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - DB22215D40844C285A54B6F6A0B2D334 /* call_metric_recorder.cc in Sources */ = {isa = PBXBuildFile; fileRef = ED3C7320E80D98E06BE49BC216051792 /* call_metric_recorder.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - DB26277C69D779F2E760C6C75FD9C94B /* backend_metric_data.h in Headers */ = {isa = PBXBuildFile; fileRef = 0EBA18879F5395AA869BF779A0CD70A7 /* backend_metric_data.h */; }; - DB2D40BF10EAA44B4F48E2FFF1E03BEB /* quic_config.upb.h in Copy src/core/ext/upb-generated/envoy/config/listener/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 89CE7E704B22BFEBF30F6FD8D911D5B8 /* quic_config.upb.h */; }; - DB3708A08B148A35784DA3DE4F59C217 /* call_creds_util.h in Copy src/core/lib/security/credentials Private Headers */ = {isa = PBXBuildFile; fileRef = C7AA36B9C1434E68861FE9865E1C6E67 /* call_creds_util.h */; }; - DB3D46A9B59AE3767BFCAF95E3C12167 /* retry_service_config.h in Copy src/core/ext/filters/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = FB7BCBDAD672580F386A1B6B8EBBA620 /* retry_service_config.h */; }; - DB4A4038F7E3596F2FBD04A1A0536964 /* versioning.upb.h in Copy src/core/ext/upb-generated/xds/annotations/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = FD746BFD80A5E85B5D0273E5A13A3AC3 /* versioning.upb.h */; }; - DB4BEB3BEF0409ED5AAC02A901411CB9 /* subchannel_list.h in Copy src/core/ext/filters/client_channel/lb_policy Private Headers */ = {isa = PBXBuildFile; fileRef = DFBFDCA637293CFB8D09C9871AFB04AF /* subchannel_list.h */; }; - DB4D0E2E6ABAEA00AD4FFA9530AEF72A /* backup_poller.h in Headers */ = {isa = PBXBuildFile; fileRef = 30883659BB3EA13CFA7312B5A23F0217 /* backup_poller.h */; }; - DB572CFAA9C583978F1429CF6E4EE522 /* sync_windows.h in Headers */ = {isa = PBXBuildFile; fileRef = 27859DCED734889B65943F0CC7C714FD /* sync_windows.h */; }; - DB646B1F91DA2D29C6A1918A229B98E8 /* semantic_version.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 79A0C919A26E9A21266195C5A67FE6DC /* semantic_version.upbdefs.h */; }; - DB712EA84ADCE620CF6E160720502FE5 /* memory.h in Headers */ = {isa = PBXBuildFile; fileRef = D0B126EA435E296288D24FAA98699F54 /* memory.h */; }; - DB8326918143052DAD0B731AF355300E /* charconv_bigint.h in Copy strings/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 57015A3555BDA5B5476363053AC3962E /* charconv_bigint.h */; }; - DBA26690BB18E11207414B6D4306CBC3 /* overload.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 8CEEECA7FE44E7D147F2000D3B5B8659 /* overload.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - DBA36B267BF7ECE1DB8C24A4F030E501 /* cord_rep_ring_reader.h in Copy strings/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 88FABD19D80280E84C32E5864F3C4CE3 /* cord_rep_ring_reader.h */; }; - DBB1AFAC686C983A2F55B16B99084059 /* status.upbdefs.h in Copy src/core/ext/upbdefs-generated/udpa/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = 0CB687260ED178368E23C4D255D62246 /* status.upbdefs.h */; }; - DBC933A6E35C36EC3F38DE4550F76F45 /* call.h in Copy src/core/lib/surface Private Headers */ = {isa = PBXBuildFile; fileRef = 16196582E5C5D40C0D157F0BB8D35BBE /* call.h */; }; - DBE2DEA558D4D111300A5A980CF86EED /* type_traits.h in Headers */ = {isa = PBXBuildFile; fileRef = DB6B065074B8D78FBBE33493FA80E477 /* type_traits.h */; }; - DBE7ECF7016516684F7B6E8F99BEA64F /* FIRFirestoreSource.h in Headers */ = {isa = PBXBuildFile; fileRef = 45E158F553AE5D6633D3EAAE60EB63CE /* FIRFirestoreSource.h */; settings = {ATTRIBUTES = (Public, ); }; }; - DBE993CAA3953235DC52E6F4EB46F0FE /* config.h in Headers */ = {isa = PBXBuildFile; fileRef = B12CC9F0DBEFB367E64D68D3999E92AA /* config.h */; }; - DBECC3A78B635228EF3DD5CF33722F00 /* matcher.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 9EFD21302FE8780F575F437E76D5E0E2 /* matcher.upbdefs.h */; }; - DBECDFFC37A4CE217185A7EDFDDF7C1D /* grpc_tls_certificate_verifier.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F1ABE580A488B5652F06B8ED4EF8C86 /* grpc_tls_certificate_verifier.h */; }; - DBF356E53E005FCA89DD898817019743 /* x86_64-gcc.c in Sources */ = {isa = PBXBuildFile; fileRef = C0C8C8913539CDA263F4AF2FDFC7ECC9 /* x86_64-gcc.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - DBFC37E81B3E4CB94F7D5B16CACD22CD /* crc32c.cc in Sources */ = {isa = PBXBuildFile; fileRef = 75E2B1D8DB83BF29F092B5E6F23D68E7 /* crc32c.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - DC00C2540DE5268C242DAB54217180FC /* FIRAuthDispatcher.h in Headers */ = {isa = PBXBuildFile; fileRef = 205BDCDE52227DE514BAA067BFDB34AD /* FIRAuthDispatcher.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DC0C1174F8760F5ABE4DFFBA5D8D0E71 /* threaded_executor.h in Headers */ = {isa = PBXBuildFile; fileRef = 0475F33986AB736E29D0789982EBBA3F /* threaded_executor.h */; }; - DC0EE7EE4CA5E1E4FB05D6FE5EBD4999 /* core_codegen.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 1E022FC78DE40F836648FC1DE7BAFD20 /* core_codegen.h */; }; - DC13ECC6CD877B10BE621076F26B6C74 /* binder_android.cc in Sources */ = {isa = PBXBuildFile; fileRef = 07935EA8F22AFAC027F34E5E3CB81D25 /* binder_android.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - DC2AA156F02D899C039D381809BC3680 /* FIRGoogleAuthCredential.h in Headers */ = {isa = PBXBuildFile; fileRef = D4C6F5BB8C69EB90D17A0DF12FACED2E /* FIRGoogleAuthCredential.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DC3E1CCD5613029AC43215E2E223D6B9 /* alloc.cc in Sources */ = {isa = PBXBuildFile; fileRef = BDE6A265F1436E19B308BD9AFE66F4F9 /* alloc.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - DC3E33121842527AB5E324BE3419C0D4 /* xds.h in Headers */ = {isa = PBXBuildFile; fileRef = EE706D797A1A34E3A94A1275DB02551E /* xds.h */; }; - DC5BC90B22C66CE261CDE4CEAB76E649 /* utf8_range.h in Copy third_party/upb/third_party/utf8_range Private Headers */ = {isa = PBXBuildFile; fileRef = 4A2BC83680056E5E24FD01A22FCECCD3 /* utf8_range.h */; }; - DC62095E9F38D86F71F3FA6C12BF7DB4 /* listeners.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = D4D0B6AEC023331FAC1735EE543DF7AE /* listeners.upbdefs.h */; }; - DC63E759DBB0D992A6FEDDA616AFF7A5 /* firestore_version.cc in Sources */ = {isa = PBXBuildFile; fileRef = 245602F0D6F278BE8C168A4986906922 /* firestore_version.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - DC7AFFE1273569596000C9EC4842A5F0 /* secure_create_auth_context.cc in Sources */ = {isa = PBXBuildFile; fileRef = 96246B575B396E4724AE5E9533113307 /* secure_create_auth_context.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - DC83EF66B016E73B424E1AC9D98295F1 /* resource_locator.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 458D7BD629B76E935D350A42D8DA7F51 /* resource_locator.upb.h */; }; - DC873FA628D29888D5F16957A8726207 /* target.nanopb.cc in Sources */ = {isa = PBXBuildFile; fileRef = 999FEB2A052AEC4F668AD8008125AF3E /* target.nanopb.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - DC91FE164F26E6C330B65B6755F26BAB /* resource.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 74734BCA91DCF3DF9B34EE0F71364EB8 /* resource.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - DCA8DBA089E44B38FC2D8FA995D435D7 /* propagation_bits.h in Headers */ = {isa = PBXBuildFile; fileRef = A7A23B7ABD1D59F3882FBE7ED91812A8 /* propagation_bits.h */; }; - DCAF5B9F8620154B279AEF98801F56A0 /* time_zone.h in Headers */ = {isa = PBXBuildFile; fileRef = C422C7895336F0FEC0037B4ABAC6E2F1 /* time_zone.h */; }; - DCB368AFFDC74806C9FDC5144EEB629B /* sparse_set.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D48FED36BE16E0456D8B6718B78A529 /* sparse_set.h */; }; - DCB9E51F459CB1DA0317073EE1B765F9 /* asn1_mac.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = BAE032884A1B3DFC7B5C8EA43753BE97 /* asn1_mac.h */; }; - DCCF67E0EE89D73E5B8F3779960D341D /* resource_quota.h in Copy src/core/lib/resource_quota Private Headers */ = {isa = PBXBuildFile; fileRef = 936DEAE0DDAA100CB54678057411E09E /* resource_quota.h */; }; - DCFFDAAF812102F7A463784D8A596B87 /* slice.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 9D2EE1A9D111899F125AB479E38DBAF3 /* slice.h */; }; - DD10AF0E27D3E44239D7029E76CD0D45 /* shift.c in Sources */ = {isa = PBXBuildFile; fileRef = 05E57665ED127DA475D44158C9F39F56 /* shift.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - DD1AD8D19ED9A43BF6D58E00FC9CFBFF /* endpoint_components.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/endpoint/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = A611E9F99015DD53907500A2E3D508C0 /* endpoint_components.upbdefs.h */; }; - DD23CD0CC131697F73053D886906E49C /* alts_grpc_integrity_only_record_protocol.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6E6E291A9AA5427621512378D4A61DF6 /* alts_grpc_integrity_only_record_protocol.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - DD2AD95E527403BE71BC7F55E5D56E87 /* per_thread_sem.h in Headers */ = {isa = PBXBuildFile; fileRef = 120973E92D7D51F45C77777F8A6F1C99 /* per_thread_sem.h */; }; - DD4EBFEDF780B438F538DEE37777B69E /* xds_bootstrap_grpc.h in Headers */ = {isa = PBXBuildFile; fileRef = BF56CB2B89C7D4D258DEC7DB187293AC /* xds_bootstrap_grpc.h */; }; - DD4FB7976E936ABBB0CE004F2443601E /* deprecation.upb.h in Copy src/core/ext/upb-generated/envoy/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = B61959DBB0F6AA639E23D8205FB46A4E /* deprecation.upb.h */; }; - DD554F717E02370E59D82D7D0183EE1C /* json_decode.h in Copy third_party/upb/upb Private Headers */ = {isa = PBXBuildFile; fileRef = BA7EADCF4E0861466B2E0F7DD9C6EFB1 /* json_decode.h */; }; - DD5D9EAB274A31658FB536A0CC7459BF /* alts_crypter.h in Copy src/core/tsi/alts/frame_protector Private Headers */ = {isa = PBXBuildFile; fileRef = 097054A92AFBBEBF210867D9C46DE3D7 /* alts_crypter.h */; }; - DD5F374C09B13FDD85A661C0C401B2FB /* parsing.cc in Sources */ = {isa = PBXBuildFile; fileRef = FAA6658398256BBDF203D3624299AAFE /* parsing.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - DD60E2DDC7013B38870A806CF9A439B7 /* binder_transport.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0A6EE1923D31BADA5E27B972CD911E31 /* binder_transport.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - DD63FB3347EA4747618BE9286EE76545 /* table.c in Sources */ = {isa = PBXBuildFile; fileRef = E60916F62333BCB2DDE838C4938D76AB /* table.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - DD70B7DA21DE5D2617D9571E2B3C3420 /* FBLPromise+Always.m in Sources */ = {isa = PBXBuildFile; fileRef = 88414E1C0DFD595D44CEF5FF5C6E38FA /* FBLPromise+Always.m */; }; - DD76DC59B55195B9E090BE949092678B /* slice_api.cc in Sources */ = {isa = PBXBuildFile; fileRef = BD8433D8437001217A32070E30079FA5 /* slice_api.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - DD7E09C407269E55D005AEF1A4DF7E24 /* optional.h in Headers */ = {isa = PBXBuildFile; fileRef = 95407501728C6F7F67AEFF1908758714 /* optional.h */; }; - DD96CBF5D8E66C11DE038376DD69F12E /* stats.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 5B268B72904055358B955F9F4CF219D4 /* stats.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - DD9A56F751EF24D1B415CE91E221E652 /* tcp_posix.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 2DCFEB02E1188E6E7B3C7BC6744C8280 /* tcp_posix.h */; }; - DD9D8DD2C8D263513D0462ED30468463 /* http_uri.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 7A46730BB1779DECB9DADF5F99C8043C /* http_uri.upbdefs.h */; }; - DDA1C84B22A2B017180D995302D7EF48 /* field_mask.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D1685818D38F01330C6E6E034A05F3D /* field_mask.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - DDA4F00DC7BA8E1504CBAF3F8EB963B3 /* symbolize_elf.inc in Copy debugging Public Headers */ = {isa = PBXBuildFile; fileRef = 4FAAE301281B4502D94306AB89D80838 /* symbolize_elf.inc */; }; - DDA6D02AECA5E6443EB07EDB9413494E /* wire_reader_impl.h in Copy src/core/ext/transport/binder/wire_format Private Headers */ = {isa = PBXBuildFile; fileRef = FA63B277E7E03FF01AAF88D44D696294 /* wire_reader_impl.h */; }; - DDA78E350F7E5D530C636C20F27E3FF8 /* randen_hwaes.h in Headers */ = {isa = PBXBuildFile; fileRef = E28AED8AAF467EB843C7ADFAD1966B31 /* randen_hwaes.h */; }; - DDAB7368DD88996DCB19CE0479B21484 /* wrr_locality.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 5CD658EE2CC2E60FB425C7FE285A61A3 /* wrr_locality.upb.h */; }; - DDAFECE84921372A9BC72F3218364927 /* polling_entity.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = BFFED9C1285C281437A5AA43F8E82956 /* polling_entity.h */; }; - DDB89636993459BE0C9A2016D928F98B /* completion_queue.cc in Sources */ = {isa = PBXBuildFile; fileRef = D644599840C60630A4924E270C8E6E8F /* completion_queue.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - DDBD68AF8F76EBA53C993C829CD16BD4 /* tls_security_connector.h in Copy src/core/lib/security/security_connector/tls Private Headers */ = {isa = PBXBuildFile; fileRef = 48EC2AC596C611471E1B80C9DF097C54 /* tls_security_connector.h */; }; - DDCF07D0BFAB9F5F7607C539E1F3DAC6 /* self_check.c in Sources */ = {isa = PBXBuildFile; fileRef = 7B308FDBE7E1A97A5BE54BCDA7760DF8 /* self_check.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - DDE01459ED9F66A80EE3B13B03C84D70 /* container_memory.h in Headers */ = {isa = PBXBuildFile; fileRef = B66552DADF9C8B268C364F7009B26532 /* container_memory.h */; }; - DDE42DFF821255EE6D69BC8560C54C12 /* xds_endpoint.h in Headers */ = {isa = PBXBuildFile; fileRef = BEF813D74DFC4C59AFA9BA042DD9ACEE /* xds_endpoint.h */; }; - DE07FE793D7ECCEC96198EE4DF84E34E /* GULNSData+zlib.m in Sources */ = {isa = PBXBuildFile; fileRef = BE5DADEED590E905C77F9CB5591C2EDB /* GULNSData+zlib.m */; }; - DE0A647129811A32D60AD458AA81C678 /* v3_akey.c in Sources */ = {isa = PBXBuildFile; fileRef = D593398B37C864CE9377508675202E43 /* v3_akey.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - DE0F75D81E221EA12C93641814889D0B /* tls_spiffe_validator_config.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = A868DF2F2526BF120A5AB8D1ACA795B2 /* tls_spiffe_validator_config.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - DE22F3028B701D39B1C1C7DF8B732384 /* backoff.h in Copy src/core/lib/backoff Private Headers */ = {isa = PBXBuildFile; fileRef = 464A7D85D8AB25BD049351772D239605 /* backoff.h */; }; - DE2C7BF1C1CB526699D8F2D26F5AEF1D /* tls_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E09FC981BD4109864F3A1EFC649154C /* tls_credentials.h */; }; - DE39B7A92594CC9D99BD879682F3E06C /* handshaker.h in Headers */ = {isa = PBXBuildFile; fileRef = FAF7E5DB0839CFE9EC781F97C8AFF047 /* handshaker.h */; }; - DE3E9E63F4B81451D3AD57DD24589202 /* clusters.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 80F70BF806CE44CA998F1BA1F64C86AB /* clusters.upb.h */; }; - DE462916ED69B7D14F4393DA1C718FE8 /* endian.h in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = B0B663A73EA230116BB0CC33BEB1E461 /* endian.h */; }; - DE47CB726CA9090150F5E4AEEA11A12E /* child_policy_handler.h in Copy src/core/ext/filters/client_channel/lb_policy Private Headers */ = {isa = PBXBuildFile; fileRef = C9C29D0F085F85528A81E6A3BBD8D797 /* child_policy_handler.h */; }; - DE47E1BC731D2F6808B23294BFA0C2F1 /* extension.h in Headers */ = {isa = PBXBuildFile; fileRef = 192A711206B2630A44D58A1E6F7A765B /* extension.h */; }; - DE4BF76F8BC4B28728A33C80EA5E1B4B /* altscontext.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 492D01E59D4586D3181EA46C12549E18 /* altscontext.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - DE512B3A4CB52A36DA1A07F7BB75F884 /* xds_transport_grpc.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 10D6B330AF38EF6E0473A1D898D0581E /* xds_transport_grpc.h */; }; - DE52160DC53D77D1EA12593A6069AAC5 /* xds_transport.h in Headers */ = {isa = PBXBuildFile; fileRef = C522BEB0135F072ACE442D7AA634259C /* xds_transport.h */; }; - DE5E76D8B149026A1B415EF9776A3BE9 /* router.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = EB906685D4A23D624949C9FE94C89D89 /* router.upb.h */; }; - DE68EBB4B24288C5BEE62B9862A6DA03 /* re2.h in Copy third_party/re2/re2 Private Headers */ = {isa = PBXBuildFile; fileRef = FC4CDF69ABA1641838F9C784D8FDB19A /* re2.h */; }; - DE7A76DF384FE4C0555B3A2F121EF15E /* platform.h in Copy random/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 831031F7036CCD0A97E949AD5CEACC34 /* platform.h */; }; - DE80205D16A082707A7F93B50B9ACA7A /* path.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 42DC33213771446563736A226E3D2ABF /* path.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - DE84E040E6E419779CB350A0337ADCD9 /* call_op_set.h in Headers */ = {isa = PBXBuildFile; fileRef = 7A0E2510288A22D24D6A9DB28DA8ED2C /* call_op_set.h */; }; - DE89FF44C648AE262AC96D2A33AD4A29 /* stacktrace_config.h in Copy debugging/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 22B3497FF0239A23460FD10F6FFB3AB4 /* stacktrace_config.h */; }; - DE8BAD26668128AEA1448F46AB3DBD88 /* generate_real.h in Headers */ = {isa = PBXBuildFile; fileRef = A2FA0A77E1FA58E2684AEBD1111E43A4 /* generate_real.h */; }; - DE93A7F7AEAD9E022EE448C4CEE2F2A0 /* resource.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 3F0340BE5A31437558ED606A17F43A15 /* resource.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - DE988C91B8B4F4AE407D9F16D1009BE5 /* passive.c in Sources */ = {isa = PBXBuildFile; fileRef = 2E28BBE6A5148634A207B89E3C1EF135 /* passive.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - DEA32B0A0AE24EBABBA7AEB4022FD703 /* message_compress_filter.h in Copy src/core/ext/filters/http/message_compress Private Headers */ = {isa = PBXBuildFile; fileRef = 08667D3F0E5175D52340FA95B8A52300 /* message_compress_filter.h */; }; - DEAC0124654CF3E7273D403D551C9F7F /* range.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = F03A0837E10E83A4EFD001F774A89742 /* range.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - DEB5E222469DB4AB61A63419BBF1D90D /* spinlock.cc in Sources */ = {isa = PBXBuildFile; fileRef = 565B5A3A5A88FE4EAF9C63CBBB5E6D5F /* spinlock.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - DEB864419FA62CFBFAA922E4095CFE28 /* connectivity_state.h in Headers */ = {isa = PBXBuildFile; fileRef = 491BFA36A0530FF3EC002F1FB3CB333A /* connectivity_state.h */; }; - DEB9E5028EB06FEE52363C2C3E18F0BA /* service.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = CC72A9402C9409D8ECDCCABA84960771 /* service.upb.h */; }; - DECE50BBB62C249718540920B06FE6D8 /* struct.upb.h in Copy src/core/ext/upb-generated/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 9AF6B6A69AEB02ED1527DB0973FA6046 /* struct.upb.h */; }; - DEECDD478845A553F6F8052D71B51972 /* alts_frame_protector.h in Headers */ = {isa = PBXBuildFile; fileRef = 1842BC35A00C980B3160A6747CCCB0EB /* alts_frame_protector.h */; }; - DEF6B5770E02C2F592A7D7D46C0858AD /* http_server_filter.h in Copy src/core/ext/filters/http/server Private Headers */ = {isa = PBXBuildFile; fileRef = A8C4B1712BE80B5A9D88261EE2DCB11E /* http_server_filter.h */; }; - DEFB0FD4CB9BBF121B1CFA21F54FA857 /* port_platform.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C427FD5018B3CFA0ABE2C1747E25B59 /* port_platform.h */; }; - DEFE8118469042380A1B98E4419A5653 /* udp_socket_config.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = C1CA4D9AB57BCCF6939312976EB4046F /* udp_socket_config.upbdefs.h */; }; - DF1A864028F0B4F1C9D148DB4E85798A /* binder_server_credentials.cc in Sources */ = {isa = PBXBuildFile; fileRef = E27CFE7E99A5B65F511B0173241A25A7 /* binder_server_credentials.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - DF2F03B03CC215A31B27BC9D1ED9CC27 /* FIRFederatedAuthProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = B22782F5571A7AC385645B89CD12B642 /* FIRFederatedAuthProvider.h */; settings = {ATTRIBUTES = (Public, ); }; }; - DF3C4E10A8D8697D0414373FE0FB7DBF /* status.upb.h in Copy src/core/ext/upb-generated/xds/annotations/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = E9B0275D603793A0F347AB437CEA043E /* status.upb.h */; }; - DF5B6B93993AD7830F4ED1954C9D73F4 /* authority.upb.h in Copy src/core/ext/upb-generated/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 89C6E2A45246954CE4696C02BBAE9E1E /* authority.upb.h */; }; - DF60C07B84CD2F34359A6B15A7FB2883 /* precondition.cc in Sources */ = {isa = PBXBuildFile; fileRef = 05732C594FA7B0CE2F028221ABBFC9B9 /* precondition.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - DF8621D7972EF55776EA06F51E24C452 /* empty.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = FF2375FF4965F6805E7C46ECC07C000A /* empty.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - DF8CB2E5BE29D4925C6034B6D920480E /* lhash.h in Headers */ = {isa = PBXBuildFile; fileRef = 95894B9A45619EDEB8D4467EAD2637D7 /* lhash.h */; }; - DF9560C1C38986910296F675B92F0D39 /* FIRGitHubAuthCredential.m in Sources */ = {isa = PBXBuildFile; fileRef = 6A728E41F7B469810932E44DF65807FF /* FIRGitHubAuthCredential.m */; }; - DF9837D45CDA55A9DDE36A90528DB3E1 /* hpke.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 3B8ED7C0A5717A59310573EC17E1367D /* hpke.h */; }; - DF9FA16027A4160392ACA1998B5EA68A /* rbac.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 81AC9E6107EE9351C13FAC2DF6C9D7A6 /* rbac.upbdefs.h */; }; - DFA185EC73E938C88C85144465923688 /* sockaddr_utils.h in Copy src/core/lib/address_utils Private Headers */ = {isa = PBXBuildFile; fileRef = AD8C51E04512E3704FB6C134C9E96456 /* sockaddr_utils.h */; }; - DFA715F2B45EB93003042E407C3FD562 /* thd.h in Headers */ = {isa = PBXBuildFile; fileRef = D1B540F55F7DB2B9D510A0BB2A9F8E09 /* thd.h */; }; - DFBD93E6839C96A1EE573151E827B53A /* datadog.upb.h in Copy src/core/ext/upb-generated/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 43597551198F0566BC64DBA14F992D76 /* datadog.upb.h */; }; - DFDED3A8A0451B42A71B61D670038D3E /* child_policy_handler.h in Copy src/core/ext/filters/client_channel/lb_policy Private Headers */ = {isa = PBXBuildFile; fileRef = A1DD04A14CE0817D4680052076AFB65C /* child_policy_handler.h */; }; - DFE4B3C7213FA98361E546A7313637B9 /* ring_hash.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = B8B7536160184D4222E33FD694B18C03 /* ring_hash.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - DFEDD8D54121CDE11CA2E214D7B4F7A8 /* ssl_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 164DBA11BE7F19B1765886A7011DDCD8 /* ssl_utils.h */; }; - DFF2265256702FF959BD9ECD71B8D59E /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 022506EE4C4F2FC4C54187B3A8DB97DB /* internal.h */; }; - E005FD29F418CE83854B38AC527F0718 /* tls_spiffe_validator_config.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 723F2246A09846A5CEF722162EAC2A3D /* tls_spiffe_validator_config.upbdefs.h */; }; - E01265307F5647463BEAB7732951DEA4 /* slice_buffer.cc in Sources */ = {isa = PBXBuildFile; fileRef = F2B94F233981F6FAF566270C531223C5 /* slice_buffer.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - E01DE74EE91B34AEACEA5F32F009E0F7 /* core_codegen_interface.h in Headers */ = {isa = PBXBuildFile; fileRef = 4AEEBFD269A1040AC399650FDC0A3BD9 /* core_codegen_interface.h */; }; - E0357A77AC407BABD5A3E613209B2D72 /* bin_encoder.h in Headers */ = {isa = PBXBuildFile; fileRef = D94751A75F363EBD96E97DDE882A5D2D /* bin_encoder.h */; }; - E052AE7E3990963B2CB249CCD59F2C65 /* auth_context.h in Copy security Public Headers */ = {isa = PBXBuildFile; fileRef = 64F88E052E243C4DAB957F2FFA7D1AA1 /* auth_context.h */; }; - E05E64FC5B7BC474573F71A26F1CDF0E /* ssl_security_connector.cc in Sources */ = {isa = PBXBuildFile; fileRef = B0BCFE845AA727C770F15FC39C6CE3AE /* ssl_security_connector.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - E06F53E24327D4C05E701071CCDF313E /* FIRAnalyticsConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = BD3B5A3389E890060AA5312DAFC38BD9 /* FIRAnalyticsConfiguration.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E07AA7AB4EAE02A17FE8A2B4594D9AB7 /* rbac.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 6C9021F6FC9BE900E7CD3C475C510E5D /* rbac.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - E07CE786E959B93123CD209FAD6B0A06 /* listeners.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 61D1E6B691A6C974CDE940589D8006F4 /* listeners.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - E08494108D0796B7AF8FDC0BB2523558 /* xds_server_builder.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = F3C99539B1683DFA20FED6B1599CAB6A /* xds_server_builder.h */; }; - E0936249D98A01F41411AB09F0FA5F41 /* sync_custom.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E24E05693D9DC449483756517BB1AEB /* sync_custom.h */; }; - E0A448055D7EC995DE5F16C4AA3A737B /* opencensus.upb.h in Copy src/core/ext/upb-generated/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = ED18B67A1053473A48D5F9CD5AF528BF /* opencensus.upb.h */; }; - E0A9F446A0128EE19152D7A6D9D7B5EA /* str_replace.h in Copy strings Public Headers */ = {isa = PBXBuildFile; fileRef = 20D6E838B5FCE9A99DDC4B108AC6EBC4 /* str_replace.h */; }; - E0AF59DD36841E07F73F99AC29B63856 /* lockfree_event.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 58640A70D90FCB3560E49C22EE4D0F00 /* lockfree_event.h */; }; - E0BDFBCEAB715500614B7410D44B15FE /* client_auth_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = A12AAD1823E97BE3F6B22F8E8872C163 /* client_auth_filter.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - E0C5EBFFD06C2B8E45542B709E0631EC /* endpoint_config.h in Copy event_engine Public Headers */ = {isa = PBXBuildFile; fileRef = EEFA7143837C97488674FDEAC8125984 /* endpoint_config.h */; }; - E0C629A3BBBF6C371E7AE9BA94EA368D /* default_event_engine_factory.h in Headers */ = {isa = PBXBuildFile; fileRef = 93BC0C8A2928C262C2EA37A096C25783 /* default_event_engine_factory.h */; }; - E0C880D70C407E18980AD469B28131FD /* regex.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D818AF319C7D09EE62BDB0A3E28678F /* regex.upbdefs.h */; }; - E0E490C2A592ECEB2A20374F60C38CCE /* spinlock.h in Headers */ = {isa = PBXBuildFile; fileRef = 6ECB6B52CCFEFDCADCE4BC72790204C6 /* spinlock.h */; }; - E0EA9881A244D81171D29D95D97A0BAB /* prog.h in Copy third_party/re2/re2 Private Headers */ = {isa = PBXBuildFile; fileRef = FA273065DD3BB0E3B3891CE0BFD1BDA4 /* prog.h */; }; - E0F5E8114D744431C39DBF904AD35DDD /* time.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 94CC9A71D59DD942E500FF67B096A19A /* time.h */; }; - E0FAB8649C9F8A88DC7FB70AEF3E70F4 /* endpoint_cfstream.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = DACA094CFC3924389DD0F0FFBED9939C /* endpoint_cfstream.h */; }; - E11342BA5BCE7DB4284B52DEA11201F8 /* xds_http_filters.cc in Sources */ = {isa = PBXBuildFile; fileRef = 064FB5E6568897324CF95F5EF79A3CE9 /* xds_http_filters.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - E11DCAAAE8875AB9C5B4982500AC951D /* options.h in Headers */ = {isa = PBXBuildFile; fileRef = 2DB95C1C3E98A9E39DAD46642CEA8E81 /* options.h */; settings = {ATTRIBUTES = (Public, ); }; }; - E12EBB62928208D902F68BB8F8F95B87 /* mini_table.hpp in Copy third_party/upb/upb Private Headers */ = {isa = PBXBuildFile; fileRef = 42293DF2129D34926EC4828CE92E6912 /* mini_table.hpp */; }; - E134E753CA5555A68821D210F80F78D9 /* cfstream_handle.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 2FAEEFFF1D96A6D1A7DB9564B24F3163 /* cfstream_handle.h */; }; - E1434D7D41248D125C8779E86AE7CD0E /* clusters.upb.h in Copy src/core/ext/upb-generated/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 80F70BF806CE44CA998F1BA1F64C86AB /* clusters.upb.h */; }; - E14E7884B488DA6A9BCB5A6B8737A7CB /* filter.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 031494DA595E537CBDC40E389CEB0D38 /* filter.upb.h */; }; - E170CE9AEDBAA7681FCEA0559C3E55A1 /* security_context.h in Copy src/core/lib/security/context Private Headers */ = {isa = PBXBuildFile; fileRef = F0AA1987F49D49EC272AEF1CDEE44A7D /* security_context.h */; }; - E179B3CD976A4BD52C59F69F913D1DCE /* combiner.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = BB836C78230D297E1EF595D20E41D8F6 /* combiner.h */; }; - E18BDFA3958F85D91B1A0F33C8A1039D /* server_config_selector.h in Headers */ = {isa = PBXBuildFile; fileRef = E27318BDCA3B55DED4F246CB929FD338 /* server_config_selector.h */; }; - E18FFE5247FD75E69E281A3BF9FA1697 /* cord_rep_crc.h in Copy strings/internal Public Headers */ = {isa = PBXBuildFile; fileRef = A39167BE79E4645A7CD3691B989E9D33 /* cord_rep_crc.h */; }; - E1AB384932DBE20B45914A4828CE3838 /* channel_create.cc in Sources */ = {isa = PBXBuildFile; fileRef = EF3EDBE0A8B29F73FA855A701E907317 /* channel_create.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - E1B32568262F55FBF27CC6C71FFD877F /* ostringstream.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4AD540A8F4BE557397CBDBA98C01306B /* ostringstream.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - E1B34E824AB91F2EDBCFD921F9FBB9C2 /* sensitive.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A1C06D8F0A57548FFA99DCC4FACA98F /* sensitive.upb.h */; }; - E1B96E4C5E4A685D8D8C3EAD16A24DA5 /* string_format.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8948A061C9D6A81FB38E75438617295E /* string_format.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - E1E26A3F36BCA74837CCFAC6A235EE4B /* xds_http_fault_filter.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 032E3A2530C69F7CEE12F5F16AC3AB63 /* xds_http_fault_filter.h */; }; - E1E2862D7A88080FD7D04F77C3802622 /* matcher.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = D82084CB5BBE9273BE632746E1340B55 /* matcher.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - E1E595F1438D9E65B4CA5B9835FD92E0 /* grpc_authorization_engine.cc in Sources */ = {isa = PBXBuildFile; fileRef = 26C3B20C10C8A98166ADB03C10EE85EF /* grpc_authorization_engine.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - E1F3F9957F5F245D9908DE9315155913 /* ssl_security_connector.h in Copy src/core/lib/security/security_connector/ssl Private Headers */ = {isa = PBXBuildFile; fileRef = CDDD2D73791FB482AB9782B867AC2F70 /* ssl_security_connector.h */; }; - E2012A62AB927280DD29A0F33F04248B /* zipkin.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 67E521E952D8AF471EF259499F53A6AA /* zipkin.upbdefs.h */; }; - E20CE1D168BD57DB07C53809743A11F4 /* tmpfile_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = 73D3366BA1D2F7363402A959D9CC795E /* tmpfile_windows.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - E20DA75CF9F5C5CC4BA91EFBC1CC9A92 /* local_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = D884D988617672049A1922CF12E24247 /* local_credentials.h */; }; - E20EF31F8139655AFC6B545B63E42324 /* ratelimit_strategy.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = AC40AB2ADE36E501E757D387E042971E /* ratelimit_strategy.upb.h */; }; - E218562EE26090BD96DE2EF9AF25EAE2 /* frame_rst_stream.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4CBEC30B3090CE9F4ADB415E299AF879 /* frame_rst_stream.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - E228C9A899A3885FA79F74E5DD85DF8E /* dynamic_ot.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 2995219B51B72201A5CCC6D72F5C69B0 /* dynamic_ot.upbdefs.h */; }; - E22C5E3D0646B2AECD2EEB99F33A188A /* syntax.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/api/expr/v1alpha1 Private Headers */ = {isa = PBXBuildFile; fileRef = C512AB1E093E5AD78494F964236C3508 /* syntax.upbdefs.h */; }; - E239927326D65A09DC1BFBC4D296808D /* upb_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = FB56314023FEFE8D7BEB0975EF14AEED /* upb_utils.h */; }; - E239AF003496DA12D4337B6DF495DC82 /* xds_client_stats.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 9FEF02FB555153E9A024D63E3B90F7EE /* xds_client_stats.h */; }; - E23FAE4C8602B7C871C797B75334CE45 /* stacktrace.h in Copy debugging Public Headers */ = {isa = PBXBuildFile; fileRef = 5647BFEE8075FF69E7F5ACF7D1500170 /* stacktrace.h */; }; - E24A2B5F3D2240D523B1F6E90097FA4B /* tap.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C0ADF90A07901007BF2B7E7A82B1D5B /* tap.upb.h */; }; - E24D9CBE30F95519BAB1E3EBBA899BB4 /* arena.h in Copy src/core/lib/resource_quota Private Headers */ = {isa = PBXBuildFile; fileRef = 224FBB78930502C92A4690575D668721 /* arena.h */; }; - E26715D8509024B58A1B316636D104FA /* internal.h in Copy crypto/lhash Private Headers */ = {isa = PBXBuildFile; fileRef = 52C08D56756499F2949727A978D74B60 /* internal.h */; }; - E26D26901A6CC6C30892432EF34A4FB9 /* tcp_server.h in Headers */ = {isa = PBXBuildFile; fileRef = 9844E3A37FFD6175761AEBA2983074A8 /* tcp_server.h */; }; - E26EF8318B93BE1C13B40F90ACD57820 /* status.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 0AFC54081D9D4DD9CF870208438C633D /* status.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - E287235CE4A6D6235CC4A47ACBA7E48C /* FIRDocumentChange.h in Headers */ = {isa = PBXBuildFile; fileRef = E7C50276FDE00510F43205EABF6ECBDF /* FIRDocumentChange.h */; settings = {ATTRIBUTES = (Public, ); }; }; - E28ABD15EE1811501B7F47FB30B6CCD7 /* thd.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = D1B540F55F7DB2B9D510A0BB2A9F8E09 /* thd.h */; }; - E290ECF033D31D698E809853ABDF75C4 /* typed_struct.upb.h in Copy src/core/ext/upb-generated/xds/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 24ABC9D764EB1572F47819BB2E9FDC18 /* typed_struct.upb.h */; }; - E29323CCBD5C236D62DF2DBA1AA74129 /* http2_errors.h in Headers */ = {isa = PBXBuildFile; fileRef = 52C0C161BF0634F95CFBB58486010B0F /* http2_errors.h */; }; - E29F3781D42245365F3E88E61DC8C15A /* view_snapshot.cc in Sources */ = {isa = PBXBuildFile; fileRef = B6742CB0E2D474E4D9925C9714D1E17B /* view_snapshot.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - E2AB0F426F28FF6D9E7596F7F7BCE4C1 /* auth_property_iterator.cc in Sources */ = {isa = PBXBuildFile; fileRef = 25ED2AB3AE777851175B427979248AD2 /* auth_property_iterator.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - E2ACCD9864DDEF76329424EF87BAAF6A /* optimization.h in Headers */ = {isa = PBXBuildFile; fileRef = 9FE6450A7BBB0E0C5BFCBCA7ECD8838B /* optimization.h */; }; - E2C5AE4BEB5122BDDEF00453D7820336 /* sync_generic.h in Headers */ = {isa = PBXBuildFile; fileRef = C237891B803AA0E37133C7C6F0325D49 /* sync_generic.h */; }; - E2C6B24CFAA94E8CE154C6636F3A2CD8 /* FIRMultiFactorSession.h in Headers */ = {isa = PBXBuildFile; fileRef = 936DB1A15FD757DC8F8CF3F445A4A2C6 /* FIRMultiFactorSession.h */; settings = {ATTRIBUTES = (Public, ); }; }; - E2D217825487CC550B9AD4F1B0848557 /* poisson_distribution.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D4AE8F8BAE1ED57A44D83971C250970 /* poisson_distribution.h */; }; - E2E2EB88E35355E3A655209E3F9154BA /* grpc_tls_credentials_options.cc in Sources */ = {isa = PBXBuildFile; fileRef = D250593A5ABB536D0C9ECAFA806BFD6F /* grpc_tls_credentials_options.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - E2F8F07A15A98032175D2E97CAC61F4F /* representation.h in Copy numeric/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 302F88279ED3476551D7CF43993239AC /* representation.h */; }; - E3009123B4C21D6646DB32A1728831DB /* leveldb_key.cc in Sources */ = {isa = PBXBuildFile; fileRef = C4C5361D6EF2CC01580637D355F0CF60 /* leveldb_key.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - E30CE1E18C5C3DCD2E6A985B824D5DAF /* frame_goaway.h in Headers */ = {isa = PBXBuildFile; fileRef = 266F84D62EEA081B815444F92DF36788 /* frame_goaway.h */; }; - E31B7DFC9334D6E7227C38429D2D5F1B /* channel_trace.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9F923AAB675A69F20101C3E78FD75358 /* channel_trace.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - E31C0DDBE776671CD10A1C1A432D8BCB /* semantic_version.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = C4620C7ECB575EA763239802001C9A35 /* semantic_version.upbdefs.h */; }; - E327590D615F0432A7486F96279D831B /* parser.h in Headers */ = {isa = PBXBuildFile; fileRef = B89FF6A5B7AA3C70DCBFF568B92DFABA /* parser.h */; }; - E33503F1D0ACF8FF110C2FB8DBD91F18 /* settings.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7AE4FC58BDCDAC4C52BDB5E4B758BA92 /* settings.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - E342F9217B550F0FE601BA261E6BF0DB /* grpclb_client_stats.h in Headers */ = {isa = PBXBuildFile; fileRef = 39757624A0559A9432811637D57F253A /* grpclb_client_stats.h */; }; - E34849072D4868ED659865161F244EEE /* alts_tsi_handshaker_private.h in Copy src/core/tsi/alts/handshaker Private Headers */ = {isa = PBXBuildFile; fileRef = 88F25EC73453F84A6B3389AF26D36F5E /* alts_tsi_handshaker_private.h */; }; - E34C33CE033454FA17100812074350B0 /* memory.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 042271FB2B2387217FDD272A332FE6E7 /* memory.h */; }; - E353033336CAEE0E59BBF0F5D762083E /* env.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = E5CA22400BD4D4EA24C1FB27DB144305 /* env.h */; }; - E3530C146370303BD5503799560CA39F /* internal.h in Copy crypto/hrss Private Headers */ = {isa = PBXBuildFile; fileRef = 7160177A88ED22AABA4724ACEB368EB8 /* internal.h */; }; - E36FAC4F77A198FA83E2ECC7753A726B /* uri_parser.h in Headers */ = {isa = PBXBuildFile; fileRef = 52F9419BDF7CFB1A64EA4A2D5256A294 /* uri_parser.h */; }; - E375AB7409AD7455BA46EB2EF97A5278 /* strerror.cc in Sources */ = {isa = PBXBuildFile; fileRef = EF5E6E7BFB49D1A35B2A521EC6FAAC52 /* strerror.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - E38C99333E6D9106064768EB0F205985 /* span.h in Headers */ = {isa = PBXBuildFile; fileRef = EEE2A3C886CF68A2EEF0802CFD94F04F /* span.h */; }; - E3A070A50ABC1FA97669722F4964CF28 /* insecure_security_connector.h in Headers */ = {isa = PBXBuildFile; fileRef = 51BA01EB872ACBA9D90695E399E8BC9D /* insecure_security_connector.h */; }; - E3A101E7F948A99ED01455DB7CAD2EA1 /* secure_auth_context.cc in Sources */ = {isa = PBXBuildFile; fileRef = AAF2A787394A072E8F8444BEDEEB7AC2 /* secure_auth_context.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - E3A2ACBB5691AD477C22B443CB62E14F /* common.nanopb.cc in Sources */ = {isa = PBXBuildFile; fileRef = 34AD2E39AA180A9D3A58EE2B0409264A /* common.nanopb.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - E3A78D2850EB665FB5B4930B0B3C35A2 /* lb_policy.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F10B917EC9D6D257321E20940C1C50C /* lb_policy.h */; }; - E3AB2816275D99822B54D56B72E21B12 /* gpr_slice.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 01D371F82EFBA7961697C2A3F97C27F4 /* gpr_slice.h */; }; - E3DA22FD06576AE60ABAD64AD1040587 /* config_dump.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 59922FF312F9A2D0847E9976AA03732B /* config_dump.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - E3DBBB21F05D957E22806DCD8FF0D2E3 /* FIRAuthCredential.h in Headers */ = {isa = PBXBuildFile; fileRef = 195A2DB5E78C49C1AE0B418DA24023F1 /* FIRAuthCredential.h */; settings = {ATTRIBUTES = (Public, ); }; }; - E3E35E98660F1FB404DC7C50804CCFA8 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 78E1723B3DD72C6BDAB63A2566D6BC6A /* internal.h */; }; - E3E92D3FBF5AE80122346DC91094F18D /* server_auth_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 65AC650755E70917DB6DADB38BA70D3C /* server_auth_filter.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - E3F2867511E1AE7787F3B9B0D47D24B0 /* cert.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = D1A24D009C195F553432878CBE64910F /* cert.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - E3F4DF306FAC98D5340BA1081FF59F56 /* jwt_credentials.h in Copy src/core/lib/security/credentials/jwt Private Headers */ = {isa = PBXBuildFile; fileRef = 53ED99E00ACB7EF1FB410B71D0E6B601 /* jwt_credentials.h */; }; - E3F72E56B8203CF8E046CB54C1F3B7F3 /* overload.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = DBE30D1FBA4A4F01EDCEE792A813A2D2 /* overload.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - E3FEA61064C666D4F0D409ADC2BC6762 /* iostream_state_saver.h in Copy random/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 90267A3BFA5ED8C2FBC84DAA31F9BA9B /* iostream_state_saver.h */; }; - E402C9563DE4157BADAB1E7A651B72F4 /* orca_load_report.upb.h in Copy src/core/ext/upb-generated/xds/data/orca/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 120DE169485F7E52A03A57057AE8A10F /* orca_load_report.upb.h */; }; - E40F51862432EFDDD6BD3F392F8BCC83 /* hpack_parser_table.h in Headers */ = {isa = PBXBuildFile; fileRef = 837DBE4C996FF2B821EDF138B5E9D19F /* hpack_parser_table.h */; }; - E40F887E58A35E4E1B5012CE646F6804 /* json_decode.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E785E4BC16356AC99F7A3E6AABC9C7B /* json_decode.h */; }; - E41177D05D8B2E22D03EBB73E5F2CD27 /* thread_win.c in Sources */ = {isa = PBXBuildFile; fileRef = 2B6CF1314A22C17D6CB51D986074FBF8 /* thread_win.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - E42A17CCDBEBFB5A0C0C736A44B723F9 /* examine_stack.h in Headers */ = {isa = PBXBuildFile; fileRef = E662517F1982D613C313307261F668C5 /* examine_stack.h */; }; - E42A1C06D56697BF78D809C32B87017E /* FIRUserInfoImpl.m in Sources */ = {isa = PBXBuildFile; fileRef = 1927E1F9D9D46E702AC18225C24EBD49 /* FIRUserInfoImpl.m */; }; - E42E8D9EB830DD245B25FC08A576540E /* stringpiece.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3D42FCC370A6088C0015DA5F7E60C62B /* stringpiece.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - E42E91C67F364ED8757DBA0AC11F0349 /* create_channel_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 81CEF159C4EE4631B5FC8EA7CCE1983F /* create_channel_posix.h */; }; - E43924A8024E94819BA40E0CB30ABB05 /* sensitive.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 60103051EB2FC1ACA6744A519E613995 /* sensitive.upb.h */; }; - E442FA1E4AE071D21D3ADC20D7C29708 /* asn1.h in Headers */ = {isa = PBXBuildFile; fileRef = 09AF23878F67216BE2C4E0D604BDB0AB /* asn1.h */; }; - E44951C9E8DF1283735C57CBC119134A /* FIRVerifyPhoneNumberRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 79B85590279D668EA9EAEFE801FC755D /* FIRVerifyPhoneNumberRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E45B2FCB2F9A1CEF66E8DBB057386A30 /* spinlock_posix.inc in Headers */ = {isa = PBXBuildFile; fileRef = C1C68EA808C262306A82C99029E9F0D4 /* spinlock_posix.inc */; }; - E461F0E0038FCF5ACE09766202161080 /* timer.h in Headers */ = {isa = PBXBuildFile; fileRef = 27EB496AE59B13641472D4659A50D875 /* timer.h */; }; - E467238E5F32F070DADC8155EF493A35 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = C09D10EF6C83D49AF260DC5F7313A8E6 /* internal.h */; }; - E46E6995435E6B05C753E88D033223E4 /* FIRGameCenterAuthProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 19A3EB0C3E4614F7F2563AF42374133D /* FIRGameCenterAuthProvider.m */; }; - E473025437521384E455A4E17EC53674 /* alarm.h in Headers */ = {isa = PBXBuildFile; fileRef = 38372C8CCE137F7D37EF2CE7E811572B /* alarm.h */; }; - E482DD0371A8187E6802758BB44FF70B /* bad_any_cast.h in Headers */ = {isa = PBXBuildFile; fileRef = BC80F0361AFA3C19CEF023D39AD2EA4E /* bad_any_cast.h */; }; - E48339B371F4F3A68E6FA7728E76C141 /* config_dump.upb.h in Copy src/core/ext/upb-generated/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 97AB33F99060C2497419B3756D1A6289 /* config_dump.upb.h */; }; - E48A494C0F436EDCC9F6EE32758A2105 /* migrate.upbdefs.h in Copy src/core/ext/upbdefs-generated/udpa/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = DCA5935C5E8A93F10D18141407FA9D25 /* migrate.upbdefs.h */; }; - E48AE47BB43E81159F30060FAADDBF65 /* sync_stream.h in Headers */ = {isa = PBXBuildFile; fileRef = 72758FDD9AB22A2F07D4E30497668C1A /* sync_stream.h */; }; - E493A5E255CBE900E11340DFEDC90860 /* rls.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 043FE3E6C18A23448D40A0E4B4D19A54 /* rls.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - E49EF4EBE7BA9C5F5321B23D867C2E92 /* time.h in Headers */ = {isa = PBXBuildFile; fileRef = CD40F471A44CB4871795E41BED3CDE82 /* time.h */; }; - E49F3E58A0102A048FBC1ED68EB45DD4 /* backend_metric.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3F83D5014BCC9A3842ABBB114BD533DE /* backend_metric.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - E4A77DEEF8A2278C357420D2D903AEBB /* cluster.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/extensions/clusters/aggregate/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 09E776A4A87E067224D392D2A2C43C0B /* cluster.upbdefs.h */; }; - E4B15D9BD33A6DF7502523942A596603 /* string_util.h in Headers */ = {isa = PBXBuildFile; fileRef = 2BB53E541D39B25721F425457B4999D6 /* string_util.h */; }; - E4B98DBBC0A049F9219267213A989C93 /* promise_based_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 581CCA92F93134248BE3029048BD3D5F /* promise_based_filter.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - E4BA36A41438076B1189E5AF2899E52C /* fd.c in Sources */ = {isa = PBXBuildFile; fileRef = D78CF9DC1ED1BACE399F3681EDFB9796 /* fd.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - E4D183E9A832799E5127A01A6C27D2D0 /* match.h in Headers */ = {isa = PBXBuildFile; fileRef = 31CC756094CE168F7023ED9619E2A11A /* match.h */; }; - E4DA80C111150629061252153903D206 /* auth_filters.h in Copy src/core/lib/security/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 1E05D7E91A4FC66661C3C2DA1D6CA248 /* auth_filters.h */; }; - E4DC048D05229F1CC18EB70DA672C125 /* aws_request_signer.h in Copy src/core/lib/security/credentials/external Private Headers */ = {isa = PBXBuildFile; fileRef = 95DB8C6DF9549EA9E92877446D9C0538 /* aws_request_signer.h */; }; - E4E1A5059C671099D7A8D76315DA001A /* fake_security_connector.h in Headers */ = {isa = PBXBuildFile; fileRef = C5516F0D86CC1D1C8C1E509C8E19EFCB /* fake_security_connector.h */; }; - E4ED624A1D7FA9245076FE1C678A717C /* internal.h in Copy crypto/fipsmodule/ec Private Headers */ = {isa = PBXBuildFile; fileRef = AF43D43FFC187F3FC76FBE4C62ECBD62 /* internal.h */; }; - E4EF74B64C4232093FD48536E0EDC667 /* xds_channel_stack_modifier.h in Headers */ = {isa = PBXBuildFile; fileRef = BDF943B7A09E38058DA9A9B22C24FE6E /* xds_channel_stack_modifier.h */; }; - E4EFCC820C77B395A91C3946F822363E /* orca.upb.h in Copy src/core/ext/upb-generated/xds/service/orca/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = F633EB092FB1130E77B7D06D7F8C5E9F /* orca.upb.h */; }; - E502D70C2AAFA42CDC6C7E92CAD0CFB2 /* vsnprintf_compat.h in Copy third_party/upb/upb/internal Private Headers */ = {isa = PBXBuildFile; fileRef = E844888B644DF497E4517D69113F6341 /* vsnprintf_compat.h */; }; - E51DA1393F26A113B9B704B1EABEEA2B /* blinding.c in Sources */ = {isa = PBXBuildFile; fileRef = BA326A30BDB0EED84429E3F711D2C5FA /* blinding.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - E52CC116C114BE5B30838E263C6C0E9C /* skywalking.upb.h in Copy src/core/ext/upb-generated/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = FC288893084AE5D080A397A27FA423FF /* skywalking.upb.h */; }; - E5376C54AB96A0E3F8F6CC635F8E52BB /* hpack_encoder_table.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C8ECD963DF15A6C0CA692C541B1CA56 /* hpack_encoder_table.h */; }; - E540A2F4B993DA0F94C8607F1B83AC3F /* race.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C6B1B0D746462EF9C3B17F1935779CC /* race.h */; }; - E544B792A9F57CCCAC33E106BFE8E04F /* msg_internal.h in Copy third_party/upb/upb Private Headers */ = {isa = PBXBuildFile; fileRef = 6703DD21A38A841429A2E73AC6897614 /* msg_internal.h */; }; - E5464D5E1811EAF940FC0E3A3AE9958E /* server_info.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 4CD37D1232681B15B152671402B1D3F4 /* server_info.upb.h */; }; - E55914A93FCB3F1574209EFB7770D366 /* HeartbeatsPayload.swift in Sources */ = {isa = PBXBuildFile; fileRef = 314A227D9B39287AE8E10A79879B1050 /* HeartbeatsPayload.swift */; }; - E56540139D52BDEBA526D6B76FE227D5 /* span.h in Headers */ = {isa = PBXBuildFile; fileRef = CA87D9E3C19C35A07A6EAB8A3590CE09 /* span.h */; }; - E56744F974622C4FA3C628B8D4FA13EB /* FIRAuthBackend+MultiFactor.m in Sources */ = {isa = PBXBuildFile; fileRef = A4A905EAF87BE710848B15EDA8DAA6C5 /* FIRAuthBackend+MultiFactor.m */; }; - E581E0C54174885E67DB847B9FDB81D6 /* create_channel.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D4ED0148A27A92C2483C269BD5549AD /* create_channel.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - E5823BA9C40BB6A515C5C422D70DC3FB /* collection_entry.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 20A31AC3FF8DA7EE53581272B98C890C /* collection_entry.upbdefs.h */; }; - E591043515205D2A9007D93645501A8A /* p_ed25519.c in Sources */ = {isa = PBXBuildFile; fileRef = AFC4B77FF9B690427B234AB4B10D3C36 /* p_ed25519.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - E59B82040BFF9CEFE12F3ABFC00D06A3 /* metrics.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = D957A4380785E239ABD643AFCBF2E17F /* metrics.upbdefs.h */; }; - E5A3073C5B0CCD87F193100064588CB3 /* descriptor.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = E501ABBA6753CD2BBC5744BD76011D00 /* descriptor.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - E5AC8C873602265E65F722DAB069CF6E /* fuchsia.c in Sources */ = {isa = PBXBuildFile; fileRef = 0F08AB7795776C5F6BD73A55EEED4A3B /* fuchsia.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - E5B6181359E60A73CFBD634FDF949DFE /* FIRUser_Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BBD6DBBC6BBA2400FC9AC7717806CC /* FIRUser_Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E5B8364586A2A6E01DB74AAD3FB24BCF /* common.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 8C0FA5E304669C11EC0A8B1EF7993130 /* common.upbdefs.h */; }; - E5B97CC92850848A7581E9785A726163 /* des.c in Sources */ = {isa = PBXBuildFile; fileRef = 2CB87611B5AFDB959DFD077808B4FF11 /* des.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - E5C2139A5F10FC506E29DE60451762A1 /* byte_buffer.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = B884A4CF7DCEF7FE0EE94E6A9BC01211 /* byte_buffer.h */; }; - E5E0891ABB1779C89EA52A010094AA37 /* hide_ptr.h in Headers */ = {isa = PBXBuildFile; fileRef = E78FBB22C6A320607961BB36F72F8943 /* hide_ptr.h */; }; - E5E7391F72A18AC28D3EB6654F24B920 /* blake2.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 73B6E3E6C51398A0AE3903EA6638EC19 /* blake2.h */; }; - E5E85DBCC5D93F0C4A17FEB607E5AF94 /* p224-64.c in Sources */ = {isa = PBXBuildFile; fileRef = 80FC628D1A20AB51A574B199CA15C5F9 /* p224-64.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - E5EA747B43CA8EBFDFE4D1C8BB1DC9C3 /* stats_data.h in Copy src/core/lib/debug Private Headers */ = {isa = PBXBuildFile; fileRef = 0769F7D0C203DBB52262FE517299C863 /* stats_data.h */; }; - E5F7F129A920E34E32D46DBB87B308C8 /* resource.upbdefs.h in Copy src/core/ext/upbdefs-generated/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = D93105487CA837E2B990AF42A5B20225 /* resource.upbdefs.h */; }; - E6046D1E436161F971D5955921D01220 /* byte_buffer_reader.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C4C48F5ECDAB450F34CAE2753C8EB7C /* byte_buffer_reader.h */; }; - E609ED14F0286804B5DA6157C6838668 /* metadata.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/metadata/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 4649E9244A05EE1F42822D58A3559E3F /* metadata.upbdefs.h */; }; - E6110B5E46D9CCAAF1695D09ED1BB591 /* FIRLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 6451A52ECE7630AB836DAF27E76313C5 /* FIRLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E62042A4B5AF32A33D5B09C4A41118B9 /* cordz_info.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B2B6E19BDB6AEC69A93C29DE098EB15 /* cordz_info.h */; }; - E63909FE2E5DC39590B03733619DA672 /* sockaddr_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 0AD5A08171A428E537C2520CD5F311E9 /* sockaddr_utils.h */; }; - E63ACB57BD5A284D3882D7458DCAFB61 /* collection_entry.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 9ABD1D68CD476691F884623FED2BDA1F /* collection_entry.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - E63E413B2BDA120754D7333D51BB34E4 /* format_request.h in Copy src/core/lib/http Private Headers */ = {isa = PBXBuildFile; fileRef = 39D20BFB3E98C05B1E42DEB6C4EF9DCA /* format_request.h */; }; - E64A15E79E254DE42A1B3A985594FD3A /* resource_name.upbdefs.h in Copy src/core/ext/upbdefs-generated/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = AF55C01887CED688C392979A7DD55F79 /* resource_name.upbdefs.h */; }; - E64EC12F2409E8C52B6EA95A117D15E5 /* rpc_method.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 018EBBDF9E92975681447908246114B0 /* rpc_method.h */; }; - E652183DCE72663EE2FF40A7543A11E5 /* resolve_address_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 35E8A32CE322A3E022C3DCB888208A0E /* resolve_address_posix.h */; }; - E65A29ED8891B3C8F55874176DB449D4 /* xds_http_rbac_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = B7F3FBB87D3642FC90C44EC28BAB7E2B /* xds_http_rbac_filter.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - E68294AC5B36B8728C446BB992AEAFE2 /* metrics_service.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 6CD1D59E8BA58964FE2EEF693368181B /* metrics_service.upb.h */; }; - E68C08AAC5BEA2A0F62AC485CA3A667F /* str_replace.cc in Sources */ = {isa = PBXBuildFile; fileRef = 31D48CC002303851B60BB531377CBFA3 /* str_replace.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - E694451DFE05A824E36F0126CC9FC055 /* validate.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E4BAFF6F02A834FB12A45458BEC9303 /* validate.upbdefs.h */; }; - E69EC6372D508547A8983454C60F4400 /* uri_parser.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A408115164A172F3148FAFFAF54D060 /* uri_parser.h */; }; - E6A5E15FC13D884329AE9A5C7199F0F0 /* resolver.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 4735E0CC0246CAAA6B6894E1FD0E31EA /* resolver.upb.h */; }; - E6A9843E8C1E5EC2DB523F5BD8E85427 /* iomgr_internal.cc in Sources */ = {isa = PBXBuildFile; fileRef = E123AB2665E2C7D268DF335C2398E74F /* iomgr_internal.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - E6AD68E3BA1048F255F692340EE47E8F /* p_x25519.c in Sources */ = {isa = PBXBuildFile; fileRef = E2C0C6DF4A520C0F64BD4AC9306CD774 /* p_x25519.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - E6C5A186911F907BB79BAEACD814BC41 /* sync_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = 0864CA5A01B9210E75D570FE804711DA /* sync_posix.h */; }; - E6E95FDAD4BBD0CD333D092F3D3AD68F /* query_listener_registration.cc in Sources */ = {isa = PBXBuildFile; fileRef = D103D4A583D94F3FBA8AC69437E520EB /* query_listener_registration.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - E6F3388DAEE1F114D13CA11B1D76F6EC /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 84B3B8485E6D720F6C7280236233C2EA /* internal.h */; }; - E6FA526BAA2EB10F2AEB012E5295BD9E /* iocp.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A3BBBFD49DE0B7746308EA84E91E66B /* iocp.h */; }; - E7005B8B668B8E0A16527C64FD414F05 /* float_conversion.h in Headers */ = {isa = PBXBuildFile; fileRef = 69B2911F143DE41B880832760F562B8C /* float_conversion.h */; }; - E701C62F6299384A7112D88A60BD6003 /* http_inputs.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 9191D05A0B38957452ECFA760D80CFFB /* http_inputs.upbdefs.h */; }; - E7127D8AA8B5765ECCE76FDE748D8EDE /* unicode_casefold.h in Copy third_party/re2/re2 Private Headers */ = {isa = PBXBuildFile; fileRef = 264F5D7A414D1E53BDB43A304C3533E0 /* unicode_casefold.h */; }; - E7299BBA4F97AE3925B737A79492F76C /* FIRHeartbeatLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E557669055631E55F1D205C3D0DF3AC /* FIRHeartbeatLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E733D9637CC44D907281CDC0B8FE435C /* policy_checks.h in Copy base Public Headers */ = {isa = PBXBuildFile; fileRef = E4EA0DD7FBC34C06DF9C1A78C15D1F42 /* policy_checks.h */; }; - E73DCB1F812A7136554FA5C7B4DC4389 /* FIRTransaction.mm in Sources */ = {isa = PBXBuildFile; fileRef = E72238331925B2894E5E076291078D32 /* FIRTransaction.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; - E74D62CBF989F5554478C6A908B85EF3 /* FIRCollectionReference.mm in Sources */ = {isa = PBXBuildFile; fileRef = E57B78FF38D81C12A8D4CA2D010E9C60 /* FIRCollectionReference.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; - E756BC5EDCCE3513DEE04EE89B7F0828 /* string_ref.cc in Sources */ = {isa = PBXBuildFile; fileRef = 276AE43E74DBB5BE91261C42A21F1DFC /* string_ref.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - E76A09E78B629F7010D1E8A78AC1F065 /* rls_config.upb.h in Copy src/core/ext/upb-generated/src/proto/grpc/lookup/v1 Private Headers */ = {isa = PBXBuildFile; fileRef = 52FCEA7EC52A43FDFEFFA090EF7DD356 /* rls_config.upb.h */; }; - E76F96C6B690C5F383645ECC85841400 /* memory_bundle_cache.cc in Sources */ = {isa = PBXBuildFile; fileRef = 707B6DD39E3C74F72905379366173522 /* memory_bundle_cache.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - E7756A42DF51ED1AD4AA5A9686B3CF67 /* strip.h in Headers */ = {isa = PBXBuildFile; fileRef = 9BAF57328174C52BC50DA3334EFEB052 /* strip.h */; }; - E775D302C9458E691358A91B3D764645 /* FIRComponentType.h in Headers */ = {isa = PBXBuildFile; fileRef = CF1D048681D6B7F138DEA4D2D58696BB /* FIRComponentType.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E775D5B948DF23C303E968AF471109F9 /* config_selector.h in Copy src/core/ext/filters/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = FEC2B325C6194885028E0EED01110199 /* config_selector.h */; }; - E77A428D3DF539B46D51D21D6850CAAF /* grpc_service.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = E154E67CEF3F02F7959805BE80309CA8 /* grpc_service.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - E77EF8D1DACA7961AFABF3B19C4FB5F9 /* ev_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = CD3FA117F44E65F131E37521CBBC654C /* ev_windows.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - E7867328FBBFD15903118BD9121C9B86 /* status.nanopb.cc in Sources */ = {isa = PBXBuildFile; fileRef = BD477BAF6842763B38752AB3BB2E3BD0 /* status.nanopb.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - E794371518DB6DA6E7FF17DB71A350BF /* matcher.upb.h in Copy src/core/ext/upb-generated/envoy/config/common/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 1286728D64CAAEFC4147B36CC6CC3CBE /* matcher.upb.h */; }; - E799A26C4E18397F2BE0F5FB2D5E399C /* string.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D37120699B40C0605266C112A938644 /* string.upbdefs.h */; }; - E7A1A0A07DFA0A71C7D5D5655D6972EE /* time.h in Headers */ = {isa = PBXBuildFile; fileRef = 78F591500BE24B5FBAFEE4930FD4FBEB /* time.h */; }; - E7A326DA2D2BAA5C1CAE32C0C1666452 /* env.h in Headers */ = {isa = PBXBuildFile; fileRef = 56271BC0CD53E6791C9B8E20E0CB73D5 /* env.h */; }; - E7A4747B81A1F79613173718CF8A7EFC /* tcp_client.h in Headers */ = {isa = PBXBuildFile; fileRef = B4D171BD9D1D0A833C72E50075FDFBE7 /* tcp_client.h */; }; - E7AFF50465DBEA63F756562DF561800A /* array_contains_any_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 62D6191BBB78AEFAFAA01747BA6C14EC /* array_contains_any_filter.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - E7C59C1F4E04627C059E10C22DA9B02B /* FIRGoogleAuthProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 3F3C3DCC41E388C7D914B5A81952B485 /* FIRGoogleAuthProvider.m */; }; - E7D017F7104B4D1DB24C6644AC370859 /* db_iter.h in Headers */ = {isa = PBXBuildFile; fileRef = 370DBE5D5E689BFE5ABA6481CC90C7FC /* db_iter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E7E1A081F5DCF6B099FC42D7CD907998 /* tcp_server_windows.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2DB6AC5960B68B54964C2F6CD5C6DB3C /* tcp_server_windows.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - E7ED43C016E400A8188DE76BCCC28377 /* cipher.c in Sources */ = {isa = PBXBuildFile; fileRef = B4443DE8B664B517115A57B3EEDCA162 /* cipher.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - E7F19616DC5E95C0DEC6BE17892774F7 /* polling_resolver.h in Copy src/core/ext/filters/client_channel/resolver Private Headers */ = {isa = PBXBuildFile; fileRef = D8412D9A52A20CC9C5F2A71CCDA54E26 /* polling_resolver.h */; }; - E7F79AD07E2702617A18278FC8A6D1E1 /* api_listener.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = E06AE2FEE43559ABACD13C304CE87102 /* api_listener.upb.h */; }; - E7FB09807AE9EB187A0DB5F1CD1E9C47 /* jni_utils.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1DC5F2082BBD8CF6A0D6619BCA254C8A /* jni_utils.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - E8031ADC3D2ED573007E7C5E050F6604 /* token_bucket.upb.h in Copy src/core/ext/upb-generated/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 4E44117A4EA0E55D6DB71C16533BB2B1 /* token_bucket.upb.h */; }; - E808CE116C0CCB3B477BBEA9FCAEBCE5 /* validation_errors.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 2D71D6CA4DF4585FBC6033687F37E0A1 /* validation_errors.h */; }; - E808FEAA921FA1E63780BEF3D5E1AE68 /* rbac_policy.cc in Sources */ = {isa = PBXBuildFile; fileRef = C844A8FD3CDB89A0FCE10DA129B9DF42 /* rbac_policy.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - E80AC344A8B3C7E6CCDBB73BF55B7A0A /* ratelimit_unit.upb.h in Copy src/core/ext/upb-generated/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 7D005FBDFE35091B437E2B7B95CE9A3A /* ratelimit_unit.upb.h */; }; - E80FD429CED6930B73FC63971123390E /* rbac.upb.h in Copy src/core/ext/upb-generated/envoy/config/rbac/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 486F932832F407A1FB39ED9FF85127C6 /* rbac.upb.h */; }; - E8178BB893DEB0CAEE6F950AFB05B076 /* grpc.h in Headers */ = {isa = PBXBuildFile; fileRef = 4FCD21CE47988D7EB1ED3DFB211733DB /* grpc.h */; }; - E829E81DBBC633660E7FAE682F706973 /* server_initializer.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A3B11ED631F1883AF4E338DCED55465 /* server_initializer.h */; }; - E82DB5977A545E2EBFF4122F2E082D0B /* skywalking.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 6360BDBD7F2CA4293AA9EDB99C551A82 /* skywalking.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - E82E6B812E27C1D0EC5CA37D91F3234A /* safestack.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 9D67DA9212FD03285EFB13587382309B /* safestack.h */; }; - E834265EC6F448B7931628A9435E525A /* node.upb.h in Copy src/core/ext/upb-generated/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 0FF30A4123BEAC65003F342CEC6FE777 /* node.upb.h */; }; - E849E226869673929465C2A3C43B9D71 /* listeners.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 0625752EBAB40908A94FC824D9F2769E /* listeners.upb.h */; }; - E84EF6A578F0E79AB284C4E97EE938BE /* resolver_result_parsing.h in Copy src/core/ext/filters/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = B62755F71D0CE6A48F9F7F4D18DFB853 /* resolver_result_parsing.h */; }; - E8607F6BE09DF7BBF6CA8C86C585FD70 /* message_compress.h in Copy src/core/lib/compression Private Headers */ = {isa = PBXBuildFile; fileRef = CBA1CC04E7A5513BC868E42A02EA993B /* message_compress.h */; }; - E8627BAE2D21B650493A56D7E4209A75 /* tap.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 57ECF721863A71EBB8B6DCE2669E9B47 /* tap.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - E8632F3B55DFDA05BF0E69A221CDA76C /* json_util.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D7BE3AD52FDA00820CF4EC9167EE0B1 /* json_util.h */; }; - E86A3854F7B8AD4D709A952E23EECA71 /* server_timestamp_util.cc in Sources */ = {isa = PBXBuildFile; fileRef = 33A8EC5E689E1E55CFC3895B326BF58C /* server_timestamp_util.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - E873D786744E9BB6625A0D77FE0ECCD7 /* proxy_mapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 67AD21C2EEA09C3B798CD0AD50610930 /* proxy_mapper.h */; }; - E880D4FA896BB5F7AEA3059CC5272F3E /* iocp.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1D1DFFCC43C65919ACB48F7BDCE21155 /* iocp.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - E887E6BD76FD0ED65DCA66722B1092FB /* rsa_impl.c in Sources */ = {isa = PBXBuildFile; fileRef = 3AD9DEC313F8CE490F8DDF1DC5DAC13C /* rsa_impl.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - E891AB9A754D53C3053DACD77158566A /* endpoint.upb.h in Copy src/core/ext/upb-generated/envoy/config/endpoint/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 23FF272E4931E112E178E695DA36C5AE /* endpoint.upb.h */; }; - E8930B7A87CBEE49C70DE81619645B36 /* iterator.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1762E9214AD1B7447408F9755D93BBD2 /* iterator.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - E89D6B4CD1E961F0410721633B74F0E7 /* empty.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 8EF9D8F91A4CF04751CDC0FBFA869B5E /* empty.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - E89FA599293E30DD1D6A23ADA0471A71 /* x509_def.c in Sources */ = {isa = PBXBuildFile; fileRef = A9C17134E8217124BEC73B1E02F85930 /* x509_def.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - E8AE5CD5941A6A1271031E1CD2E7A5C3 /* fast_type_id.h in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = FD0C11A97EC61A94C7FD02F030E88AAF /* fast_type_id.h */; }; - E8BA49E3A804142DCB71DECC4A852643 /* fault_injection_filter.h in Copy src/core/ext/filters/fault_injection Private Headers */ = {isa = PBXBuildFile; fileRef = F60EA2893EE7CECD46335B2320B8D9A7 /* fault_injection_filter.h */; }; - E8BBD6EB5103C427578426D94B2389EA /* coding.cc in Sources */ = {isa = PBXBuildFile; fileRef = 98A01535827CB8E74775B0CD2FC958EA /* coding.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - E8BC8BE34D41BCF758BC3E175A2BED04 /* service_config_call_data.h in Headers */ = {isa = PBXBuildFile; fileRef = 41E6988F82084782CE70EB824E643991 /* service_config_call_data.h */; }; - E8BCF4F20919985A45754D4683A1A043 /* chttp2_transport.h in Headers */ = {isa = PBXBuildFile; fileRef = 616A1B62B882A324C9750D053E055938 /* chttp2_transport.h */; }; - E8CFE4FC337A4D6A700A75882C691DCF /* FIREmailAuthProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 898DFFAAFAA23F5B36BA6539F4296190 /* FIREmailAuthProvider.h */; settings = {ATTRIBUTES = (Public, ); }; }; - E8F49CEB29DFF3E47B9F10F2BD259EF6 /* sync.h in Headers */ = {isa = PBXBuildFile; fileRef = C3762F9BDD426D3B4E59E305CE021E54 /* sync.h */; }; - E8F84845D50A652C70C3306CA2BC09A7 /* proxy_mapper.h in Copy src/core/lib/handshaker Private Headers */ = {isa = PBXBuildFile; fileRef = 67AD21C2EEA09C3B798CD0AD50610930 /* proxy_mapper.h */; }; - E8F88B13C0F5F454C888036935871523 /* opensslconf.h in Headers */ = {isa = PBXBuildFile; fileRef = 224A9F761113832ABA61DBE075A08E9B /* opensslconf.h */; }; - E919D25A6D493B6CAE9FA2C5CAC424F5 /* parse_address.h in Headers */ = {isa = PBXBuildFile; fileRef = 48CE49C03EE094E4D3931D0F06DC696A /* parse_address.h */; }; - E91D7B58855894DE838033903593865D /* pretty_printing.cc in Sources */ = {isa = PBXBuildFile; fileRef = F9D573A6E630D2491A3142ECAC60CAA8 /* pretty_printing.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - E927C5EC06B784AC51BE537453C8EAFA /* direct_mmap.h in Headers */ = {isa = PBXBuildFile; fileRef = 5BE3EC3AC7EE796933EB91AF442728B6 /* direct_mmap.h */; }; - E927DE4E487314C016E32AAEFA5A96D2 /* resolve_address.h in Headers */ = {isa = PBXBuildFile; fileRef = 385605BD39CAC22DBC84D88F0A42DC7A /* resolve_address.h */; }; - E93C3BAEBB29F9FD27E1ADB182D3D116 /* rbac.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = DAFABCCC619A2FE6F2AA91023D511AA8 /* rbac.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - E94F8C76907BF1941102FE1C0ECA5BE7 /* resource_name.upb.h in Copy src/core/ext/upb-generated/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 452AEF02AF512CBA16C87AC120FF3F63 /* resource_name.upb.h */; }; - E951757C1EBFF84C0A0AD70C51861398 /* string.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = EE41E25CB195BDDB101D4BD5C54AC937 /* string.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - E9807903E4B839180B2DD0E0FC69C7A0 /* internal.h in Copy crypto/fipsmodule/rand Private Headers */ = {isa = PBXBuildFile; fileRef = 19BE17B876B955A416B4318AAFD28C30 /* internal.h */; }; - E9B100A99BDF515BE4A0D69C280F595D /* fork.h in Headers */ = {isa = PBXBuildFile; fileRef = 48846572A8C465521BFF0F2194EB9D52 /* fork.h */; }; - E9C4E60C3A3C751B35CAC71F28BE89A9 /* bin_decoder.cc in Sources */ = {isa = PBXBuildFile; fileRef = B938F873E032713E035927F1F65B7A4B /* bin_decoder.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - E9C86DD307504ACDA4E0921ED510640A /* http_tracer.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = D36008E20FD2EAB10F54E1B33F078563 /* http_tracer.upbdefs.h */; }; - E9D11A8A70E10593199A99089DFAFD16 /* elf_mem_image.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D8B0177CF77D9CFF615706D581C270D /* elf_mem_image.h */; }; - E9D205760D818D3E780E0441FBB09286 /* hpack_encoder.cc in Sources */ = {isa = PBXBuildFile; fileRef = 158B1ADEF7E49D23FD2E89C2F4760C09 /* hpack_encoder.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - E9D60D727AA0AF6EE883AF3962C5BC03 /* time.h in Headers */ = {isa = PBXBuildFile; fileRef = 017315FA27290D2FE48E6C74F79FA697 /* time.h */; }; - EA13A1FC6BD29604B7357EE960DC6B22 /* FIRVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = 626ACD30A6B524FE908495C4DEFE5EE9 /* FIRVersion.h */; settings = {ATTRIBUTES = (Public, ); }; }; - EA210395F8AEF5C49B4B18E74F3D4A54 /* json_object_loader.h in Copy src/core/lib/json Private Headers */ = {isa = PBXBuildFile; fileRef = 1490659F1A1249DE305319C0673EFF3A /* json_object_loader.h */; }; - EA25E9251D21BE7DF6DED2165BAB6D4D /* alts_grpc_record_protocol_common.h in Copy src/core/tsi/alts/zero_copy_frame_protector Private Headers */ = {isa = PBXBuildFile; fileRef = C2AC0189DAAE21C15FC49FC9A749F448 /* alts_grpc_record_protocol_common.h */; }; - EA26B6FA6BA71E15D5E240DF21BED5DC /* stats_data.h in Headers */ = {isa = PBXBuildFile; fileRef = 0769F7D0C203DBB52262FE517299C863 /* stats_data.h */; }; - EA283049ACECBE5E3ECC8049D9AA15CD /* ssl3.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 4B1EC8407D1F38484594FAB9262A7590 /* ssl3.h */; }; - EA33D8B6E23EDDE1F0F076A63AD06CEE /* custom_tag.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 84A4F3F91B2C9D52ACC491186DE3BA54 /* custom_tag.upb.h */; }; - EA34D8EEB4AC2BDA42B318FE519FCCA1 /* cert.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = C8CCB78438FA15049C9F2CF805649C9D /* cert.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - EA51944FFCAE5973775D63B7F9D91503 /* xds_http_fault_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 032E3A2530C69F7CEE12F5F16AC3AB63 /* xds_http_fault_filter.h */; }; - EA546036870EE5E1190521A741A20F43 /* thd.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = DD10F7256FDD72CB5B38A204933FDEFE /* thd.h */; }; - EA5A59655E682D8DB285DC653A3DD1F4 /* seed_gen_exception.h in Copy random Public Headers */ = {isa = PBXBuildFile; fileRef = D2A15356298BCB0D3A917E36B5EA7370 /* seed_gen_exception.h */; }; - EA60163A34BE55BF0F39CB84FBA92A6A /* composite_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = D0F754575AF15CF21659E990E5AC6ED2 /* composite_credentials.h */; }; - EA6DBD8DBBF897220BEE066D9C8550CD /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B8D4E74E7B09B3F7B88716B6D21DF50C /* UIKit.framework */; }; - EA7132EEEB5B517BA0071AC8ECDA81B1 /* sockaddr_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = AA8EA63598435068637EB92513E25E03 /* sockaddr_posix.h */; }; - EA7420509DEB83ECA89E4355BA9E8767 /* init.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1B883E7E0EF6499C7B22143CE83590E5 /* init.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - EA77330D30BEF7C3DF2E5BE0C8B16828 /* async_stream.h in Headers */ = {isa = PBXBuildFile; fileRef = D7F6DEA3521EBB7A068040093C5F29AF /* async_stream.h */; }; - EA805F9F0E226598B0F93149161AE9AC /* status.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = BFE36402D3D7351454461BF466848B03 /* status.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - EA8F499B1752A750DDE256C26DE92836 /* proxy_protocol.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 0018130066E6249C128D55F895B2BB0B /* proxy_protocol.upbdefs.h */; }; - EAA95B411346A33D59C1A040414FCC39 /* string.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 23E140B7B8465179F585CC67FB7ACC7C /* string.upb.h */; }; - EADF036CF21B4A564D654EAE8D7F5EDC /* rbac.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/extensions/filters/http/rbac/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = C058B5A0A026F7AB7BB0210D1F40CE47 /* rbac.upbdefs.h */; }; - EB0058DCD63EA71EAD8EDFDCCD3663E8 /* channel_args_preconditioning.h in Headers */ = {isa = PBXBuildFile; fileRef = D3B31847D58BA8571768E446EC7B50C1 /* channel_args_preconditioning.h */; }; - EB0F0FAE4436B78B0E5FAF5799A16CF4 /* global_config_env.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 85C872B9D5139BA1DF0ED9F149B13434 /* global_config_env.h */; }; - EB0FB17505CF8DD79A453F3FF75EC9CE /* xds_channel_stack_modifier.h in Headers */ = {isa = PBXBuildFile; fileRef = 25B1C6BBD41D9BC7BE908D6162D33B62 /* xds_channel_stack_modifier.h */; }; - EB134ED85102A45AB78251E1E1640EA6 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = F9F21B0F979AA45826948010F270F3D9 /* internal.h */; }; - EB181DAEF9EBE26A6C9673253C439328 /* status.h in Headers */ = {isa = PBXBuildFile; fileRef = E04F87549BF341FC3D4B23B6D3AC9437 /* status.h */; }; - EB198944F22F8CC44A4D1A355E3EBF7B /* any.upb.h in Copy src/core/ext/upb-generated/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = B34D44E636CBAAD3043C612FCAB740C0 /* any.upb.h */; }; - EB1A3138CF04765AF82F6FE59B350060 /* status.h in Copy third_party/upb/upb Private Headers */ = {isa = PBXBuildFile; fileRef = DBDF4CEEAF4FED1108C9BF7202FFF23B /* status.h */; }; - EB1E6B25B073B147FC2E7E84DD66DF3B /* frame_goaway.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 266F84D62EEA081B815444F92DF36788 /* frame_goaway.h */; }; - EB248019B40F26C8C075A83C7F55D098 /* channel_idle_filter.h in Copy src/core/ext/filters/channel_idle Private Headers */ = {isa = PBXBuildFile; fileRef = DC2D13CDDD62CF7249C154B1530A01CC /* channel_idle_filter.h */; }; - EB3F6A89E52980AB5914E06731188C74 /* symbolize_darwin.inc in Headers */ = {isa = PBXBuildFile; fileRef = 680366A2B1EBCB97FC1D5185CB51269E /* symbolize_darwin.inc */; }; - EB4BD477D0A33EE7008884E4502EE3C8 /* tcp_connect_handshaker.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = FA2B94669A65E25D50A5496932688F75 /* tcp_connect_handshaker.h */; }; - EB543E686FD9B78D2F0028140D05C4D7 /* win_socket.h in Headers */ = {isa = PBXBuildFile; fileRef = B8B866A0F33B2456B473B88B799B2E76 /* win_socket.h */; }; - EB65CF5953009BB17BFC13A5CFCAA538 /* service_config_parser.h in Headers */ = {isa = PBXBuildFile; fileRef = 11B297C02EEA2400F5DEB2B561B9AD67 /* service_config_parser.h */; }; - EB6B50F1F46C4FF8C63D21DAE993B104 /* internal.h in Copy crypto/poly1305 Private Headers */ = {isa = PBXBuildFile; fileRef = CE8A826F9315D91424D47C1D36A58B48 /* internal.h */; }; - EB80D2F892C5EAED89E30746D0E0A528 /* FIRUserInfoImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = 220A18060F0A697A61A56E3A4227B82C /* FIRUserInfoImpl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EB866996DE680BE8D8908A6778ED1C79 /* algorithm.h in Copy algorithm Public Headers */ = {isa = PBXBuildFile; fileRef = 0E64171273CFB196DC76D354C951DE9B /* algorithm.h */; }; - EB884E2C373A5CA5B2AED28323633B86 /* base64.c in Sources */ = {isa = PBXBuildFile; fileRef = 0F7906BB830F523FC37A0883E75FF6EC /* base64.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - EB95A4B9CBDD93391A0A591F5E7A8CEB /* grpc_if_nametoindex.h in Headers */ = {isa = PBXBuildFile; fileRef = A4BA6300457AF16415E6C78C3FD82B33 /* grpc_if_nametoindex.h */; }; - EBACCFD72011A10FEC9814568C2A0B79 /* sockaddr_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = AD8C51E04512E3704FB6C134C9E96456 /* sockaddr_utils.h */; }; - EBB9F727378B421612806CA6D3DA668F /* cycleclock.h in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 70D7AA536DB260202B825C476BA152E2 /* cycleclock.h */; }; - EBBA955D680A539D9C6D1578706A2E0E /* certificate_provider_registry.h in Headers */ = {isa = PBXBuildFile; fileRef = 81D16BCC8091077027780C7A49CD622A /* certificate_provider_registry.h */; }; - EBBF484078C6F05BE859962A9C59019C /* semantic_version.upb.h in Copy src/core/ext/upb-generated/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 01B540E31F3BED592296B10164B3C452 /* semantic_version.upb.h */; }; - EBCACE8A7A842FAA338E5F5AEF8B2869 /* FIRDependency.h in Headers */ = {isa = PBXBuildFile; fileRef = B82B61B5B5BB3849530D7B7106749DE6 /* FIRDependency.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EBCE99015BE80622C2E099BBE4EDB869 /* route_components.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 7F13F276ABA51A14E301231E801422F5 /* route_components.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - EBD5C9E16F83B730E33C80312BA4A52A /* strerror.h in Copy base/internal Public Headers */ = {isa = PBXBuildFile; fileRef = D2E6D6AB981FCC021D7368A58683B79E /* strerror.h */; }; - EBF69B00041FC68490CAA511240831C7 /* FIRBundleUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D8EB38A995B5AF22AF854DE8AB8EA09 /* FIRBundleUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EBFDE872B84EE3E67C189034AD06924C /* table.h in Copy third_party/upb/upb/internal Private Headers */ = {isa = PBXBuildFile; fileRef = 082E49181F163988C9DB0E41034DCB96 /* table.h */; }; - EC0C779DB931C18E5096A5001C41A106 /* xds_client_grpc.cc in Sources */ = {isa = PBXBuildFile; fileRef = AD8CB2CD900CA1D9BC0BFDF9A44CD056 /* xds_client_grpc.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - EC1431F02C6DE39CFD1F5176B383E3AF /* FIRSecureTokenRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 75C150A708F4577360F6C6890C990D81 /* FIRSecureTokenRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EC19BB0264A1AB0BC1085A87C7F47ED6 /* channel_args_preconditioning.h in Headers */ = {isa = PBXBuildFile; fileRef = 74D7F480294415E5454C2A8DB654303B /* channel_args_preconditioning.h */; }; - EC35F8B72DFBF7752E4A7289EC31C26F /* sparse_array.h in Headers */ = {isa = PBXBuildFile; fileRef = AD20F6FD78E5B375E7410117E248CD3F /* sparse_array.h */; }; - EC4CC2D30BA4555A7F72C52673E0B4F4 /* scheduling_mode.h in Headers */ = {isa = PBXBuildFile; fileRef = 82ABCC9E75A060497AF35665C90ED606 /* scheduling_mode.h */; }; - EC5DAF492736D85112E3F67B1F9F85DC /* metadata.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 396D0E09EB10E85067B861A943D52CF3 /* metadata.upb.h */; }; - EC67ACF60B39892140F28B31E3DA2D4E /* json_token.h in Copy src/core/lib/security/credentials/jwt Private Headers */ = {isa = PBXBuildFile; fileRef = 4539744A379524A0BD27344ABCDCB411 /* json_token.h */; }; - EC7A0683CAC44CD276909C022B31D9E8 /* frame_handler.h in Copy src/core/tsi/alts/frame_protector Private Headers */ = {isa = PBXBuildFile; fileRef = 87AEB60D43C2547DBCCA459222582EA4 /* frame_handler.h */; }; - EC943F7F5432305F5BCAA698EBAC9666 /* server.cc in Sources */ = {isa = PBXBuildFile; fileRef = E3A8243385EB749CC0B9CB1922DB02FA /* server.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - EC9685BBD26BD6EDB95DF4F107E24826 /* skywalking.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = B30762529350C4D96A5AE1F90DBD9F1E /* skywalking.upbdefs.h */; }; - EC986E38476254DAEE53A936B8D29C38 /* metrics.upb.h in Copy src/core/ext/upb-generated/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 0C4B81820294A7FAEF53493E1D11D286 /* metrics.upb.h */; }; - EC9A2B3CFD07B86FC29FAFB5016CB94C /* authority.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C9174E0D172985BACA90A52616E8757 /* authority.upb.h */; }; - ECB23DB5DA045ED55790A3FA9D9572ED /* overload.upb.h in Copy src/core/ext/upb-generated/envoy/config/overload/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 994D9786F3C51FFA8FC76A3450E9A03D /* overload.upb.h */; }; - ECE673435DCD880914B5A6A3AB49A5AB /* struct.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = 4E70880A680300C2F8EBCFCB8AB11FB0 /* struct.upbdefs.h */; }; - ECEC938809F1F2F99F7A48EC55A3AA4F /* parsed_metadata.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 5683FA40D6FA0D9DCDB888F619339694 /* parsed_metadata.h */; }; - ECF4BDA7F32F90CEB0925088BA0F8B5C /* dynamic_ot.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 9D2A7B1D09398165CBDD927370EC0B9B /* dynamic_ot.upbdefs.h */; }; - ECFED9C9E3266D547B079753C7EE66A0 /* wire_reader_impl.h in Headers */ = {isa = PBXBuildFile; fileRef = FA63B277E7E03FF01AAF88D44D696294 /* wire_reader_impl.h */; }; - ED02D435812EC232CB68507FDECBA791 /* iomgr_fwd.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 1A5587DDED359B09371001E3ED4E1963 /* iomgr_fwd.h */; }; - ED09EA1C0C1CA12AA97987258D8FAAFF /* annotations.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = E6632D89048050D74B0DE298C73F5DC7 /* annotations.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - ED1270586AF87FF0BC2B4A8D0C7FCD64 /* cluster.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = F0D345DE53FF111656F06E1389977340 /* cluster.upbdefs.h */; }; - ED222EFFCDFB47CCB0A4ABB78207D53E /* json_util.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4C0882E0E8F34C6262DF39744272D550 /* json_util.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - ED2E7123F916C7E33869CA5AB2451A18 /* wakeup_fd_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = FFC439467DAD329D39932AEBD15B921D /* wakeup_fd_posix.h */; }; - ED4D7EEBB5EC5171F6E20947BD352F22 /* check_gcp_environment_linux.cc in Sources */ = {isa = PBXBuildFile; fileRef = 21DF6B46F05D1A34B5744F2AF9CD6C74 /* check_gcp_environment_linux.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - ED572E39B2FA21DC05048F83445E3BD8 /* asn1_compat.c in Sources */ = {isa = PBXBuildFile; fileRef = 9CC234F2439530D3E6ED871B8D6BB974 /* asn1_compat.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - ED6300639BD815E61894F4642F9A79B1 /* trace.h in Headers */ = {isa = PBXBuildFile; fileRef = 14AFFEA6D12735FB4196FAFB7E399C3F /* trace.h */; }; - ED649489E67586BAD28656F39FE7E538 /* promise_like.h in Copy src/core/lib/promise/detail Private Headers */ = {isa = PBXBuildFile; fileRef = 8B41C54125BEA274B0E44A102ECDED77 /* promise_like.h */; }; - ED7F2EBE4EAEBF8ACF20D8E090DE664E /* FIRGitHubAuthCredential.h in Headers */ = {isa = PBXBuildFile; fileRef = F4A63AF682DE80BF60A0D834A48A2708 /* FIRGitHubAuthCredential.h */; settings = {ATTRIBUTES = (Project, ); }; }; - ED89E27C442EE37F772A2487CD2035D7 /* pool.c in Sources */ = {isa = PBXBuildFile; fileRef = 28095245DA38E3692E1ECE20BEDEAD14 /* pool.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - ED992874330618D54C2174A7DCBA9519 /* udp_listener_config.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 7524712DFC385C720AF25C19ACF9EE9A /* udp_listener_config.upb.h */; }; - ED9EA0D29B51CA3CDE90D79D859782BD /* chttp2_server.h in Headers */ = {isa = PBXBuildFile; fileRef = C7A8029F35D8B8CC23D0DB3F3BD041D7 /* chttp2_server.h */; }; - EDA8A7D3ACA5A06C6ED488693339E073 /* versioning.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 5C9E1E1B59B83F436A47645E29F6E7A4 /* versioning.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - EDAA93C3564147A3996DB7428814BB6F /* sensitive.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = D4353FBFB268383CD6FB95EA116B08C2 /* sensitive.upbdefs.h */; }; - EDAD539E125307EB532036C4C6137585 /* order_by.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3EA24C0597378DB5F748AFBFCB7BD7BA /* order_by.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - EDB1EBAC81CCEAAE13164A7F3D95AC0B /* x509cset.c in Sources */ = {isa = PBXBuildFile; fileRef = FA8864B2E99CD5E757220C72A4F257FF /* x509cset.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - EDC4D4FD16E7CE80D0E152168DD665CF /* field_index.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5DAD5411E07B7D3355A5584C75F496CD /* field_index.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - EDC890DF614751A0C8DF83DEDB349158 /* statusor.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E84A027945F0807860C495DE2BE596A /* statusor.h */; }; - EDCDD6D7C7EDE639CE8F872745868E01 /* socket_factory_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5A71526266EF70CFF204476072747484 /* socket_factory_posix.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - EDD4FCA527862A4C02E6FD58DEABDDB0 /* FIRAppCheckTokenResultInterop.h in Headers */ = {isa = PBXBuildFile; fileRef = 39F82BB721AD6B6F79DD61E7260869A7 /* FIRAppCheckTokenResultInterop.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EDD9FD256A488F5DF3346B159675F7D3 /* db.h in Headers */ = {isa = PBXBuildFile; fileRef = F1C3373BAD109E46054FE53E56039892 /* db.h */; settings = {ATTRIBUTES = (Public, ); }; }; - EDDEFD97C6FB05762BA6EAEDB561C4A9 /* syntax.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = ACBD2765C696BE0C99C66D5005CD44E4 /* syntax.upbdefs.h */; }; - EDE7D23862C54C21D8279FAF2CBD7893 /* channel_init.h in Headers */ = {isa = PBXBuildFile; fileRef = 92F5AA7799549934A3FCF5022D40D663 /* channel_init.h */; }; - EDEA27BC0C0FAD4DCDFABF9D41E11617 /* pkcs12.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = F1F0E7D62B87E55F757D1D62E975CE27 /* pkcs12.h */; }; - EDF872424E4D2F7ABCA4C5A625E5272D /* binder.h in Headers */ = {isa = PBXBuildFile; fileRef = 5DB582511550650827F09433C9E85599 /* binder.h */; }; - EE0936EFF808A511B4B19F917F92831A /* ev_epoll1_linux.h in Headers */ = {isa = PBXBuildFile; fileRef = 3786B216292DD72574530A53CDE63061 /* ev_epoll1_linux.h */; }; - EE114DEB3505DC348F462C8A4E10248F /* field_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = C01E3EA51C64E66B87F386DB9AC715AD /* field_filter.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - EE237E0DF62B80AA90067F85A25B43C1 /* gethostname.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = B10C8DDDF1F26579129C69F16CD8DE3B /* gethostname.h */; }; - EE2A476DA42D3C8F9CE040E24185D69E /* tls_spiffe_validator_config.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 723F2246A09846A5CEF722162EAC2A3D /* tls_spiffe_validator_config.upbdefs.h */; }; - EE3A2A5952F6BC24FE8BAE9B6160176C /* ssl_x509.cc in Sources */ = {isa = PBXBuildFile; fileRef = D5F6CA74E75A4988C4A995833C2A659E /* ssl_x509.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - EE3D6EFB4489503A078EE3C0447A4FA4 /* FIRTwitterAuthCredential.m in Sources */ = {isa = PBXBuildFile; fileRef = 1BBC5EBCFA57BFB540973AC6EEA09DAF /* FIRTwitterAuthCredential.m */; }; - EE4A644D995DCAA22FBA08F9F58EFEE6 /* async_unary_call.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 38FC676B1E21DD852CB7072EF9FF9FFD /* async_unary_call.h */; }; - EE4E8C541042518CDBD862897921D8BA /* init_dump.upb.h in Copy src/core/ext/upb-generated/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 83BCBD8913368A4D7D627ABC388471BD /* init_dump.upb.h */; }; - EE4F752DF3846DD86B40ED3605D9DC0F /* quic_config.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 754314632A7CFF878DBED6427474B473 /* quic_config.upbdefs.h */; }; - EE6597FF0D3554E306106601D2AB8D66 /* xxhash.h in Headers */ = {isa = PBXBuildFile; fileRef = B5E71F87BD6147B0ACDFF286973E25B0 /* xxhash.h */; }; - EE677241615E9EA9ABED0EFC4CEC5825 /* low_level_hash.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7FDDA46BD60DD27D9F313950C23BF62C /* low_level_hash.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - EE7B9B4B734C08C09923972F8DBB5021 /* slice.h in Headers */ = {isa = PBXBuildFile; fileRef = 9D2EE1A9D111899F125AB479E38DBAF3 /* slice.h */; }; - EE9180D5EFFE2D03ED45812F1CD329DB /* xds_listener.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 12C217239A5100F16ED795FCC3090BC7 /* xds_listener.h */; }; - EEC063EE8535D591090A77437DC796A5 /* internal.h in Copy crypto/x509v3 Private Headers */ = {isa = PBXBuildFile; fileRef = B06D149729259497190264A5BEFF6EEF /* internal.h */; }; - EECA0644A1ED20B0B3DA2B115AA94CD0 /* tls_credentials.h in Copy src/core/lib/security/credentials/tls Private Headers */ = {isa = PBXBuildFile; fileRef = 1E09FC981BD4109864F3A1EFC649154C /* tls_credentials.h */; }; - EED4CA315737CB3C5B01461D3B3614F4 /* security.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 89B128B508C0308A2AF66EF3B994E941 /* security.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - EED5A87967D01F3707135B40D592D898 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6E336DC2534E1E69B7828F6012B874C6 /* Foundation.framework */; }; - EEDDB973328F07DB814738A3B5D72A0C /* event_service_config.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = A443B97D8CDBA2CEB758E38AB2A0E487 /* event_service_config.upb.h */; }; - EEE077C9F56A7CF61E5589A4B10EA769 /* token_bucket.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 7F8EEEB03170AF5301709D5C852CD4B6 /* token_bucket.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - EEF1299B0B648EC5FB13611D6C24FB4B /* FIRDocumentReference.mm in Sources */ = {isa = PBXBuildFile; fileRef = 49C61257B52713317DD0183844018D76 /* FIRDocumentReference.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; - EEF53CD50694A41D573FD0BD74E36CC9 /* grpc_if_nametoindex_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9B96D8CF164402BC55B7E1DD9CB7E797 /* grpc_if_nametoindex_posix.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - EEF7BFA3251EDCC8B3725B79211B3231 /* ssl_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = B5FD1CC94C881524E960128E42768BC7 /* ssl_credentials.h */; }; - EF07CA226EFBF40FB9ABA5BC801D68E7 /* service_config_parser.h in Headers */ = {isa = PBXBuildFile; fileRef = C508BED4A2017ED4D125467788FDB416 /* service_config_parser.h */; }; - EF15414B166A6F3F19EDF8D0C972C5F2 /* lrs.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E6B745239A77C69FAAE1E10D51FE138 /* lrs.upb.h */; }; - EF1F4795985185C46AAF226340B2DEED /* target.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6E26E47F3ED40EB9CB3E91909DC6B72A /* target.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - EF2223364D9D1D35C6450C85600B0F4B /* status_payload_printer.cc in Sources */ = {isa = PBXBuildFile; fileRef = DF0C326E369849C5A63D04E3186BC3AA /* status_payload_printer.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - EF2E1508A36B6EB9E9EB57128F13574B /* stream_map.h in Headers */ = {isa = PBXBuildFile; fileRef = 14CDDB904C6B91A2BBDFD2ACDC7957CF /* stream_map.h */; }; - EF34CE622022D4F1BCFA03FCEC186DDF /* port_def.inc in Headers */ = {isa = PBXBuildFile; fileRef = A7B503E57EA992EA2106B77A44C36332 /* port_def.inc */; }; - EF37A5B4B90174999AD5D330222D5099 /* grpc_ares_ev_driver.h in Copy src/core/ext/filters/client_channel/resolver/dns/c_ares Private Headers */ = {isa = PBXBuildFile; fileRef = BBC2242A329A3AA67E982773975AA260 /* grpc_ares_ev_driver.h */; }; - EF4DD461333DCF489071804B89E066CD /* FBLPromise+Then.m in Sources */ = {isa = PBXBuildFile; fileRef = E15B41845B38D1923F989BC14A2A7621 /* FBLPromise+Then.m */; }; - EF4E7A6EC4C9DE2EEB763211549886F4 /* transport_stream_receiver_impl.h in Copy src/core/ext/transport/binder/utils Private Headers */ = {isa = PBXBuildFile; fileRef = 2A91BF0679525A06A66682783F9DD8C5 /* transport_stream_receiver_impl.h */; }; - EF56F37BE7B3F54B3DBD241E87CF586A /* fake_resolver.h in Copy src/core/ext/filters/client_channel/resolver/fake Private Headers */ = {isa = PBXBuildFile; fileRef = 223C3024FDFE60D37016A63F6FC82BA5 /* fake_resolver.h */; }; - EF5921CCBEBA0B31BD09B65DD090B71F /* resource_locator.upb.h in Copy src/core/ext/upb-generated/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 458D7BD629B76E935D350A42D8DA7F51 /* resource_locator.upb.h */; }; - EF64B486946796CDB1DF33204AF58C1B /* endpoint_components.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 25D4892CDBD1534D500D0B2572174E58 /* endpoint_components.upb.h */; }; - EF6EE4617E1D2E63C92EE3673DE0AD2F /* latch.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = 33664FDD4141A7A76BA7C6B80E5B2234 /* latch.h */; }; - EF7F3A6D857BDB00DE3AE4A0B75C9DC9 /* transport_stream_receiver_impl.cc in Sources */ = {isa = PBXBuildFile; fileRef = D823691EBC3A2A72DFAA8EEE1089B7F8 /* transport_stream_receiver_impl.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - EF8225C66FFAA5005882550DD212B66D /* leveldb_opener.cc in Sources */ = {isa = PBXBuildFile; fileRef = 96BF7048883594722E611DF3F44CD639 /* leveldb_opener.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - EF8744050D2EDE355B96CE8DA5F60928 /* grpclb_client_stats.h in Copy src/core/ext/filters/client_channel/lb_policy/grpclb Private Headers */ = {isa = PBXBuildFile; fileRef = 39757624A0559A9432811637D57F253A /* grpclb_client_stats.h */; }; - EF98FD3B01CC60D6DF87043659B25A07 /* typed_struct.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 781A9EE810CA2662BE472692A5214E8B /* typed_struct.upb.h */; }; - EF9A89ECF83DC5AE6E807823042E39F8 /* FBLPromise+Wrap.h in Headers */ = {isa = PBXBuildFile; fileRef = DF3CDC560364BA1846587C4052FEC4DB /* FBLPromise+Wrap.h */; settings = {ATTRIBUTES = (Public, ); }; }; - EFD0380407B2B3D00CB632E5CD07EBC4 /* base.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = A7A414A53DBA93BAFFAD52C8AB702783 /* base.upbdefs.h */; }; - EFE4565D507C53451D2A1A1FDFB6FAF7 /* check_gcp_environment_no_op.cc in Sources */ = {isa = PBXBuildFile; fileRef = A66FB766538D394BF0D9C396A335AB64 /* check_gcp_environment_no_op.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - EFF11FA7920B88E14AC8C7B994AD8EA9 /* accesslog.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F9143CDE90519AB42C652F71A040D17 /* accesslog.upb.h */; }; - EFF8200AE6C3503099ECE6E7B7152A14 /* handshake.cc in Sources */ = {isa = PBXBuildFile; fileRef = A4F14108F3DADF1F966739BDA996AE37 /* handshake.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - F009B3EBC06C72C8F1E145054E5162C0 /* matcher.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = BA255B3C833C4C12426FB784CBE2F7E4 /* matcher.upb.h */; }; - F020F38CB5CCD07FAF56CCF5D5033908 /* low_level_scheduling.h in Headers */ = {isa = PBXBuildFile; fileRef = D4F654FCE15099B757465EE57D6A5D89 /* low_level_scheduling.h */; }; - F02E0A5181216F3C3F936D81AB55B251 /* atm_gcc_atomic.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 720D29BAF8E0927620853047DC8314BC /* atm_gcc_atomic.h */; }; - F039D7A144D4E487A4BCC13AB937F471 /* handshake_server.cc in Sources */ = {isa = PBXBuildFile; fileRef = BD96873BC8C577FB6326156990E0FB40 /* handshake_server.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - F050DE574091C69E78B9AED29D91D2DA /* auth_metadata_processor.h in Copy security Public Headers */ = {isa = PBXBuildFile; fileRef = 0548729B5398A6BB1298D4D7D8C8B645 /* auth_metadata_processor.h */; }; - F057F9A6558E27F455520F70EAB92477 /* config_source.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 3FBBF7AD25C40865DB0BB85D9D404A87 /* config_source.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - F05B4280835E87A31771DD12EB1DB217 /* def.h in Headers */ = {isa = PBXBuildFile; fileRef = CD8AC6E77275190A6EAAD6352C9DEF39 /* def.h */; }; - F06801CE06965CEE3B5D68C0CA2932FF /* sorted_pack.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 951C01D89D181CE3D71436E82A8CF70A /* sorted_pack.h */; }; - F073B63791E4557C1DF43D5FF3E3284F /* ring_hash.h in Copy src/core/ext/filters/client_channel/lb_policy/ring_hash Private Headers */ = {isa = PBXBuildFile; fileRef = 8B1D8FB1EDBCEA242BE829963D723BA4 /* ring_hash.h */; }; - F073F43D8579BB6A3893C06078D5BC55 /* wide_multiply.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E19542F1435FD16914CCB6487A661A8 /* wide_multiply.h */; }; - F07D2C31E95DE4BA771138FF4626860B /* charconv_parse.h in Copy strings/internal Public Headers */ = {isa = PBXBuildFile; fileRef = F0FF2C5B4810C16E40C17E03FD13DDF4 /* charconv_parse.h */; }; - F09CEF9F08926656B4AFDC1099A18E48 /* FIRPhoneMultiFactorAssertion+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 9571507A0A70212CB01CAE5B0A5B4279 /* FIRPhoneMultiFactorAssertion+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F0B579901FAC294132378473FCE3B541 /* channel.h in Headers */ = {isa = PBXBuildFile; fileRef = 913F64102EF1A9950DC5DFE664C3DDCB /* channel.h */; }; - F0BECE973814E3C7CC52C4DB63A440E5 /* channel_stack.h in Copy src/core/lib/channel Private Headers */ = {isa = PBXBuildFile; fileRef = 07F1FD0255609A03C3535619080FBCA5 /* channel_stack.h */; }; - F0C20A230559F38DE3281282D217FB59 /* repair.cc in Sources */ = {isa = PBXBuildFile; fileRef = 53CCBA6B8BCBCA8BD2A8F39C33DB28FC /* repair.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - F0C628B0973168878AF212EDF05AB7A3 /* xds_cluster_resolver.cc in Sources */ = {isa = PBXBuildFile; fileRef = 44F1F0CADCF2BF04F8634250A6AA78E3 /* xds_cluster_resolver.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - F0D3F4EBBB181D88CE3271E13220DE42 /* socket_notifier.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E6F78950A5D6889537FB4BAA5BC3AF8 /* socket_notifier.h */; }; - F0E40BB277970818422FBD9D8F1100FC /* fault_injection_filter.h in Copy src/core/ext/filters/fault_injection Private Headers */ = {isa = PBXBuildFile; fileRef = B5B313452E889490C09C09C639540230 /* fault_injection_filter.h */; }; - F0E84B81B6FC6B530851B33AF259F491 /* sorted_pack.h in Headers */ = {isa = PBXBuildFile; fileRef = 951C01D89D181CE3D71436E82A8CF70A /* sorted_pack.h */; }; - F0ED108AE367096290141C0F7EEFECCF /* tls_spiffe_validator_config.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 9C1FCF44CE02049DA4E05BE98238F4CA /* tls_spiffe_validator_config.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - F0FB9C369AE6BB7423AA418F5348F39A /* const_init.h in Headers */ = {isa = PBXBuildFile; fileRef = BBE3B451B22C221428555FAED52DB364 /* const_init.h */; }; - F121A3A52426BC41CF67083D87192D18 /* ecdh.c in Sources */ = {isa = PBXBuildFile; fileRef = D84AD88CB0289652AD0AB135D7A162F9 /* ecdh.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - F12C737562366B1240AD5FB02DCE25FA /* socket_option.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 704E4963623394BFDD9FE2AD3C0748B0 /* socket_option.upb.h */; }; - F12CC894C61A2056D9407FAF7168167A /* in_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = AE268BBE40AA9437AC68B760DA236531 /* in_filter.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - F1333F2DA0EE31FB794F686DD9309081 /* xds_resource_type_impl.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E64860B290C852337A2A5932B52373D /* xds_resource_type_impl.h */; }; - F14A330CD14394CFF1CF051DC1032520 /* metadata.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/metadata/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = AB0A1508E260C87F9964408175904AE3 /* metadata.upbdefs.h */; }; - F14DD8167FC8899F06AC6730BAEE76D1 /* ads.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 83068067410F14D3A6489802C77D7CDA /* ads.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - F157DBBA1160A053009DEAE43BA49A2C /* mutex.h in Headers */ = {isa = PBXBuildFile; fileRef = 31008F3EF87979E7EAA163916EF64D83 /* mutex.h */; }; - F18F6031DDB35548FB1F1DADB441CA31 /* ecdh_extra.c in Sources */ = {isa = PBXBuildFile; fileRef = 29609538FB95AE462553AC0324A5BFDF /* ecdh_extra.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - F19C8DBC0CD7534C80A0733E67586BDB /* completion_queue.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 0B06CEBE0793FBE33C4712A6E92EBB8A /* completion_queue.h */; }; - F1A17BA09C86E68331C1CD26C616C7A0 /* backoff.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 03E74713156FDAC4C957ECED36CEDA22 /* backoff.upbdefs.h */; }; - F1ADCFD83FC86161AB451BD001D1BACA /* certs.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 9C61D580F166A5661820CB428886BA2E /* certs.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - F1EDA5512AF4C994F3DDEF79C5DDCAA1 /* hash.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6DA096DAFCC73206B78CF59627AA8E8B /* hash.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - F1F91148F85913E5461D2C80E438F0E5 /* FIRGameCenterAuthProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 5918C26FF0F929718A43FAFED301963D /* FIRGameCenterAuthProvider.h */; settings = {ATTRIBUTES = (Public, ); }; }; - F1FB43EDCDC1C18D127040E47A96445D /* versioning.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 43AC3D2DEF5D82E0D4EC4BB0CEE6E359 /* versioning.upb.h */; }; - F20067B2BFA65BD5B5E7116F51C9B67F /* datadog.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 531FF5A0013E66803F262C86EC4453E3 /* datadog.upb.h */; }; - F210B6A4E20A613E10BD3436B6DBE3C7 /* arena_promise.h in Headers */ = {isa = PBXBuildFile; fileRef = 287D082E25B9600B7A06EDE1A3F80F43 /* arena_promise.h */; }; - F214B98908945B06DCEA47DF87DA9441 /* status_util.h in Copy src/core/lib/channel Private Headers */ = {isa = PBXBuildFile; fileRef = 7F15E1B830E7FD883854BD8E644F068D /* status_util.h */; }; - F22015F0387221CD08E70A59F41F715B /* unique_type_name.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 921C872891295C9EB31BF8C5D51C590E /* unique_type_name.h */; }; - F2322ECCEE517F6B5EDE5037894F8EC6 /* router.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 8903038F2FAA6BA24AACB58C6F64F414 /* router.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - F23C61A16CA75408E778A4AAA2966D00 /* tsi_error.h in Headers */ = {isa = PBXBuildFile; fileRef = BEF81379C1125C914DABE47F631A3E5B /* tsi_error.h */; }; - F240ACC7B96095A5B5A0E4317C69CE0D /* async_unary_call.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = 6F9D5565D9E7D0602C4B952F6902ED55 /* async_unary_call.h */; }; - F24C199979A33DDDA0A5B4AE4B63CE2F /* rbac.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = F18117D997AF0DA0C76E685ABB0E8F71 /* rbac.upbdefs.h */; }; - F24E7E5F4C85B5984F6D8F0FD8E455E1 /* global_config_env.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6018B45D1FDEE584DBB7B4695D48503B /* global_config_env.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - F24F99A6301FC9AD93DC3B8F493E39C6 /* FirebaseAppCheckInterop-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A6DEB607A098732838AD3D974372E75 /* FirebaseAppCheckInterop-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - F2538B0FC75C1FCC8E4199E5E9763491 /* authority.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = A92A4185253E91A5A3AB0084AC4C601D /* authority.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - F253D31EC837099C48E24591E3BB8659 /* token_bucket.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E44117A4EA0E55D6DB71C16533BB2B1 /* token_bucket.upb.h */; }; - F25EEDE328F5F05452509C477CCA5CA4 /* FIRVerifyAssertionResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = BA784F5B6D197C423C72E88568D5C783 /* FIRVerifyAssertionResponse.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F2649EEBD070739FD884A40CB5F150C4 /* FIRAuthCredential.m in Sources */ = {isa = PBXBuildFile; fileRef = 117CF7A8A5A4D83B4850FC64E8DE1F8E /* FIRAuthCredential.m */; }; - F267488D63EB68648B122630C7DB18E2 /* pid_controller.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = B121D70EF92B043A1A1584C579548A52 /* pid_controller.h */; }; - F273D42D9CFA493AC1001065C3B1EB4E /* datadog.upb.h in Copy src/core/ext/upb-generated/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 531FF5A0013E66803F262C86EC4453E3 /* datadog.upb.h */; }; - F27F7B918F0C345B82B4246BD96AF496 /* json_reader.cc in Sources */ = {isa = PBXBuildFile; fileRef = EDC1CF15856C34BBF9D66747AF301D59 /* json_reader.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - F289AD51036FAD12CB4C89D03A7538F3 /* char_map.h in Headers */ = {isa = PBXBuildFile; fileRef = 5429BD3A57E4435D54B5E57F3721F8FC /* char_map.h */; }; - F29067E7E96A647321F9D3A3A03E5C68 /* oauth2_credentials.h in Copy src/core/lib/security/credentials/oauth2 Private Headers */ = {isa = PBXBuildFile; fileRef = 9CD77B11F6F6E0D6D6FDD5D323643BBA /* oauth2_credentials.h */; }; - F292EC6572CC2ABEA31CAA679C496A2D /* interceptor.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = CE191F7288D78851159F6BF80E9E9437 /* interceptor.h */; }; - F2B96D5BF52A985DD2EBD200D829F90A /* engine.h in Headers */ = {isa = PBXBuildFile; fileRef = 749F0A1D30E33E0E339F5E0FAE846D63 /* engine.h */; }; - F2BDEFEDAB4C6CF3530CB6786D81C195 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 4560AC8C4A0FBBD9C575F8DBE37D1948 /* internal.h */; }; - F2C5E906101B1FFEA9BBF720FC51F9F0 /* alts_grpc_integrity_only_record_protocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B902B5BE988BB8142472BFF9824BC4E /* alts_grpc_integrity_only_record_protocol.h */; }; - F2C7A81C7B7B63E8858666B2A1B2B3DC /* BoringSSL-GRPC-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = FAB1C3A42E8EADD46AC7451600CD2921 /* BoringSSL-GRPC-dummy.m */; }; - F2CE37D871D2BFEEDD1DD72594A430AD /* base.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = EACCFF242A450B2548A30BB8C80F76B5 /* base.upb.h */; }; - F2D6C4A5FFFBA2D57B1054CB64058FE7 /* FIRVerifyPasswordRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 3EAB3FF108AC6E40D1CC890D330257AD /* FIRVerifyPasswordRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F2DF3C746C910166D46BE1E5B6683504 /* memory.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 05BF01215F209396550559B62C9520CF /* memory.upbdefs.h */; }; - F2E5F73CB39894FC1477AF4B2FB72BFE /* string_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 75DEE7F292D417CB70BD489E34DF47AB /* string_posix.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - F2FDF463636F55967807EEB2F13A76E8 /* typed_struct.upbdefs.h in Copy src/core/ext/upbdefs-generated/xds/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = A0E95C733269FFF7CEFEAC57EE5F5AEA /* typed_struct.upbdefs.h */; }; - F2FEB5A461759FE36E0EE8F474FEA8D5 /* mix.h in Headers */ = {isa = PBXBuildFile; fileRef = 1CB9C48F627F540C93D3E9BB0D040949 /* mix.h */; }; - F3075B73F463466F316A8E4AFBAE4CFC /* filename.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4015CC6C7A2657E7A77D1BB4DAE345C5 /* filename.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - F319F788126392E954AC9DD64BCCBFF9 /* intra_activity_waiter.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = 2B8EE286B52565E3BF9E6AE3C75897CA /* intra_activity_waiter.h */; }; - F32037FCB1CB5E81E67871D2799FD151 /* endian.h in Headers */ = {isa = PBXBuildFile; fileRef = B0B663A73EA230116BB0CC33BEB1E461 /* endian.h */; }; - F3217F90E7113BBA62363D0705B70642 /* server_credentials.h in Copy security Public Headers */ = {isa = PBXBuildFile; fileRef = B71AFCFCF16FCD25AEA7F4DF265E25BB /* server_credentials.h */; }; - F322D97097A0825F42A332A77404C337 /* path_transformation.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 07420C5C2EEECDCB1364153BFAA66BF1 /* path_transformation.upbdefs.h */; }; - F325AAD047661153353F515C6891C670 /* sleep.cc in Sources */ = {isa = PBXBuildFile; fileRef = CDBE03FFDC9817DB13EB9E39AF096473 /* sleep.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - F33085959CE70B33008C0526917C2EE4 /* server_info.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = DBB7EABB52708DCCDE325832D19610EF /* server_info.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - F3386C43469BB2DF06F8CCA413169173 /* poller.h in Headers */ = {isa = PBXBuildFile; fileRef = 8FE410580CDA5934CFB1CEA886F1F482 /* poller.h */; }; - F33A86BDCFA6131FD039D79074111E2C /* ev_apple.h in Headers */ = {isa = PBXBuildFile; fileRef = B1242E93600EBBBD8A2FBA00530A9563 /* ev_apple.h */; }; - F34433AE97A5F803638A939F0ED795AF /* FIRAuthSerialTaskQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = E390410347C7F06E53C6A5808A3EB951 /* FIRAuthSerialTaskQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F350D5D18C203001418A87FA8BCC9560 /* posix_engine.h in Headers */ = {isa = PBXBuildFile; fileRef = 1BD45741D4ACCC04949E6770DC9B15CC /* posix_engine.h */; }; - F35496EE51DB875AC013230F4B3E3A59 /* client_callback.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = 037BA24CC125A5F3EC651AE71CFFFDFE /* client_callback.h */; }; - F35CA4B1FCA02D5D43D72A2FB664E660 /* aes.h in Headers */ = {isa = PBXBuildFile; fileRef = 244E092A553497D1F248B5FB13893A07 /* aes.h */; }; - F362B4129E4B66CE10E4BF1293E2C757 /* GULMutableDictionary.h in Headers */ = {isa = PBXBuildFile; fileRef = 7CFE2BA094AD9AE8F183EBAD632EB33F /* GULMutableDictionary.h */; settings = {ATTRIBUTES = (Public, ); }; }; - F36AFCBC0FAEEDDA139D948EF69971CC /* census.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = CB5D0091CA8CB95E45FA1736CBB3231C /* census.h */; }; - F370F4040BE39C72EC015DD96D8B6F5B /* alts_security_connector.h in Copy src/core/lib/security/security_connector/alts Private Headers */ = {isa = PBXBuildFile; fileRef = 424D6FA6873DFC0C8CEC698D71B70784 /* alts_security_connector.h */; }; - F3783D900F39D3C69170A77E195F25E0 /* endpoint_cfstream.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3F947FC7348DA5365E8CE84F1516CEE2 /* endpoint_cfstream.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - F3995DBAE28BB1A5CF9B37D6827971D6 /* cord_analysis.cc in Sources */ = {isa = PBXBuildFile; fileRef = 187C1A3E5C4CABDD233B58E6DDFC24B6 /* cord_analysis.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - F39B9EC475C4BC221464E8B3ED64AF9B /* route.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/route/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = B394F632311E2F073055B60834F021DA /* route.upbdefs.h */; }; - F39F9BCB10247EEF0D6DFC416DDACC5C /* FIRSnapshotMetadata.h in Headers */ = {isa = PBXBuildFile; fileRef = E91FA1D609BEFDB36028576F949337C0 /* FIRSnapshotMetadata.h */; settings = {ATTRIBUTES = (Public, ); }; }; - F3B30C4122085293E44C36DF6FB33ED7 /* cordz_update_tracker.h in Copy strings/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 2CD0F3AEDFF9D0F52F0CD48386F44BF2 /* cordz_update_tracker.h */; }; - F3BA380FDEC642DB13D88C1CC9844C3C /* port_def.inc in Copy third_party/upb/upb Private Headers */ = {isa = PBXBuildFile; fileRef = A7B503E57EA992EA2106B77A44C36332 /* port_def.inc */; }; - F3BCD91999D9296EA9B529FA37AD741D /* channelz.h in Headers */ = {isa = PBXBuildFile; fileRef = 88689FC16461B95CAEEAE8D66E3305B3 /* channelz.h */; }; - F3C1370917B6D4278B05F6B9AED76AA6 /* status.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 8E4A432438E0A11F90BE2B08951B2885 /* status.h */; }; - F3C6E4532316B621209C00F5275F1D93 /* channel_argument_option.h in Headers */ = {isa = PBXBuildFile; fileRef = 7BB6274DCD40164FB9BE46A6BB87D3DD /* channel_argument_option.h */; }; - F3D05A4E6DD1B048A01D46D6CC10D326 /* message_compress_filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 1ECDEDF4C82FCA27BEA956A79DF33F9C /* message_compress_filter.h */; }; - F3D939A86D16E15960B0B58CB1693090 /* path.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 2BC15D15FC3EEA275223D5A6A2D10AD3 /* path.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - F3E91EA737D318F6496EF7778C0F11B3 /* resolved_address.h in Headers */ = {isa = PBXBuildFile; fileRef = 352F9E41B868B9B610A5B0D14B6A34F5 /* resolved_address.h */; }; - F3FA60E760B7E2BB47DCDFFCA7FEA02D /* config_dump.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 444BE1385FA3DEC4EFDA000A2A73B075 /* config_dump.upbdefs.h */; }; - F404186F33270B81874A0C32494A65A1 /* single_set_ptr.h in Headers */ = {isa = PBXBuildFile; fileRef = C2EE68D496B77A1EA9DFF0475B27D8AF /* single_set_ptr.h */; }; - F40B137661AC50C10C69763AE534DD65 /* httpcli_ssl_credentials.h in Copy src/core/lib/http Private Headers */ = {isa = PBXBuildFile; fileRef = F4CE3853A857EFCBD5352B9F289DD353 /* httpcli_ssl_credentials.h */; }; - F40ECC9974B57CEBEC23DC5257DB87FF /* decode_huff.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 7A67F4ADED1D8EAE12E545FF2135B2CA /* decode_huff.h */; }; - F4113B60B9141E1121C75C7CEEE474E7 /* sha.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 2B9712CF6CEEB8C86B40E7AC5BA07E98 /* sha.h */; }; - F4281113A2F77D87219129ABF58DF292 /* FIRMultiFactorSession.m in Sources */ = {isa = PBXBuildFile; fileRef = 80DB711C83A796318C346A1EF369475C /* FIRMultiFactorSession.m */; }; - F4358B98BC5FAE67D40A06FAA0F03530 /* thread_pool.h in Copy src/core/lib/event_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 8925B06C32C81CBDA5A5468F78CE70B4 /* thread_pool.h */; }; - F437FEB00C5CA07EBA3A1B4D709E2E68 /* version_set.cc in Sources */ = {isa = PBXBuildFile; fileRef = F512B566E0C061E1004C6ADE966570FA /* version_set.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - F43C44996AC360F6EF2E324A4560BC01 /* grpclb.h in Headers */ = {isa = PBXBuildFile; fileRef = 19BFDA34A5393E1F5CE1D6E761BAA658 /* grpclb.h */; }; - F46FB6A6697D3AF8853DD2B11F2A42A1 /* raw_hash_map.h in Headers */ = {isa = PBXBuildFile; fileRef = EA5EB5A0AE83C9AE2D6544B2799AB549 /* raw_hash_map.h */; }; - F472472D6482A5F8A33ADBE942F1EDDD /* FIRGeoPoint.h in Headers */ = {isa = PBXBuildFile; fileRef = B2BA2C9E068D68F333C7EF077F295F39 /* FIRGeoPoint.h */; settings = {ATTRIBUTES = (Public, ); }; }; - F475A28863398C7A4F4F92DEC8A379DA /* sockaddr.h in Headers */ = {isa = PBXBuildFile; fileRef = 30F5F23419385F4B50AFEF1B5CA651E7 /* sockaddr.h */; }; - F48EB74EA0F9D67999CC3E4F525FA8AA /* async_unary_call.h in Headers */ = {isa = PBXBuildFile; fileRef = 38FC676B1E21DD852CB7072EF9FF9FFD /* async_unary_call.h */; }; - F498A771BF7685AFFFD924C3877A3554 /* child_policy_handler.h in Headers */ = {isa = PBXBuildFile; fileRef = C9C29D0F085F85528A81E6A3BBD8D797 /* child_policy_handler.h */; }; - F4A50B5C3451E6C0286EE7FBA95BE252 /* deprecation.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/annotations Private Headers */ = {isa = PBXBuildFile; fileRef = 677B40C1A4115D44A0302A4F88C3C27E /* deprecation.upbdefs.h */; }; - F4D005FBBE07F9C9901A4D137C353545 /* metadata_batch.h in Copy src/core/lib/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 24C06396F64238BBD1E2DC57621EA8F2 /* metadata_batch.h */; }; - F4F2EA476E27B7B81D2834C1B98D1140 /* resource_name.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 1DA46895756E69F3B9F46764AA039733 /* resource_name.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - F4F4B8392EA680C455B8DA9C3136C38A /* slice.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F30BB17CF6C392F9DF995C4CBE71678 /* slice.h */; }; - F51A1ED20534B5F052F993FF73E0CB92 /* security_connector.h in Headers */ = {isa = PBXBuildFile; fileRef = CF8D0C569836EEB33BF1DE9A53489B2B /* security_connector.h */; }; - F5238DFD4CDEF75B31E8E5C86E21E0EE /* rsaz_exp.h in Headers */ = {isa = PBXBuildFile; fileRef = 20F4519D6C16A124AF79C1199D42EEFB /* rsaz_exp.h */; }; - F5241850E187486C86DC2F2BE91FC83F /* charconv.h in Headers */ = {isa = PBXBuildFile; fileRef = 130B2FB7210B5C6ECB851A60F7B1E91E /* charconv.h */; }; - F535E85FB755CEEF19F3D45E3BDA4EF5 /* lb_policy_factory.h in Headers */ = {isa = PBXBuildFile; fileRef = 27914A60F0F19583118D50119F0B0938 /* lb_policy_factory.h */; }; - F536AC23479B2226E5EB86BDD29702D7 /* not_in_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 209A6D3E47565683A3F872AF130430CE /* not_in_filter.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - F54D372051F05D628AF1FF2FFFA70A60 /* ctr.c in Sources */ = {isa = PBXBuildFile; fileRef = FACBC4367B030FE5B391590A0E6B9346 /* ctr.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - F55F370F32F8DAF017FA262F51D91193 /* config_dump_shared.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 2BDD080ABA5EC111966827D6C30CE44F /* config_dump_shared.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - F57904A68E84A1CCCC4EE4BFA50D0988 /* p_dsa_asn1.c in Sources */ = {isa = PBXBuildFile; fileRef = 1FC348A7F26B3A78CD3EDE67ED7469AE /* p_dsa_asn1.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - F58DD9D5763E43F496D56670289D6D4F /* server_config_selector.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2881965F7068136F58F91B450AA62361 /* server_config_selector.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - F58F4B29F57BCD42BF7AB0101DFE19A7 /* hrss.c in Sources */ = {isa = PBXBuildFile; fileRef = 4BEA3C12F6D38D3478C10DD89046722F /* hrss.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - F591C12DD334B71E7ADBFDAF4E8BB95E /* trust_token.h in Headers */ = {isa = PBXBuildFile; fileRef = 139AF6D02A92BA34E5F403A7A92B5E45 /* trust_token.h */; }; - F5935C1713EDE5795F8709F640DD791A /* srtp.h in Headers */ = {isa = PBXBuildFile; fileRef = 23DC30A6F13758839F0A7B225B6E34BD /* srtp.h */; }; - F5A1C4D614AA3ED88C36F9A2D459A6B1 /* credentials.h in Copy src/core/lib/security/credentials Private Headers */ = {isa = PBXBuildFile; fileRef = 7431FBBE1490F4C247C92516BD41EB6F /* credentials.h */; }; - F5BE733B8685A85C8884AD73EE8F7E4D /* time_zone_libc.h in Headers */ = {isa = PBXBuildFile; fileRef = ACD7B53A86A9AED4476EEF2050FD6B2A /* time_zone_libc.h */; }; - F5CF499967153E3DBE2FCDCE3F43BD64 /* pkcs7_x509.c in Sources */ = {isa = PBXBuildFile; fileRef = 02F30FDA0B8D7B6B39C2D22885B93509 /* pkcs7_x509.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - F5CF9FFA989565FD4B327D96D7AE18B8 /* string_ref.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = 0C07D8003D83CF55A7B8F310F65ED095 /* string_ref.h */; }; - F5DC1AF617C07AA901D8381CAD247636 /* substitution_format_string.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 12CD8EE7E95D665870239C22F413E917 /* substitution_format_string.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - F5E05AC124C0E9B638BE9E9C896AA19D /* proto_buffer_writer.h in Headers */ = {isa = PBXBuildFile; fileRef = DB2D8A904EBAB17AAA0F1E6518918E67 /* proto_buffer_writer.h */; }; - F5E069822152A02DB7E7A69BCB1BAFED /* channel_filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8C6A1F7BA835D53098452869706572F8 /* channel_filter.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - F5E466F08A9015FE6B351E239E65A22C /* FIRAuthGlobalWorkQueue.m in Sources */ = {isa = PBXBuildFile; fileRef = 910CBFE27A1F44E18B1DE0FEE7213E80 /* FIRAuthGlobalWorkQueue.m */; }; - F5E8D1D903464E23E3FDD8855B5483D1 /* server_config_selector.h in Headers */ = {isa = PBXBuildFile; fileRef = 9BC8E2C28C2B3D831E81B3F03B2D2B79 /* server_config_selector.h */; }; - F5FC1607C5A177A6CB6298D2C40A2941 /* FIRAuthProtoMFAEnrollment.h in Headers */ = {isa = PBXBuildFile; fileRef = 2FA806DD6AFCE175C9376E5EA0EA370F /* FIRAuthProtoMFAEnrollment.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F5FFA4C17A8DCB584A54B99AD93E2724 /* FIRGameCenterAuthCredential.m in Sources */ = {isa = PBXBuildFile; fileRef = BEDE7997DC0355C0BF3627BB525685C7 /* FIRGameCenterAuthCredential.m */; }; - F6102B31A820BEFE0E55680D2896FD4F /* byte_buffer.h in Headers */ = {isa = PBXBuildFile; fileRef = 8FAADD74A4CEAAF0041BBE766FF7D54D /* byte_buffer.h */; }; - F61928CE59DD206E4EA60DA552D6926C /* lame_client.cc in Sources */ = {isa = PBXBuildFile; fileRef = DD5A510619ABFFD66F9C1CFE7D9858B9 /* lame_client.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - F61AB6423CE8506A310B9B01C1C9ABEF /* call_combiner.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1F50ACB075D0ED0D597628C771FF601D /* call_combiner.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - F633788E08E891D338E00C1BF1B70326 /* merger.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1AC593ACF1A23DE1CFD15E9DB296B2E0 /* merger.cc */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - F6688BE16F0BEE518077A00F7418C642 /* p5_pbev2.c in Sources */ = {isa = PBXBuildFile; fileRef = C25341CAA6390E004835751AB08740E9 /* p5_pbev2.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - F684B0CD28ACEA5F712231069202EE20 /* versioning.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = A115D02F9E655A9AD1CAEA47F2ACC61D /* versioning.upbdefs.h */; }; - F68CD913BA38F5D76D7B3DB1506B5972 /* listener.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = B6D9D636FF397C68E6B0CF8DEF9245C0 /* listener.upbdefs.h */; }; - F68DE47482ECBBED4B505B8674531EE0 /* substitution_format_string.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 09E0886FB5EE1B9CCDE2E3424FDB1E10 /* substitution_format_string.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - F68DEEB968647D59ED3200C3A8E8526D /* fixed_array.h in Headers */ = {isa = PBXBuildFile; fileRef = 0EE18AE557C7BCEDDF032AC7DA353776 /* fixed_array.h */; }; - F68F971133D9B27BBA2DC2340B04B8A6 /* byte_buffer.h in Headers */ = {isa = PBXBuildFile; fileRef = B884A4CF7DCEF7FE0EE94E6A9BC01211 /* byte_buffer.h */; }; - F69BF2394FCF3C711A34587028516864 /* p256_64.h in Copy third_party/fiat Private Headers */ = {isa = PBXBuildFile; fileRef = 93AE143FC736025CB9937AD2B30B1AA4 /* p256_64.h */; }; - F6A30CEC4AD912808360AFADC5B43634 /* v3_akeya.c in Sources */ = {isa = PBXBuildFile; fileRef = A960A43C491A4200759DE4D6A2355A8B /* v3_akeya.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - F6A62C5592834227AF5B317061DBE640 /* digest_extra.c in Sources */ = {isa = PBXBuildFile; fileRef = A61A1B7A9F51719F32DADBB779BD9FF3 /* digest_extra.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - F6A8B9E3A53EFA60FD10FD9FBEEAAFD4 /* hpke.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B8ED7C0A5717A59310573EC17E1367D /* hpke.h */; }; - F6AF871A9B55003BB8944610C40E5836 /* port.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D71BD54336B8B478F5EC751A285F9DD /* port.h */; }; - F6C1A51DACDD2E44E6FC095373CBDF9F /* grpc_root_certificates_generated.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6B4BB44852657DDEC0CE80E093C32473 /* grpc_root_certificates_generated.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - F6DC386C34AD14B6BE75CD7B4EA3CEE6 /* semantic_version.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = C4620C7ECB575EA763239802001C9A35 /* semantic_version.upbdefs.h */; }; - F6E6E632F14B54FFEEA778141D9FFF5E /* pcy_data.c in Sources */ = {isa = PBXBuildFile; fileRef = D4C41E2B96EBD4941576F71EBE9D96CA /* pcy_data.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - F721E0AD60D4AE4AD230868936372BD2 /* FIRAuthProtoStartMFATOTPEnrollmentResponseInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F03B7BC829FD1D8E52CCAA208E7B4EE /* FIRAuthProtoStartMFATOTPEnrollmentResponseInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F73143D154EDAB29F314D309E3FCC3C9 /* FIRGetOOBConfirmationCodeRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 4EE1E6CD19428D464014A5E0E635FA70 /* FIRGetOOBConfirmationCodeRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F7329DEDF86741EE51D66E27D982E80A /* resource_name.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = AF55C01887CED688C392979A7DD55F79 /* resource_name.upbdefs.h */; }; - F73567C67C7F6CC4C9B9B50283DA5ADF /* FBLPromise+Always.h in Headers */ = {isa = PBXBuildFile; fileRef = 3073966C67600A5F83E0808ADFC8CFD2 /* FBLPromise+Always.h */; settings = {ATTRIBUTES = (Public, ); }; }; - F7367D5D6BE0D81EFB3AA90AF20519ED /* lhash.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 95894B9A45619EDEB8D4467EAD2637D7 /* lhash.h */; }; - F73B18418B53B9051EC072C2072169E0 /* NSURLSession+GULPromises.m in Sources */ = {isa = PBXBuildFile; fileRef = 95C7B5D771DFECB2F5186F09262613D7 /* NSURLSession+GULPromises.m */; }; - F73B8229115E070A2678190198064D68 /* any_invocable.h in Copy functional Public Headers */ = {isa = PBXBuildFile; fileRef = 25B969A9A9A821E49E0DB1D89DA9305D /* any_invocable.h */; }; - F73E7C1303C819A1DC4DD8B61D7D220C /* percent.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = EAFB7829E5251C2D9974FD41D25A95FA /* percent.upb.h */; }; - F7465E8E7D4218692637014C8BCDED65 /* error_apple.mm in Sources */ = {isa = PBXBuildFile; fileRef = E1E54BEC523885FD99AEA828AA079468 /* error_apple.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; - F761D083FAA9664788B71820454E797C /* avl.h in Copy src/core/lib/avl Private Headers */ = {isa = PBXBuildFile; fileRef = F0914F7F5460C0D3D62BF7416D32DD2F /* avl.h */; }; - F7649F10F13C802FC4C674CFFE9D2989 /* leveldb_persistence.cc in Sources */ = {isa = PBXBuildFile; fileRef = E554E8B40ACE269B9DFD91C15D558A67 /* leveldb_persistence.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - F7980689FEA2262BA2E0707989342E62 /* ssl_cert.cc in Sources */ = {isa = PBXBuildFile; fileRef = 986C60D7547AB68B422D13509F8EDFAD /* ssl_cert.cc */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - F79C9F122ABE934D22433B522B2C3E48 /* port.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C4A149D171AFA29986FD92EAAF3CE09 /* port.h */; }; - F7A86D5BA8A900696D17CE5DB05E7CE9 /* metrics_service.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E841452D22D8D7B6EBA233662941B3D /* metrics_service.upb.h */; }; - F7B552D679AF2D9EDA7ED559A7325337 /* extension.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 0350E46334E61C0F9023F5B27C48A26C /* extension.upbdefs.h */; }; - F7BCF59E04BAC7DB5A138E35D5295F59 /* grpc_tls_certificate_provider.h in Headers */ = {isa = PBXBuildFile; fileRef = 2EFF8483796509D020B74F203A79C806 /* grpc_tls_certificate_provider.h */; }; - F7C2D89B6E5B25AF7F02320405223D62 /* unique_type_name.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = F1E9C750906F68CBC1F36E60EBB506F2 /* unique_type_name.h */; }; - F7C9E354303DC5E68B2B2B7883065E40 /* subchannel_interface.h in Headers */ = {isa = PBXBuildFile; fileRef = 54C25DAA2253A55609D9120E82A6957A /* subchannel_interface.h */; }; - F7D03C0B3FFE374CEF535C3B0C680160 /* rc4.h in Headers */ = {isa = PBXBuildFile; fileRef = 1CEC2CB5E13A2A0BDBF79A9BCAC16540 /* rc4.h */; }; - F7D052F8662381B529F08A6450EAC0F0 /* civil_time.h in Copy time Public Headers */ = {isa = PBXBuildFile; fileRef = 9F47E17C62699EA95F99E7D628EDC292 /* civil_time.h */; }; - F7D8BACABFD383367486406976FE5778 /* node.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 629444E4E1A9FC1F2757CE426FBE60B3 /* node.upb.h */; }; - F7DB591D1D55DEB3F4FDFEFB6A2B5FCE /* core_codegen.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E022FC78DE40F836648FC1DE7BAFD20 /* core_codegen.h */; }; - F7E1797965351A5B3641F4F1D40497DA /* httpbody.upb.h in Copy src/core/ext/upb-generated/google/api Private Headers */ = {isa = PBXBuildFile; fileRef = 909DDA92FEAD88E6369056CC5E1D4B25 /* httpbody.upb.h */; }; - F7E4940153962ACB14ECEBDFC3C7C713 /* attributes.h in Headers */ = {isa = PBXBuildFile; fileRef = D4F8183B4BA765D7E7FA6FAFDDC8A8F8 /* attributes.h */; }; - F7F7479D97D847B8ED353F0C78019A09 /* metrics.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C4B81820294A7FAEF53493E1D11D286 /* metrics.upb.h */; }; - F7FA4741EFFF717031B757EEE5A53350 /* file_watcher_certificate_provider_factory.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 84FA9BC8A082FDD586774F74A33D2EE6 /* file_watcher_certificate_provider_factory.h */; }; - F817027FD1E2660FD91F0DD1261485A3 /* FIRFinalizeMFAEnrollmentRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = CE305A8B0116439B17B573A38E0D4A8A /* FIRFinalizeMFAEnrollmentRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F81CD23B589C5ACF66C05E6879FCCE10 /* datadog.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/trace/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = E1965F3D6268AD7BAC76ADA992A3BC54 /* datadog.upbdefs.h */; }; - F83F82CB941961BB85A57C76180E998A /* grpc_authorization_engine.h in Copy src/core/lib/security/authorization Private Headers */ = {isa = PBXBuildFile; fileRef = DF51B62188C94F0F5338FD2172BBAB89 /* grpc_authorization_engine.h */; }; - F840E1D64A4D0AE1F655A6D1F85F7C3E /* xds_client_stats.h in Headers */ = {isa = PBXBuildFile; fileRef = F2DCA550A82D165F78F645482A91E00B /* xds_client_stats.h */; }; - F8560200E0732445F0A7C2FA1C79FCF8 /* xds_http_rbac_filter.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = E77CDF17D7815CBA90FDBEA6AD2371EB /* xds_http_rbac_filter.h */; }; - F86539C96D90B30BB04699952EDC4CA2 /* FBLPromise+Async.m in Sources */ = {isa = PBXBuildFile; fileRef = A27F4C00F2AD8F30F5DC0B8435E3B604 /* FBLPromise+Async.m */; }; - F86C5A86AF1663E309EE0471DC2954E6 /* snapshot.h in Headers */ = {isa = PBXBuildFile; fileRef = 08CFC83981C389145911B91A10E16899 /* snapshot.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F8997C58CC861B0E5DAF05D2F415238F /* experiments.h in Copy src/core/lib/experiments Private Headers */ = {isa = PBXBuildFile; fileRef = D3F661E45798B078D4C846A83576A9C9 /* experiments.h */; }; - F8A4DFC6C3990253DFB2DC5D2041B3C2 /* msg_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 64F75CB8AD8FB246982389E337AB7450 /* msg_internal.h */; }; - F8B191CB20CE20F8A5463F4D03A6515C /* opensslconf.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 224A9F761113832ABA61DBE075A08E9B /* opensslconf.h */; }; - F8B357DA88D8259EA737EFCAFECF4312 /* ssl_utils.h in Copy src/core/lib/security/security_connector Private Headers */ = {isa = PBXBuildFile; fileRef = D9C2CB7E5361E2775C6B4AB803907453 /* ssl_utils.h */; }; - F8BA925E7C31DB2D4688EB7E4BF9D651 /* struct.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 13439BAA1D978BB3A922745A675A84B6 /* struct.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - F8C77ADEAA42FAE6794A8B96F8316E42 /* proxy_protocol.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 123B991CA38B79F5E44EF2E7B8FF414B /* proxy_protocol.upb.h */; }; - F8D17571D07051D6A4B9F297F1FAEC7C /* FIRAdditionalUserInfo_Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = A61DC8CB33FFB763430DF47BFD79C9BA /* FIRAdditionalUserInfo_Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F8D94C64232927B2F893F032D913AFC0 /* authorization_policy_provider.h in Headers */ = {isa = PBXBuildFile; fileRef = A6ADDDBA64189266B0E7E571BFFCFA0E /* authorization_policy_provider.h */; }; - F8E4D3B38855161BBE2A4532CD03DC6E /* mpscq.h in Headers */ = {isa = PBXBuildFile; fileRef = A2340583FE1D961F4BB2F5B02FC39D52 /* mpscq.h */; }; - F8E8FBDBC2904B0A85D1FA48307B5D03 /* lb_policy.h in Copy src/core/lib/load_balancing Private Headers */ = {isa = PBXBuildFile; fileRef = 8F10B917EC9D6D257321E20940C1C50C /* lb_policy.h */; }; - F8FB8E771EBCB27664E38B6DE0BE6B08 /* subchannel_list.h in Headers */ = {isa = PBXBuildFile; fileRef = DFBFDCA637293CFB8D09C9871AFB04AF /* subchannel_list.h */; }; - F8FD3FF4A5C4E776AD8D27E4B5B50ADD /* v3_purp.c in Sources */ = {isa = PBXBuildFile; fileRef = 38D5B2B2D6554D4105B581C0B7174EEE /* v3_purp.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - F9003A66FE5A6EE2A086199F6F0249BC /* trace_config.upbdefs.h in Copy src/core/ext/upbdefs-generated/opencensus/proto/trace/v1 Private Headers */ = {isa = PBXBuildFile; fileRef = 306175127D60E11E57515EB8E9BCF1B0 /* trace_config.upbdefs.h */; }; - F90513BA2FFA7912440FE63065328C05 /* discovery.upb.h in Copy src/core/ext/upb-generated/envoy/service/discovery/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 3E80C3622404D773E90B3F164B70C3B3 /* discovery.upb.h */; }; - F915AE5E0E9F40566826C7EEE94BEF80 /* tcp_windows.h in Headers */ = {isa = PBXBuildFile; fileRef = 53BAEC956CA1A4355E7F3E2B725705B9 /* tcp_windows.h */; }; - F921A087D2B817B0D16846143721FA40 /* event_string.h in Copy src/core/lib/surface Private Headers */ = {isa = PBXBuildFile; fileRef = 6B229F9D273A132F29D455BC26A14F10 /* event_string.h */; }; - F921B7DACA0BA267FE50DFCD21404B84 /* cfb.c in Sources */ = {isa = PBXBuildFile; fileRef = CAB640F1935634B68B44B68F6BF39779 /* cfb.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - F9532D21F18766401DF364BCA8B2015F /* common.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 6BBF3EF9AE9CB9587CE4EFEAFDEAC08B /* common.upb.h */; }; - F95460C8D6E8F58892421FC881A51E18 /* global_config_custom.h in Headers */ = {isa = PBXBuildFile; fileRef = 968F64F3ECDA4A9A35FAE4632FFEBF25 /* global_config_custom.h */; }; - F9596432694DBC81F2AD383B4698C702 /* tcp_windows.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 53BAEC956CA1A4355E7F3E2B725705B9 /* tcp_windows.h */; }; - F96756881240227E677A2749253B6719 /* validation_errors.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9A0296B223ED1027E8E6CA1CA2B617AF /* validation_errors.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - F96E90BD250A5AA7DF74645E47017E65 /* reflection.hpp in Headers */ = {isa = PBXBuildFile; fileRef = D804FD736B1C64446935A1966AEC30DE /* reflection.hpp */; }; - F976C757E1D420AB815E8EF4C789A3F6 /* bits.h in Copy numeric Public Headers */ = {isa = PBXBuildFile; fileRef = 0347A07F1D9D790A82C6ED088705C92A /* bits.h */; }; - F97A9F5AC2F99C384E343BC24F401B76 /* arena.h in Headers */ = {isa = PBXBuildFile; fileRef = DE820F2E71A04F0A28988E4DC46B251F /* arena.h */; }; - F97E0DD621C1D852C8E32410F68A31C5 /* tcp_server.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A89AC2EAC9A7D029B95EFF11FDACC7B /* tcp_server.h */; }; - F992041C7F3BB2605086A7B6545E21B6 /* outlier_detection.cc in Sources */ = {isa = PBXBuildFile; fileRef = D61B86DF04F969B45F542B8C7C6B31DC /* outlier_detection.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - F9A628241C97EEB1FAD12FDAEB1C5BB4 /* grpc_ares_wrapper.h in Copy src/core/ext/filters/client_channel/resolver/dns/c_ares Private Headers */ = {isa = PBXBuildFile; fileRef = C8622210E6CD5A198731B7CFC1989CA1 /* grpc_ares_wrapper.h */; }; - F9B426CFD73155B4059F0983A2E79AF9 /* httpbody.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 10721F8A1CB60F1526614B29D9542532 /* httpbody.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - F9BF5117543D53188D82309BEA68B44F /* string.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 807951AC5231970558C0691BD7C44F49 /* string.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - F9C721975FC9154BAE795A029B69A3A3 /* builtins.h in Copy src/core/lib/surface Private Headers */ = {isa = PBXBuildFile; fileRef = E0482393A4F4279E459D91A8753C5558 /* builtins.h */; }; - F9D60CFCA0156F777A291FBF1748028A /* ssl_transport_security.h in Copy src/core/tsi Private Headers */ = {isa = PBXBuildFile; fileRef = A18F1B5B4BADC40A887379C0B32ACF4E /* ssl_transport_security.h */; }; - F9E8964DE373ACF2D3DC7A58E230B133 /* hashtable_debug_hooks.h in Headers */ = {isa = PBXBuildFile; fileRef = 529867BA488FC08C3043FABD9AA34F06 /* hashtable_debug_hooks.h */; }; - F9F99440417663152AED0A717752FA20 /* FIRFirestore.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D7B7D076E7DA0BDF61753E63EBB3B19 /* FIRFirestore.h */; settings = {ATTRIBUTES = (Public, ); }; }; - F9FB4B253D001E509E0442D80B991C60 /* table_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 7EF3F6E397FCEB3E72052EA27B3F13FC /* table_internal.h */; }; - FA2319A9583B84B3D22E392D9482F4BD /* aes_gcm.cc in Sources */ = {isa = PBXBuildFile; fileRef = 87615091377A4FEF2DCFBB241F00A526 /* aes_gcm.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - FA24E7B0E5DDA603262443B4FD637388 /* bootstrap.upb.h in Copy src/core/ext/upb-generated/envoy/config/bootstrap/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = D8E2E460771447000D79434A75C8505E /* bootstrap.upb.h */; }; - FA28BCC4D73E6294B93F950FFF52E691 /* grpc_ares_ev_driver.h in Headers */ = {isa = PBXBuildFile; fileRef = BBC2242A329A3AA67E982773975AA260 /* grpc_ares_ev_driver.h */; }; - FA2EC3997D3275F4B79C4355774DF5EA /* timer_manager.h in Headers */ = {isa = PBXBuildFile; fileRef = 910C67E60889CC19B7C747B9B9025E07 /* timer_manager.h */; }; - FA30B1173BAE503DD55BDB6DDBAC14B3 /* external_account_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = D097F292BB0365B72A3F3B17A0F346F2 /* external_account_credentials.h */; }; - FA3C6BFFC535022EB80EC661E79D90FD /* exponential_backoff.cc in Sources */ = {isa = PBXBuildFile; fileRef = B1E543C471699BD3025F2FF21E660917 /* exponential_backoff.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - FA5586B2D68A9433326661FE4E8115D1 /* FIRDocumentReference.h in Headers */ = {isa = PBXBuildFile; fileRef = BC14AEF0D7D423FC9ED8E1D589C5C138 /* FIRDocumentReference.h */; settings = {ATTRIBUTES = (Public, ); }; }; - FA57696C1A982A0F0B59251D9D978A34 /* util.h in Headers */ = {isa = PBXBuildFile; fileRef = B944562E9BF9745B4B33DC7322BEF315 /* util.h */; }; - FA579BCB26E8B488F149EA7C33400268 /* work_serializer.h in Headers */ = {isa = PBXBuildFile; fileRef = 08399C9C3F27E53366882DB35ED50185 /* work_serializer.h */; }; - FA5C3CAEA5EE3CF20510FA11A5DDE14F /* byte_buffer_reader.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 7C4C48F5ECDAB450F34CAE2753C8EB7C /* byte_buffer_reader.h */; }; - FA5CF6CFA24B3127C6CE83338CA72C34 /* checked.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F26CD13BAEDACE19DE844F05CD88E89 /* checked.upb.h */; }; - FA66278AF6EA777D96842FB76D5E695E /* p256_64.h in Headers */ = {isa = PBXBuildFile; fileRef = 93AE143FC736025CB9937AD2B30B1AA4 /* p256_64.h */; }; - FA662B75A1C93DAAFB3B70E601090318 /* lrs.upb.c in Sources */ = {isa = PBXBuildFile; fileRef = 2ED89895513FA5CDC17ACD2CE9930819 /* lrs.upb.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - FA66EDAA1380010879D5F0CE9C16DFC5 /* migrate.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 042C092FB084ACFCBCA3250BE9F76EDF /* migrate.upbdefs.h */; }; - FA6ACA19DECD08356DF9A9C7E33E2288 /* memory.upb.h in Copy src/core/ext/upb-generated/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 204A3E762E76090C27AAC197A417C4AB /* memory.upb.h */; }; - FA749A4872272967085A83C85A6FA678 /* empty.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 9BF4F99F51D9A856CF7C7A082BC0411E /* empty.upb.h */; }; - FA7BEC7F77139DAD4EE86D336EE6AADC /* x509v3.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = E38CE3D5AE58B7C80A5000EB5EC8DE1D /* x509v3.h */; }; - FA80220FFEF8C1B118B4F2AA5022BBAA /* FIRVerifyClientRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 8B44C84EFE8AB0477BD0F27F99FA89A1 /* FIRVerifyClientRequest.m */; }; - FA828C9558F9E909D2DCB2754A18E257 /* transaction.h in Headers */ = {isa = PBXBuildFile; fileRef = CDD188B4285D6A22E5D5B80A604D57A1 /* transaction.h */; }; - FAA0EE2C2871B2546B6C541CC68208F4 /* iomgr_posix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 59D31710FB08979F21802130F6377807 /* iomgr_posix.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - FAAF8CA663EAAE2B794666D0643A64FE /* sync_posix.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = 1B17C3C2B832155CA5A0ADE96C472348 /* sync_posix.h */; }; - FAB7CB2BE64038F0865B12EF1A72DC00 /* timer.h in Copy src/core/lib/event_engine/posix_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 81FF50584EEE39E0E1601504C2917C96 /* timer.h */; }; - FAD397BBCADAE1490A57D9F1AAEBA7CD /* set.h in Copy third_party/re2/re2 Private Headers */ = {isa = PBXBuildFile; fileRef = 4E3E7675CE17E4AFD6F620315D2DAC07 /* set.h */; }; - FADAFD19A2041C1FA2B17CD549D8A06B /* e_chacha20poly1305.c in Sources */ = {isa = PBXBuildFile; fileRef = 63FFC879B10D32F3C74F42B3E11D067F /* e_chacha20poly1305.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - FADF920FB6F7D643604B9F77D2288F4E /* cluster.upb.h in Copy src/core/ext/upb-generated/envoy/extensions/clusters/aggregate/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = BAA8919C86221AA163397E164C7E7443 /* cluster.upb.h */; }; - FAE8232BFA6FD78DAA2A346DACE11B82 /* poller.h in Copy src/core/lib/event_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 8FE410580CDA5934CFB1CEA886F1F482 /* poller.h */; }; - FAF748738A8282D9FA71F34969F57E11 /* orphanable.h in Copy src/core/lib/gprpp Private Headers */ = {isa = PBXBuildFile; fileRef = 77620D97BB51073B47D1E79603217C51 /* orphanable.h */; }; - FAF99159C1D5F0E2E7FA733C7AFD2679 /* channel_stack.cc in Sources */ = {isa = PBXBuildFile; fileRef = DE41F55DC532A0CF3B9F856ABFEA46B0 /* channel_stack.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - FB0019363F900ABAEA9E777223BC44EB /* resource.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 0CFA724637CB489D5E948BA722221A43 /* resource.upbdefs.h */; }; - FB0163B004135EDA58EC8A5BAA4CF12A /* status.upb.h in Copy src/core/ext/upb-generated/google/rpc Private Headers */ = {isa = PBXBuildFile; fileRef = C2996EAF4B42FE90D8D845220A93C79B /* status.upb.h */; }; - FB03A330A19C380271F9CE8DD22CF515 /* reader.cc in Sources */ = {isa = PBXBuildFile; fileRef = F3CE4C8EEDD10439387B685A44EF01E6 /* reader.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - FB2473476DC6F7A2CB893A71AAA998C6 /* insecure_security_connector.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3B9C2A8E760124F796BA316B005FD621 /* insecure_security_connector.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - FB35C8482ED55E15EBF8FA9889D11DDE /* leveldb_target_cache.cc in Sources */ = {isa = PBXBuildFile; fileRef = ED612E3EDF5171A16D1CF2E3BE079691 /* leveldb_target_cache.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - FB3CF3C81CDBED8A22FBC60390CFDA1A /* oob_backend_metric.h in Copy src/core/ext/filters/client_channel/lb_policy Private Headers */ = {isa = PBXBuildFile; fileRef = D41F648301FF4FFF2569B300D443EC70 /* oob_backend_metric.h */; }; - FB425EB7B1EC9CC9F71B58CBB56EDE0A /* http.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 19592F0E05108D751480092990690648 /* http.upbdefs.h */; }; - FB6DA782BC6D9BE3F8B4DD9F7805803D /* http.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 8118F123AD46EE0C21B3868128CDA121 /* http.upb.h */; }; - FB6FBD328700A28F40639095F3957B90 /* versioning.upbdefs.h in Copy src/core/ext/upbdefs-generated/xds/annotations/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = A115D02F9E655A9AD1CAEA47F2ACC61D /* versioning.upbdefs.h */; }; - FB75D2319DD64400BF881885FA30D95B /* x509_d2.c in Sources */ = {isa = PBXBuildFile; fileRef = 18BA2C4148FF4903B3C64756224F4598 /* x509_d2.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - FB7C1185A642CD5014AC082670F25677 /* extension.upbdefs.c in Sources */ = {isa = PBXBuildFile; fileRef = 1D6008EB592B75CFE5097504742BA7DA /* extension.upbdefs.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - FB7D621855A9FE64DE077C9574417CD2 /* channel_trace.h in Copy src/core/lib/channel Private Headers */ = {isa = PBXBuildFile; fileRef = F2C41CD3CD7F030E3FC54836E9B909C7 /* channel_trace.h */; }; - FB853D621E4440939F825B8EA785A9BE /* timestamp.upb.h in Copy src/core/ext/upb-generated/google/protobuf Private Headers */ = {isa = PBXBuildFile; fileRef = 149B3AB286928B969D3A87E8AEA583E2 /* timestamp.upb.h */; }; - FB8A24B2539D1D0A2BA8824DCF129BFA /* ev_apple.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = A5C816D318C5D37C3F05B39D62C3794A /* ev_apple.h */; }; - FB8CEBF1A410E47A138F93DAA8B2E708 /* promise_based_filter.h in Copy src/core/lib/channel Private Headers */ = {isa = PBXBuildFile; fileRef = EE804E9FD4338E79C130A9BB491A1682 /* promise_based_filter.h */; }; - FB922C40EC610A7C7553DEE504CE08C1 /* authorization_policy_provider.h in Copy src/core/lib/security/authorization Private Headers */ = {isa = PBXBuildFile; fileRef = A6ADDDBA64189266B0E7E571BFFCFA0E /* authorization_policy_provider.h */; }; - FB94C7345376D16A9BFE157FCED900DB /* FIRAuthWebUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 88B5488822B64F8AD43C855ED4079A3A /* FIRAuthWebUtils.m */; }; - FBA6537E9B780288BF3E12A638E8ED19 /* digests.c in Sources */ = {isa = PBXBuildFile; fileRef = 4E3D10C2327C5C7A98767A5BE3071FCD /* digests.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - FBA8B0C513D67E11751470167CD9B9E9 /* blocking_counter.h in Copy synchronization Public Headers */ = {isa = PBXBuildFile; fileRef = D3425A81FB60223CECC996993F26529C /* blocking_counter.h */; }; - FBA8E36128679C86C3957F85AD22963B /* promise.h in Headers */ = {isa = PBXBuildFile; fileRef = 8666497C2AD25B79CB7C9A3751F90311 /* promise.h */; }; - FBBA29A1E70A8FF7CB48855D187EB1FD /* memory_eager_reference_delegate.cc in Sources */ = {isa = PBXBuildFile; fileRef = E1D2B259078074DE0D14219DBD134643 /* memory_eager_reference_delegate.cc */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma -fno-objc-arc"; }; }; - FBC439CBA415F2FE0DDBE6921DF91541 /* retry_throttle.h in Copy src/core/ext/filters/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = 78D0500A48D763997049704814D5FC00 /* retry_throttle.h */; }; - FBC70C8EA337956110F2C9FB0105E04E /* error_utils.cc in Sources */ = {isa = PBXBuildFile; fileRef = 221925D455700AC395245A89096F16E4 /* error_utils.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - FBE0AF1651A27B5BB5B8E8698F8112B5 /* jwt_credentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 53ED99E00ACB7EF1FB410B71D0E6B601 /* jwt_credentials.h */; }; - FBFB52E5EFD87BB9FC19D58EF3F385F4 /* alts_grpc_record_protocol_common.h in Headers */ = {isa = PBXBuildFile; fileRef = C2AC0189DAAE21C15FC49FC9A749F448 /* alts_grpc_record_protocol_common.h */; }; - FC0EC309740FADE4F865B5B3125499A3 /* forkable.h in Copy src/core/lib/event_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 57F76FDFC2D8E073DB783AA8FBB56B07 /* forkable.h */; }; - FC10EAF5D1826670C65D5A88717D619F /* client_channel_factory.h in Copy src/core/ext/filters/client_channel Private Headers */ = {isa = PBXBuildFile; fileRef = 9F2011C6D64CD081085A14DC4892BCB9 /* client_channel_factory.h */; }; - FC26989DD6B557253525022AE1BE478B /* re2.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1B46928C3A47E4A4891F6E8EDEE6403D /* re2.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - FC2A7DBB32D75DF5BBC7E924F0349828 /* ossl_typ.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 37AE5488268F3775770C2248293FA676 /* ossl_typ.h */; }; - FC54B8B8D6EFD2F8D6B5F988887D33D8 /* demangle.h in Copy debugging/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 6ACCBAA84DA46799CCB6C74A930FB5D0 /* demangle.h */; }; - FC5BEECEFFAC48EE4ABB4089F5A991ED /* FIRSignUpNewUserRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 7A24E51B36D5F92C8C4962F6A54F60C4 /* FIRSignUpNewUserRequest.m */; }; - FC688190E844B34966EC78BF8F288993 /* channel_create_impl.cc in Sources */ = {isa = PBXBuildFile; fileRef = D69F161511A9048C68CDD7EE2E0448FF /* channel_create_impl.cc */; settings = {COMPILER_FLAGS = "-Wno-comma -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - FC69A0DC9514CDBE4B8378626C1648C4 /* local_security_connector.h in Copy src/core/lib/security/security_connector/local Private Headers */ = {isa = PBXBuildFile; fileRef = B2F955487CA513935758ED59C953D3B9 /* local_security_connector.h */; }; - FC784B2FD01A0AC476BB846198F56003 /* b64.h in Copy src/core/lib/slice Private Headers */ = {isa = PBXBuildFile; fileRef = B78ACF9146E8E7F22C08EEB71D12C8E8 /* b64.h */; }; - FC7A8A78CA7EF8016D0DC47465C76EA6 /* hkdf.c in Sources */ = {isa = PBXBuildFile; fileRef = BE4D7C6247B2EBA18B5410010E24010B /* hkdf.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - FC90BEB90873075E742681C79DAC8F18 /* ssl_key_logging.h in Copy src/core/tsi/ssl/key_logging Private Headers */ = {isa = PBXBuildFile; fileRef = 799A987C7CFB3B3191D4E1C69EE0291F /* ssl_key_logging.h */; }; - FC9FC827DDE877CCE93E4CD3F2D439BC /* weighted_target.cc in Sources */ = {isa = PBXBuildFile; fileRef = DC1B47119FAE429D9E2E8935A45B2F3F /* weighted_target.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - FCAB50B0664260B8F4031D6B3EF4CE22 /* regex.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = BF43040B37F96134C4166D7CCA8CCD29 /* regex.upbdefs.h */; }; - FCAB5E54C4D916AFF689C2621E40E6A0 /* gethostname_fallback.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1C80FBFAFFDCE9E2F58823778966930D /* gethostname_fallback.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - FCB8BCB820E5482D7E44EA1D96F04E3A /* map.h in Copy src/core/lib/promise Private Headers */ = {isa = PBXBuildFile; fileRef = 545AD2F6F656B8D054032F185659B4DD /* map.h */; }; - FCB9214694EEBAA438A3861B03F4103E /* resource_locator.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 79D93757864157DE03BF62355E41CD82 /* resource_locator.upbdefs.h */; }; - FCC75598A5E23106B788C4CACB8026FB /* ev_poll_posix.h in Headers */ = {isa = PBXBuildFile; fileRef = F3BAFE02740CB2591D3364FECCD9E42C /* ev_poll_posix.h */; }; - FD03E74B23742B07B807A85875413AE8 /* FIRAuthSettings.h in Headers */ = {isa = PBXBuildFile; fileRef = 4742CCD5F8521E9B9032FA3B9D9CD007 /* FIRAuthSettings.h */; settings = {ATTRIBUTES = (Public, ); }; }; - FD2D7878B10F688F12BC6F88C888717E /* server_builder.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = C9B2D37DC583BA2BA268D79A288D4831 /* server_builder.h */; }; - FD381E669DFDCFA12850A85C80974B85 /* alts_shared_resource.h in Copy src/core/tsi/alts/handshaker Private Headers */ = {isa = PBXBuildFile; fileRef = 678756EB92B5901E3C557909700B5E98 /* alts_shared_resource.h */; }; - FD3DBC15B63461F1DB28065CD04B1970 /* thread_pool_interface.h in Copy src/cpp/server Private Headers */ = {isa = PBXBuildFile; fileRef = F5BB523CA69AC1EACC5F432980DB8766 /* thread_pool_interface.h */; }; - FD435C89013818E831D80EC9D4B6C98A /* FBLPromise+Await.m in Sources */ = {isa = PBXBuildFile; fileRef = B9CEAD2D3F762055E985F204DA523806 /* FBLPromise+Await.m */; }; - FD543E49A0E0A691B8B8CD44E31217B7 /* context_params.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 1CFE3CCE9E01BCD85301BDCAFC3A0D2B /* context_params.upbdefs.h */; }; - FD66A437AECBEBE8E09F90A3BC023F09 /* encode.h in Copy third_party/upb/upb Private Headers */ = {isa = PBXBuildFile; fileRef = 2704798CCF3A2AF9C00D74EDFBEA01C2 /* encode.h */; }; - FD7BB710DECDCF17B5FF336111E5B635 /* hmac.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 325C32E742636F03939C351FC1830DD3 /* hmac.h */; }; - FD7C74A706A2CDD40CCAEF773F3A7101 /* channel_init.h in Headers */ = {isa = PBXBuildFile; fileRef = 4894CEC24ED81D6A849FF3D735356CFD /* channel_init.h */; }; - FD8C2D002CE001199E68FA409DF6DD77 /* backoff.h in Copy src/core/lib/backoff Private Headers */ = {isa = PBXBuildFile; fileRef = 8125D65435B3BCEA337C9905727030BE /* backoff.h */; }; - FD8EDD1817A0C71BF8770C3B88442E24 /* naive.c in Sources */ = {isa = PBXBuildFile; fileRef = 101FA6760343F14228636781C2FA25B2 /* naive.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - FD964198E3A2AB499454C5DCB5C4D965 /* FIRAuthKeychainServices.h in Headers */ = {isa = PBXBuildFile; fileRef = 78ADBBE8C5A875225F2DD88C3457836A /* FIRAuthKeychainServices.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FD9BD0709D7E0910CAD6A9A05D99E1EC /* FIRMultiFactorResolver.m in Sources */ = {isa = PBXBuildFile; fileRef = FA96BDCF908E820887FAD3F327AA218E /* FIRMultiFactorResolver.m */; }; - FDA6164378B0028FE824D36027513952 /* polling_entity.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = A5EE704383DA9A5204931F226D0887FA /* polling_entity.h */; }; - FDA6E5064FED5A49354A83290E4E0914 /* FIROptions.m in Sources */ = {isa = PBXBuildFile; fileRef = F8FCF19FB737BB4F5D7E00C9FA1F0112 /* FIROptions.m */; }; - FDA86079C595A3DACB4D704839D787C7 /* graphcycles.h in Copy synchronization/internal Public Headers */ = {isa = PBXBuildFile; fileRef = F0B2C4F706845DB3B64EF3AD5A17FEEA /* graphcycles.h */; }; - FDABA14691C2A8038D808A74A0C5332A /* bitset.h in Headers */ = {isa = PBXBuildFile; fileRef = 7EC6A4C501219900D2D7CB0ADD4ACC2B /* bitset.h */; }; - FDB17DAC714A12CA5568F9FE75BABDE0 /* FBLPromise+Await.h in Headers */ = {isa = PBXBuildFile; fileRef = 7769E0E7742F21A2C08C647ADAA55AE2 /* FBLPromise+Await.h */; settings = {ATTRIBUTES = (Public, ); }; }; - FDC38746D9FB6D8FF58A1ED649E9795F /* time_util.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9B6B3DFABB9200904671006CFD46EECB /* time_util.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - FDC6C4BEC185635B007189BAE8284602 /* hash_to_curve.c in Sources */ = {isa = PBXBuildFile; fileRef = 73C5929AACA54CDDB5CB307EEBA725F4 /* hash_to_curve.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - FDCFE8D186D074835CAB6A2C9F74AEDF /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = C34E9FE3035CB20012464087AEC1D846 /* internal.h */; }; - FDD8639985872D6CEB859D2075A20731 /* tls_spiffe_validator_config.upb.h in Copy src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 4305DDACB736A7FA28EFA8562BA8204A /* tls_spiffe_validator_config.upb.h */; }; - FDDA2E40306C4C018B9EBF06E8576D83 /* listeners.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = E293A05816875A96AB28A6A0F0963823 /* listeners.upbdefs.h */; }; - FDE024117BAECCF767987379A8BC9805 /* posix_logger.h in Headers */ = {isa = PBXBuildFile; fileRef = D0F8D4D499C602B89DFB3350574E3327 /* posix_logger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FDECB1FE21EBD74CFBA3474E3F769FF6 /* lrs.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = C3F10130BC25289B0938A7B8A9E3042C /* lrs.upb.h */; }; - FDF353D1D5F813E9EED3B9CCBD4A0808 /* seed_material.h in Copy random/internal Public Headers */ = {isa = PBXBuildFile; fileRef = DD6DE9EE970FC6B4FB439296B630A158 /* seed_material.h */; }; - FDF52F4CA2DB9E28694AE58D6062CDF4 /* b64.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1DED7A568BB5A9C4FD0D96ADF9DB6752 /* b64.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - FDFF056298A3468370598240D170C8C6 /* text_encode.c in Sources */ = {isa = PBXBuildFile; fileRef = B62695BA6D668CE8F7D173FA3BB9E3BC /* text_encode.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - FE0094B899264F08DFBF7B7C4D745EF8 /* alts_tsi_utils.cc in Sources */ = {isa = PBXBuildFile; fileRef = F97E15FF7274C52D265DE0B6B11F20DC /* alts_tsi_utils.cc */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - FE0414EA04F2FAA4AEFB157F7E09B507 /* bdp_estimator.h in Headers */ = {isa = PBXBuildFile; fileRef = EBD654524DEB3AE452BAC741C6525356 /* bdp_estimator.h */; }; - FE0632EA85F68526BA5D454D8ED5D104 /* unaligned_access.h in Headers */ = {isa = PBXBuildFile; fileRef = A7956C890CA8D02BDBF18721515796DF /* unaligned_access.h */; }; - FE10DD06DF4EB3B55FDA107E881BCF2C /* sync_windows.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = 27859DCED734889B65943F0CC7C714FD /* sync_windows.h */; }; - FE1108B66353CE601F8A6ED60A87FF93 /* timer.h in Copy src/core/lib/iomgr Private Headers */ = {isa = PBXBuildFile; fileRef = 89AB0D470DCAA47CE66441AEAFAA9726 /* timer.h */; }; - FE17608405584C358F6505A6CCA51DB1 /* format.h in Headers */ = {isa = PBXBuildFile; fileRef = ED73CFE96011D1E8EBAD13AADE9BA3D1 /* format.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FE298305DDD9212699473A2B33C13ACB /* FIRSecureTokenService.m in Sources */ = {isa = PBXBuildFile; fileRef = 40BFAAA18E82A3927DB2263D4C446C86 /* FIRSecureTokenService.m */; }; - FE2CD93D148003B930BDF219B2479B93 /* extension.upbdefs.h in Copy src/core/ext/upbdefs-generated/xds/core/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 0350E46334E61C0F9023F5B27C48A26C /* extension.upbdefs.h */; }; - FE66731CAB718B06B461CF27C982DDA3 /* FIRListenerRegistration.h in Headers */ = {isa = PBXBuildFile; fileRef = B75C68CCD29462B5E35C590BF1D8639C /* FIRListenerRegistration.h */; settings = {ATTRIBUTES = (Public, ); }; }; - FE67BCA2297972ABB270A789EB8EC319 /* spinlock_akaros.inc in Headers */ = {isa = PBXBuildFile; fileRef = 321F515DBCB9A9485EC57A0201F2A855 /* spinlock_akaros.inc */; }; - FE6C956B82D88578E9F426B43F67523D /* mem.h in Headers */ = {isa = PBXBuildFile; fileRef = C4F7C55FB495334E5FD1560D585965EE /* mem.h */; }; - FE6DB400F051214A52BB68F2755D94D4 /* node.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = E524E4D95865B2A1C6DD30DE1F5AE976 /* node.upbdefs.h */; }; - FE8304EDBB76A77373F295577426DFB5 /* gpr_slice.h in Headers */ = {isa = PBXBuildFile; fileRef = 01D371F82EFBA7961697C2A3F97C27F4 /* gpr_slice.h */; }; - FE87EB131BD363F690DE18403BD5B355 /* rpc_service_method.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = D695E33920FCE21FF7BE36ACC41D3B6A /* rpc_service_method.h */; }; - FE9967592263EF995FD2E3D47532669B /* FIRWriteBatch.mm in Sources */ = {isa = PBXBuildFile; fileRef = 14BE8B16C391D9A68342E0A702945859 /* FIRWriteBatch.mm */; settings = {COMPILER_FLAGS = "$(inherited) -Wreorder -Werror=reorder -Wno-comma"; }; }; - FEBC97C576A4B506A5713E1BF95C390A /* x509_v3.c in Sources */ = {isa = PBXBuildFile; fileRef = BF39A4D7D856EC041F3F67DA51C09C14 /* x509_v3.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - FEC0658F8B10057C40262FCAE182CDB0 /* xds_channel_args.h in Copy src/core/ext/xds Private Headers */ = {isa = PBXBuildFile; fileRef = 01D0E5674F05545B5552AA408D4A478B /* xds_channel_args.h */; }; - FECD3B6628FF9C4D46E77A267D8097D0 /* channel_creds_registry.h in Headers */ = {isa = PBXBuildFile; fileRef = 20A4907F772C4293D9F29BC95E41C1B3 /* channel_creds_registry.h */; }; - FED1753F8FE95C2BA25437D27FEBC11A /* message_allocator.h in Copy support Public Headers */ = {isa = PBXBuildFile; fileRef = 337D14FE64F04CAF68645EB8093FD65A /* message_allocator.h */; }; - FED623591FEB9B95C8F3C2F766CEFCB5 /* bernoulli_distribution.h in Copy random Public Headers */ = {isa = PBXBuildFile; fileRef = A2900DB0FAEF91A2665F824BF2CA8E05 /* bernoulli_distribution.h */; }; - FED8ACD03A2A70A0E9521EFF03071E36 /* FIRTOTPSecret+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = C0EC9DF644B5922F61467B4FEBF04CB2 /* FIRTOTPSecret+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FEE569C751A48F21AE72843A0587EC07 /* block_annotate.h in Headers */ = {isa = PBXBuildFile; fileRef = 9CE7982D4FAE4829DC26AE3BF3E24C8F /* block_annotate.h */; }; - FEF10F23199156B37073881A8E4526BE /* executor.h in Copy src/core/lib/event_engine/executor Private Headers */ = {isa = PBXBuildFile; fileRef = 6AEEF1079C748B1A1D312DF8A4AC1AE0 /* executor.h */; }; - FEFA81CF8FD8A0CBD3647DE7D69371C9 /* xxhash.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D3102995018AB50A9C3FE3706120CA9 /* xxhash.h */; }; - FF039E8A009E0D4877A82920ACD408CD /* listeners.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 78EC62E7F363C18CE7FB247C3A45D100 /* listeners.upb.h */; }; - FF095BD48EC4B13E12E208DAABC78275 /* ec_key.c in Sources */ = {isa = PBXBuildFile; fileRef = 6E4DC187A3C6E1D7B9A0397F0F399C30 /* ec_key.c */; settings = {COMPILER_FLAGS = "-DOPENSSL_NO_ASM -GCC_WARN_INHIBIT_ALL_WARNINGS -w -DBORINGSSL_PREFIX=GRPC -fno-objc-arc"; }; }; - FF1325CE82B5D4C6FC87175A5297B872 /* timer.h in Headers */ = {isa = PBXBuildFile; fileRef = 00E070AF0A0D570AA32BCF71D39C1C4E /* timer.h */; }; - FF13E62E967EB0A72DAA5EE88BA8FBA4 /* frame_handler.h in Headers */ = {isa = PBXBuildFile; fileRef = BE065CCB87EB67D32B7E424DA5A1C1D9 /* frame_handler.h */; }; - FF16E729C1CE85E26F253F5E049B8C89 /* sensitive.upb.h in Copy src/core/ext/upb-generated/xds/annotations/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 0A1C06D8F0A57548FFA99DCC4FACA98F /* sensitive.upb.h */; }; - FF303CF8556BF42C812271ABB7C3C72A /* dynamic_thread_pool.h in Copy src/cpp/server Private Headers */ = {isa = PBXBuildFile; fileRef = EAA8888AC538FD9D7890A3687BDDDB31 /* dynamic_thread_pool.h */; }; - FF4523F7503AF229D4BAF541DE578530 /* reflection.c in Sources */ = {isa = PBXBuildFile; fileRef = 884F56D1FE18C88E04CE0C60DDC068D4 /* reflection.c */; settings = {COMPILER_FLAGS = "-DGRPC_ARES=0 -Wno-comma -DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32 -fno-objc-arc"; }; }; - FF4AD6D2CFA1E2BD6AE8DBBBF3819949 /* value.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/matcher/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 9CF06E83F78E512F1380511B03AAD8FF /* value.upbdefs.h */; }; - FF6129AB474887FC8984BA6EE61B7EB0 /* metadata.upb.h in Headers */ = {isa = PBXBuildFile; fileRef = 5AC23B5DA5F7B31CFA2D94A0A10B7C33 /* metadata.upb.h */; }; - FF661059A23DD61E8D2D916373F5FE44 /* time_zone_if.cc in Sources */ = {isa = PBXBuildFile; fileRef = A20FBD5D589AD4A3822ED6AFDF1FCF48 /* time_zone_if.cc */; settings = {COMPILER_FLAGS = "-Wno-everything"; }; }; - FF66868F3850C89B26F9B43C6E0757AC /* FIRTOTPMultiFactorInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 15B1795A64D9495BC11959749DFE5D16 /* FIRTOTPMultiFactorInfo.m */; }; - FF6A516F4A7D7AD2A23A9D470BEAD59D /* def.hpp in Copy third_party/upb/upb Private Headers */ = {isa = PBXBuildFile; fileRef = 8F126583FC51D8C29967B9C0614883CD /* def.hpp */; }; - FF6F34751E3118DB6B26199D0248CB5A /* chttp2_transport.h in Copy src/core/ext/transport/chttp2/transport Private Headers */ = {isa = PBXBuildFile; fileRef = 616A1B62B882A324C9750D053E055938 /* chttp2_transport.h */; }; - FF725CEF1FFB4514B7FDFEB687BCDC7F /* alts_grpc_integrity_only_record_protocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C265AC8532D61B1CD13B91B87576FB6 /* alts_grpc_integrity_only_record_protocol.h */; }; - FF7FB389A98ED9938D77110A3062E95F /* csds.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/service/status/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = A70AC419A37C643C06499E6E11CD83FB /* csds.upbdefs.h */; }; - FF89BFF9F25B584E70DD316E2C198936 /* interceptor.h in Copy impl/codegen Public Headers */ = {isa = PBXBuildFile; fileRef = E6F31963F98F365F8C8F9C0568785A03 /* interceptor.h */; }; - FF91071BC1F71D9B84B2BF8F1A026448 /* accesslog.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/accesslog/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 54EB8059BF382C70FD70EEBAD47B8B9A /* accesslog.upbdefs.h */; }; - FF94B21B449F85084D991DDED455E218 /* latch.h in Headers */ = {isa = PBXBuildFile; fileRef = E8802DCBAB5F1DA891DD4CA46EFC7476 /* latch.h */; }; - FFBA48A08CAD3C80CBB2A8C005C5AEB4 /* http_tracer.upbdefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E01E7F74394EC112630BFF4E89E8EAC /* http_tracer.upbdefs.h */; }; - FFBF7D2C7C29F6812FBAA2FAC4091657 /* symbolize.h in Copy debugging/internal Public Headers */ = {isa = PBXBuildFile; fileRef = 30617105DB03B071497D2BCAA85CBFEC /* symbolize.h */; }; - FFD984FC5E1AED9A8F47CB57CBC4CDF8 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6E336DC2534E1E69B7828F6012B874C6 /* Foundation.framework */; }; - FFDD56A4451284F454A3985591049D05 /* certs.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/admin/v3 Private Headers */ = {isa = PBXBuildFile; fileRef = 539ABCC72228C715467E75FE10A31D6C /* certs.upbdefs.h */; }; - FFEC641292319675080EBC9830175997 /* api_trace.h in Copy src/core/lib/surface Private Headers */ = {isa = PBXBuildFile; fileRef = 8B5D7F37145C59A36E04A33B8FC194EB /* api_trace.h */; }; - FFF87CDE0346C27FFB5A66CD4F7EE64A /* timer_heap.h in Copy src/core/lib/event_engine/posix_engine Private Headers */ = {isa = PBXBuildFile; fileRef = 2933DE9AA8BE2131278DB117B23177E8 /* timer_heap.h */; }; - FFFB22CF17B9B52EABB1A280F2EFEE7B /* grpc_tls_certificate_verifier.h in Copy src/core/lib/security/credentials/tls Private Headers */ = {isa = PBXBuildFile; fileRef = 0F1ABE580A488B5652F06B8ED4EF8C86 /* grpc_tls_certificate_verifier.h */; }; + 648F16425FEF89525AE0325F5A984B86 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 73010CC983E3809BECEE5348DA1BB8C6 /* Foundation.framework */; }; + 8749C8E8DC500B064FA0BC7A78C38A2A /* Pods-iosApp-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3A2475209BEE7612101900020629C625 /* Pods-iosApp-dummy.m */; }; + 8801CBFD38B946597BD07145B2EEFC9F /* Pods-iosApp-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 42DE4C0106600A5B6D599285368F3270 /* Pods-iosApp-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; /* End PBXBuildFile section */ /* Begin PBXContainerItemProxy section */ - 013118EBEC6740A07398EBEA28502151 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 50F380A87A4FC4EC7EE3AC9BDADB6D2D; - remoteInfo = "gRPC-Core"; - }; - 08984A412D7AE29E8371324B1C452B1A /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 73CDC3D182DB953135F62609681B443D; - remoteInfo = abseil; - }; - 13FA0E0E378394577BDB7193E03212CB /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 6AE4A3D573DED275B034E20506596C62; - remoteInfo = FirebaseAuth; - }; - 15D405253E027B6BF8FF2AFDE6CDA105 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; - remoteInfo = nanopb; - }; - 1E95F9F52F85F3921D218AE18091971C /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 1C5E43B0A9555E7C2E43A6D7C8A23CF6; - remoteInfo = "gRPC-C++"; - }; - 281D15B79C0A3C91517E916184592E96 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; - remoteInfo = FirebaseCore; - }; - 339A8E4FE54598F9FDCF45E37957E450 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 445FD4CB16BB7BEE2D1C404951CDE14A; - remoteInfo = "BoringSSL-GRPC"; - }; - 39AA653FE82DDAB836FC2D0CB1C6846C /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 3B8CAC3956E59F928387D0C6310E3B37; - remoteInfo = "gRPC-C++-gRPCCertificates-Cpp"; - }; - 44F78228694D3F1149F22A24F6058E60 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 962124A759E27BE4799ED74362BED884; - remoteInfo = RecaptchaInterop; - }; - 44F8DBB93BED45935F835E6821E5F3A4 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 1C5E43B0A9555E7C2E43A6D7C8A23CF6; - remoteInfo = "gRPC-C++"; - }; - 5F1ABE896431D4B4BE0DAC3E88CFAEB1 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 73CDC3D182DB953135F62609681B443D; - remoteInfo = abseil; - }; - 6C64C8E49989898CAF50A674DC919417 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2BBF7206D7FAC92C82A042A99C4A98F8; - remoteInfo = PromisesObjC; - }; - 772847F55D8D17F4CEB7C82E6243D808 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 25E9E9A17BC3F670357D7385C521E48E; - remoteInfo = FirebaseCoreInternal; - }; - 77516DF990AC81D596F90C1E080D4417 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 9307B7A119490930CF70393AB529AAC1; - remoteInfo = "leveldb-library"; - }; - 835B29E930663597CF85193A564A9167 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 73CDC3D182DB953135F62609681B443D; - remoteInfo = abseil; - }; - 8636BA1C4E821FAF67B3FD250F1B3CFF /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 73CDC3D182DB953135F62609681B443D; - remoteInfo = abseil; - }; - 892A05AB3706D6ADED793DC7E45FDB3C /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; - remoteInfo = GoogleUtilities; - }; - 8A01F0A7D7F607F7292B158C12D3A808 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 445FD4CB16BB7BEE2D1C404951CDE14A; - remoteInfo = "BoringSSL-GRPC"; - }; - 8CACC490C808EBF0093E3B60F3D8B7FB /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = DD28B439BE8B17D9339D9B526F144347; - remoteInfo = FirebaseAppCheckInterop; - }; - 8D9493B2B2EC79E8296FBA4C9E21B750 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = DBA2B63E3A5FE83FE89E731664C9269F; - remoteInfo = FirebaseFirestore; - }; - 909EC62816A54B149A8937E032AE730E /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D676E21115185671D7258A56944ABE98; - remoteInfo = GTMSessionFetcher; - }; - 98C6F70F5B60375457935E4DCE425C17 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = DD28B439BE8B17D9339D9B526F144347; - remoteInfo = FirebaseAppCheckInterop; - }; - 9C5D176ED4362F60818541AE52550072 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; - remoteInfo = FirebaseCore; - }; - ACAD922DA9EFE1DA891F620648FA2798 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; - remoteInfo = GoogleUtilities; - }; - AFAAC13F209374C0751FC92B06CC0285 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 50F380A87A4FC4EC7EE3AC9BDADB6D2D; - remoteInfo = "gRPC-Core"; - }; - B2F29D15E7D891691964C100C0F2B289 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 962124A759E27BE4799ED74362BED884; - remoteInfo = RecaptchaInterop; - }; - B9CF5FCA1839679DBC99A2448E24CB6A /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D676E21115185671D7258A56944ABE98; - remoteInfo = GTMSessionFetcher; - }; - BA433DAD86E0D964296D72B3118D8DB1 /* PBXContainerItemProxy */ = { + C1E4F2F8101E860063100BCC8448BC3B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 8777C9F6889E59EFFD631D80AEE9048B; remoteInfo = shared; }; - BA95DF5C4243B8A17010CAD9640405AA /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; - remoteInfo = GoogleUtilities; - }; - DB5711E22796E24D301A5BC67D3CD042 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; - remoteInfo = GoogleUtilities; - }; - DC5F325B934200B17CA47A6384304083 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2BBF7206D7FAC92C82A042A99C4A98F8; - remoteInfo = PromisesObjC; - }; - E22A933A36D1FB840B320DB8E9C10429 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 9307B7A119490930CF70393AB529AAC1; - remoteInfo = "leveldb-library"; - }; - E5A7C0273F3ABB947D5A7DB302F15E10 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; - remoteInfo = FirebaseCore; - }; - EBD1B4110356D372E8DBE01AA1779445 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 25E9E9A17BC3F670357D7385C521E48E; - remoteInfo = FirebaseCoreInternal; - }; - FFEF86A80F718DCC829E8D72B46AACF2 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; - remoteInfo = nanopb; - }; /* End PBXContainerItemProxy section */ -/* Begin PBXCopyFilesBuildPhase section */ - 00AEB4C532B44BF42F01129113D7C4D8 /* Copy third_party/upb/upb/internal Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/third_party/upb/upb/internal"; - dstSubfolderSpec = 16; - files = ( - 6A2C8BFC61548F905FE1D9BE7713C79B /* decode.h in Copy third_party/upb/upb/internal Private Headers */, - EBFDE872B84EE3E67C189034AD06924C /* table.h in Copy third_party/upb/upb/internal Private Headers */, - 4373D1CC984CCE93ACF01D629F861EE7 /* upb.h in Copy third_party/upb/upb/internal Private Headers */, - E502D70C2AAFA42CDC6C7E92CAD0CFB2 /* vsnprintf_compat.h in Copy third_party/upb/upb/internal Private Headers */, - ); - name = "Copy third_party/upb/upb/internal Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 00E32F203B0EB77C462703EC9576E56F /* Copy impl/codegen Public Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/impl/codegen"; - dstSubfolderSpec = 16; - files = ( - 5456F26525158D00A0ADA188D2C9ED0F /* atm.h in Copy impl/codegen Public Headers */, - F02E0A5181216F3C3F936D81AB55B251 /* atm_gcc_atomic.h in Copy impl/codegen Public Headers */, - 36A60F061E281F49FF21E4C4420A71FF /* atm_gcc_sync.h in Copy impl/codegen Public Headers */, - C62B2FBF55B39691A00A3BDB0AF66289 /* atm_windows.h in Copy impl/codegen Public Headers */, - 2E2EC998B6995458AE9DED86D81B30BE /* byte_buffer.h in Copy impl/codegen Public Headers */, - 8734A22FD3B63274A31FBCBCDFDCD528 /* byte_buffer_reader.h in Copy impl/codegen Public Headers */, - 8D783037396434695D50553E497F1045 /* compression_types.h in Copy impl/codegen Public Headers */, - A6F65A52177FB28C051F3220610B2401 /* connectivity_state.h in Copy impl/codegen Public Headers */, - 6F942CADBF62EFF0759E7B922DF9C998 /* fork.h in Copy impl/codegen Public Headers */, - E3AB2816275D99822B54D56B72E21B12 /* gpr_slice.h in Copy impl/codegen Public Headers */, - D4211AE48DE51552903A0B6A1A595F25 /* gpr_types.h in Copy impl/codegen Public Headers */, - CABAB02E5107EBB27065E5BCFACD6B14 /* grpc_types.h in Copy impl/codegen Public Headers */, - 9A53B1A55C223AFA4514FD7A322C7229 /* log.h in Copy impl/codegen Public Headers */, - 530E71BA99AD474E42653188DE251D68 /* port_platform.h in Copy impl/codegen Public Headers */, - A2F41A54C3E80FD773F1381BE3A4DD23 /* propagation_bits.h in Copy impl/codegen Public Headers */, - DCFFDAAF812102F7A463784D8A596B87 /* slice.h in Copy impl/codegen Public Headers */, - F3C1370917B6D4278B05F6B9AED76AA6 /* status.h in Copy impl/codegen Public Headers */, - A37E95D086ED76F5F5ADD19F7810690A /* sync.h in Copy impl/codegen Public Headers */, - 9CF66B52DB02A77678BCB8305CE4F330 /* sync_abseil.h in Copy impl/codegen Public Headers */, - 7D1A828526E8471F60CCF5D3A1D653D0 /* sync_custom.h in Copy impl/codegen Public Headers */, - A9CAD8B3C38F073463C684A1E41B6F77 /* sync_generic.h in Copy impl/codegen Public Headers */, - 9CE4D7EFC43DDFB720100662D82C4CFD /* sync_posix.h in Copy impl/codegen Public Headers */, - 4BE68F6DD8963FA526B63FCB908641DF /* sync_windows.h in Copy impl/codegen Public Headers */, - ); - name = "Copy impl/codegen Public Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 015AA171EC47C645E1F3A453B62FA793 /* Copy src/core/ext/transport/inproc Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/transport/inproc"; - dstSubfolderSpec = 16; - files = ( - 47BC0DE09A88584233AA5CEB092AB2F1 /* inproc_transport.h in Copy src/core/ext/transport/inproc Private Headers */, - ); - name = "Copy src/core/ext/transport/inproc Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 01BF81780DD71BB03D3CB1BDD59707D3 /* Copy functional/internal Public Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/functional/internal"; - dstSubfolderSpec = 16; - files = ( - B12E949B55F3FD6D7784CA02CE82C95D /* any_invocable.h in Copy functional/internal Public Headers */, - BFFA52B67AA982B649D87A974619089D /* front_binder.h in Copy functional/internal Public Headers */, - 64B95102152D1EA56C4C937774E3935E /* function_ref.h in Copy functional/internal Public Headers */, - ); - name = "Copy functional/internal Public Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 024FDBE17B645F6D82F707D0DE40A5C9 /* Copy crypto/cipher_extra Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/crypto/cipher_extra"; - dstSubfolderSpec = 16; - files = ( - C45CADC7E6181DEA88C026A6F0B129C0 /* internal.h in Copy crypto/cipher_extra Private Headers */, - ); - name = "Copy crypto/cipher_extra Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 02C73B2EB9C2387C4D176FE80A5D975D /* Copy numeric/internal Public Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/numeric/internal"; - dstSubfolderSpec = 16; - files = ( - C4F617B8ECCD522DC34A84857BB126D2 /* bits.h in Copy numeric/internal Public Headers */, - E2F8F07A15A98032175D2E97CAC61F4F /* representation.h in Copy numeric/internal Public Headers */, - ); - name = "Copy numeric/internal Public Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 03D3ACF219F0A9650BF54AF217D47B84 /* Copy src/core/lib/load_balancing Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/load_balancing"; - dstSubfolderSpec = 16; - files = ( - F8E8FBDBC2904B0A85D1FA48307B5D03 /* lb_policy.h in Copy src/core/lib/load_balancing Private Headers */, - 003EF96D62DADBE316CD9C07403A35B8 /* lb_policy_factory.h in Copy src/core/lib/load_balancing Private Headers */, - 2CBCEEECB23259DF910E27BFC386C8EB /* lb_policy_registry.h in Copy src/core/lib/load_balancing Private Headers */, - 6A58430C83F8E601832C2680EE560235 /* subchannel_interface.h in Copy src/core/lib/load_balancing Private Headers */, - ); - name = "Copy src/core/lib/load_balancing Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 04C85824341B776D528CC5B4B555FB18 /* Copy src/core/ext/transport/chttp2/alpn Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/transport/chttp2/alpn"; - dstSubfolderSpec = 16; - files = ( - A70E9932184914B3857BA035DB056154 /* alpn.h in Copy src/core/ext/transport/chttp2/alpn Private Headers */, - ); - name = "Copy src/core/ext/transport/chttp2/alpn Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 0525B966E30C1143BADC8264A56FDFE4 /* Copy src/core/ext/transport/chttp2/server Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/transport/chttp2/server"; - dstSubfolderSpec = 16; - files = ( - B22DCF74FDFC475C6BC7531E155F2DCA /* chttp2_server.h in Copy src/core/ext/transport/chttp2/server Private Headers */, - ); - name = "Copy src/core/ext/transport/chttp2/server Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 05883D45CEC4107B8CC77A227865002F /* Copy src/core/ext/upbdefs-generated/envoy/type/tracing/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/type/tracing/v3"; - dstSubfolderSpec = 16; - files = ( - CFC862752D9B6588CAC55C6B17B1D053 /* custom_tag.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/tracing/v3 Private Headers */, - ); - name = "Copy src/core/ext/upbdefs-generated/envoy/type/tracing/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 05EEF048A86329E02F14484B6AB76740 /* Copy src/core/lib/event_engine/executor Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/event_engine/executor"; - dstSubfolderSpec = 16; - files = ( - 63BE8C81150940BB570D76CA1963ED68 /* executor.h in Copy src/core/lib/event_engine/executor Private Headers */, - 84CE9DD17BD60223F4CB8AD51358E5ED /* threaded_executor.h in Copy src/core/lib/event_engine/executor Private Headers */, - ); - name = "Copy src/core/lib/event_engine/executor Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 060C9D0B75C17A777AEF5875BD5F9D7E /* Copy src/core/ext/filters/channel_idle Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/channel_idle"; - dstSubfolderSpec = 16; - files = ( - EB248019B40F26C8C075A83C7F55D098 /* channel_idle_filter.h in Copy src/core/ext/filters/channel_idle Private Headers */, - D01EA500B88FAB996F97EB1A8D69131E /* idle_filter_state.h in Copy src/core/ext/filters/channel_idle Private Headers */, - ); - name = "Copy src/core/ext/filters/channel_idle Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 06506486FC43C09DC50F3D0FE3712A76 /* Copy src/core/ext/upbdefs-generated/envoy/type/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/type/v3"; - dstSubfolderSpec = 16; - files = ( - 9BB2B78A35D7268FF2364F305EF54914 /* hash_policy.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/v3 Private Headers */, - FB425EB7B1EC9CC9F71B58CBB56EDE0A /* http.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/v3 Private Headers */, - 2589A503A9879C10580B20DA03C49D3D /* http_status.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/v3 Private Headers */, - 25DA765563D84F49AE982AE2E7D0A64C /* percent.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/v3 Private Headers */, - 9706862F84ACE97723FDA10312BCA007 /* range.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/v3 Private Headers */, - 83CFD14CB20D40B05A8A7470B72D81CE /* ratelimit_strategy.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/v3 Private Headers */, - 37E13E8C1AEB622B6A190DBE0D76725C /* ratelimit_unit.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/v3 Private Headers */, - E31C0DDBE776671CD10A1C1A432D8BCB /* semantic_version.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/v3 Private Headers */, - 2E786DDFEBDA81EFB572D7985B2BBFBE /* token_bucket.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/v3 Private Headers */, - ); - name = "Copy src/core/ext/upbdefs-generated/envoy/type/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 065934ACA2F6FF710D2B1693AA076529 /* Copy src/core/lib/slice Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/slice"; - dstSubfolderSpec = 16; - files = ( - 33536C9E1B91EB828AECD00A89CF8CB2 /* b64.h in Copy src/core/lib/slice Private Headers */, - 8E57D4A7466B8DECE7E0EB0D1DEEC42C /* percent_encoding.h in Copy src/core/lib/slice Private Headers */, - 17294DD1CD9192B1A95504806C0705DF /* slice.h in Copy src/core/lib/slice Private Headers */, - CB1955967C01912A77BB9A985F3A1746 /* slice_buffer.h in Copy src/core/lib/slice Private Headers */, - A40BC34FFB28402AE789B8E36235FA0C /* slice_internal.h in Copy src/core/lib/slice Private Headers */, - 1B4D62A70402B0CCC068EADFBC442D3C /* slice_refcount.h in Copy src/core/lib/slice Private Headers */, - CAC95EE13DC689A496BC859AF4CC18D2 /* slice_refcount_base.h in Copy src/core/lib/slice Private Headers */, - 7BCB6E71856EA206E568398399902D61 /* slice_string_helpers.h in Copy src/core/lib/slice Private Headers */, - ); - name = "Copy src/core/lib/slice Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 0738E83640FCA41D0CF93CA4F97DFFBF /* Copy third_party/fiat Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/third_party/fiat"; - dstSubfolderSpec = 16; - files = ( - 51B39D8474146A6DD42E7A66A86CA183 /* curve25519_32.h in Copy third_party/fiat Private Headers */, - 453A522CF3A29BBE9A0A908CE9DDBC89 /* curve25519_64.h in Copy third_party/fiat Private Headers */, - 650D67F045C415E988E6A666B09CEC7F /* p256_32.h in Copy third_party/fiat Private Headers */, - F69BF2394FCF3C711A34587028516864 /* p256_64.h in Copy third_party/fiat Private Headers */, - ); - name = "Copy third_party/fiat Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 07FC7A54277A2DC2CCEDA6CC861FEB41 /* Copy src/core/lib/security/security_connector/local Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/security_connector/local"; - dstSubfolderSpec = 16; - files = ( - 106C93DE17024887A9EF4130004D39FA /* local_security_connector.h in Copy src/core/lib/security/security_connector/local Private Headers */, - ); - name = "Copy src/core/lib/security/security_connector/local Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 07FD77E7626E9331AA2D8DCD1567FB07 /* Copy src/core/ext/upb-generated/envoy/extensions/load_balancing_policies/wrr_locality/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/extensions/load_balancing_policies/wrr_locality/v3"; - dstSubfolderSpec = 16; - files = ( - 3D6EF62D3976A8B30ABE1EAD0084E0AB /* wrr_locality.upb.h in Copy src/core/ext/upb-generated/envoy/extensions/load_balancing_policies/wrr_locality/v3 Private Headers */, - ); - name = "Copy src/core/ext/upb-generated/envoy/extensions/load_balancing_policies/wrr_locality/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 0830E2901DA03035C3771BA83F8188B8 /* Copy src/core/lib/event_engine/windows Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/event_engine/windows"; - dstSubfolderSpec = 16; - files = ( - 39D0E667DA01BCEFD34306ADD9AE6587 /* iocp.h in Copy src/core/lib/event_engine/windows Private Headers */, - BA21FEA0D3F2DC6FE9B0CD3E313FAEC5 /* win_socket.h in Copy src/core/lib/event_engine/windows Private Headers */, - 7C138258627FFDB33D1C0A9F7EFAF094 /* windows_engine.h in Copy src/core/lib/event_engine/windows Private Headers */, - ); - name = "Copy src/core/lib/event_engine/windows Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 088391969F8A1EBCDE2B3A489099E968 /* Copy src/core/lib/channel Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/channel"; - dstSubfolderSpec = 16; - files = ( - 994DA9B1BCA3D8664505D475CC9E31B6 /* call_finalization.h in Copy src/core/lib/channel Private Headers */, - C455458420C153406DE0BCB432381A76 /* call_tracer.h in Copy src/core/lib/channel Private Headers */, - AE3D20142D77CC4BB7EE0917B068BCBB /* channel_args.h in Copy src/core/lib/channel Private Headers */, - 310055657070CCAE1D213934CC42C843 /* channel_args_preconditioning.h in Copy src/core/lib/channel Private Headers */, - 4C996AE80875E2685DDE725B44944F40 /* channel_fwd.h in Copy src/core/lib/channel Private Headers */, - F0BECE973814E3C7CC52C4DB63A440E5 /* channel_stack.h in Copy src/core/lib/channel Private Headers */, - D9BB3BA6A3105B4528C417316FCD6F95 /* channel_stack_builder.h in Copy src/core/lib/channel Private Headers */, - 87450994047B8587C17572001173096A /* channel_stack_builder_impl.h in Copy src/core/lib/channel Private Headers */, - D8DBE21F8BF84D44F89EEC67E4C0600E /* channel_trace.h in Copy src/core/lib/channel Private Headers */, - A3AA3D16716E4C92730970D51BB7CF30 /* channelz.h in Copy src/core/lib/channel Private Headers */, - C88F47F876D3FCCD5F3115C122CEC3E7 /* channelz_registry.h in Copy src/core/lib/channel Private Headers */, - 9FEDF39123891C8E4084ACC28C20E28A /* connected_channel.h in Copy src/core/lib/channel Private Headers */, - A07B2A614A90535626BC1B40EA9B5C7C /* context.h in Copy src/core/lib/channel Private Headers */, - FB8CEBF1A410E47A138F93DAA8B2E708 /* promise_based_filter.h in Copy src/core/lib/channel Private Headers */, - F214B98908945B06DCEA47DF87DA9441 /* status_util.h in Copy src/core/lib/channel Private Headers */, - ); - name = "Copy src/core/lib/channel Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 08D12150FC0499565C79BD56FD1B21D1 /* Copy src/core/ext/filters/client_channel Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/client_channel"; - dstSubfolderSpec = 16; - files = ( - 33E32E156657171DBAEB2C3944226982 /* backend_metric.h in Copy src/core/ext/filters/client_channel Private Headers */, - 705F43426947523D38DE26EACEC28C3E /* backup_poller.h in Copy src/core/ext/filters/client_channel Private Headers */, - 4ADAE1F495C0CA9E0BDF6C7FCFC45C28 /* client_channel.h in Copy src/core/ext/filters/client_channel Private Headers */, - AFE380D0070AA4DDBED7C549FEE2F068 /* client_channel_channelz.h in Copy src/core/ext/filters/client_channel Private Headers */, - 6A456B8830929ED41DEAC72A39F877FE /* client_channel_factory.h in Copy src/core/ext/filters/client_channel Private Headers */, - E775D5B948DF23C303E968AF471109F9 /* config_selector.h in Copy src/core/ext/filters/client_channel Private Headers */, - 17F0911A9C4A5D45C69BD954CEC69EB1 /* connector.h in Copy src/core/ext/filters/client_channel Private Headers */, - 424B360EE45837C6011A6C90FC0994A1 /* dynamic_filters.h in Copy src/core/ext/filters/client_channel Private Headers */, - 3A889C3DC93551ADF063E0EC89E0C4BD /* global_subchannel_pool.h in Copy src/core/ext/filters/client_channel Private Headers */, - 734BE476A88033002A4CD0B54743710A /* http_proxy.h in Copy src/core/ext/filters/client_channel Private Headers */, - 19CDB873E8B20B7BF37208C52CA054F4 /* local_subchannel_pool.h in Copy src/core/ext/filters/client_channel Private Headers */, - E84EF6A578F0E79AB284C4E97EE938BE /* resolver_result_parsing.h in Copy src/core/ext/filters/client_channel Private Headers */, - 8B586460BBB6BC599E63378005A4F7CA /* retry_filter.h in Copy src/core/ext/filters/client_channel Private Headers */, - DB3D46A9B59AE3767BFCAF95E3C12167 /* retry_service_config.h in Copy src/core/ext/filters/client_channel Private Headers */, - FBC439CBA415F2FE0DDBE6921DF91541 /* retry_throttle.h in Copy src/core/ext/filters/client_channel Private Headers */, - DAD4DA2BC15BF7E4273563CF46207A3A /* subchannel.h in Copy src/core/ext/filters/client_channel Private Headers */, - 04E741C372BF0ED68A2DCEE4B9781C8B /* subchannel_interface_internal.h in Copy src/core/ext/filters/client_channel Private Headers */, - 1CFA5A2BD2D350E99DD95FE62F89A4CE /* subchannel_pool_interface.h in Copy src/core/ext/filters/client_channel Private Headers */, - AC35C70DD39DE2DECAA99AEB39B31B31 /* subchannel_stream_client.h in Copy src/core/ext/filters/client_channel Private Headers */, - ); - name = "Copy src/core/ext/filters/client_channel Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 09FE269E18ADEF9DB211CE0CC88FA6B9 /* Copy crypto/bio Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/crypto/bio"; - dstSubfolderSpec = 16; - files = ( - 496AB22D61C596349406BD430F91B883 /* internal.h in Copy crypto/bio Private Headers */, - ); - name = "Copy crypto/bio Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 0A5F9229D5610CB0AD91B64A543056C4 /* Copy src/core/lib/service_config Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/service_config"; - dstSubfolderSpec = 16; - files = ( - 8DEE96671F862528B6A82EA654FFFAE2 /* service_config.h in Copy src/core/lib/service_config Private Headers */, - 4D9766A93CD8A7673C2602099C144DDF /* service_config_call_data.h in Copy src/core/lib/service_config Private Headers */, - BDD015EAE49DDD9F5ECD977E4415BFC5 /* service_config_impl.h in Copy src/core/lib/service_config Private Headers */, - 859ADEBEFD75B9FD96B8D86917D4E8B1 /* service_config_parser.h in Copy src/core/lib/service_config Private Headers */, - ); - name = "Copy src/core/lib/service_config Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 0C94BA8F0BB8F168CC31B67B440EA207 /* Copy src/core/ext/upbdefs-generated/google/api Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/google/api"; - dstSubfolderSpec = 16; - files = ( - 46D072816BCF929452828C74DD58614B /* annotations.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/api Private Headers */, - 72AC998BB11C49348216CF5DB2DC9E93 /* http.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/api Private Headers */, - 31289015456EF688C8031ECF7539D58B /* httpbody.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/api Private Headers */, - ); - name = "Copy src/core/ext/upbdefs-generated/google/api Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 0D4EF62EEF96CAF50E69484D0D4C7AB2 /* Copy src/core/lib/debug Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/debug"; - dstSubfolderSpec = 16; - files = ( - A99C646069541E46F4B6B295CD458D6E /* stats.h in Copy src/core/lib/debug Private Headers */, - 1232B1CD66CB2D7E79F5A880D31818F8 /* stats_data.h in Copy src/core/lib/debug Private Headers */, - B02F02B9F01567DDEED054B286C1662F /* trace.h in Copy src/core/lib/debug Private Headers */, - ); - name = "Copy src/core/lib/debug Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 0E0DBD5D8AAD7BCF04584E74E449A7ED /* Copy src/core/tsi/alts/crypt Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/tsi/alts/crypt"; - dstSubfolderSpec = 16; - files = ( - 0971912A324C30386943859378E126DA /* gsec.h in Copy src/core/tsi/alts/crypt Private Headers */, - ); - name = "Copy src/core/tsi/alts/crypt Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 0E114DB0EB5B94ED1C006DE50C889703 /* Copy src/core/lib/experiments Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/experiments"; - dstSubfolderSpec = 16; - files = ( - AF063F8F40C659D290DF2DDE61C26A23 /* config.h in Copy src/core/lib/experiments Private Headers */, - F8997C58CC861B0E5DAF05D2F415238F /* experiments.h in Copy src/core/lib/experiments Private Headers */, - ); - name = "Copy src/core/lib/experiments Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 0E335AB176AE4248F2271F2AC2773454 /* Copy src/core/ext/upb-generated/xds/data/orca/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/xds/data/orca/v3"; - dstSubfolderSpec = 16; - files = ( - E402C9563DE4157BADAB1E7A651B72F4 /* orca_load_report.upb.h in Copy src/core/ext/upb-generated/xds/data/orca/v3 Private Headers */, - ); - name = "Copy src/core/ext/upb-generated/xds/data/orca/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 0E7CC67F747282882FA1751FAAD38BC5 /* Copy src/core/tsi/alts/frame_protector Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/tsi/alts/frame_protector"; - dstSubfolderSpec = 16; - files = ( - 4EA9565297B828CF1215275BA2B2DFD7 /* alts_counter.h in Copy src/core/tsi/alts/frame_protector Private Headers */, - DD5D9EAB274A31658FB536A0CC7459BF /* alts_crypter.h in Copy src/core/tsi/alts/frame_protector Private Headers */, - 09AE993A744811D886C3CA2B1892D8EF /* alts_frame_protector.h in Copy src/core/tsi/alts/frame_protector Private Headers */, - D70FD05F3ADBA0A0EC45300CA2A172D2 /* alts_record_protocol_crypter_common.h in Copy src/core/tsi/alts/frame_protector Private Headers */, - B43E660989108BBFCC44DE7A850839E6 /* frame_handler.h in Copy src/core/tsi/alts/frame_protector Private Headers */, - ); - name = "Copy src/core/tsi/alts/frame_protector Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 0EA68739D21F3759DB63AE470A86E439 /* Copy crypto/trust_token Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/crypto/trust_token"; - dstSubfolderSpec = 16; - files = ( - 8E590B666E2BCD81AEB499499052A05F /* internal.h in Copy crypto/trust_token Private Headers */, - ); - name = "Copy crypto/trust_token Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 0FD47B42387051C392ABBD143D80F46B /* Copy ssl Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/ssl"; - dstSubfolderSpec = 16; - files = ( - 69395100B12F00A4A7E661EC14752654 /* internal.h in Copy ssl Private Headers */, - ); - name = "Copy ssl Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 0FFEC1F87DC9D07BCB7F0403C9AC6FAD /* Copy container Public Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/container"; - dstSubfolderSpec = 16; - files = ( - 36848DDFAAD277051CF114A6B18B944A /* fixed_array.h in Copy container Public Headers */, - 5DE9AC4096A4414CAA58501ACA822F17 /* flat_hash_map.h in Copy container Public Headers */, - D4FB16805679FC8F8AB9087B61B024EB /* flat_hash_set.h in Copy container Public Headers */, - C5C481F33611DF421804A9DB66922B74 /* inlined_vector.h in Copy container Public Headers */, - ); - name = "Copy container Public Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 1135F582EE419B247B5316AFC3F18A65 /* Copy src/core/ext/upbdefs-generated/envoy/extensions/filters/http/router/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/extensions/filters/http/router/v3"; - dstSubfolderSpec = 16; - files = ( - 913C8505763F91DD621B600FE61F22AE /* router.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/extensions/filters/http/router/v3 Private Headers */, - ); - name = "Copy src/core/ext/upbdefs-generated/envoy/extensions/filters/http/router/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 11A16F7DE3C7D8112C5A8CBAB277574C /* Copy src/core/ext/upbdefs-generated/validate Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/validate"; - dstSubfolderSpec = 16; - files = ( - 2A746110007B9AAC5CE86B9360AD2154 /* validate.upbdefs.h in Copy src/core/ext/upbdefs-generated/validate Private Headers */, - ); - name = "Copy src/core/ext/upbdefs-generated/validate Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 11AD3A956E988F32F5B34EAC2B2A7826 /* Copy src/core/ext/upb-generated/envoy/config/route/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/config/route/v3"; - dstSubfolderSpec = 16; - files = ( - 2A8BCDBE38CDC15025251B6AC93C49B6 /* route.upb.h in Copy src/core/ext/upb-generated/envoy/config/route/v3 Private Headers */, - C012565030B3E925262E0D2AAEEE578C /* route_components.upb.h in Copy src/core/ext/upb-generated/envoy/config/route/v3 Private Headers */, - 1F0ED82E335DFB117956DE43A02C2065 /* scoped_route.upb.h in Copy src/core/ext/upb-generated/envoy/config/route/v3 Private Headers */, - ); - name = "Copy src/core/ext/upb-generated/envoy/config/route/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 11E582B7EA73CA80545ABF89D6236E7D /* Copy src/core/lib/event_engine/executor Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/event_engine/executor"; - dstSubfolderSpec = 16; - files = ( - FEF10F23199156B37073881A8E4526BE /* executor.h in Copy src/core/lib/event_engine/executor Private Headers */, - 54B862B37AEB0083E02DA88D38FB2672 /* threaded_executor.h in Copy src/core/lib/event_engine/executor Private Headers */, - ); - name = "Copy src/core/lib/event_engine/executor Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 120543E24F370EC147B55BBCDB73820E /* Copy src/core/ext/upbdefs-generated/google/api/expr/v1alpha1 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/google/api/expr/v1alpha1"; - dstSubfolderSpec = 16; - files = ( - 850C841A607EE381BE3A4FC8CFD232EC /* checked.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/api/expr/v1alpha1 Private Headers */, - 9FCECFA7821EB9A4EB745389B5CF5DDE /* syntax.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/api/expr/v1alpha1 Private Headers */, - ); - name = "Copy src/core/ext/upbdefs-generated/google/api/expr/v1alpha1 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 12D333833482598C4E03AB6B0742ECC3 /* Copy src/core/lib/promise/detail Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/promise/detail"; - dstSubfolderSpec = 16; - files = ( - 412A75A990E6282A257B43917BEED001 /* basic_seq.h in Copy src/core/lib/promise/detail Private Headers */, - 42EFB8E228C171449D2C4F05051B1770 /* promise_factory.h in Copy src/core/lib/promise/detail Private Headers */, - ABDFA8DBF3083CD820281CEE356568DF /* promise_like.h in Copy src/core/lib/promise/detail Private Headers */, - 5AE53CC963D3DC624C2B69AA9E38EDD3 /* status.h in Copy src/core/lib/promise/detail Private Headers */, - ); - name = "Copy src/core/lib/promise/detail Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 130BBB4C6910A9F9898FA0F5A2568CE8 /* Copy src/core/lib/security/credentials/google_default Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/credentials/google_default"; - dstSubfolderSpec = 16; - files = ( - 3DDD402EF69A33F3CCD7D512A04D91F6 /* google_default_credentials.h in Copy src/core/lib/security/credentials/google_default Private Headers */, - ); - name = "Copy src/core/lib/security/credentials/google_default Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 13DC724F83A10812AEFDFD1D19AAAE4D /* Copy src/core/ext/upb-generated/envoy/type/tracing/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/type/tracing/v3"; - dstSubfolderSpec = 16; - files = ( - 165B0DC8028C1CE17EF18A82F8873AB7 /* custom_tag.upb.h in Copy src/core/ext/upb-generated/envoy/type/tracing/v3 Private Headers */, - ); - name = "Copy src/core/ext/upb-generated/envoy/type/tracing/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 150D564F77813F43348E62FF996FB77C /* Copy src/core/lib/security/security_connector/alts Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/security_connector/alts"; - dstSubfolderSpec = 16; - files = ( - F370F4040BE39C72EC015DD96D8B6F5B /* alts_security_connector.h in Copy src/core/lib/security/security_connector/alts Private Headers */, - ); - name = "Copy src/core/lib/security/security_connector/alts Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 1624946520C41B66B4FCCEE47D0C4F2A /* Copy src/core/ext/filters/http/message_compress Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/http/message_compress"; - dstSubfolderSpec = 16; - files = ( - DEA32B0A0AE24EBABBA7AEB4022FD703 /* message_compress_filter.h in Copy src/core/ext/filters/http/message_compress Private Headers */, - 1978656ACFAAB990B32117CC9C8CEF6F /* message_decompress_filter.h in Copy src/core/ext/filters/http/message_compress Private Headers */, - ); - name = "Copy src/core/ext/filters/http/message_compress Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 16EBB583CF25A19D55BD924FF509A591 /* Copy src/core/ext/upb-generated/google/protobuf Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/google/protobuf"; - dstSubfolderSpec = 16; - files = ( - EB198944F22F8CC44A4D1A355E3EBF7B /* any.upb.h in Copy src/core/ext/upb-generated/google/protobuf Private Headers */, - 5EB9FADBF94A68DF5BDF115DDA9802DB /* descriptor.upb.h in Copy src/core/ext/upb-generated/google/protobuf Private Headers */, - 9F8762BED1BD23966A43B1BE666072A2 /* duration.upb.h in Copy src/core/ext/upb-generated/google/protobuf Private Headers */, - 6D938E222BB6FF85FF098322D8C1DF39 /* empty.upb.h in Copy src/core/ext/upb-generated/google/protobuf Private Headers */, - 5DF2164B7FE4379B192BFAA219C7DFCB /* struct.upb.h in Copy src/core/ext/upb-generated/google/protobuf Private Headers */, - BA7A20B8AD73C6300ED25B6EF31DDF1A /* timestamp.upb.h in Copy src/core/ext/upb-generated/google/protobuf Private Headers */, - 2B4117FBC544AA2E6DF3BBBF59A9A819 /* wrappers.upb.h in Copy src/core/ext/upb-generated/google/protobuf Private Headers */, - ); - name = "Copy src/core/ext/upb-generated/google/protobuf Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 1865B32853B4BD8DB51C0821194AAC6F /* Copy src/core/lib/security/credentials/insecure Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/credentials/insecure"; - dstSubfolderSpec = 16; - files = ( - 24B436FC5C3350B6A90E4D8C98DCFA74 /* insecure_credentials.h in Copy src/core/lib/security/credentials/insecure Private Headers */, - ); - name = "Copy src/core/lib/security/credentials/insecure Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 1877EB95A35D090DF1BD4AFE41204D3E /* Copy crypto/chacha Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/crypto/chacha"; - dstSubfolderSpec = 16; - files = ( - B348C898DF7DC170D64932A85370FF53 /* internal.h in Copy crypto/chacha Private Headers */, - ); - name = "Copy crypto/chacha Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 19422CB541864DC18554EA05A69BAD9D /* Copy src/core/ext/upbdefs-generated/xds/type/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/xds/type/v3"; - dstSubfolderSpec = 16; - files = ( - B11885A5BCA38A951DD80E2545467F6E /* typed_struct.upbdefs.h in Copy src/core/ext/upbdefs-generated/xds/type/v3 Private Headers */, - ); - name = "Copy src/core/ext/upbdefs-generated/xds/type/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 198B4B0589A315C4F637BBD3157EE5E2 /* Copy src/core/lib/security/security_connector/tls Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/security_connector/tls"; - dstSubfolderSpec = 16; - files = ( - 8320385D55C4648DE8B4E309AEBE0A6F /* tls_security_connector.h in Copy src/core/lib/security/security_connector/tls Private Headers */, - ); - name = "Copy src/core/lib/security/security_connector/tls Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 19A6C9B12EA95CE1D2E8608365910D88 /* Copy third_party/upb/upb/internal Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/third_party/upb/upb/internal"; - dstSubfolderSpec = 16; - files = ( - 29C9FC0DED431DA2D4A524536D7BCD34 /* decode.h in Copy third_party/upb/upb/internal Private Headers */, - 942BE4B4B8DAD0A4897D7317D898EFF1 /* table.h in Copy third_party/upb/upb/internal Private Headers */, - 62060AAE66A09A8FC389CC2D9C147B67 /* upb.h in Copy third_party/upb/upb/internal Private Headers */, - 4E1104B0081D6C14688D51B7EC827102 /* vsnprintf_compat.h in Copy third_party/upb/upb/internal Private Headers */, - ); - name = "Copy third_party/upb/upb/internal Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 1AEF86A0EB81DEC6170FB4F8D079CE8F /* Copy src/core/ext/upb-generated/envoy/config/trace/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/config/trace/v3"; - dstSubfolderSpec = 16; - files = ( - F273D42D9CFA493AC1001065C3B1EB4E /* datadog.upb.h in Copy src/core/ext/upb-generated/envoy/config/trace/v3 Private Headers */, - 358282EF44F14398DB1FA4CB6F6D6DE3 /* dynamic_ot.upb.h in Copy src/core/ext/upb-generated/envoy/config/trace/v3 Private Headers */, - A978BEF6F5EDA55FF02F07DBE8BA3704 /* http_tracer.upb.h in Copy src/core/ext/upb-generated/envoy/config/trace/v3 Private Headers */, - 2A160B78AE0443F61D7437EC18945735 /* lightstep.upb.h in Copy src/core/ext/upb-generated/envoy/config/trace/v3 Private Headers */, - 227CAC273AD1887ED0610A383F0F25A2 /* opencensus.upb.h in Copy src/core/ext/upb-generated/envoy/config/trace/v3 Private Headers */, - AA086B44D890FBFABFC5404BCAB14E07 /* opentelemetry.upb.h in Copy src/core/ext/upb-generated/envoy/config/trace/v3 Private Headers */, - C424D1CCE345BD6FF3689C644F2DD621 /* service.upb.h in Copy src/core/ext/upb-generated/envoy/config/trace/v3 Private Headers */, - E52CC116C114BE5B30838E263C6C0E9C /* skywalking.upb.h in Copy src/core/ext/upb-generated/envoy/config/trace/v3 Private Headers */, - BB739E6095AA54E0B8B16C95ED2B20D0 /* trace.upb.h in Copy src/core/ext/upb-generated/envoy/config/trace/v3 Private Headers */, - 1CE7F954994F1D0C7C82E0C4C2FB2177 /* xray.upb.h in Copy src/core/ext/upb-generated/envoy/config/trace/v3 Private Headers */, - AA727BC927ADB7BCDE0840A4B3E145BE /* zipkin.upb.h in Copy src/core/ext/upb-generated/envoy/config/trace/v3 Private Headers */, - ); - name = "Copy src/core/ext/upb-generated/envoy/config/trace/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 1C380A1A7AEED6B283AA5895A2655B24 /* Copy src/core/lib/gpr Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/gpr"; - dstSubfolderSpec = 16; - files = ( - AA02759420CD4180BFA3B81B362BCFC3 /* alloc.h in Copy src/core/lib/gpr Private Headers */, - 9C391F169710C3C50F72D3A19A1524E0 /* murmur_hash.h in Copy src/core/lib/gpr Private Headers */, - 78E09F3B3977B527A355C4634C390806 /* spinlock.h in Copy src/core/lib/gpr Private Headers */, - 5AA83B910F431B92B0B3ED290E7EA4FE /* string.h in Copy src/core/lib/gpr Private Headers */, - 2B3773F24D2759DB2FADF1AE8C41AB7F /* time_precise.h in Copy src/core/lib/gpr Private Headers */, - 78C0C19CB904458FC55086A8F0C9BAE9 /* tls.h in Copy src/core/lib/gpr Private Headers */, - 178239EF12057A8C54E1FEB8313BF89B /* tmpfile.h in Copy src/core/lib/gpr Private Headers */, - 14AB680A4F1C8D2CCCB12DE25260B6C9 /* useful.h in Copy src/core/lib/gpr Private Headers */, - ); - name = "Copy src/core/lib/gpr Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 1CD28B3B1D3552B389A527D38FB292FB /* Copy src/core/lib/security/credentials/jwt Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/credentials/jwt"; - dstSubfolderSpec = 16; - files = ( - EC67ACF60B39892140F28B31E3DA2D4E /* json_token.h in Copy src/core/lib/security/credentials/jwt Private Headers */, - E3F4DF306FAC98D5340BA1081FF59F56 /* jwt_credentials.h in Copy src/core/lib/security/credentials/jwt Private Headers */, - B1A2B09E51F41A4B8001CFBCA6087410 /* jwt_verifier.h in Copy src/core/lib/security/credentials/jwt Private Headers */, - ); - name = "Copy src/core/lib/security/credentials/jwt Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 1D77577769BA08C5031C4F6E029B112D /* Copy src/core/ext/upbdefs-generated/google/api/expr/v1alpha1 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/google/api/expr/v1alpha1"; - dstSubfolderSpec = 16; - files = ( - A1D1F145E55CC5CC44D5BA981E84DB2B /* checked.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/api/expr/v1alpha1 Private Headers */, - E22C5E3D0646B2AECD2EEB99F33A188A /* syntax.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/api/expr/v1alpha1 Private Headers */, - ); - name = "Copy src/core/ext/upbdefs-generated/google/api/expr/v1alpha1 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 1E105FB797BC7C4A67F7A5AFFB62C578 /* Copy base Public Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/base"; - dstSubfolderSpec = 16; - files = ( - 9325C754A001A3BE98A43835D174E494 /* attributes.h in Copy base Public Headers */, - 098361F5049315921A1D981CD14443CD /* call_once.h in Copy base Public Headers */, - 5A4F0B57CF6C3FD57466871E14DD8CE2 /* casts.h in Copy base Public Headers */, - 030F4AF3066955233F90015038CB51A1 /* config.h in Copy base Public Headers */, - A7E3561E6EE763F2FF9203AC33968502 /* const_init.h in Copy base Public Headers */, - 55B636A628AE1678B11D29910CA54C5C /* dynamic_annotations.h in Copy base Public Headers */, - 02CC5C385AA431B10C058DE9C9291234 /* log_severity.h in Copy base Public Headers */, - 5B306E6ED6ACC600F9AFE2B876DF015D /* macros.h in Copy base Public Headers */, - B2ABC53B6E354C3593E65F7B9D681706 /* optimization.h in Copy base Public Headers */, - 2678AD370BE5133723153900100F44A4 /* options.h in Copy base Public Headers */, - E733D9637CC44D907281CDC0B8FE435C /* policy_checks.h in Copy base Public Headers */, - 9C85B6DC4E4BDD98B5D1989AFC48D8AD /* port.h in Copy base Public Headers */, - 7FCF2249642A837E98810DD936565229 /* thread_annotations.h in Copy base Public Headers */, - ); - name = "Copy base Public Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 1E4026918EF1FE99A7FDCAE1B4854B0F /* Copy src/core/ext/upbdefs-generated/envoy/extensions/filters/network/http_connection_manager/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/extensions/filters/network/http_connection_manager/v3"; - dstSubfolderSpec = 16; - files = ( - 8B37BD74A15494EE4382E61DC55B8D4E /* http_connection_manager.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/extensions/filters/network/http_connection_manager/v3 Private Headers */, - ); - name = "Copy src/core/ext/upbdefs-generated/envoy/extensions/filters/network/http_connection_manager/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 1E76C800298E714981C2A2C05A139DBB /* Copy crypto/fipsmodule/tls Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/crypto/fipsmodule/tls"; - dstSubfolderSpec = 16; - files = ( - 36C1B5A328A4A2183CEACE5BF9DE3D06 /* internal.h in Copy crypto/fipsmodule/tls Private Headers */, - ); - name = "Copy crypto/fipsmodule/tls Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 1E994DACC48D4D0B68609897F411CF09 /* Copy src/core/ext/upb-generated/envoy/service/load_stats/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/service/load_stats/v3"; - dstSubfolderSpec = 16; - files = ( - 728B05AD033D7A46C77BEBCB2D97F57D /* lrs.upb.h in Copy src/core/ext/upb-generated/envoy/service/load_stats/v3 Private Headers */, - ); - name = "Copy src/core/ext/upb-generated/envoy/service/load_stats/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 1EA4E0237E201EEDC6B03979FBBFDAE3 /* Copy src/core/lib/handshaker Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/handshaker"; - dstSubfolderSpec = 16; - files = ( - E8F84845D50A652C70C3306CA2BC09A7 /* proxy_mapper.h in Copy src/core/lib/handshaker Private Headers */, - 28360371AC6A8E83AFFBC7449E78817E /* proxy_mapper_registry.h in Copy src/core/lib/handshaker Private Headers */, - ); - name = "Copy src/core/lib/handshaker Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 1ECA774DBEA19730BF3DF7804818F727 /* Copy src/core/ext/upb-generated/envoy/config/trace/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/config/trace/v3"; - dstSubfolderSpec = 16; - files = ( - DFBD93E6839C96A1EE573151E827B53A /* datadog.upb.h in Copy src/core/ext/upb-generated/envoy/config/trace/v3 Private Headers */, - 3FB8BA56FDCCA09FD2FEAD9428C66517 /* dynamic_ot.upb.h in Copy src/core/ext/upb-generated/envoy/config/trace/v3 Private Headers */, - 23283F8A9F386ACCF42D3D146FDFD976 /* http_tracer.upb.h in Copy src/core/ext/upb-generated/envoy/config/trace/v3 Private Headers */, - 803F643FC05989850401C4DF6FD4C25A /* lightstep.upb.h in Copy src/core/ext/upb-generated/envoy/config/trace/v3 Private Headers */, - E0A448055D7EC995DE5F16C4AA3A737B /* opencensus.upb.h in Copy src/core/ext/upb-generated/envoy/config/trace/v3 Private Headers */, - 4433CD88531E56002128080BDB347F04 /* opentelemetry.upb.h in Copy src/core/ext/upb-generated/envoy/config/trace/v3 Private Headers */, - 09715484AAE5CD1EE5324687C52E5E44 /* service.upb.h in Copy src/core/ext/upb-generated/envoy/config/trace/v3 Private Headers */, - C213300CDD814131153C7DA539602BF7 /* skywalking.upb.h in Copy src/core/ext/upb-generated/envoy/config/trace/v3 Private Headers */, - 47E4377A8A2A02BF8A0C5E8E20E8082A /* trace.upb.h in Copy src/core/ext/upb-generated/envoy/config/trace/v3 Private Headers */, - DA4F6601DD48B541EB9F62CC605C06E3 /* xray.upb.h in Copy src/core/ext/upb-generated/envoy/config/trace/v3 Private Headers */, - BE99DC2E1FF9D0EC7B49579DA31AAA1F /* zipkin.upb.h in Copy src/core/ext/upb-generated/envoy/config/trace/v3 Private Headers */, - ); - name = "Copy src/core/ext/upb-generated/envoy/config/trace/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 1ED08743DFAA448FD10DB2E9AAE1BABB /* Copy src/core/lib/event_engine/posix_engine Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/event_engine/posix_engine"; - dstSubfolderSpec = 16; - files = ( - 5CD432B7118CD79B5EC4349DD604FA4D /* posix_engine.h in Copy src/core/lib/event_engine/posix_engine Private Headers */, - 138416BA01B326BAD735A79B06F32201 /* timer.h in Copy src/core/lib/event_engine/posix_engine Private Headers */, - FFF87CDE0346C27FFB5A66CD4F7EE64A /* timer_heap.h in Copy src/core/lib/event_engine/posix_engine Private Headers */, - 65AD4B680DE1E109BAA0159733FD9E39 /* timer_manager.h in Copy src/core/lib/event_engine/posix_engine Private Headers */, - ); - name = "Copy src/core/lib/event_engine/posix_engine Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 220B7216D44CBE89AD6188A1ECD01508 /* Copy src/core/lib/uri Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/uri"; - dstSubfolderSpec = 16; - files = ( - 8A75F0C5D1CB01E047B90D2D52933C69 /* uri_parser.h in Copy src/core/lib/uri Private Headers */, - ); - name = "Copy src/core/lib/uri Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 22A1976F62A45BC537A865F9FE948E18 /* Copy src/core/ext/filters/http/client Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/http/client"; - dstSubfolderSpec = 16; - files = ( - 1A2F2B98A423023F02707B440CDF0E90 /* http_client_filter.h in Copy src/core/ext/filters/http/client Private Headers */, - ); - name = "Copy src/core/ext/filters/http/client Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 22B0858CC00ABDC8F2CA93CCFAB03985 /* Copy src/core/ext/upbdefs-generated/udpa/annotations Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/udpa/annotations"; - dstSubfolderSpec = 16; - files = ( - 199ECC429CFA1E502DAF097461993B6C /* migrate.upbdefs.h in Copy src/core/ext/upbdefs-generated/udpa/annotations Private Headers */, - 5E0A862514DC9B3C743394ED6452BF45 /* security.upbdefs.h in Copy src/core/ext/upbdefs-generated/udpa/annotations Private Headers */, - 616CDFDFF5E7009CB2329503DA793528 /* sensitive.upbdefs.h in Copy src/core/ext/upbdefs-generated/udpa/annotations Private Headers */, - 5EBD39B6E514D7F148ACD105F39367A1 /* status.upbdefs.h in Copy src/core/ext/upbdefs-generated/udpa/annotations Private Headers */, - 3C2B08C0EA080BF04AEBE3276B171B69 /* versioning.upbdefs.h in Copy src/core/ext/upbdefs-generated/udpa/annotations Private Headers */, - ); - name = "Copy src/core/ext/upbdefs-generated/udpa/annotations Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 236E7C0077A4BCF54ADF19F8381F4180 /* Copy src/core/lib/event_engine/windows Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/event_engine/windows"; - dstSubfolderSpec = 16; - files = ( - AD1833DF5009F95E4D54204E57C6150F /* iocp.h in Copy src/core/lib/event_engine/windows Private Headers */, - 92BF700AE40E79BE78B17BA35B9E8C6A /* win_socket.h in Copy src/core/lib/event_engine/windows Private Headers */, - 6E4A1156747FC74A4930BB06FF8E9168 /* windows_engine.h in Copy src/core/lib/event_engine/windows Private Headers */, - ); - name = "Copy src/core/lib/event_engine/windows Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 24E94116D0004314E7884C8FDC84815D /* Copy src/core/ext/upb-generated/envoy/config/rbac/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/config/rbac/v3"; - dstSubfolderSpec = 16; - files = ( - E80FD429CED6930B73FC63971123390E /* rbac.upb.h in Copy src/core/ext/upb-generated/envoy/config/rbac/v3 Private Headers */, - ); - name = "Copy src/core/ext/upb-generated/envoy/config/rbac/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 25E57BB6D584E87EFEAAB382015ACEA4 /* Copy src/core/ext/filters/client_channel/lb_policy/outlier_detection Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/client_channel/lb_policy/outlier_detection"; - dstSubfolderSpec = 16; - files = ( - AC3A8E6A9A4C6AC15057B40155740CEB /* outlier_detection.h in Copy src/core/ext/filters/client_channel/lb_policy/outlier_detection Private Headers */, - ); - name = "Copy src/core/ext/filters/client_channel/lb_policy/outlier_detection Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 2670EB31D53484B0F36425FC5BB7CBB5 /* Copy src/core/ext/filters/deadline Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/deadline"; - dstSubfolderSpec = 16; - files = ( - 0BA999FEA6BDDB5DBB53ADD471901E16 /* deadline_filter.h in Copy src/core/ext/filters/deadline Private Headers */, - ); - name = "Copy src/core/ext/filters/deadline Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 26B149A8D44DB535DAF68AA0724A4CEC /* Copy src/core/ext/upb-generated/envoy/extensions/filters/http/router/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/extensions/filters/http/router/v3"; - dstSubfolderSpec = 16; - files = ( - 83E3144872413FC86E9648FB7CDE4194 /* router.upb.h in Copy src/core/ext/upb-generated/envoy/extensions/filters/http/router/v3 Private Headers */, - ); - name = "Copy src/core/ext/upb-generated/envoy/extensions/filters/http/router/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 27168ECC45E87404BAB4223987A7ED12 /* Copy src/core/ext/transport/chttp2/client Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/transport/chttp2/client"; - dstSubfolderSpec = 16; - files = ( - 7AE1CEB42C37B3A0962D16F2D1D2546A /* chttp2_connector.h in Copy src/core/ext/transport/chttp2/client Private Headers */, - ); - name = "Copy src/core/ext/transport/chttp2/client Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 2728422C77E7218CFD873DDBAD2C9FB1 /* Copy src/core/ext/upb-generated/envoy/admin/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/admin/v3"; - dstSubfolderSpec = 16; - files = ( - 746CBF8A900AFBC6240D0FA1F2A37A90 /* certs.upb.h in Copy src/core/ext/upb-generated/envoy/admin/v3 Private Headers */, - E1434D7D41248D125C8779E86AE7CD0E /* clusters.upb.h in Copy src/core/ext/upb-generated/envoy/admin/v3 Private Headers */, - 9FB8B3C571AD9149D3EA19EE6EBCC03E /* config_dump.upb.h in Copy src/core/ext/upb-generated/envoy/admin/v3 Private Headers */, - 1282F8686D763233CFFA4FA2DB8D1847 /* config_dump_shared.upb.h in Copy src/core/ext/upb-generated/envoy/admin/v3 Private Headers */, - EE4E8C541042518CDBD862897921D8BA /* init_dump.upb.h in Copy src/core/ext/upb-generated/envoy/admin/v3 Private Headers */, - 61E25343B5516D7635099971EA9FB102 /* listeners.upb.h in Copy src/core/ext/upb-generated/envoy/admin/v3 Private Headers */, - 4C70192C3A757EC7BE9D2304455094A6 /* memory.upb.h in Copy src/core/ext/upb-generated/envoy/admin/v3 Private Headers */, - 28CAA024A2B0C6D98075780EEA32B4E8 /* metrics.upb.h in Copy src/core/ext/upb-generated/envoy/admin/v3 Private Headers */, - C255437A9EF90CDE3BDF1430BC3631A5 /* mutex_stats.upb.h in Copy src/core/ext/upb-generated/envoy/admin/v3 Private Headers */, - 4479B52380E156E8106D0585D06925EE /* server_info.upb.h in Copy src/core/ext/upb-generated/envoy/admin/v3 Private Headers */, - D8E135E3B9FD1FA76CC621ED86FC883B /* tap.upb.h in Copy src/core/ext/upb-generated/envoy/admin/v3 Private Headers */, - ); - name = "Copy src/core/ext/upb-generated/envoy/admin/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 27CA9D4655E3CFC2EF8592B4786765D6 /* Copy time/internal/cctz/src Public Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/time/internal/cctz/src"; - dstSubfolderSpec = 16; - files = ( - 58C4A18BD5C17B8CCCD225BC9C6CB10C /* time_zone_fixed.h in Copy time/internal/cctz/src Public Headers */, - 3902DA8BAD8C1F4544B673A64A2F3F81 /* time_zone_if.h in Copy time/internal/cctz/src Public Headers */, - 572E18C76168CCFE01CED723F32B1A41 /* time_zone_impl.h in Copy time/internal/cctz/src Public Headers */, - 437066EBA9085F1D3E407807CA2880D1 /* time_zone_info.h in Copy time/internal/cctz/src Public Headers */, - 328B0DA4E9E7053E23B1A30E39DB083B /* time_zone_libc.h in Copy time/internal/cctz/src Public Headers */, - 29F4F3F9382BA4BB3AD79AA4B6A38E8F /* time_zone_posix.h in Copy time/internal/cctz/src Public Headers */, - 2DC522CC32F2297D5349513D539DF27F /* tzfile.h in Copy time/internal/cctz/src Public Headers */, - ); - name = "Copy time/internal/cctz/src Public Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 2801F644603D4923DE5525E71883FE73 /* Copy src/core/ext/filters/client_channel/resolver/dns Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/client_channel/resolver/dns"; - dstSubfolderSpec = 16; - files = ( - 2D5F196ED959820AC19ACBA6ED70020E /* dns_resolver_selection.h in Copy src/core/ext/filters/client_channel/resolver/dns Private Headers */, - ); - name = "Copy src/core/ext/filters/client_channel/resolver/dns Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 29F35B2CF99D7691ECCC42FA785FA858 /* Copy src/core/ext/upbdefs-generated/envoy/annotations Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/annotations"; - dstSubfolderSpec = 16; - files = ( - D9A101331E92CD4CA4D77165873BACB8 /* deprecation.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/annotations Private Headers */, - 2D128BFEDB853BF2C7A9B8B5670E531C /* resource.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/annotations Private Headers */, - ); - name = "Copy src/core/ext/upbdefs-generated/envoy/annotations Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 2AB8253625D9A5622BD417D4F94AFE8A /* Copy src/core/ext/upbdefs-generated/envoy/config/overload/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/config/overload/v3"; - dstSubfolderSpec = 16; - files = ( - 7D327ED88D0A91EE11885ABA14A1F296 /* overload.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/overload/v3 Private Headers */, - ); - name = "Copy src/core/ext/upbdefs-generated/envoy/config/overload/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 2B86094AF7A9F1348D09A77E57CB5A91 /* Copy src/core/ext/filters/client_channel/lb_policy/grpclb Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/client_channel/lb_policy/grpclb"; - dstSubfolderSpec = 16; - files = ( - 422ECDCCA99C9220B1A44855AB20EEF1 /* client_load_reporting_filter.h in Copy src/core/ext/filters/client_channel/lb_policy/grpclb Private Headers */, - 153E53EE18A35DC1929B0371A8C63665 /* grpclb.h in Copy src/core/ext/filters/client_channel/lb_policy/grpclb Private Headers */, - 84463A02B79B99EEF8499A7EFBD75B9A /* grpclb_balancer_addresses.h in Copy src/core/ext/filters/client_channel/lb_policy/grpclb Private Headers */, - EF8744050D2EDE355B96CE8DA5F60928 /* grpclb_client_stats.h in Copy src/core/ext/filters/client_channel/lb_policy/grpclb Private Headers */, - 1648AFBF3F46EA2CE18B66448C4F6F63 /* load_balancer_api.h in Copy src/core/ext/filters/client_channel/lb_policy/grpclb Private Headers */, - ); - name = "Copy src/core/ext/filters/client_channel/lb_policy/grpclb Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 2C2921CE60403F4293AEFBC6ED4650FA /* Copy src/core/ext/filters/message_size Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/message_size"; - dstSubfolderSpec = 16; - files = ( - 9C0384024D5049BF2DB00AA244BB4BF7 /* message_size_filter.h in Copy src/core/ext/filters/message_size Private Headers */, - ); - name = "Copy src/core/ext/filters/message_size Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 2C2D5A89A33C8DA6B04C715CA3A0A230 /* Copy src/core/lib/security/security_connector Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/security_connector"; - dstSubfolderSpec = 16; - files = ( - 968B8A166B54FB195717DBA1E95E2FD0 /* load_system_roots.h in Copy src/core/lib/security/security_connector Private Headers */, - A0C8DFC92AFBD918392BA054EB5CA45D /* load_system_roots_supported.h in Copy src/core/lib/security/security_connector Private Headers */, - AFD51DBFD871810B171E1C3D7C12C6B9 /* security_connector.h in Copy src/core/lib/security/security_connector Private Headers */, - F8B357DA88D8259EA737EFCAFECF4312 /* ssl_utils.h in Copy src/core/lib/security/security_connector Private Headers */, - 9912FD011B1E95249FF0A6D2D40836B0 /* ssl_utils_config.h in Copy src/core/lib/security/security_connector Private Headers */, - ); - name = "Copy src/core/lib/security/security_connector Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 2C5B53D062CCFA0EE82B2CC4C3A86932 /* Copy src/core/lib/security/credentials/plugin Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/credentials/plugin"; - dstSubfolderSpec = 16; - files = ( - 1AA80E240BF54C099EDD1C2A62F2D0E9 /* plugin_credentials.h in Copy src/core/lib/security/credentials/plugin Private Headers */, - ); - name = "Copy src/core/lib/security/credentials/plugin Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 2E044336C5623E9CE060CC6829B83C95 /* Copy src/core/ext/filters/client_channel/lb_policy/xds Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/client_channel/lb_policy/xds"; - dstSubfolderSpec = 16; - files = ( - AD336376DA55DB3A6EEE985D7AE3501A /* xds.h in Copy src/core/ext/filters/client_channel/lb_policy/xds Private Headers */, - 89CA49027B942CFAAFC424B3251475F6 /* xds_channel_args.h in Copy src/core/ext/filters/client_channel/lb_policy/xds Private Headers */, - ); - name = "Copy src/core/ext/filters/client_channel/lb_policy/xds Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 2FEDAC0F946809DF67EAB7E374079FAA /* Copy src/core/lib/security/credentials/alts Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/credentials/alts"; - dstSubfolderSpec = 16; - files = ( - 3397F76301A8E160926C4E4C4472926C /* alts_credentials.h in Copy src/core/lib/security/credentials/alts Private Headers */, - A80B718C6CFB03ECC3F10E8820513E1A /* check_gcp_environment.h in Copy src/core/lib/security/credentials/alts Private Headers */, - 1F50F8537D80C63587FE9B0667EA9631 /* grpc_alts_credentials_options.h in Copy src/core/lib/security/credentials/alts Private Headers */, - ); - name = "Copy src/core/lib/security/credentials/alts Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 2FFF28C5E3109770DCADC27B953C1F48 /* Copy support Public Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/support"; - dstSubfolderSpec = 16; - files = ( - 819F534A4C9E5A12236EB5D5D8B0FC49 /* async_stream.h in Copy support Public Headers */, - F240ACC7B96095A5B5A0E4317C69CE0D /* async_unary_call.h in Copy support Public Headers */, - E5C2139A5F10FC506E29DE60451762A1 /* byte_buffer.h in Copy support Public Headers */, - 7DAB5EBACB5F9803EA19577E6DF764BF /* channel_arguments.h in Copy support Public Headers */, - F35496EE51DB875AC013230F4B3E3A59 /* client_callback.h in Copy support Public Headers */, - 281F4165C53FC53D7A1DB3803925A1C7 /* client_interceptor.h in Copy support Public Headers */, - A9E419257AF60AFD2E621091EE5B41C2 /* config.h in Copy support Public Headers */, - F292EC6572CC2ABEA31CAA679C496A2D /* interceptor.h in Copy support Public Headers */, - FED1753F8FE95C2BA25437D27FEBC11A /* message_allocator.h in Copy support Public Headers */, - 13E029C2EB2F62235C5DDA52B3359800 /* method_handler.h in Copy support Public Headers */, - 99889ABC81BC308E6B47DD36ECB3E2E7 /* proto_buffer_reader.h in Copy support Public Headers */, - CD180D9F4727A14190D3BE91BCE224EB /* proto_buffer_writer.h in Copy support Public Headers */, - CEB37C9BE423CF7BC83C4749E4A8B510 /* server_callback.h in Copy support Public Headers */, - CC966E5850E71EB60744E62ACDA1A7B1 /* server_interceptor.h in Copy support Public Headers */, - 3032EDF195E3780B045A01903EA3B1A0 /* slice.h in Copy support Public Headers */, - 5D83AEF01A521BBE271AFCCD98ABDB4C /* status.h in Copy support Public Headers */, - 40DAE98FC6BD07CD86F0D2DF757CED0B /* status_code_enum.h in Copy support Public Headers */, - 0EB09B0ADE36A3C6BD398619AD6562F0 /* string_ref.h in Copy support Public Headers */, - 5681C6CD2B1ECF3E29B508B6068CECE6 /* stub_options.h in Copy support Public Headers */, - 6453E3C9CF7F8805FD32B0A8216FFF78 /* sync_stream.h in Copy support Public Headers */, - 8DD6A35B90E0C1CF16F67D7A6A73A95C /* time.h in Copy support Public Headers */, - AC5582E13CA0C785C8F15C345EEB666A /* validate_service_config.h in Copy support Public Headers */, - ); - name = "Copy support Public Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 301A7EE75B99D2BF64A0F3BAE2330F4C /* Copy src/core/ext/upb-generated/envoy/extensions/load_balancing_policies/ring_hash/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/extensions/load_balancing_policies/ring_hash/v3"; - dstSubfolderSpec = 16; - files = ( - 530A01C81D95E43083E95FFEDE32C455 /* ring_hash.upb.h in Copy src/core/ext/upb-generated/envoy/extensions/load_balancing_policies/ring_hash/v3 Private Headers */, - ); - name = "Copy src/core/ext/upb-generated/envoy/extensions/load_balancing_policies/ring_hash/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 3062A88EA5FF0139517AB2C3C791F0AE /* Copy crypto/fipsmodule/cipher Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/crypto/fipsmodule/cipher"; - dstSubfolderSpec = 16; - files = ( - 7FB25F14E090F17FBB1FD9510A0D89A9 /* internal.h in Copy crypto/fipsmodule/cipher Private Headers */, - ); - name = "Copy crypto/fipsmodule/cipher Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 30A09F22208D60DC68B33192C2B1733F /* Copy src/core/ext/upb-generated/xds/type/matcher/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/xds/type/matcher/v3"; - dstSubfolderSpec = 16; - files = ( - 04D40BCBE65FFEFE677FF7ACA84AF102 /* matcher.upb.h in Copy src/core/ext/upb-generated/xds/type/matcher/v3 Private Headers */, - 5C567E8B12213A153EF4410A8A47271F /* regex.upb.h in Copy src/core/ext/upb-generated/xds/type/matcher/v3 Private Headers */, - 38B6B814FEB86E4AF1E83EF3EF6AB2B8 /* string.upb.h in Copy src/core/ext/upb-generated/xds/type/matcher/v3 Private Headers */, - ); - name = "Copy src/core/ext/upb-generated/xds/type/matcher/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 30E741D86413B9A1CF9BBBD7C900134B /* Copy src/core/ext/upbdefs-generated/envoy/type/matcher/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/type/matcher/v3"; - dstSubfolderSpec = 16; - files = ( - B61C37B5A68B3F5385E0361CFC8126A8 /* http_inputs.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/matcher/v3 Private Headers */, - 1580E740B845A15ED375D36C7B0F4E32 /* metadata.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/matcher/v3 Private Headers */, - 38FF5CD52E06373A6B727F825ACE51ED /* node.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/matcher/v3 Private Headers */, - 6BAF03DDDFE5D2E15D298425A3C61228 /* number.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/matcher/v3 Private Headers */, - D16E752AC2CD499A2EDCDC1C5C3B74ED /* path.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/matcher/v3 Private Headers */, - 42D85CA3ACF582FCDA99D13C29CF860C /* regex.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/matcher/v3 Private Headers */, - A93D4C253E2CE934D8BE8FC39472D8B0 /* string.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/matcher/v3 Private Headers */, - 1A1004CAADB0021A52D1AEF46FB576D8 /* struct.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/matcher/v3 Private Headers */, - FF4AD6D2CFA1E2BD6AE8DBBBF3819949 /* value.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/matcher/v3 Private Headers */, - ); - name = "Copy src/core/ext/upbdefs-generated/envoy/type/matcher/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 30F32BEFAE9007EE0922E8DA838C7351 /* Copy src/core/lib/security/credentials/plugin Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/credentials/plugin"; - dstSubfolderSpec = 16; - files = ( - 86E0E1DEE3E801BD1C5BB78346AEE9A6 /* plugin_credentials.h in Copy src/core/lib/security/credentials/plugin Private Headers */, - ); - name = "Copy src/core/lib/security/credentials/plugin Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 317535C84133D42D91F9768CFD55CD7B /* Copy src/core/ext/upbdefs-generated/envoy/config/cluster/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/config/cluster/v3"; - dstSubfolderSpec = 16; - files = ( - C573DFD72FA1B2D380CD962BCB09E96E /* circuit_breaker.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/cluster/v3 Private Headers */, - 1E8C27A0E71874BB47019E9CEDB4083C /* cluster.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/cluster/v3 Private Headers */, - 932987F3B0698F5911B9404EDE351D2A /* filter.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/cluster/v3 Private Headers */, - 34F1D070F636A0D94DE00303ECB47715 /* outlier_detection.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/cluster/v3 Private Headers */, - ); - name = "Copy src/core/ext/upbdefs-generated/envoy/config/cluster/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 319BE424E6B3D4AF4A61F04CA89379C8 /* Copy src/core/ext/filters/client_channel/resolver Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/client_channel/resolver"; - dstSubfolderSpec = 16; - files = ( - E7F19616DC5E95C0DEC6BE17892774F7 /* polling_resolver.h in Copy src/core/ext/filters/client_channel/resolver Private Headers */, - ); - name = "Copy src/core/ext/filters/client_channel/resolver Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 31D399D3F66299572005600C7652EAE9 /* Copy crypto/bytestring Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/crypto/bytestring"; - dstSubfolderSpec = 16; - files = ( - 394AA4082A2EC3CD7F70C2630980565A /* internal.h in Copy crypto/bytestring Private Headers */, - ); - name = "Copy crypto/bytestring Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 324FE079BA00584E5B8C20E1755A845A /* Copy crypto/conf Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/crypto/conf"; - dstSubfolderSpec = 16; - files = ( - 5E75A1001E2C53613255C20ACBD8362C /* conf_def.h in Copy crypto/conf Private Headers */, - 22C11A96A7E6AE074B189183BE6236FA /* internal.h in Copy crypto/conf Private Headers */, - ); - name = "Copy crypto/conf Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 32C349C36BA5964878418F5B0D5116B5 /* Copy src/core/ext/upb-generated/envoy/extensions/load_balancing_policies/wrr_locality/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/extensions/load_balancing_policies/wrr_locality/v3"; - dstSubfolderSpec = 16; - files = ( - 072B4692D9DD98B0FA1C6EA61CBC229F /* wrr_locality.upb.h in Copy src/core/ext/upb-generated/envoy/extensions/load_balancing_policies/wrr_locality/v3 Private Headers */, - ); - name = "Copy src/core/ext/upb-generated/envoy/extensions/load_balancing_policies/wrr_locality/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 34D759A4C5485630A0BBA22C00D35830 /* Copy src/core/ext/upbdefs-generated/envoy/extensions/filters/http/fault/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/extensions/filters/http/fault/v3"; - dstSubfolderSpec = 16; - files = ( - A9F1354F17502DFBEBC635A4793FAE11 /* fault.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/extensions/filters/http/fault/v3 Private Headers */, - ); - name = "Copy src/core/ext/upbdefs-generated/envoy/extensions/filters/http/fault/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 352C922D138C9A75AA5942005FB403AA /* Copy src/core/lib/security/authorization Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/authorization"; - dstSubfolderSpec = 16; - files = ( - 8CC9FDD4B279B27269802EE7691D3C32 /* authorization_engine.h in Copy src/core/lib/security/authorization Private Headers */, - 6959640D0A2EF17B932443BEA07F941F /* authorization_policy_provider.h in Copy src/core/lib/security/authorization Private Headers */, - B593FCA7EDE588C2C5F45E1743DC88C5 /* evaluate_args.h in Copy src/core/lib/security/authorization Private Headers */, - F83F82CB941961BB85A57C76180E998A /* grpc_authorization_engine.h in Copy src/core/lib/security/authorization Private Headers */, - 93087404D04BA2A4755F0C2948D5DC53 /* grpc_server_authz_filter.h in Copy src/core/lib/security/authorization Private Headers */, - 50BD32C742B6610A7ED0C33F64A4EA12 /* matchers.h in Copy src/core/lib/security/authorization Private Headers */, - 1F66B0F04E5390E81D2BBAD11624BC27 /* rbac_policy.h in Copy src/core/lib/security/authorization Private Headers */, - ); - name = "Copy src/core/lib/security/authorization Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 353A0B9AED71EB8141B56046AE4671ED /* Copy src/core/ext/upbdefs-generated/xds/annotations/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/xds/annotations/v3"; - dstSubfolderSpec = 16; - files = ( - A9A12902D30878EF83B4C93F93AA327C /* migrate.upbdefs.h in Copy src/core/ext/upbdefs-generated/xds/annotations/v3 Private Headers */, - 26AE8871EEF3E58E99603FA799EBA151 /* security.upbdefs.h in Copy src/core/ext/upbdefs-generated/xds/annotations/v3 Private Headers */, - 81F609B3B95875E787496F3D30C84AD3 /* sensitive.upbdefs.h in Copy src/core/ext/upbdefs-generated/xds/annotations/v3 Private Headers */, - D18B63AC144A4B6524DDA0546B9A9427 /* status.upbdefs.h in Copy src/core/ext/upbdefs-generated/xds/annotations/v3 Private Headers */, - FB6FBD328700A28F40639095F3957B90 /* versioning.upbdefs.h in Copy src/core/ext/upbdefs-generated/xds/annotations/v3 Private Headers */, - ); - name = "Copy src/core/ext/upbdefs-generated/xds/annotations/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 35D8F8A9544B48547611DCCCB88C4CBE /* Copy src/core/ext/transport/chttp2/transport Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/transport/chttp2/transport"; - dstSubfolderSpec = 16; - files = ( - A59E3BE1169905C611D6D910412BBD3B /* bin_decoder.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, - 06226C7C7003C73EA07981F62AB066E7 /* bin_encoder.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, - 8435EDD332EF43BCA7709432D1686974 /* chttp2_transport.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, - 67E833DE2C78A6EFE30923E8291B41BE /* context_list.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, - F40ECC9974B57CEBEC23DC5257DB87FF /* decode_huff.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, - CD6F5BD8FDFC0D495D313C7EDDB8EB67 /* flow_control.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, - 36254BA73360F7D41651004A272F619C /* frame.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, - 441D00A48F4466E7BDF5487403527685 /* frame_data.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, - EB1E6B25B073B147FC2E7E84DD66DF3B /* frame_goaway.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, - 026B8427795D508EB098B718B1178B43 /* frame_ping.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, - 4A3DC9769C5B71F1BB49F02C54ACBD15 /* frame_rst_stream.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, - 1FB8B34482A1F45FE237CDCE01CF11E0 /* frame_settings.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, - 3998FD8B9B410D02BA592A01F44C70C0 /* frame_window_update.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, - BF56F67E39B43011D9BCC79038B7E2A1 /* hpack_constants.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, - 5FCF66586CD11F9C3F28BEB2AE027D90 /* hpack_encoder.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, - 2AEED858DF1CB5EB6AE050A488C5E519 /* hpack_encoder_table.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, - 01E16DCF4C1A364D1CFF8C87DE5F7D37 /* hpack_parser.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, - 1EF3FC9464ACE0B4EC18E8F8A96CBCE4 /* hpack_parser_table.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, - 4DE1478680823112E4498456273A1809 /* http2_settings.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, - 6A382DEF791EFAFF811FBFD6D75171C9 /* huffsyms.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, - B06B94B21AF5513E5D81F8829781BCDA /* internal.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, - 0F9C08A5E90731FEB34B5C589646A4A3 /* stream_map.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, - 936729F4CDB27FFC31CAB6BE3FB12C7F /* varint.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, - ); - name = "Copy src/core/ext/transport/chttp2/transport Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 3638C4B73B2A81385EE3D032F15ED856 /* Copy src/core/lib/security/credentials/tls Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/credentials/tls"; - dstSubfolderSpec = 16; - files = ( - 882F5D3A2CEF9C58D4DF66C8D74BB9E1 /* grpc_tls_certificate_distributor.h in Copy src/core/lib/security/credentials/tls Private Headers */, - 674657A902BA7F2F9F77B88F3C952BB7 /* grpc_tls_certificate_provider.h in Copy src/core/lib/security/credentials/tls Private Headers */, - FFFB22CF17B9B52EABB1A280F2EFEE7B /* grpc_tls_certificate_verifier.h in Copy src/core/lib/security/credentials/tls Private Headers */, - 49AB4E8478F2B44282547A1CFAFB9F7B /* grpc_tls_credentials_options.h in Copy src/core/lib/security/credentials/tls Private Headers */, - EECA0644A1ED20B0B3DA2B115AA94CD0 /* tls_credentials.h in Copy src/core/lib/security/credentials/tls Private Headers */, - 740E06AA3F94F5E1F44AD9C8F9F61E47 /* tls_utils.h in Copy src/core/lib/security/credentials/tls Private Headers */, - ); - name = "Copy src/core/lib/security/credentials/tls Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 3660F9CAC49032D89F0671A063BB19C6 /* Copy src/core/ext/filters/client_channel/resolver/dns Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/client_channel/resolver/dns"; - dstSubfolderSpec = 16; - files = ( - 24DBFEFD4E08617C74DA8DAE8D9EC20F /* dns_resolver_selection.h in Copy src/core/ext/filters/client_channel/resolver/dns Private Headers */, - ); - name = "Copy src/core/ext/filters/client_channel/resolver/dns Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 36F0F6FF94FBF1CB3083FBADF1C47D76 /* Copy impl/codegen Public Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/impl/codegen"; - dstSubfolderSpec = 16; - files = ( - 80BAE3F60D7716740C4A217BFB0384DB /* async_generic_service.h in Copy impl/codegen Public Headers */, - B313B60FF025C5BD2DE658335BEB8965 /* async_stream.h in Copy impl/codegen Public Headers */, - EE4A644D995DCAA22FBA08F9F58EFEE6 /* async_unary_call.h in Copy impl/codegen Public Headers */, - 579CF651A5AE6C034C4364A57D6B5D3C /* byte_buffer.h in Copy impl/codegen Public Headers */, - 5D25BD025BBDA352BD634250865E0CB1 /* call.h in Copy impl/codegen Public Headers */, - 5FA6DE1A171561B0E5E8BACF3EB18BD4 /* call_hook.h in Copy impl/codegen Public Headers */, - 223F6BCA01C24718B77679EFC6105BBD /* call_op_set.h in Copy impl/codegen Public Headers */, - 38DFAB474B9F428C8B92136B01F10C86 /* call_op_set_interface.h in Copy impl/codegen Public Headers */, - 00AB4E24D89D31DDB000A318061F0E5E /* callback_common.h in Copy impl/codegen Public Headers */, - 1FE1B0B2CBA2BA04EDFE1953F2767243 /* channel_interface.h in Copy impl/codegen Public Headers */, - 4965A3AC2262B62448EC08B388FAE4F4 /* client_callback.h in Copy impl/codegen Public Headers */, - 63D83B7BFBD9844A00E6C56AE77B5138 /* client_context.h in Copy impl/codegen Public Headers */, - 0AE85F866CF7F154BDDF7EF6A03EA8D7 /* client_interceptor.h in Copy impl/codegen Public Headers */, - 1D79F1C7639DD4C773106B7167574F96 /* client_unary_call.h in Copy impl/codegen Public Headers */, - 90911EF3E7663B83657BE8AEF5F6F790 /* completion_queue.h in Copy impl/codegen Public Headers */, - 0A1111B440B7142E9E54CD2A2B4926AE /* completion_queue_tag.h in Copy impl/codegen Public Headers */, - 7E5BE808D3776AB43BA552929EF64914 /* config.h in Copy impl/codegen Public Headers */, - DC0EE7EE4CA5E1E4FB05D6FE5EBD4999 /* core_codegen.h in Copy impl/codegen Public Headers */, - 99DCD473195F178EA615EE217E222103 /* core_codegen_interface.h in Copy impl/codegen Public Headers */, - 6786C242A370205FD68B157FBF5F5820 /* create_auth_context.h in Copy impl/codegen Public Headers */, - 53D809C2A01556B8D74603E953B3EEE2 /* delegating_channel.h in Copy impl/codegen Public Headers */, - 1EC43F3FFE724B0C4270C46BE2A0ED76 /* grpc_library.h in Copy impl/codegen Public Headers */, - 13D7105DC9ADA96D6FCF51FB6D939B55 /* intercepted_channel.h in Copy impl/codegen Public Headers */, - FF89BFF9F25B584E70DD316E2C198936 /* interceptor.h in Copy impl/codegen Public Headers */, - 2CB4E91C60388162758C614DAC3C0EEC /* interceptor_common.h in Copy impl/codegen Public Headers */, - AEBFD05BAEF3A68EBD4219CA392377B8 /* message_allocator.h in Copy impl/codegen Public Headers */, - D96B2877EDB53D8AEB8F653BBB14B43C /* metadata_map.h in Copy impl/codegen Public Headers */, - D7F3CA591E6E5AE39400E9FFD2127CDF /* method_handler.h in Copy impl/codegen Public Headers */, - BC21DA5EDB65D7DF52C1E2E3A8005766 /* method_handler_impl.h in Copy impl/codegen Public Headers */, - E64EC12F2409E8C52B6EA95A117D15E5 /* rpc_method.h in Copy impl/codegen Public Headers */, - FE87EB131BD363F690DE18403BD5B355 /* rpc_service_method.h in Copy impl/codegen Public Headers */, - 5BF9D3101AB3E6093FFFF9EE2EB308F0 /* serialization_traits.h in Copy impl/codegen Public Headers */, - 7D6CA7C1594797FE334F21BEC669F5F6 /* server_callback.h in Copy impl/codegen Public Headers */, - D42011B24D231041E6E0EA942B6EEFBA /* server_callback_handlers.h in Copy impl/codegen Public Headers */, - 24054239951D92574762C25A93DA6F27 /* server_context.h in Copy impl/codegen Public Headers */, - 7A4BE1FE4F267E3E67E84BFB12B5718C /* server_interceptor.h in Copy impl/codegen Public Headers */, - 41E3516421DD52B98191EF678061EAD7 /* server_interface.h in Copy impl/codegen Public Headers */, - 1F2A38A1120FC593BA3C2EBCC5D0AD32 /* service_type.h in Copy impl/codegen Public Headers */, - 53DAC824D1EDB1110A092DCF89345C76 /* slice.h in Copy impl/codegen Public Headers */, - D34C18EF5E735A09C877F68EF9BAD5B3 /* status.h in Copy impl/codegen Public Headers */, - 314B2EBDCCF5336548136774E1246DAC /* status_code_enum.h in Copy impl/codegen Public Headers */, - F5CF9FFA989565FD4B327D96D7AE18B8 /* string_ref.h in Copy impl/codegen Public Headers */, - 5CF1019AB77472CED7E324AB42603892 /* stub_options.h in Copy impl/codegen Public Headers */, - A06CA4B6B505C8006F7F0E6D6EF42ABA /* sync.h in Copy impl/codegen Public Headers */, - 710E6F68267FDDE72E0D201EFD4B9709 /* sync_stream.h in Copy impl/codegen Public Headers */, - E0F5E8114D744431C39DBF904AD35DDD /* time.h in Copy impl/codegen Public Headers */, - ); - name = "Copy impl/codegen Public Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 379A6D30782C3FAC3DCF46ED5ECBE363 /* Copy profiling/internal Public Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/profiling/internal"; - dstSubfolderSpec = 16; - files = ( - C4D555D2E97E702E09CD1351B56EB2B0 /* exponential_biased.h in Copy profiling/internal Public Headers */, - A7A2605CB6F97C44F30F3668F217F3EE /* sample_recorder.h in Copy profiling/internal Public Headers */, - ); - name = "Copy profiling/internal Public Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 379FCDFE6677A434EA4F328204349BCC /* Copy src/core/ext/filters/client_channel/resolver/dns/c_ares Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/client_channel/resolver/dns/c_ares"; - dstSubfolderSpec = 16; - files = ( - 8D35745B51AC819F0EF4B0A3DBE0E2E6 /* grpc_ares_ev_driver.h in Copy src/core/ext/filters/client_channel/resolver/dns/c_ares Private Headers */, - 7A7AC210E9B22BAD73FBF029515ADC3A /* grpc_ares_wrapper.h in Copy src/core/ext/filters/client_channel/resolver/dns/c_ares Private Headers */, - ); - name = "Copy src/core/ext/filters/client_channel/resolver/dns/c_ares Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 37DE3E7D012A2745D46E1984635F4C74 /* Copy src/core/ext/filters/client_channel/lb_policy/outlier_detection Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/client_channel/lb_policy/outlier_detection"; - dstSubfolderSpec = 16; - files = ( - 5C22C1380A1928549A693CB3808F8CC7 /* outlier_detection.h in Copy src/core/ext/filters/client_channel/lb_policy/outlier_detection Private Headers */, - ); - name = "Copy src/core/ext/filters/client_channel/lb_policy/outlier_detection Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 37E8555FF20FC2C3707829C83BC6F615 /* Copy src/core/lib/load_balancing Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/load_balancing"; - dstSubfolderSpec = 16; - files = ( - 6FF7B0744FAE8F7894135F445745F4D3 /* lb_policy.h in Copy src/core/lib/load_balancing Private Headers */, - 345BD9471F95F7EEF9FDB30E9BAF2CDD /* lb_policy_factory.h in Copy src/core/lib/load_balancing Private Headers */, - 96A70F3616B65C8E12875B841FDA411E /* lb_policy_registry.h in Copy src/core/lib/load_balancing Private Headers */, - A47D9ED8F9504D8B191105FAB1DD45D3 /* subchannel_interface.h in Copy src/core/lib/load_balancing Private Headers */, - ); - name = "Copy src/core/lib/load_balancing Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 38300D9F8CA81F2BD1C54CCE9732BE73 /* Copy src/core/ext/upb-generated/envoy/service/discovery/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/service/discovery/v3"; - dstSubfolderSpec = 16; - files = ( - 9E48E7A1D8F57D799FBC65D2BBAE4B36 /* ads.upb.h in Copy src/core/ext/upb-generated/envoy/service/discovery/v3 Private Headers */, - 6B0DBD66C501CDC55EBCF1B54665A4EE /* discovery.upb.h in Copy src/core/ext/upb-generated/envoy/service/discovery/v3 Private Headers */, - ); - name = "Copy src/core/ext/upb-generated/envoy/service/discovery/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 389F3065824CB97BC27E328B69AA8234 /* Copy crypto/hrss Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/crypto/hrss"; - dstSubfolderSpec = 16; - files = ( - E3530C146370303BD5503799560CA39F /* internal.h in Copy crypto/hrss Private Headers */, - ); - name = "Copy crypto/hrss Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 3A22D8534A39DE67F517E3783CF9D1D8 /* Copy src/core/ext/transport/binder/wire_format Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/transport/binder/wire_format"; - dstSubfolderSpec = 16; - files = ( - B2362CA3C78F257328C888582FA0141A /* binder.h in Copy src/core/ext/transport/binder/wire_format Private Headers */, - B5FB7ECE53D843044701AD820A2BBCA2 /* binder_android.h in Copy src/core/ext/transport/binder/wire_format Private Headers */, - A24CE4427939FFDC7E8F607F32ECFE79 /* binder_constants.h in Copy src/core/ext/transport/binder/wire_format Private Headers */, - 60F1126D5E4B269D6A706F0B6882EF09 /* transaction.h in Copy src/core/ext/transport/binder/wire_format Private Headers */, - 6D4C9BA52D250FD17E5F26E97C0696B4 /* wire_reader.h in Copy src/core/ext/transport/binder/wire_format Private Headers */, - DDA6D02AECA5E6443EB07EDB9413494E /* wire_reader_impl.h in Copy src/core/ext/transport/binder/wire_format Private Headers */, - 5788C0000232EBFEA1CCAAF4496E00DE /* wire_writer.h in Copy src/core/ext/transport/binder/wire_format Private Headers */, - ); - name = "Copy src/core/ext/transport/binder/wire_format Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 3A4BB4C5BE271C4695B28CA4FA1DCD4D /* Copy src/core/lib/surface Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/surface"; - dstSubfolderSpec = 16; - files = ( - FFEC641292319675080EBC9830175997 /* api_trace.h in Copy src/core/lib/surface Private Headers */, - F9C721975FC9154BAE795A029B69A3A3 /* builtins.h in Copy src/core/lib/surface Private Headers */, - CE6ED0A41601B90289AAE331EA2ACEE1 /* call.h in Copy src/core/lib/surface Private Headers */, - 541A00020EBEE898CE92A9228F4592B3 /* call_test_only.h in Copy src/core/lib/surface Private Headers */, - 142DE2F7E86CFC242D118196690ED208 /* channel.h in Copy src/core/lib/surface Private Headers */, - 8E026F2159594E1491162FD90FDEF506 /* channel_init.h in Copy src/core/lib/surface Private Headers */, - 7FEF2F7A4A7DD469BD46EDFC241501C0 /* channel_stack_type.h in Copy src/core/lib/surface Private Headers */, - 0BA19C7AEA95E86FE15EDEA5FE42BB81 /* completion_queue.h in Copy src/core/lib/surface Private Headers */, - CE5FF4351B489D99392BB334DF83FBEC /* completion_queue_factory.h in Copy src/core/lib/surface Private Headers */, - 355E3B7CDE3551A5793EDC6AB188C860 /* event_string.h in Copy src/core/lib/surface Private Headers */, - 0DE8279D9B5AEE40167C10088864DC7F /* init.h in Copy src/core/lib/surface Private Headers */, - 557DD731821243FCF23D38A2302E87EC /* init_internally.h in Copy src/core/lib/surface Private Headers */, - BD1884AF9DAB028582D3E46E2519D058 /* lame_client.h in Copy src/core/lib/surface Private Headers */, - 1A94BAD597F91BD542A33540F7910A0A /* server.h in Copy src/core/lib/surface Private Headers */, - 5D7CF8DDC30F43301D1A526E8DD79B29 /* validate_metadata.h in Copy src/core/lib/surface Private Headers */, - ); - name = "Copy src/core/lib/surface Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 3A64F77E8AC66CA4DD244EF7D22F1F29 /* Copy src/core/lib/security/authorization Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/authorization"; - dstSubfolderSpec = 16; - files = ( - 659959BC981AFADBA2D71AB17739E63C /* authorization_engine.h in Copy src/core/lib/security/authorization Private Headers */, - FB922C40EC610A7C7553DEE504CE08C1 /* authorization_policy_provider.h in Copy src/core/lib/security/authorization Private Headers */, - 9A5415BFE1C933659033A9E3B4FA3113 /* evaluate_args.h in Copy src/core/lib/security/authorization Private Headers */, - 392EA4CE1492E3DC712BA4AA45969EB8 /* grpc_authorization_engine.h in Copy src/core/lib/security/authorization Private Headers */, - A35B2B0DFF75E48CBBA7DAEEB06E7D2D /* grpc_server_authz_filter.h in Copy src/core/lib/security/authorization Private Headers */, - AE22455EEB9B3D92E7AE9ABD087850D7 /* matchers.h in Copy src/core/lib/security/authorization Private Headers */, - 9FBFC70687A05FE2AF75D56F9787B126 /* rbac_policy.h in Copy src/core/lib/security/authorization Private Headers */, - ); - name = "Copy src/core/lib/security/authorization Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 3B0801BB67D31BE203B94249AEF76414 /* Copy src/core/ext/upb-generated/envoy/extensions/filters/http/rbac/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/extensions/filters/http/rbac/v3"; - dstSubfolderSpec = 16; - files = ( - A8C19A8C995F8E6DCED64A2C7E9E1801 /* rbac.upb.h in Copy src/core/ext/upb-generated/envoy/extensions/filters/http/rbac/v3 Private Headers */, - ); - name = "Copy src/core/ext/upb-generated/envoy/extensions/filters/http/rbac/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 3B6EA2964A1460E3486171A6A9543904 /* Copy synchronization Public Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/synchronization"; - dstSubfolderSpec = 16; - files = ( - 62B5C563D64B3EC1BAFDCFD28DC0E2B7 /* barrier.h in Copy synchronization Public Headers */, - FBA8B0C513D67E11751470167CD9B9E9 /* blocking_counter.h in Copy synchronization Public Headers */, - 84343CB3EC4B396FCEDDC2484BA7A76F /* mutex.h in Copy synchronization Public Headers */, - CE6501E35C2BDFB0CAB1514FDE78824E /* notification.h in Copy synchronization Public Headers */, - ); - name = "Copy synchronization Public Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 3B80BE9E1203D20146EB9DF80C3297F5 /* Copy debugging Public Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/debugging"; - dstSubfolderSpec = 16; - files = ( - E23FAE4C8602B7C871C797B75334CE45 /* stacktrace.h in Copy debugging Public Headers */, - 0BDAA3CBA2458350D59DDD47C135BB70 /* symbolize.h in Copy debugging Public Headers */, - A5AEECE39A0BAC5C07B9AE6D3E7A585B /* symbolize_darwin.inc in Copy debugging Public Headers */, - DDA4F00DC7BA8E1504CBAF3F8EB963B3 /* symbolize_elf.inc in Copy debugging Public Headers */, - 5180BA4B16995054E6AF2796F8A9286B /* symbolize_emscripten.inc in Copy debugging Public Headers */, - B4716190165802BDB1D1C66F9054C38D /* symbolize_unimplemented.inc in Copy debugging Public Headers */, - 2B467DA0C064BE0C154595015741F53A /* symbolize_win32.inc in Copy debugging Public Headers */, - ); - name = "Copy debugging Public Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 3C13DC9CF4CB589D7B0B7FF506F68BF1 /* Copy src/core/tsi/alts/frame_protector Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/tsi/alts/frame_protector"; - dstSubfolderSpec = 16; - files = ( - 096A29FF0031167E5A997EDD99F90235 /* alts_counter.h in Copy src/core/tsi/alts/frame_protector Private Headers */, - 11708DEFAC9BF0E2A559E199CF23CABF /* alts_crypter.h in Copy src/core/tsi/alts/frame_protector Private Headers */, - ACF6035EFB6979C0EFEAB7B171F778AC /* alts_frame_protector.h in Copy src/core/tsi/alts/frame_protector Private Headers */, - B9E46E7DDD8595DB51E5A94C44CB4FB4 /* alts_record_protocol_crypter_common.h in Copy src/core/tsi/alts/frame_protector Private Headers */, - EC7A0683CAC44CD276909C022B31D9E8 /* frame_handler.h in Copy src/core/tsi/alts/frame_protector Private Headers */, - ); - name = "Copy src/core/tsi/alts/frame_protector Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 3C812C6A9169B022E219E63E69F42705 /* Copy src/core/ext/filters/http Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/http"; - dstSubfolderSpec = 16; - files = ( - 8D1DDA115722900E252120202F6AA91E /* client_authority_filter.h in Copy src/core/ext/filters/http Private Headers */, - ); - name = "Copy src/core/ext/filters/http Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 3CD5BDEC52F4B3008E8820EFA7A997D5 /* Copy src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3"; - dstSubfolderSpec = 16; - files = ( - 9060DEEA6128CAF5C572737C7C7E09D8 /* cert.upb.h in Copy src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3 Private Headers */, - 7A0EB2CEFAED496DEB9DE5BEBB888B4B /* common.upb.h in Copy src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3 Private Headers */, - C2751289B319B866B5EA5A21B22D91A4 /* secret.upb.h in Copy src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3 Private Headers */, - 726A46B99003A668DD6A7EDBC435A82E /* tls.upb.h in Copy src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3 Private Headers */, - A62A6B81EAA9FE57F928CC84B9ED903F /* tls_spiffe_validator_config.upb.h in Copy src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3 Private Headers */, - ); - name = "Copy src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 3CDC4B95233969F3EC74EBE317A4A371 /* Copy crypto/poly1305 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/crypto/poly1305"; - dstSubfolderSpec = 16; - files = ( - EB6B50F1F46C4FF8C63D21DAE993B104 /* internal.h in Copy crypto/poly1305 Private Headers */, - ); - name = "Copy crypto/poly1305 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 3D40A7920ADCBFC4BC9F1F53DE4A7F4D /* Copy src/core/ext/filters/client_channel Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/client_channel"; - dstSubfolderSpec = 16; - files = ( - 3D2960D3C645E2C65A2D93AF5DB572C4 /* backend_metric.h in Copy src/core/ext/filters/client_channel Private Headers */, - 2F07BB5810D75EE7B76C3A417D8899B2 /* backup_poller.h in Copy src/core/ext/filters/client_channel Private Headers */, - 5A87300E5A286AF5FB1D8D46002D1741 /* client_channel.h in Copy src/core/ext/filters/client_channel Private Headers */, - 865B2ECA39F785C538C2AF78300A9552 /* client_channel_channelz.h in Copy src/core/ext/filters/client_channel Private Headers */, - FC10EAF5D1826670C65D5A88717D619F /* client_channel_factory.h in Copy src/core/ext/filters/client_channel Private Headers */, - 4A4426EB751AE214D479779B3302F7F9 /* config_selector.h in Copy src/core/ext/filters/client_channel Private Headers */, - 5824ADD4F42339164F980DE2AD95A5CF /* connector.h in Copy src/core/ext/filters/client_channel Private Headers */, - C320C286ABE198ACF93F28EADF52C980 /* dynamic_filters.h in Copy src/core/ext/filters/client_channel Private Headers */, - 9721736DB750657464402B88AC505BCE /* global_subchannel_pool.h in Copy src/core/ext/filters/client_channel Private Headers */, - 39F39586ED09270223EBEAF9EA81DE34 /* http_proxy.h in Copy src/core/ext/filters/client_channel Private Headers */, - B17CFEBC912B2F149E3E7D9DFD19B05A /* local_subchannel_pool.h in Copy src/core/ext/filters/client_channel Private Headers */, - 617AF555728909CF38C204607769951D /* resolver_result_parsing.h in Copy src/core/ext/filters/client_channel Private Headers */, - 609F22D2F3651DD03EBCF8832C9F3090 /* retry_filter.h in Copy src/core/ext/filters/client_channel Private Headers */, - 7913B3689291C29ED860595D94FA4D69 /* retry_service_config.h in Copy src/core/ext/filters/client_channel Private Headers */, - BCAA3AC7B3E38F95A595E0666E0534E3 /* retry_throttle.h in Copy src/core/ext/filters/client_channel Private Headers */, - 5D76AF993BC251F041A0C90A1008D0D0 /* subchannel.h in Copy src/core/ext/filters/client_channel Private Headers */, - 5754EE51560EC053DCF931FB54E86B52 /* subchannel_interface_internal.h in Copy src/core/ext/filters/client_channel Private Headers */, - 9B54039BE2978A8839AF03FBA2A3237B /* subchannel_pool_interface.h in Copy src/core/ext/filters/client_channel Private Headers */, - 1E5C09C83F67AC393847BDC600687459 /* subchannel_stream_client.h in Copy src/core/ext/filters/client_channel Private Headers */, - ); - name = "Copy src/core/ext/filters/client_channel Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 3D6FAAD1C85891B1B2EF288DA9D8DC18 /* Copy src/core/lib/service_config Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/service_config"; - dstSubfolderSpec = 16; - files = ( - C5B686B143279D7E57CF5B589FE03DE5 /* service_config.h in Copy src/core/lib/service_config Private Headers */, - 16BF947CF17C45674068CD92A499ABBE /* service_config_call_data.h in Copy src/core/lib/service_config Private Headers */, - 25230AF68F8A0B565F894BF22B67B27A /* service_config_impl.h in Copy src/core/lib/service_config Private Headers */, - 9B2FF98EB297C8BB900692762D7B7979 /* service_config_parser.h in Copy src/core/lib/service_config Private Headers */, - ); - name = "Copy src/core/lib/service_config Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 3DA6739258FE8B187E7758069815C0FC /* Copy src/core/ext/upbdefs-generated/envoy/config/bootstrap/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/config/bootstrap/v3"; - dstSubfolderSpec = 16; - files = ( - 8912EB8DB0BBFFD1B6FE7D2E39888BBF /* bootstrap.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/bootstrap/v3 Private Headers */, - ); - name = "Copy src/core/ext/upbdefs-generated/envoy/config/bootstrap/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 3DB8F12C8708BE01018623FBCD5BE20C /* Copy src/core/ext/upbdefs-generated/opencensus/proto/trace/v1 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/opencensus/proto/trace/v1"; - dstSubfolderSpec = 16; - files = ( - 57B113AA3DE1281513F7B1D0017C2A05 /* trace_config.upbdefs.h in Copy src/core/ext/upbdefs-generated/opencensus/proto/trace/v1 Private Headers */, - ); - name = "Copy src/core/ext/upbdefs-generated/opencensus/proto/trace/v1 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 3E74F07468A49F7D7B5D8EFC53A3FB87 /* Copy src/core/ext/upb-generated/src/proto/grpc/lb/v1 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/src/proto/grpc/lb/v1"; - dstSubfolderSpec = 16; - files = ( - A147F7F281BBCA2683F43C17B34BCE85 /* load_balancer.upb.h in Copy src/core/ext/upb-generated/src/proto/grpc/lb/v1 Private Headers */, - ); - name = "Copy src/core/ext/upb-generated/src/proto/grpc/lb/v1 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 3E75E7ABF5E937E8D3ABE35DF2F84445 /* Copy src/core/lib/gprpp Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/gprpp"; - dstSubfolderSpec = 16; - files = ( - CB5CAEF4372FED79D410B44162B05EBE /* atomic_utils.h in Copy src/core/lib/gprpp Private Headers */, - 9074FBD6D0CA2DC2236C710E1B2E30BC /* bitset.h in Copy src/core/lib/gprpp Private Headers */, - B07E49D9918C4AE349BE664C559B2388 /* chunked_vector.h in Copy src/core/lib/gprpp Private Headers */, - 14BD8C7EC54FA36EBB6FA541AAF2E135 /* construct_destruct.h in Copy src/core/lib/gprpp Private Headers */, - 3DB31DD0EEE980DD62CFA590FB0B0FDD /* cpp_impl_of.h in Copy src/core/lib/gprpp Private Headers */, - 5EC289B9A69536C4D5BC84DD0342AF89 /* debug_location.h in Copy src/core/lib/gprpp Private Headers */, - 16A794A564327B73131D7B95E9F5179B /* dual_ref_counted.h in Copy src/core/lib/gprpp Private Headers */, - E353033336CAEE0E59BBF0F5D762083E /* env.h in Copy src/core/lib/gprpp Private Headers */, - A71547F0D92AA14D6968A77C0609E783 /* examine_stack.h in Copy src/core/lib/gprpp Private Headers */, - 7F7CD16709EC80B088347D136D25B770 /* fork.h in Copy src/core/lib/gprpp Private Headers */, - 7E5AAA609787CB52983D07C4071D3600 /* global_config.h in Copy src/core/lib/gprpp Private Headers */, - D602A94DDC9EC750C575188F2BC63F16 /* global_config_custom.h in Copy src/core/lib/gprpp Private Headers */, - C9F5A9AF14D204B8F61D130E25D1C168 /* global_config_env.h in Copy src/core/lib/gprpp Private Headers */, - 2DCC844D29F239EEB59F9DDC39C48ED6 /* global_config_generic.h in Copy src/core/lib/gprpp Private Headers */, - A4F8FED3030DD856C0AFA2EBFF542284 /* host_port.h in Copy src/core/lib/gprpp Private Headers */, - 990FE9D8031D04FE286F6C2411BDBE15 /* manual_constructor.h in Copy src/core/lib/gprpp Private Headers */, - 8F5C99AD7DCD27FBEE8E7AF0EDB9AFA8 /* match.h in Copy src/core/lib/gprpp Private Headers */, - 738BC3384B06DCC34F95E06A5BA932CC /* memory.h in Copy src/core/lib/gprpp Private Headers */, - 19A97801F5A1DE68D26AD4740E658505 /* mpscq.h in Copy src/core/lib/gprpp Private Headers */, - D177501D6369ED2F06E5EE164D9DF224 /* no_destruct.h in Copy src/core/lib/gprpp Private Headers */, - 377FDDB8B72AE383A88A7AB2F0CDBAA0 /* notification.h in Copy src/core/lib/gprpp Private Headers */, - FAF748738A8282D9FA71F34969F57E11 /* orphanable.h in Copy src/core/lib/gprpp Private Headers */, - 363930FA0D724B5C50D3403B929718B3 /* overload.h in Copy src/core/lib/gprpp Private Headers */, - 2DF031137767DEB1D1B93CDDDF3A6204 /* packed_table.h in Copy src/core/lib/gprpp Private Headers */, - 34C7239607715EF3F624456DC567F6CC /* ref_counted.h in Copy src/core/lib/gprpp Private Headers */, - 13144568170DFBC5A6C1181369B3F3F0 /* ref_counted_ptr.h in Copy src/core/lib/gprpp Private Headers */, - 895C2E1C0E392319EA68FEAB44B0A20F /* single_set_ptr.h in Copy src/core/lib/gprpp Private Headers */, - 0B52392FF18F1110DC789DF09C5E7C55 /* sorted_pack.h in Copy src/core/lib/gprpp Private Headers */, - D29F7C9FC17151A49E327F32F9C6665E /* stat.h in Copy src/core/lib/gprpp Private Headers */, - 89C6001014A1F6A6DF2074A95F3DEBBE /* status_helper.h in Copy src/core/lib/gprpp Private Headers */, - 0530BC65BA513A93A44904F83EE35EDD /* sync.h in Copy src/core/lib/gprpp Private Headers */, - 0125744E2AA05511A7990B9C5CA38542 /* table.h in Copy src/core/lib/gprpp Private Headers */, - 8E476EC51779925686F1AF23C15709C9 /* tchar.h in Copy src/core/lib/gprpp Private Headers */, - E28ABD15EE1811501B7F47FB30B6CCD7 /* thd.h in Copy src/core/lib/gprpp Private Headers */, - AFC40523DF4CD4009752ADC5731A06C4 /* time.h in Copy src/core/lib/gprpp Private Headers */, - D8FBD89D9D8080B75C451573137E4615 /* time_averaged_stats.h in Copy src/core/lib/gprpp Private Headers */, - 5D942708D4921C8C136FCE18ABB32598 /* time_util.h in Copy src/core/lib/gprpp Private Headers */, - F22015F0387221CD08E70A59F41F715B /* unique_type_name.h in Copy src/core/lib/gprpp Private Headers */, - 2B93F23AAC9B5697C8AF11D2FCDD35F3 /* validation_errors.h in Copy src/core/lib/gprpp Private Headers */, - A2580519B894AFA8A93E8811167F6E90 /* work_serializer.h in Copy src/core/lib/gprpp Private Headers */, - ); - name = "Copy src/core/lib/gprpp Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 3EB6CD43CA6B9ECC6A1446C3AD3363CD /* Copy src/core/tsi/alts/crypt Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/tsi/alts/crypt"; - dstSubfolderSpec = 16; - files = ( - 5B5366170DC0E6B881A870A95B240E92 /* gsec.h in Copy src/core/tsi/alts/crypt Private Headers */, - ); - name = "Copy src/core/tsi/alts/crypt Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 3EC1ED06CEBB85CF71A14F28336DB14A /* Copy src/core/ext/upbdefs-generated/envoy/config/common/matcher/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/config/common/matcher/v3"; - dstSubfolderSpec = 16; - files = ( - D253E348F54B2B7A4020CB8581C6D857 /* matcher.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/common/matcher/v3 Private Headers */, - ); - name = "Copy src/core/ext/upbdefs-generated/envoy/config/common/matcher/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 3FC3A6F5FA17DF62D72C8259A846C057 /* Copy src/core/ext/filters/rbac Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/rbac"; - dstSubfolderSpec = 16; - files = ( - CADE2F875B671711E5977E64DFEDD967 /* rbac_filter.h in Copy src/core/ext/filters/rbac Private Headers */, - 0C970AE76BD90694787081866016F3B2 /* rbac_service_config_parser.h in Copy src/core/ext/filters/rbac Private Headers */, - ); - name = "Copy src/core/ext/filters/rbac Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 409F834BF7D5E65D1986687E86CFFD02 /* Copy src/core/ext/upb-generated/google/protobuf Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/google/protobuf"; - dstSubfolderSpec = 16; - files = ( - 4BA650FFB080DAFFB9B58B6CA2EB6C75 /* any.upb.h in Copy src/core/ext/upb-generated/google/protobuf Private Headers */, - 10E5DB75006DB9B9ADF451682103E391 /* descriptor.upb.h in Copy src/core/ext/upb-generated/google/protobuf Private Headers */, - 679B517F75F5BA7DE83A9BDB3F47273F /* duration.upb.h in Copy src/core/ext/upb-generated/google/protobuf Private Headers */, - C49E28972F3CFC0FF34AEC937BA81DB3 /* empty.upb.h in Copy src/core/ext/upb-generated/google/protobuf Private Headers */, - D93E8CA5504D6D6903DD241E027800FB /* struct.upb.h in Copy src/core/ext/upb-generated/google/protobuf Private Headers */, - FB853D621E4440939F825B8EA785A9BE /* timestamp.upb.h in Copy src/core/ext/upb-generated/google/protobuf Private Headers */, - 31E69DC3A15BB5FC9A4FF731562A5337 /* wrappers.upb.h in Copy src/core/ext/upb-generated/google/protobuf Private Headers */, - ); - name = "Copy src/core/ext/upb-generated/google/protobuf Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 410C409D9C7EBF302EC6957ACF284D3F /* Copy src/core/ext/upbdefs-generated/envoy/extensions/filters/common/fault/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/extensions/filters/common/fault/v3"; - dstSubfolderSpec = 16; - files = ( - 0CB9FA73E1BAFCB9E98DA366C66C7DA8 /* fault.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/extensions/filters/common/fault/v3 Private Headers */, - ); - name = "Copy src/core/ext/upbdefs-generated/envoy/extensions/filters/common/fault/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 4201D7ADE54BCD1F817FAF4911435562 /* Copy src/core/ext/upb-generated/envoy/extensions/filters/common/fault/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/extensions/filters/common/fault/v3"; - dstSubfolderSpec = 16; - files = ( - 2E430BE558D878700A3384CCE7BBF361 /* fault.upb.h in Copy src/core/ext/upb-generated/envoy/extensions/filters/common/fault/v3 Private Headers */, - ); - name = "Copy src/core/ext/upb-generated/envoy/extensions/filters/common/fault/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 422C66AE89CB0B155BB389CD0598A194 /* Copy src/core/ext/filters/client_channel/lb_policy/xds Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/client_channel/lb_policy/xds"; - dstSubfolderSpec = 16; - files = ( - 55CFC0CE8E556F40EF579170F5A31DB7 /* xds.h in Copy src/core/ext/filters/client_channel/lb_policy/xds Private Headers */, - 421E292AEC9FD7279DAC337F044FCFE9 /* xds_channel_args.h in Copy src/core/ext/filters/client_channel/lb_policy/xds Private Headers */, - ); - name = "Copy src/core/ext/filters/client_channel/lb_policy/xds Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 422DDD0CDCF1C2ECB9B35105C5C48701 /* Copy third_party/xxhash Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/third_party/xxhash"; - dstSubfolderSpec = 16; - files = ( - 03A84DB583FC0B524DA8B029AC08F8A1 /* xxhash.h in Copy third_party/xxhash Private Headers */, - ); - name = "Copy third_party/xxhash Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 4261B2F9790BF3366947812C220A3AF3 /* Copy src/core/ext/upb-generated/src/proto/grpc/gcp Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/src/proto/grpc/gcp"; - dstSubfolderSpec = 16; - files = ( - 5DCB13FF0DAA1E0C2A583A8A0D64001B /* altscontext.upb.h in Copy src/core/ext/upb-generated/src/proto/grpc/gcp Private Headers */, - 6694CA3C41B7A9448530029B62BFC3C6 /* handshaker.upb.h in Copy src/core/ext/upb-generated/src/proto/grpc/gcp Private Headers */, - B399AD9FCDB1DA40739355A7714FD90B /* transport_security_common.upb.h in Copy src/core/ext/upb-generated/src/proto/grpc/gcp Private Headers */, - ); - name = "Copy src/core/ext/upb-generated/src/proto/grpc/gcp Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 428766808052E095E1F364EE89CE42DD /* Copy src/core/ext/upbdefs-generated/envoy/config/tap/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/config/tap/v3"; - dstSubfolderSpec = 16; - files = ( - 80105F772EF66298F77D39C100EA4DF6 /* common.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/tap/v3 Private Headers */, - ); - name = "Copy src/core/ext/upbdefs-generated/envoy/config/tap/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 42CA7D1C68A2EB710125064EAE9DD86D /* Copy src/core/ext/filters/server_config_selector Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/server_config_selector"; - dstSubfolderSpec = 16; - files = ( - 5834A4B9B618727B0616C7903EF49CB9 /* server_config_selector.h in Copy src/core/ext/filters/server_config_selector Private Headers */, - 4E5773B45C167D6BCEC736E39F3564C3 /* server_config_selector_filter.h in Copy src/core/ext/filters/server_config_selector Private Headers */, - ); - name = "Copy src/core/ext/filters/server_config_selector Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 42D77FA185C0CF94E053D77CFA7CF512 /* Copy src/core/ext/filters/client_channel/resolver/xds Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/client_channel/resolver/xds"; - dstSubfolderSpec = 16; - files = ( - 5F90460CA57C00D115EE2A75849FDA17 /* xds_resolver.h in Copy src/core/ext/filters/client_channel/resolver/xds Private Headers */, - ); - name = "Copy src/core/ext/filters/client_channel/resolver/xds Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 430E99D270B8B186D4F24ABC569E42D9 /* Copy src/core/lib/security/certificate_provider Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/certificate_provider"; - dstSubfolderSpec = 16; - files = ( - A41B9BFA6D9369FC6D49E4D832A2BD33 /* certificate_provider_factory.h in Copy src/core/lib/security/certificate_provider Private Headers */, - C3E8604B479826CAB26A1A78FAA3D0AB /* certificate_provider_registry.h in Copy src/core/lib/security/certificate_provider Private Headers */, - ); - name = "Copy src/core/lib/security/certificate_provider Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 431CEA97EEC762AEC737F35EE34FE558 /* Copy src/core/ext/filters/client_channel/health Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/client_channel/health"; - dstSubfolderSpec = 16; - files = ( - 1F18A92103702A9C4E2C54C3D0839840 /* health_check_client.h in Copy src/core/ext/filters/client_channel/health Private Headers */, - ); - name = "Copy src/core/ext/filters/client_channel/health Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 4398E604B6285BEA8F72324F13BAC8B7 /* Copy src/core/ext/upb-generated/envoy/config/rbac/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/config/rbac/v3"; - dstSubfolderSpec = 16; - files = ( - C46A639C981678205041057F73AAD888 /* rbac.upb.h in Copy src/core/ext/upb-generated/envoy/config/rbac/v3 Private Headers */, - ); - name = "Copy src/core/ext/upb-generated/envoy/config/rbac/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 43A8984F1F4068A278D5C2F71E37728B /* Copy src/core/ext/filters/message_size Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/message_size"; - dstSubfolderSpec = 16; - files = ( - 9C74B0A65A0CC51EE42A4D6487B32126 /* message_size_filter.h in Copy src/core/ext/filters/message_size Private Headers */, - ); - name = "Copy src/core/ext/filters/message_size Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 43AA660BE0E1481A95210BC0EAD9BC63 /* Copy crypto/err Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/crypto/err"; - dstSubfolderSpec = 16; - files = ( - 6094DEC218F1BD53CFD40A58570F6A15 /* internal.h in Copy crypto/err Private Headers */, - ); - name = "Copy crypto/err Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 43E6260B5FDB94A8D2DCD658C726021C /* Copy src/core/lib/matchers Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/matchers"; - dstSubfolderSpec = 16; - files = ( - 67363B3EC0CA320EC5BF3DE85C6CCC54 /* matchers.h in Copy src/core/lib/matchers Private Headers */, - ); - name = "Copy src/core/lib/matchers Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 4490225052EBCEE193EF10DD3B0C22FE /* Copy src/core/ext/upb-generated/src/proto/grpc/health/v1 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/src/proto/grpc/health/v1"; - dstSubfolderSpec = 16; - files = ( - 24AB80E0F999C23FFEB2DCC18F1DF249 /* health.upb.h in Copy src/core/ext/upb-generated/src/proto/grpc/health/v1 Private Headers */, - ); - name = "Copy src/core/ext/upb-generated/src/proto/grpc/health/v1 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 44B6B0EE93F3D5099470D7218E4EA43E /* Copy src/core/ext/upbdefs-generated/envoy/extensions/filters/common/fault/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/extensions/filters/common/fault/v3"; - dstSubfolderSpec = 16; - files = ( - BEC051B3033BFC13515D886E9B670CD0 /* fault.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/extensions/filters/common/fault/v3 Private Headers */, - ); - name = "Copy src/core/ext/upbdefs-generated/envoy/extensions/filters/common/fault/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 451BFE27BDCC7D1A678FE66E956F0211 /* Copy src/core/ext/upb-generated/validate Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/validate"; - dstSubfolderSpec = 16; - files = ( - 57F4BA602D4D89790163E2010EC56FE7 /* validate.upb.h in Copy src/core/ext/upb-generated/validate Private Headers */, - ); - name = "Copy src/core/ext/upb-generated/validate Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 455DC6560395DE960D1A8CF9B2B8FC51 /* Copy src/core/ext/upbdefs-generated/xds/core/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/xds/core/v3"; - dstSubfolderSpec = 16; - files = ( - A788B95CEBE59D0D30030FBB2FB22E6E /* authority.upbdefs.h in Copy src/core/ext/upbdefs-generated/xds/core/v3 Private Headers */, - 59B30AA9AF01CD1346DED837EEA3FF13 /* collection_entry.upbdefs.h in Copy src/core/ext/upbdefs-generated/xds/core/v3 Private Headers */, - A15B5BCF21837CEAF3419976C1314396 /* context_params.upbdefs.h in Copy src/core/ext/upbdefs-generated/xds/core/v3 Private Headers */, - FE2CD93D148003B930BDF219B2479B93 /* extension.upbdefs.h in Copy src/core/ext/upbdefs-generated/xds/core/v3 Private Headers */, - E5F7F129A920E34E32D46DBB87B308C8 /* resource.upbdefs.h in Copy src/core/ext/upbdefs-generated/xds/core/v3 Private Headers */, - A1DC91DE543643A43F0395F2A6A4A44A /* resource_locator.upbdefs.h in Copy src/core/ext/upbdefs-generated/xds/core/v3 Private Headers */, - 07857C37F59D609BE25EB375B412D712 /* resource_name.upbdefs.h in Copy src/core/ext/upbdefs-generated/xds/core/v3 Private Headers */, - ); - name = "Copy src/core/ext/upbdefs-generated/xds/core/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 46BAC3305C406796B3BAF10CF38A75E1 /* Copy security Public Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/security"; - dstSubfolderSpec = 16; - files = ( - E052AE7E3990963B2CB249CCD59F2C65 /* auth_context.h in Copy security Public Headers */, - F050DE574091C69E78B9AED29D91D2DA /* auth_metadata_processor.h in Copy security Public Headers */, - 9E967C28784129DE7AECEF48DD013D71 /* authorization_policy_provider.h in Copy security Public Headers */, - A0E8EF52CD47DCFFD1337D828E76867E /* binder_credentials.h in Copy security Public Headers */, - A88E87AD59FAE3090B1F19D856C9FB6A /* binder_security_policy.h in Copy security Public Headers */, - CE7310127164F478BCA03A83A14FFDA9 /* credentials.h in Copy security Public Headers */, - F3217F90E7113BBA62363D0705B70642 /* server_credentials.h in Copy security Public Headers */, - 0E6A2409DFD596A57E3DE71CF9DC2BF8 /* tls_certificate_provider.h in Copy security Public Headers */, - A9EF62ED6DD92A4D356A34E3A1866AE1 /* tls_certificate_verifier.h in Copy security Public Headers */, - D8F70F27FF545F33CF0944B988500CD2 /* tls_credentials_options.h in Copy security Public Headers */, - ); - name = "Copy security Public Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 474CBD196D8D8D79EAC3AB976D4CF402 /* Copy src/core/ext/upbdefs-generated/envoy/type/matcher/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/type/matcher/v3"; - dstSubfolderSpec = 16; - files = ( - 488B86AB9676F05315B405E390287A89 /* http_inputs.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/matcher/v3 Private Headers */, - DB0E39864A42362B78D6088682128B96 /* metadata.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/matcher/v3 Private Headers */, - BB554C7F81D724F41742BF277F24ACDF /* node.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/matcher/v3 Private Headers */, - 03D80337826CD00C6C86EB15FD281808 /* number.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/matcher/v3 Private Headers */, - 03C50D346DC5E18CC297ED004EDFF38B /* path.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/matcher/v3 Private Headers */, - 739575FC7B34FA959A33DCD83E5D8518 /* regex.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/matcher/v3 Private Headers */, - 724277806E654781A23F15059E58373D /* string.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/matcher/v3 Private Headers */, - 256C1B2EFA2EEA8A4629F283EF399F2C /* struct.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/matcher/v3 Private Headers */, - 12C7366A526A8C9BB1BA5B024E907059 /* value.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/matcher/v3 Private Headers */, - ); - name = "Copy src/core/ext/upbdefs-generated/envoy/type/matcher/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 4884E83641AA716B1CA1A3DE4CE55236 /* Copy src/core/lib/debug Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/debug"; - dstSubfolderSpec = 16; - files = ( - A6BBF8D80CB8288C2E7A696802A1B0EC /* stats.h in Copy src/core/lib/debug Private Headers */, - E5EA747B43CA8EBFDFE4D1C8BB1DC9C3 /* stats_data.h in Copy src/core/lib/debug Private Headers */, - 012A68306F665824FDB7111DB4BF9B7A /* trace.h in Copy src/core/lib/debug Private Headers */, - ); - name = "Copy src/core/lib/debug Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 48AEAC533365DF5B55BFFA828788DCE0 /* Copy src/core/lib/security/credentials/iam Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/credentials/iam"; - dstSubfolderSpec = 16; - files = ( - 5B75BF083E88D19F491CEF022411C92B /* iam_credentials.h in Copy src/core/lib/security/credentials/iam Private Headers */, - ); - name = "Copy src/core/lib/security/credentials/iam Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 4971473C0E23334B41CEC13806EF3A5E /* Copy src/core/ext/upb-generated/envoy/service/status/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/service/status/v3"; - dstSubfolderSpec = 16; - files = ( - 0D971EDB80FB8388855E69CCEE46AF93 /* csds.upb.h in Copy src/core/ext/upb-generated/envoy/service/status/v3 Private Headers */, - ); - name = "Copy src/core/ext/upb-generated/envoy/service/status/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 497844B8FCDC3C605C48D0F8749B997B /* Copy src/core/tsi/ssl/session_cache Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/tsi/ssl/session_cache"; - dstSubfolderSpec = 16; - files = ( - AD9EA316427BCFCFBAECE111D4823D1F /* ssl_session.h in Copy src/core/tsi/ssl/session_cache Private Headers */, - 27E50E30874E93596F29DC303B402EEB /* ssl_session_cache.h in Copy src/core/tsi/ssl/session_cache Private Headers */, - ); - name = "Copy src/core/tsi/ssl/session_cache Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 4A809D8A7D1BDE5F696E36B5B84CBE52 /* Copy time/internal/cctz/include/cctz Public Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/time/internal/cctz/include/cctz"; - dstSubfolderSpec = 16; - files = ( - 2EC6E222F8C115F517429EC58282E798 /* civil_time.h in Copy time/internal/cctz/include/cctz Public Headers */, - 212FDD8BECC26238DE14435AD0112136 /* civil_time_detail.h in Copy time/internal/cctz/include/cctz Public Headers */, - D890AAFD1B823FA6A76A9BD7F4D52B7C /* time_zone.h in Copy time/internal/cctz/include/cctz Public Headers */, - 208679B3878E938D48D8A5015A725AA1 /* zone_info_source.h in Copy time/internal/cctz/include/cctz Public Headers */, - ); - name = "Copy time/internal/cctz/include/cctz Public Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 4A8DCDE009AFD3CC2E3956C2A7F2B859 /* Copy src/core/ext/filters/client_channel/lb_policy Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/client_channel/lb_policy"; - dstSubfolderSpec = 16; - files = ( - 70E36A46E261B1720DB8655056E77649 /* address_filtering.h in Copy src/core/ext/filters/client_channel/lb_policy Private Headers */, - 0660A17CFEB8CD7A70B56307F90DEE6A /* backend_metric_data.h in Copy src/core/ext/filters/client_channel/lb_policy Private Headers */, - DE47CB726CA9090150F5E4AEEA11A12E /* child_policy_handler.h in Copy src/core/ext/filters/client_channel/lb_policy Private Headers */, - 07307997364BE4A06E4C10A96F7C935E /* oob_backend_metric.h in Copy src/core/ext/filters/client_channel/lb_policy Private Headers */, - DB4BEB3BEF0409ED5AAC02A901411CB9 /* subchannel_list.h in Copy src/core/ext/filters/client_channel/lb_policy Private Headers */, - ); - name = "Copy src/core/ext/filters/client_channel/lb_policy Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 4AEFC48D3034F8F16D65B1416E6ED613 /* Copy src/core/ext/upb-generated/src/proto/grpc/gcp Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/src/proto/grpc/gcp"; - dstSubfolderSpec = 16; - files = ( - D04CA97CBF221F80DC13C2F9AC2904B9 /* altscontext.upb.h in Copy src/core/ext/upb-generated/src/proto/grpc/gcp Private Headers */, - 8D61F385AF1F6D4E7D7932E9197D8820 /* handshaker.upb.h in Copy src/core/ext/upb-generated/src/proto/grpc/gcp Private Headers */, - B38CF89F0DD263532E8886DACD384DF2 /* transport_security_common.upb.h in Copy src/core/ext/upb-generated/src/proto/grpc/gcp Private Headers */, - ); - name = "Copy src/core/ext/upb-generated/src/proto/grpc/gcp Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 4BE88B972223A97FD41B799ED6E5356D /* Copy src/core/lib/security/credentials/ssl Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/credentials/ssl"; - dstSubfolderSpec = 16; - files = ( - 73D758652B21FA31364FC1ADB111C3D5 /* ssl_credentials.h in Copy src/core/lib/security/credentials/ssl Private Headers */, - ); - name = "Copy src/core/lib/security/credentials/ssl Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 4C3A677B6293C3A79E15CED29F70F2B0 /* Copy src/core/lib/security/credentials/xds Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/credentials/xds"; - dstSubfolderSpec = 16; - files = ( - 1E03DA0BC6C4790C1836379734A99462 /* xds_credentials.h in Copy src/core/lib/security/credentials/xds Private Headers */, - ); - name = "Copy src/core/lib/security/credentials/xds Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 4C6AAC610D4CBCC35F35E3ED07359842 /* Copy src/core/ext/filters/deadline Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/deadline"; - dstSubfolderSpec = 16; - files = ( - DB196236B8A586F3727362661BD7FE5C /* deadline_filter.h in Copy src/core/ext/filters/deadline Private Headers */, - ); - name = "Copy src/core/ext/filters/deadline Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 4CFAE82617165E39F69B65BB6DD7CDF0 /* Copy src/core/ext/upbdefs-generated/envoy/service/status/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/service/status/v3"; - dstSubfolderSpec = 16; - files = ( - 3C8F8C1B12163E8240C5BC965CDD64A9 /* csds.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/service/status/v3 Private Headers */, - ); - name = "Copy src/core/ext/upbdefs-generated/envoy/service/status/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 4D19788911081B7B4FE60818590A60A2 /* Copy src/core/lib/security/credentials/oauth2 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/credentials/oauth2"; - dstSubfolderSpec = 16; - files = ( - F29067E7E96A647321F9D3A3A03E5C68 /* oauth2_credentials.h in Copy src/core/lib/security/credentials/oauth2 Private Headers */, - ); - name = "Copy src/core/lib/security/credentials/oauth2 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 4D3F478005FB2E7DD62BDC6BAFFE8D63 /* Copy src/core/ext/upbdefs-generated/envoy/config/listener/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/config/listener/v3"; - dstSubfolderSpec = 16; - files = ( - 2A2B2C9A7291F4D8C882E127A3D6E4E5 /* api_listener.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/listener/v3 Private Headers */, - 2ED447AE2C82DC4371BBAAF11C546C30 /* listener.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/listener/v3 Private Headers */, - 5DC70B5A81B79F817D9F235D345C5FE1 /* listener_components.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/listener/v3 Private Headers */, - 11B5E00509A7DBCC18864C0EECEC3D27 /* quic_config.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/listener/v3 Private Headers */, - 5EF26BBE7993744B365EFF38E2CAEB77 /* udp_listener_config.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/listener/v3 Private Headers */, - ); - name = "Copy src/core/ext/upbdefs-generated/envoy/config/listener/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 4D517C5D8E3C71C49209F25E3C1EC41A /* Copy src/core/ext/upb-generated/xds/type/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/xds/type/v3"; - dstSubfolderSpec = 16; - files = ( - 29BE8F9A954B4EDF798097CCF9D4DA35 /* typed_struct.upb.h in Copy src/core/ext/upb-generated/xds/type/v3 Private Headers */, - ); - name = "Copy src/core/ext/upb-generated/xds/type/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 4E26DA055456F2C6ECD317E1B8C6BB6C /* Copy src/core/ext/upbdefs-generated/envoy/service/discovery/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/service/discovery/v3"; - dstSubfolderSpec = 16; - files = ( - 9CB31E791EC1BA8AEB08D9351B441AB7 /* ads.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/service/discovery/v3 Private Headers */, - BD88E5A8E628D74EBCB1994F0762B8C0 /* discovery.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/service/discovery/v3 Private Headers */, - ); - name = "Copy src/core/ext/upbdefs-generated/envoy/service/discovery/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 4FC94A2A444DB440671781FC7B4F0F19 /* Copy src/core/lib/security/security_connector/local Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/security_connector/local"; - dstSubfolderSpec = 16; - files = ( - FC69A0DC9514CDBE4B8378626C1648C4 /* local_security_connector.h in Copy src/core/lib/security/security_connector/local Private Headers */, - ); - name = "Copy src/core/lib/security/security_connector/local Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 5051D595084A6412E39F584DCA9DAA00 /* Copy src/core/ext/upbdefs-generated/envoy/type/http/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/type/http/v3"; - dstSubfolderSpec = 16; - files = ( - 07DBBB1A64D93264FB83CCE4DE8638EC /* cookie.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/http/v3 Private Headers */, - 4E441FB65EC2D2B4E9F6BC8B867E8D14 /* path_transformation.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/http/v3 Private Headers */, - ); - name = "Copy src/core/ext/upbdefs-generated/envoy/type/http/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 517D83214C23B9153AF4A170703197CC /* Copy src/core/lib/avl Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/avl"; - dstSubfolderSpec = 16; - files = ( - F761D083FAA9664788B71820454E797C /* avl.h in Copy src/core/lib/avl Private Headers */, - ); - name = "Copy src/core/lib/avl Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 5198CD74A2DD0D4E93170725708782F4 /* Copy base/internal Public Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/base/internal"; - dstSubfolderSpec = 16; - files = ( - 1E24E8A86E2C1CC878A1D1C179B05822 /* atomic_hook.h in Copy base/internal Public Headers */, - EBB9F727378B421612806CA6D3DA668F /* cycleclock.h in Copy base/internal Public Headers */, - 84BFE52A100C1455CE5DD7973D68DC2B /* direct_mmap.h in Copy base/internal Public Headers */, - 1B91250BF40A883D414327518BEB00E6 /* dynamic_annotations.h in Copy base/internal Public Headers */, - DE462916ED69B7D14F4393DA1C718FE8 /* endian.h in Copy base/internal Public Headers */, - 0353309CC0F0FD622E4D731BFC1E186B /* errno_saver.h in Copy base/internal Public Headers */, - E8AE5CD5941A6A1271031E1CD2E7A5C3 /* fast_type_id.h in Copy base/internal Public Headers */, - 65066C29A0327BDEE844C06D6D95FD58 /* hide_ptr.h in Copy base/internal Public Headers */, - 59E707E07CC79C0EF74AA7F67117C2CA /* identity.h in Copy base/internal Public Headers */, - C6A75A812B0519ACB455F94AF95EF945 /* inline_variable.h in Copy base/internal Public Headers */, - B86C703C49E590553077DE960B87567A /* invoke.h in Copy base/internal Public Headers */, - 7EE392503F129613F22E0B39A2F675ED /* low_level_alloc.h in Copy base/internal Public Headers */, - 51F93CECA852FDC06CC76208E451276B /* low_level_scheduling.h in Copy base/internal Public Headers */, - 1D7B30282A986E250142A7F487836431 /* per_thread_tls.h in Copy base/internal Public Headers */, - BCE2229FC15A00881E44861B3A851ED8 /* prefetch.h in Copy base/internal Public Headers */, - 06881B3328074BB9915C3119337F6E92 /* pretty_function.h in Copy base/internal Public Headers */, - ABAE716F87977032CBADA8537EBFE68F /* raw_logging.h in Copy base/internal Public Headers */, - 8DCF5500EE76EEC3B249BE9AB8313209 /* scheduling_mode.h in Copy base/internal Public Headers */, - 347EBC17357458A21F98C52643E40290 /* spinlock.h in Copy base/internal Public Headers */, - C0D40E3C62A8F4B65DC3C076B8EE44FE /* spinlock_akaros.inc in Copy base/internal Public Headers */, - 18A08E0739CB6823976780DDEFC2C91B /* spinlock_linux.inc in Copy base/internal Public Headers */, - 675D9FABADFE7463D3C8D924FFDB4705 /* spinlock_posix.inc in Copy base/internal Public Headers */, - 8EAB21C1EA1A8B013DF4229389F3A6E2 /* spinlock_wait.h in Copy base/internal Public Headers */, - 36A6CB38EAE45F2158B44BF15464C5CA /* spinlock_win32.inc in Copy base/internal Public Headers */, - EBD5C9E16F83B730E33C80312BA4A52A /* strerror.h in Copy base/internal Public Headers */, - 57CE0F8A91E9EA13CBF67B94CB9D1CED /* sysinfo.h in Copy base/internal Public Headers */, - DA47151865955265787623E17ACA046F /* thread_annotations.h in Copy base/internal Public Headers */, - 1D04BFC00266A978FE5C28036C1908B2 /* thread_identity.h in Copy base/internal Public Headers */, - 2A5D577BF7C61D1E700898279BB240B1 /* throw_delegate.h in Copy base/internal Public Headers */, - 00FFB95CC98A7F4F58905A49BCA0E24B /* tsan_mutex_interface.h in Copy base/internal Public Headers */, - AC4BE316D972ECB984ADDC8D43F1C220 /* unaligned_access.h in Copy base/internal Public Headers */, - DB0B9AF2F2C1A41972C021E6E6FD6696 /* unscaledcycleclock.h in Copy base/internal Public Headers */, - ); - name = "Copy base/internal Public Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 5298FD25B9BB364B71DEFDD264DEECEB /* Copy crypto/ec_extra Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/crypto/ec_extra"; - dstSubfolderSpec = 16; - files = ( - 18A9770DE1BD620805F0C1F9B643D675 /* internal.h in Copy crypto/ec_extra Private Headers */, - ); - name = "Copy crypto/ec_extra Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 52D2A8278C426D0D88A6E645A49AD32B /* Copy src/core/lib/security/credentials/external Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/credentials/external"; - dstSubfolderSpec = 16; - files = ( - 7553148AB903FBB53FC4650B285F0271 /* aws_external_account_credentials.h in Copy src/core/lib/security/credentials/external Private Headers */, - E4DC048D05229F1CC18EB70DA672C125 /* aws_request_signer.h in Copy src/core/lib/security/credentials/external Private Headers */, - 2F9BC54C17E8E993CFACA05CE37FF5F5 /* external_account_credentials.h in Copy src/core/lib/security/credentials/external Private Headers */, - 685A02C026FF6E631978E3C05457DE7B /* file_external_account_credentials.h in Copy src/core/lib/security/credentials/external Private Headers */, - 7CC6EB3479BF8210A64FCD24FD1A923F /* url_external_account_credentials.h in Copy src/core/lib/security/credentials/external Private Headers */, - ); - name = "Copy src/core/lib/security/credentials/external Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 52D6E49B18064988C9580D985EF97329 /* Copy time Public Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/time"; - dstSubfolderSpec = 16; - files = ( - F7D052F8662381B529F08A6450EAC0F0 /* civil_time.h in Copy time Public Headers */, - 53C3B74CAD119F6085B3DFDCE62DD895 /* clock.h in Copy time Public Headers */, - B4C0A1E94B641712FA1344FCEF0BEB4B /* time.h in Copy time Public Headers */, - ); - name = "Copy time Public Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 53076C7861F9A2C0CEDD6548CC8EE7FA /* Copy synchronization/internal Public Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/synchronization/internal"; - dstSubfolderSpec = 16; - files = ( - D1ED87E451B91D0A1CD42A3E93C8EE3E /* create_thread_identity.h in Copy synchronization/internal Public Headers */, - 14E918485EBCCB7ED256C63C68876888 /* futex.h in Copy synchronization/internal Public Headers */, - FDA86079C595A3DACB4D704839D787C7 /* graphcycles.h in Copy synchronization/internal Public Headers */, - 85C0529C1A9946F1AEB6525B144A3898 /* kernel_timeout.h in Copy synchronization/internal Public Headers */, - C05B5182A276E9431F7EC2D78F84CAE3 /* per_thread_sem.h in Copy synchronization/internal Public Headers */, - A9E778A7741D50BF8AEDD1F82F8D3648 /* waiter.h in Copy synchronization/internal Public Headers */, - ); - name = "Copy synchronization/internal Public Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 54BB2DFBE2DD0481437C79E67B64BD04 /* Copy src/core/lib/security/credentials/jwt Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/credentials/jwt"; - dstSubfolderSpec = 16; - files = ( - 955949B0A467026F5382353F8DBE9E16 /* json_token.h in Copy src/core/lib/security/credentials/jwt Private Headers */, - 3BBFDF5DBC3AE6BF6A5E16F00D7A2DED /* jwt_credentials.h in Copy src/core/lib/security/credentials/jwt Private Headers */, - 1F432C8BEF746E9FAA19369E1838D3ED /* jwt_verifier.h in Copy src/core/lib/security/credentials/jwt Private Headers */, - ); - name = "Copy src/core/lib/security/credentials/jwt Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 5603BD47E98779C2455BC9F17C8E800D /* Copy src/core/lib/security/security_connector/fake Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/security_connector/fake"; - dstSubfolderSpec = 16; - files = ( - 23BADAB9D4822708AB78784F7E6F240A /* fake_security_connector.h in Copy src/core/lib/security/security_connector/fake Private Headers */, - ); - name = "Copy src/core/lib/security/security_connector/fake Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 562160A9C057F44563AA04FB67EF23B2 /* Copy src/core/ext/filters/server_config_selector Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/server_config_selector"; - dstSubfolderSpec = 16; - files = ( - 63D1B10D03412682A9D1D6228EDCA59C /* server_config_selector.h in Copy src/core/ext/filters/server_config_selector Private Headers */, - 46D9587DA781397CFC4CBA5EE55D80FE /* server_config_selector_filter.h in Copy src/core/ext/filters/server_config_selector Private Headers */, - ); - name = "Copy src/core/ext/filters/server_config_selector Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 567A013E6E1B7C0236E12DD0009E83CB /* Copy src/core/lib/iomgr Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/iomgr"; - dstSubfolderSpec = 16; - files = ( - B5EC1B913EF63F3CC0449934663B04A5 /* block_annotate.h in Copy src/core/lib/iomgr Private Headers */, - 11ED38BB90E3C9B9E1F79DE41D2730FC /* buffer_list.h in Copy src/core/lib/iomgr Private Headers */, - 08419D9AE2203C27E8C07BF172975BD0 /* call_combiner.h in Copy src/core/lib/iomgr Private Headers */, - E134E753CA5555A68821D210F80F78D9 /* cfstream_handle.h in Copy src/core/lib/iomgr Private Headers */, - 8DAA8F9EF0F0753EBEA161A176D93499 /* closure.h in Copy src/core/lib/iomgr Private Headers */, - D7F6C77BB0768B7527FD92AA48F6E77A /* combiner.h in Copy src/core/lib/iomgr Private Headers */, - 9E6538F693F5AFF8ABD7316AA2F3E242 /* dynamic_annotations.h in Copy src/core/lib/iomgr Private Headers */, - 333BA92E09C5A01AF3FDD298814E203F /* endpoint.h in Copy src/core/lib/iomgr Private Headers */, - E0FAB8649C9F8A88DC7FB70AEF3E70F4 /* endpoint_cfstream.h in Copy src/core/lib/iomgr Private Headers */, - 754E319EDC9C066F81729C0D48EB777B /* endpoint_pair.h in Copy src/core/lib/iomgr Private Headers */, - 61CE9035EE2FBAF2C576CF5674A0A8AC /* error.h in Copy src/core/lib/iomgr Private Headers */, - BCDE0DFF5C30764A28A07F79FA4BFE6A /* error_cfstream.h in Copy src/core/lib/iomgr Private Headers */, - FB8A24B2539D1D0A2BA8824DCF129BFA /* ev_apple.h in Copy src/core/lib/iomgr Private Headers */, - 55376D8103D916E17B86EFB1EA3A02DF /* ev_epoll1_linux.h in Copy src/core/lib/iomgr Private Headers */, - D09766FF0D3F83C4A00370B45A192B0D /* ev_poll_posix.h in Copy src/core/lib/iomgr Private Headers */, - C958D49B1FB3650BE409E2BAD242B2A5 /* ev_posix.h in Copy src/core/lib/iomgr Private Headers */, - A20AD2A6044BCA36FB7397A2909D0C87 /* exec_ctx.h in Copy src/core/lib/iomgr Private Headers */, - 7E71699F0407E3E86BDA15D9169F22D8 /* executor.h in Copy src/core/lib/iomgr Private Headers */, - EE237E0DF62B80AA90067F85A25B43C1 /* gethostname.h in Copy src/core/lib/iomgr Private Headers */, - 5063E5C0D4BC820E38E6F98D5B0BA0D7 /* grpc_if_nametoindex.h in Copy src/core/lib/iomgr Private Headers */, - 52D4D30FB83562E0A5A0A52ECE5AE12B /* internal_errqueue.h in Copy src/core/lib/iomgr Private Headers */, - 71B2470378B925EB6999A6D37F502461 /* iocp_windows.h in Copy src/core/lib/iomgr Private Headers */, - A030264F1BA7E10087703C27A56B44DE /* iomgr.h in Copy src/core/lib/iomgr Private Headers */, - 2F3B60BF27A7AC76BB306F160DCE8AB8 /* iomgr_fwd.h in Copy src/core/lib/iomgr Private Headers */, - CCB65557979D70C270FF589816FF2471 /* iomgr_internal.h in Copy src/core/lib/iomgr Private Headers */, - C8863D7CA7047A494624ADAFF69B1A1A /* load_file.h in Copy src/core/lib/iomgr Private Headers */, - 3F8D2E417995FD4E8D11229870207674 /* lockfree_event.h in Copy src/core/lib/iomgr Private Headers */, - 7F8744E0CB8DC25DEC60E00B47EEC172 /* nameser.h in Copy src/core/lib/iomgr Private Headers */, - FDA6164378B0028FE824D36027513952 /* polling_entity.h in Copy src/core/lib/iomgr Private Headers */, - 079277DB479AC5B556DB491CB5C8B114 /* pollset.h in Copy src/core/lib/iomgr Private Headers */, - 020729203182674925120342D960D679 /* pollset_set.h in Copy src/core/lib/iomgr Private Headers */, - 78C4A8C8222F1B1BF7EF3C03511C9BF3 /* pollset_set_windows.h in Copy src/core/lib/iomgr Private Headers */, - AC4516631FEA1A9FF475F5D944C8CEE3 /* pollset_windows.h in Copy src/core/lib/iomgr Private Headers */, - 9D39224913F5FD1A91C8F9E556E29D76 /* port.h in Copy src/core/lib/iomgr Private Headers */, - 33456F4BAF883C84769D113BCD9C62EA /* python_util.h in Copy src/core/lib/iomgr Private Headers */, - 370F80DD293C42FBCE22EA7C1F1DA363 /* resolve_address.h in Copy src/core/lib/iomgr Private Headers */, - 4FA2F9F22B437997C0C9995303876D95 /* resolve_address_impl.h in Copy src/core/lib/iomgr Private Headers */, - 194E4300F45867F70E2934B014767D74 /* resolve_address_posix.h in Copy src/core/lib/iomgr Private Headers */, - D9F12BB8920078E12ACA26C10AA4E843 /* resolve_address_windows.h in Copy src/core/lib/iomgr Private Headers */, - 2DE3D5A43FFC78B432ECEED1B191E750 /* resolved_address.h in Copy src/core/lib/iomgr Private Headers */, - 60B21A7A14D23BE6FF995F8E1D4173CC /* sockaddr.h in Copy src/core/lib/iomgr Private Headers */, - 1EDFB4679A03F648A371325E62349EE0 /* sockaddr_posix.h in Copy src/core/lib/iomgr Private Headers */, - 0C9B3EFDF53902CB002182DE8B90455D /* sockaddr_windows.h in Copy src/core/lib/iomgr Private Headers */, - 1D839D093AC26C7F4991C408FF3C5A6B /* socket_factory_posix.h in Copy src/core/lib/iomgr Private Headers */, - 4266FFE696F8FAE17D6CCAAA1F699296 /* socket_mutator.h in Copy src/core/lib/iomgr Private Headers */, - 46C7A0D57AF9BBF2E031DAA489B4C45B /* socket_utils.h in Copy src/core/lib/iomgr Private Headers */, - 5BDB90CF344A32B152164C45803C48FE /* socket_utils_posix.h in Copy src/core/lib/iomgr Private Headers */, - 9982CF7679FACCFF9617210D42A568E5 /* socket_windows.h in Copy src/core/lib/iomgr Private Headers */, - 6C6E34B924064DCD1C57BC3DC79613E9 /* tcp_client.h in Copy src/core/lib/iomgr Private Headers */, - 10FE7C7FC89AB03495B092FA0F3BD768 /* tcp_client_posix.h in Copy src/core/lib/iomgr Private Headers */, - ACE6CADC02B32A1A9D32476DB9F49A01 /* tcp_posix.h in Copy src/core/lib/iomgr Private Headers */, - BB19B270E0EC2C4DEF091EB42437C8B6 /* tcp_server.h in Copy src/core/lib/iomgr Private Headers */, - AFE95DDE722B7F52FE49EAC9AFB8E009 /* tcp_server_utils_posix.h in Copy src/core/lib/iomgr Private Headers */, - 0F354CAA16AB2F5819EBF8BDDD67BD67 /* tcp_windows.h in Copy src/core/lib/iomgr Private Headers */, - 9BE6638668935B8FDE2BB485CE2DCF1A /* timer.h in Copy src/core/lib/iomgr Private Headers */, - D5F58B54281A2357038CCC58A39222BB /* timer_generic.h in Copy src/core/lib/iomgr Private Headers */, - 91604D93A99D2C838EE6C3A71A5D1092 /* timer_heap.h in Copy src/core/lib/iomgr Private Headers */, - 78622AAFEC815AD4AC417A8778FD3B08 /* timer_manager.h in Copy src/core/lib/iomgr Private Headers */, - 5E4B153D93E6C75463131D199E46CB2B /* unix_sockets_posix.h in Copy src/core/lib/iomgr Private Headers */, - A04718673A7061951291F7D37E72C802 /* wakeup_fd_pipe.h in Copy src/core/lib/iomgr Private Headers */, - 1EB828B3951E6221D5401DF0CB96CA6A /* wakeup_fd_posix.h in Copy src/core/lib/iomgr Private Headers */, - ); - name = "Copy src/core/lib/iomgr Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 5699161A16E00B8AE65480F4E89D447D /* Copy crypto/pkcs7 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/crypto/pkcs7"; - dstSubfolderSpec = 16; - files = ( - AB876C7ADCC70CE9FA8616B846816CD2 /* internal.h in Copy crypto/pkcs7 Private Headers */, - ); - name = "Copy crypto/pkcs7 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 56CEF3A965167CFB339E0D83205AE115 /* Copy src/core/ext/upbdefs-generated/envoy/config/tap/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/config/tap/v3"; - dstSubfolderSpec = 16; - files = ( - 5FEA041C4D281A120AD3AC7257EBCCBF /* common.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/tap/v3 Private Headers */, - ); - name = "Copy src/core/ext/upbdefs-generated/envoy/config/tap/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 57101E92559F32B35EB0EA501BE2D598 /* Copy src/core/lib/iomgr Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/iomgr"; - dstSubfolderSpec = 16; - files = ( - B18D6A6D00919A705F4A55FBD192D3B7 /* block_annotate.h in Copy src/core/lib/iomgr Private Headers */, - D947D323FE3422A29709D7C35F20E68C /* buffer_list.h in Copy src/core/lib/iomgr Private Headers */, - B5820623937E34001484A607D5C606E7 /* call_combiner.h in Copy src/core/lib/iomgr Private Headers */, - 4AFEFFDF3C4F5ACFE64D6247389592C9 /* cfstream_handle.h in Copy src/core/lib/iomgr Private Headers */, - CF7DDE7A3FF50DC5CBE8DE5DB68BE0AB /* closure.h in Copy src/core/lib/iomgr Private Headers */, - E179B3CD976A4BD52C59F69F913D1DCE /* combiner.h in Copy src/core/lib/iomgr Private Headers */, - AAE68E317152F41532DB48C8CAA58B4E /* dynamic_annotations.h in Copy src/core/lib/iomgr Private Headers */, - 19241E0DD7A6C233634A3B6293CC821F /* endpoint.h in Copy src/core/lib/iomgr Private Headers */, - C55EFAD16647FE1C4C0061E0E9D17694 /* endpoint_cfstream.h in Copy src/core/lib/iomgr Private Headers */, - 7E3AEACF98EFFE294C6BF85243E93F70 /* endpoint_pair.h in Copy src/core/lib/iomgr Private Headers */, - 25A8ABC0F5E3B30592903713D5A1C379 /* error.h in Copy src/core/lib/iomgr Private Headers */, - 94D50E4BF97F7597F7BE569765642A8F /* error_cfstream.h in Copy src/core/lib/iomgr Private Headers */, - 590EE43016B683B8FFFB97F5D04C7A27 /* ev_apple.h in Copy src/core/lib/iomgr Private Headers */, - D0930FE0B7F4DD61695491BCEE6B80EA /* ev_epoll1_linux.h in Copy src/core/lib/iomgr Private Headers */, - C883E57AAC2B6E39807D3FE1F187F74B /* ev_poll_posix.h in Copy src/core/lib/iomgr Private Headers */, - 2E86B1DDC19085B69D9674578291E57C /* ev_posix.h in Copy src/core/lib/iomgr Private Headers */, - 8BB1507C4CB51FDE4DB4ABD9905C0AE9 /* exec_ctx.h in Copy src/core/lib/iomgr Private Headers */, - 202546BC4235999619B373CD72A1C3CA /* executor.h in Copy src/core/lib/iomgr Private Headers */, - B315F96D15CD14DD00096A47C492136C /* gethostname.h in Copy src/core/lib/iomgr Private Headers */, - 32005F4279AE179F3E33FDC5A810C542 /* grpc_if_nametoindex.h in Copy src/core/lib/iomgr Private Headers */, - B96804B0B783C3EA5E2E86A60457089B /* internal_errqueue.h in Copy src/core/lib/iomgr Private Headers */, - D58544CB3AD86B7A5DE8CB23737E3AC9 /* iocp_windows.h in Copy src/core/lib/iomgr Private Headers */, - 4C6DFE2375F472BFECF42FE3CD265A8C /* iomgr.h in Copy src/core/lib/iomgr Private Headers */, - ED02D435812EC232CB68507FDECBA791 /* iomgr_fwd.h in Copy src/core/lib/iomgr Private Headers */, - A9D241BA01B478618CB85B9EC829F076 /* iomgr_internal.h in Copy src/core/lib/iomgr Private Headers */, - 41168F28A8C2F31F50FA61D4AFE3F8E3 /* load_file.h in Copy src/core/lib/iomgr Private Headers */, - E0AF59DD36841E07F73F99AC29B63856 /* lockfree_event.h in Copy src/core/lib/iomgr Private Headers */, - 5EB36BC6A35158659260E690E9BDAB1C /* nameser.h in Copy src/core/lib/iomgr Private Headers */, - DDAFECE84921372A9BC72F3218364927 /* polling_entity.h in Copy src/core/lib/iomgr Private Headers */, - C30A04ACA31D9E71E8D9A9980CECBAA1 /* pollset.h in Copy src/core/lib/iomgr Private Headers */, - 096B38513CA957C26B8287E8FA995AF0 /* pollset_set.h in Copy src/core/lib/iomgr Private Headers */, - 14F4F6FF70DEA4AEA4E5CD3711DD8B91 /* pollset_set_windows.h in Copy src/core/lib/iomgr Private Headers */, - 2DC8709A744E95CB5F9E5E6492042403 /* pollset_windows.h in Copy src/core/lib/iomgr Private Headers */, - 401276032917449A7D3F5D175DE4E1C3 /* port.h in Copy src/core/lib/iomgr Private Headers */, - A1FDA1E603DE4EFA26A43E82EE9FB913 /* python_util.h in Copy src/core/lib/iomgr Private Headers */, - 8F23D426CD904F083C95CA3A2FB72DB5 /* resolve_address.h in Copy src/core/lib/iomgr Private Headers */, - ACF7E7CD51B027E676B2D319D2C291CF /* resolve_address_impl.h in Copy src/core/lib/iomgr Private Headers */, - 64049E8129B26DE1DC8DC10E7C1E5E7B /* resolve_address_posix.h in Copy src/core/lib/iomgr Private Headers */, - AC2A191F1F01D34015C96F08FCE4CD5D /* resolve_address_windows.h in Copy src/core/lib/iomgr Private Headers */, - B285304ED285F82AE1E72A913BD50689 /* resolved_address.h in Copy src/core/lib/iomgr Private Headers */, - 860D74354FCF8DA1C344A300F4D14416 /* sockaddr.h in Copy src/core/lib/iomgr Private Headers */, - 2589D1965DD28E43C75614490C567679 /* sockaddr_posix.h in Copy src/core/lib/iomgr Private Headers */, - A4AC6EDB21F3C3723EDBAEC1CE279E3A /* sockaddr_windows.h in Copy src/core/lib/iomgr Private Headers */, - B2CA1D1D46E0F795A880FCDAF2E9F64B /* socket_factory_posix.h in Copy src/core/lib/iomgr Private Headers */, - 0C314EE1B78B8DAA7ED0E18EABB273A1 /* socket_mutator.h in Copy src/core/lib/iomgr Private Headers */, - B807E5B470E079C5AF55D1B21A20F259 /* socket_utils.h in Copy src/core/lib/iomgr Private Headers */, - D92C13C17F701C04FDC72D3D6F786E76 /* socket_utils_posix.h in Copy src/core/lib/iomgr Private Headers */, - 196060600A0946F3284449CACF48066D /* socket_windows.h in Copy src/core/lib/iomgr Private Headers */, - BF066DBC30098EFC0B5AD94111E18E5F /* tcp_client.h in Copy src/core/lib/iomgr Private Headers */, - 72F970F7A3C10C729C7C4B11B3717CF8 /* tcp_client_posix.h in Copy src/core/lib/iomgr Private Headers */, - DD9A56F751EF24D1B415CE91E221E652 /* tcp_posix.h in Copy src/core/lib/iomgr Private Headers */, - BBFFEC3D524B415F40050D0949219053 /* tcp_server.h in Copy src/core/lib/iomgr Private Headers */, - CEF5FA04B3BFDD72E2D62689CE273060 /* tcp_server_utils_posix.h in Copy src/core/lib/iomgr Private Headers */, - F9596432694DBC81F2AD383B4698C702 /* tcp_windows.h in Copy src/core/lib/iomgr Private Headers */, - FE1108B66353CE601F8A6ED60A87FF93 /* timer.h in Copy src/core/lib/iomgr Private Headers */, - 49716C192E980FCF4166C19D34B72007 /* timer_generic.h in Copy src/core/lib/iomgr Private Headers */, - 530760ABB79125E006A9FB80FC04DC92 /* timer_heap.h in Copy src/core/lib/iomgr Private Headers */, - C19A80E7C4E2EB9F74045BA1FC12DEAF /* timer_manager.h in Copy src/core/lib/iomgr Private Headers */, - 4E85026F36400754A74107B2EB916CCB /* unix_sockets_posix.h in Copy src/core/lib/iomgr Private Headers */, - 25476A7A01827B73E152CE927584E200 /* wakeup_fd_pipe.h in Copy src/core/lib/iomgr Private Headers */, - 469AAD4471860745B2838D3FABE25733 /* wakeup_fd_posix.h in Copy src/core/lib/iomgr Private Headers */, - ); - name = "Copy src/core/lib/iomgr Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 575F5AF584B77031D605B1A64F3562A1 /* Copy types/internal Public Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/types/internal"; - dstSubfolderSpec = 16; - files = ( - 9C1355FD9A8CEC668033BAD4DE0B4224 /* optional.h in Copy types/internal Public Headers */, - 45EAF812AF0582E7F6050351BF973F3E /* span.h in Copy types/internal Public Headers */, - BFA9751288F385620B34F2A5805C3602 /* variant.h in Copy types/internal Public Headers */, - ); - name = "Copy types/internal Public Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 576930F76BE676CEBCA2A1C3CE37A836 /* Copy src/core/ext/upbdefs-generated/envoy/admin/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/admin/v3"; - dstSubfolderSpec = 16; - files = ( - 0DC34C9F7EF7B2B652D19B6BD3F9ECB6 /* certs.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/admin/v3 Private Headers */, - 6E8A3FA9CD0F61AB3C437AA900E642B5 /* clusters.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/admin/v3 Private Headers */, - 214F73B6D5BB26B9B14FF98B600C984F /* config_dump.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/admin/v3 Private Headers */, - C92555C30BEC4A1222A538A13F7E4DEE /* config_dump_shared.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/admin/v3 Private Headers */, - 3726BD1B8F8717100507E751FBA789F3 /* init_dump.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/admin/v3 Private Headers */, - FDDA2E40306C4C018B9EBF06E8576D83 /* listeners.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/admin/v3 Private Headers */, - F2DF3C746C910166D46BE1E5B6683504 /* memory.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/admin/v3 Private Headers */, - 25FB1E61087AD0E628D0548EBD24DD9D /* metrics.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/admin/v3 Private Headers */, - A68D9C73C2E73A8207B2BE4FB0400505 /* mutex_stats.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/admin/v3 Private Headers */, - 93643DEA2035FF556FE0E206A900D5D0 /* server_info.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/admin/v3 Private Headers */, - 4EDA93D488CD0A2338B9E06D9333162C /* tap.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/admin/v3 Private Headers */, - ); - name = "Copy src/core/ext/upbdefs-generated/envoy/admin/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 578BB6A547EAC8D9CAAA6B786C65CAD4 /* Copy src/core/ext/upb-generated/google/api/expr/v1alpha1 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/google/api/expr/v1alpha1"; - dstSubfolderSpec = 16; - files = ( - 1C1CEB4B6065F9A2892819795E4DD8FD /* checked.upb.h in Copy src/core/ext/upb-generated/google/api/expr/v1alpha1 Private Headers */, - A88261C9BD73A1C50C0B17679538618F /* syntax.upb.h in Copy src/core/ext/upb-generated/google/api/expr/v1alpha1 Private Headers */, - ); - name = "Copy src/core/ext/upb-generated/google/api/expr/v1alpha1 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 58C7690AE62990F77B0068525967E4E5 /* Copy src/core/ext/filters/client_channel/resolver/fake Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/client_channel/resolver/fake"; - dstSubfolderSpec = 16; - files = ( - 4D4D59B034C2283530200C214D4949F8 /* fake_resolver.h in Copy src/core/ext/filters/client_channel/resolver/fake Private Headers */, - ); - name = "Copy src/core/ext/filters/client_channel/resolver/fake Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 5A0056AAA03171CFF0FB3EFE904249D9 /* Copy src/core/lib/security/util Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/util"; - dstSubfolderSpec = 16; - files = ( - 2845592E9D9CB5B3BF3C11F52EE9A9CD /* json_util.h in Copy src/core/lib/security/util Private Headers */, - ); - name = "Copy src/core/lib/security/util Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 5AA73A94EC57889E0B83A1FF933EB794 /* Copy src/core/ext/upbdefs-generated/envoy/type/metadata/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/type/metadata/v3"; - dstSubfolderSpec = 16; - files = ( - F14A330CD14394CFF1CF051DC1032520 /* metadata.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/metadata/v3 Private Headers */, - ); - name = "Copy src/core/ext/upbdefs-generated/envoy/type/metadata/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 5AA7BCB00B772BC8FB9C33C7B2DF97E0 /* Copy src/core/lib/transport Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/transport"; - dstSubfolderSpec = 16; - files = ( - 25169E4F693CC6A0DA2DE57AC7F2CA72 /* bdp_estimator.h in Copy src/core/lib/transport Private Headers */, - 9F1C7F3FD55B2A8F41D949A9450E05EA /* connectivity_state.h in Copy src/core/lib/transport Private Headers */, - 6444DC5FE25A0A0335EB6E56FF57094C /* error_utils.h in Copy src/core/lib/transport Private Headers */, - 751630352409238A67BBEF19709FA2B2 /* handshaker.h in Copy src/core/lib/transport Private Headers */, - 377127B33F00954CC50A12F659A7FA65 /* handshaker_factory.h in Copy src/core/lib/transport Private Headers */, - 719DFCDAABBF0171A9A6DBD29980E3FF /* handshaker_registry.h in Copy src/core/lib/transport Private Headers */, - CDAA1D85460FA5115368A1DB9F4040D6 /* http2_errors.h in Copy src/core/lib/transport Private Headers */, - 6E4C9947FD537B658CB6C3289C5E10A2 /* http_connect_handshaker.h in Copy src/core/lib/transport Private Headers */, - F4D005FBBE07F9C9901A4D137C353545 /* metadata_batch.h in Copy src/core/lib/transport Private Headers */, - D0059226B224EC9C4913F5558E3B6960 /* parsed_metadata.h in Copy src/core/lib/transport Private Headers */, - 8206ABFBD0C6BC92AF19E3D4BDCFB500 /* pid_controller.h in Copy src/core/lib/transport Private Headers */, - D6C9870AB71F77DE491AA37EA4AE363F /* status_conversion.h in Copy src/core/lib/transport Private Headers */, - 3AFB7F9702826730466ED5762A08C7A5 /* tcp_connect_handshaker.h in Copy src/core/lib/transport Private Headers */, - 3A0FF7E978D7CF33AF0430B272D9A959 /* timeout_encoding.h in Copy src/core/lib/transport Private Headers */, - 2E268BF126761B448D30FD784C716E1D /* transport.h in Copy src/core/lib/transport Private Headers */, - 7D76310348E9DAA486FFCB45E15D8EB0 /* transport_fwd.h in Copy src/core/lib/transport Private Headers */, - 1EC0AD9507225F02D75F1FFC9333C3A6 /* transport_impl.h in Copy src/core/lib/transport Private Headers */, - ); - name = "Copy src/core/lib/transport Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 5B05117542674EEC83050F09BE385A12 /* Copy src/core/ext/upbdefs-generated/validate Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/validate"; - dstSubfolderSpec = 16; - files = ( - A41B4FE99B84B8F9F20FAB5DBB3795E8 /* validate.upbdefs.h in Copy src/core/ext/upbdefs-generated/validate Private Headers */, - ); - name = "Copy src/core/ext/upbdefs-generated/validate Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 5B3C62A491701A03A9CB843408046A43 /* Copy src/core/ext/upb-generated/envoy/service/status/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/service/status/v3"; - dstSubfolderSpec = 16; - files = ( - 5F05919A5479CF10DFE01F261A006D52 /* csds.upb.h in Copy src/core/ext/upb-generated/envoy/service/status/v3 Private Headers */, - ); - name = "Copy src/core/ext/upb-generated/envoy/service/status/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 5BE0EFD4F97C977F726A366DCF65CE7A /* Copy src/core/lib/json Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/json"; - dstSubfolderSpec = 16; - files = ( - 179E04D6C7EFFF36957204FF38D8F30A /* json.h in Copy src/core/lib/json Private Headers */, - 3422358BC006901DE6F5D09F6E8BC6E4 /* json_args.h in Copy src/core/lib/json Private Headers */, - EA210395F8AEF5C49B4B18E74F3D4A54 /* json_object_loader.h in Copy src/core/lib/json Private Headers */, - 34A579EA0A9EF31F7448F19017BEBAD0 /* json_util.h in Copy src/core/lib/json Private Headers */, - ); - name = "Copy src/core/lib/json Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 5C7FBDD7D9F1AF2BD8465AFC2A11C5B4 /* Copy src/core/ext/upbdefs-generated/envoy/type/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/type/v3"; - dstSubfolderSpec = 16; - files = ( - BC0747ACBE04E93682A5C76C62995B2C /* hash_policy.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/v3 Private Headers */, - 5DEA7070673EED00D0C8A5F3EB95ED43 /* http.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/v3 Private Headers */, - C430064647CE2B13DD8F75CAC42FD333 /* http_status.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/v3 Private Headers */, - 8A89CE95BC336E249C069B1FF2456988 /* percent.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/v3 Private Headers */, - 018EB7754C9EE466E3C90AE34DF85FAE /* range.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/v3 Private Headers */, - 3D2A5F4105393B47EA592429C6B39E7C /* ratelimit_strategy.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/v3 Private Headers */, - 07D46E2933683B5284A665C756E68655 /* ratelimit_unit.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/v3 Private Headers */, - DB646B1F91DA2D29C6A1918A229B98E8 /* semantic_version.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/v3 Private Headers */, - 254F0A719D2A067BA9CC97C4249B8A53 /* token_bucket.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/v3 Private Headers */, - ); - name = "Copy src/core/ext/upbdefs-generated/envoy/type/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 5CE4A57CA471A8FAF091913EC8AB5D70 /* Copy src/core/ext/upb-generated/envoy/type/http/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/type/http/v3"; - dstSubfolderSpec = 16; - files = ( - 531B033CAC8A577B4835095F81ACE269 /* cookie.upb.h in Copy src/core/ext/upb-generated/envoy/type/http/v3 Private Headers */, - 804E91F03CA744B344C6EF9E5D10EBDE /* path_transformation.upb.h in Copy src/core/ext/upb-generated/envoy/type/http/v3 Private Headers */, - ); - name = "Copy src/core/ext/upb-generated/envoy/type/http/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 5D6118DE39ED2924BF571FB7921BD5B3 /* Copy crypto/fipsmodule/ecdsa Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/crypto/fipsmodule/ecdsa"; - dstSubfolderSpec = 16; - files = ( - 2418E9C682C8C2DBD8B51AC54E31BED4 /* internal.h in Copy crypto/fipsmodule/ecdsa Private Headers */, - ); - name = "Copy crypto/fipsmodule/ecdsa Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 5E0EA4EC2F0BD8C8F493D01B0A62F3B5 /* Copy src/core/ext/upb-generated/google/api Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/google/api"; - dstSubfolderSpec = 16; - files = ( - C2810D67C5FA138D30D5AC3C317C91B9 /* annotations.upb.h in Copy src/core/ext/upb-generated/google/api Private Headers */, - 41517517E5234ABA61BC5917370A384D /* http.upb.h in Copy src/core/ext/upb-generated/google/api Private Headers */, - 925A560A9B9CA7AE93C66130011B3838 /* httpbody.upb.h in Copy src/core/ext/upb-generated/google/api Private Headers */, - ); - name = "Copy src/core/ext/upb-generated/google/api Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 5E7FBE2F31F0D0098C268365D926DCAF /* Copy src/core/ext/upb-generated/envoy/annotations Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/annotations"; - dstSubfolderSpec = 16; - files = ( - DD4FB7976E936ABBB0CE004F2443601E /* deprecation.upb.h in Copy src/core/ext/upb-generated/envoy/annotations Private Headers */, - 02AB50ABA598932874E61C2666DBA201 /* resource.upb.h in Copy src/core/ext/upb-generated/envoy/annotations Private Headers */, - ); - name = "Copy src/core/ext/upb-generated/envoy/annotations Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 5EF5E275DBB8B9536544A44A1B5ACAE7 /* Copy src/core/lib/security/security_connector Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/security_connector"; - dstSubfolderSpec = 16; - files = ( - A95FF0F6113838434E49ED631BFA674A /* load_system_roots.h in Copy src/core/lib/security/security_connector Private Headers */, - 59BB0839143456A44D049F52C57DD4B6 /* load_system_roots_supported.h in Copy src/core/lib/security/security_connector Private Headers */, - D3EEA09BFA5347997AA4BA84BC8B3F4D /* security_connector.h in Copy src/core/lib/security/security_connector Private Headers */, - 2803C15069786BFF50544B56769FA2FE /* ssl_utils.h in Copy src/core/lib/security/security_connector Private Headers */, - 3FC3F825F42949DA1DED7D2F6E6F5AD2 /* ssl_utils_config.h in Copy src/core/lib/security/security_connector Private Headers */, - ); - name = "Copy src/core/lib/security/security_connector Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 5F63D208C69854988920DA6F96DFB385 /* Copy generic Public Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/generic"; - dstSubfolderSpec = 16; - files = ( - 09E22D61DDC322CF3CF3FF6CAE6783A6 /* async_generic_service.h in Copy generic Public Headers */, - 69831C2C06739E6E99B6D6FAC0281B95 /* generic_stub.h in Copy generic Public Headers */, - ); - name = "Copy generic Public Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 5FA463E00B301FF04F53FD7015B0476B /* Copy crypto/fipsmodule/rsa Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/crypto/fipsmodule/rsa"; - dstSubfolderSpec = 16; - files = ( - 11082BB596E4273ED910C25C8DDC0201 /* internal.h in Copy crypto/fipsmodule/rsa Private Headers */, - ); - name = "Copy crypto/fipsmodule/rsa Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 5FAF799063B315911BAAF5A5EED960AA /* Copy src/core/lib/promise Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/promise"; - dstSubfolderSpec = 16; - files = ( - 0F1EF1F8900095CE95EB12598BF8DBA3 /* activity.h in Copy src/core/lib/promise Private Headers */, - 0B103CCF6DFD891CB177BF11DA762B1B /* arena_promise.h in Copy src/core/lib/promise Private Headers */, - 00369CDD2B68AD33D1A325BE9A34F866 /* call_push_pull.h in Copy src/core/lib/promise Private Headers */, - AE5E2A0197567A23D850350E5F66E1FC /* context.h in Copy src/core/lib/promise Private Headers */, - 7B6F01343F36D4DFFD47716CFA2CAB6A /* exec_ctx_wakeup_scheduler.h in Copy src/core/lib/promise Private Headers */, - 624B7D9D16B56A20CF8120BA54227799 /* intra_activity_waiter.h in Copy src/core/lib/promise Private Headers */, - C5179416B6AA22803D73398F4FB1D283 /* latch.h in Copy src/core/lib/promise Private Headers */, - 4CF5A683ADC21069CC2E92FF9DB2BF45 /* loop.h in Copy src/core/lib/promise Private Headers */, - 40E6E65B3A04D848BDD2F957A0846C40 /* map.h in Copy src/core/lib/promise Private Headers */, - C466BBE9F7A25300650212CCF875A403 /* poll.h in Copy src/core/lib/promise Private Headers */, - C2B020FFEE8A93BEBECEAF888528E1E4 /* promise.h in Copy src/core/lib/promise Private Headers */, - B47697EB3B3D3AF1C33FDF6E5B190FD0 /* race.h in Copy src/core/lib/promise Private Headers */, - 4AE380592AAF90FB8229C330EFF88558 /* seq.h in Copy src/core/lib/promise Private Headers */, - 23B64622A4AAE1525FD1966BAE8527EB /* sleep.h in Copy src/core/lib/promise Private Headers */, - 4BC1DBAA9F377832C91E10243A9D841F /* try_seq.h in Copy src/core/lib/promise Private Headers */, - ); - name = "Copy src/core/lib/promise Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 5FFB861CB088E0CE396AD678706575DE /* Copy . Public Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/."; - dstSubfolderSpec = 16; - files = ( - 79F3B2CF9BEC9C1D7B670F10A426F3EB /* alarm.h in Copy . Public Headers */, - C4885E97329EBA443284CB72DD1D9A4A /* channel.h in Copy . Public Headers */, - 5CCACBE885A148B00A36A35951B376E7 /* client_context.h in Copy . Public Headers */, - F19C8DBC0CD7534C80A0733E67586BDB /* completion_queue.h in Copy . Public Headers */, - B69BA8564E5D088796E80BC20DD1BFEC /* create_channel.h in Copy . Public Headers */, - 72600F2A67C55575C27009784A6D72B9 /* create_channel_binder.h in Copy . Public Headers */, - 3441FE0F516A5F2D35B3C0D3B8619722 /* create_channel_posix.h in Copy . Public Headers */, - 03D849243EF3DA36FDD6E8421B3121E6 /* grpcpp.h in Copy . Public Headers */, - 11B97C7057871005E0F19D7098040F8B /* health_check_service_interface.h in Copy . Public Headers */, - BAE1DB56DCC4AE82817AFE9BF5F13371 /* resource_quota.h in Copy . Public Headers */, - 85351F3C512182DBA9775447D5731B8B /* server.h in Copy . Public Headers */, - FD2D7878B10F688F12BC6F88C888717E /* server_builder.h in Copy . Public Headers */, - D530F3A08010BF3040962C284E92024A /* server_context.h in Copy . Public Headers */, - 849B30D5D5684E2AC712CBEB15C6849D /* server_posix.h in Copy . Public Headers */, - E08494108D0796B7AF8FDC0BB2523558 /* xds_server_builder.h in Copy . Public Headers */, - ); - name = "Copy . Public Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 609E4AEC81F85BC6EB714DC1D911E8EB /* Copy src/core/lib/event_engine/posix_engine Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/event_engine/posix_engine"; - dstSubfolderSpec = 16; - files = ( - 3436BDBBF3856C6624EBDC78F8BCAF25 /* posix_engine.h in Copy src/core/lib/event_engine/posix_engine Private Headers */, - FAB7CB2BE64038F0865B12EF1A72DC00 /* timer.h in Copy src/core/lib/event_engine/posix_engine Private Headers */, - 8E981F5F8CAD8F843617D20B9C865AD8 /* timer_heap.h in Copy src/core/lib/event_engine/posix_engine Private Headers */, - 5BB9B804752EBA0103E907B722F1162B /* timer_manager.h in Copy src/core/lib/event_engine/posix_engine Private Headers */, - ); - name = "Copy src/core/lib/event_engine/posix_engine Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 60BF5E2F019A13DAFC0F0F0AADFD2B0E /* Copy src/core/ext/upbdefs-generated/envoy/service/load_stats/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/service/load_stats/v3"; - dstSubfolderSpec = 16; - files = ( - 0C3C5152A46EEF1E407319E3B7A31676 /* lrs.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/service/load_stats/v3 Private Headers */, - ); - name = "Copy src/core/ext/upbdefs-generated/envoy/service/load_stats/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 61341D3EBD658E7EEBD8323D2190E8B5 /* Copy src/core/ext/upbdefs-generated/envoy/config/rbac/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/config/rbac/v3"; - dstSubfolderSpec = 16; - files = ( - 7FA0C3B83AB8D8DA947A4EE7CB4F461C /* rbac.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/rbac/v3 Private Headers */, - ); - name = "Copy src/core/ext/upbdefs-generated/envoy/config/rbac/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 613C884290B5E004484936466848C1C9 /* Copy src/core/ext/upb-generated/udpa/annotations Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/udpa/annotations"; - dstSubfolderSpec = 16; - files = ( - A62DB646885A7A1EB87BDF5B17BB1664 /* migrate.upb.h in Copy src/core/ext/upb-generated/udpa/annotations Private Headers */, - 833F9597CF631120E7F96B3F5ADA42FA /* security.upb.h in Copy src/core/ext/upb-generated/udpa/annotations Private Headers */, - CD9C1B8C1142AD0BBB15D698019ECCDA /* sensitive.upb.h in Copy src/core/ext/upb-generated/udpa/annotations Private Headers */, - 4990D35D63258B83018B7650E18FBF9E /* status.upb.h in Copy src/core/ext/upb-generated/udpa/annotations Private Headers */, - 0418D403B9183EBA0D06B8BFCA062BBB /* versioning.upb.h in Copy src/core/ext/upb-generated/udpa/annotations Private Headers */, - ); - name = "Copy src/core/ext/upb-generated/udpa/annotations Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 62B1B37153A51712253914CEDE452343 /* Copy src/core/ext/upb-generated/xds/annotations/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/xds/annotations/v3"; - dstSubfolderSpec = 16; - files = ( - 69A8E30B5CA52ABB83E028778B163C1C /* migrate.upb.h in Copy src/core/ext/upb-generated/xds/annotations/v3 Private Headers */, - 46B388AC144D7B575365A6A5BF3979E7 /* security.upb.h in Copy src/core/ext/upb-generated/xds/annotations/v3 Private Headers */, - 35345B7185D025F613183B5913BAA897 /* sensitive.upb.h in Copy src/core/ext/upb-generated/xds/annotations/v3 Private Headers */, - DF3C4E10A8D8697D0414373FE0FB7DBF /* status.upb.h in Copy src/core/ext/upb-generated/xds/annotations/v3 Private Headers */, - B31C0B6DCFEED7784823D49F19849E6A /* versioning.upb.h in Copy src/core/ext/upb-generated/xds/annotations/v3 Private Headers */, - ); - name = "Copy src/core/ext/upb-generated/xds/annotations/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 62F1940E4E1DEBA431F6881165A0925F /* Copy src/core/ext/xds Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/xds"; - dstSubfolderSpec = 16; - files = ( - 689C772EE603741657712D0F4F89ECEC /* certificate_provider_store.h in Copy src/core/ext/xds Private Headers */, - 11D999C001B1A8AC19A8FD07B82D05D3 /* file_watcher_certificate_provider_factory.h in Copy src/core/ext/xds Private Headers */, - 961FDA9E9594072B838A59BD1A7DB806 /* upb_utils.h in Copy src/core/ext/xds Private Headers */, - AE917E3C141F5883522A2347866A0D22 /* xds_api.h in Copy src/core/ext/xds Private Headers */, - 724762CFE53D8E66A1CF27586403E18C /* xds_bootstrap.h in Copy src/core/ext/xds Private Headers */, - 63777B3F886DEFC13F0D75B4A1362314 /* xds_bootstrap_grpc.h in Copy src/core/ext/xds Private Headers */, - 2D953EC55CF99C9114BF94FCE8D24DCF /* xds_certificate_provider.h in Copy src/core/ext/xds Private Headers */, - FEC0658F8B10057C40262FCAE182CDB0 /* xds_channel_args.h in Copy src/core/ext/xds Private Headers */, - 0E28FC4449B227DC54AA1CAF5075699F /* xds_channel_stack_modifier.h in Copy src/core/ext/xds Private Headers */, - C9117DBF378968235DFB794FB3BE8A05 /* xds_client.h in Copy src/core/ext/xds Private Headers */, - 0C61F8667248CEDC3E53FCD7265B105E /* xds_client_grpc.h in Copy src/core/ext/xds Private Headers */, - 35452F5FA82A35BE7525D1928328B27E /* xds_client_stats.h in Copy src/core/ext/xds Private Headers */, - 970FC837F317B032A9704A0F7F127494 /* xds_cluster.h in Copy src/core/ext/xds Private Headers */, - B82BA0299FF455E98684F97A0D35EF31 /* xds_cluster_specifier_plugin.h in Copy src/core/ext/xds Private Headers */, - 674FAAABF0F4EE9E1794A2535F258052 /* xds_common_types.h in Copy src/core/ext/xds Private Headers */, - 73819842C92BA30123B7A6CFA35DDE0E /* xds_endpoint.h in Copy src/core/ext/xds Private Headers */, - E1E26A3F36BCA74837CCFAC6A235EE4B /* xds_http_fault_filter.h in Copy src/core/ext/xds Private Headers */, - CFE06F067D9884AC367F2247D54CE3D3 /* xds_http_filters.h in Copy src/core/ext/xds Private Headers */, - B4C94EF68C52CD59343839D89025B173 /* xds_http_rbac_filter.h in Copy src/core/ext/xds Private Headers */, - 16AA3D4C900482F11D5C38CF641198F5 /* xds_lb_policy_registry.h in Copy src/core/ext/xds Private Headers */, - 3D407D7863EEC54A7A9E4A80D2FD20CD /* xds_listener.h in Copy src/core/ext/xds Private Headers */, - D1A3AABB80CC5447CCB6D731A73A8F29 /* xds_resource_type.h in Copy src/core/ext/xds Private Headers */, - 684D4254F2407E953C9012FF1585AE8B /* xds_resource_type_impl.h in Copy src/core/ext/xds Private Headers */, - 488547723A8C6BB2BF53467E355177D5 /* xds_route_config.h in Copy src/core/ext/xds Private Headers */, - 41D16BD8DC164B4F14D7EA798153D14F /* xds_routing.h in Copy src/core/ext/xds Private Headers */, - CC5A4623FE6E847505EA4B70748C458C /* xds_transport.h in Copy src/core/ext/xds Private Headers */, - DE512B3A4CB52A36DA1A07F7BB75F884 /* xds_transport_grpc.h in Copy src/core/ext/xds Private Headers */, - ); - name = "Copy src/core/ext/xds Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 63275E05978F81E2CB4FF710EE391C5A /* Copy src/core/lib/http Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/http"; - dstSubfolderSpec = 16; - files = ( - AA04EFE4864CE92BE76CEFDB93BD938A /* format_request.h in Copy src/core/lib/http Private Headers */, - 6782CF32FC07BE422517DF54A8467CBA /* httpcli.h in Copy src/core/lib/http Private Headers */, - 96FBCDCE4670C0E7DC6164AA02635744 /* httpcli_ssl_credentials.h in Copy src/core/lib/http Private Headers */, - 11F4BAB9D3C1AC563A691B35BA929135 /* parser.h in Copy src/core/lib/http Private Headers */, - ); - name = "Copy src/core/lib/http Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 63B3EB76A6D741641F1260BA402F3A5D /* Copy src/core/ext/upb-generated/envoy/config/tap/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/config/tap/v3"; - dstSubfolderSpec = 16; - files = ( - 0137828BB6009BD65E2B7589F2A09DE8 /* common.upb.h in Copy src/core/ext/upb-generated/envoy/config/tap/v3 Private Headers */, - ); - name = "Copy src/core/ext/upb-generated/envoy/config/tap/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 6539B807690BFB9E9BBFE9E5E63E4FE0 /* Copy src/core/ext/upb-generated/envoy/config/overload/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/config/overload/v3"; - dstSubfolderSpec = 16; - files = ( - 309341AF266A1785C76FF702415FA900 /* overload.upb.h in Copy src/core/ext/upb-generated/envoy/config/overload/v3 Private Headers */, - ); - name = "Copy src/core/ext/upb-generated/envoy/config/overload/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 65C9D11A2045FA9108308B5139F6B2ED /* Copy src/core/ext/upb-generated/src/proto/grpc/health/v1 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/src/proto/grpc/health/v1"; - dstSubfolderSpec = 16; - files = ( - 247009079B889811E02812CDEA83996D /* health.upb.h in Copy src/core/ext/upb-generated/src/proto/grpc/health/v1 Private Headers */, - ); - name = "Copy src/core/ext/upb-generated/src/proto/grpc/health/v1 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 65DF6E27AE1AF34EBAAE8B0630F5AFDE /* Copy src/core/lib/gprpp Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/gprpp"; - dstSubfolderSpec = 16; - files = ( - 278BED29FCFCCD9185AAD7E36380A639 /* atomic_utils.h in Copy src/core/lib/gprpp Private Headers */, - 1E908333966CF562CECAD79EF5F83E69 /* bitset.h in Copy src/core/lib/gprpp Private Headers */, - 4B40AF08750C4109978FA4F4D1B7E945 /* chunked_vector.h in Copy src/core/lib/gprpp Private Headers */, - 1EC5D9A86F1B63928B3ABFC2DB2BAD14 /* construct_destruct.h in Copy src/core/lib/gprpp Private Headers */, - AD477FA67C5327F8BF8C17BBE36A7570 /* cpp_impl_of.h in Copy src/core/lib/gprpp Private Headers */, - 41AA79B5D899F80EAC0FE61D75BDEC6C /* debug_location.h in Copy src/core/lib/gprpp Private Headers */, - 4C2B85E74B4E6EAC189712A54288E1D1 /* dual_ref_counted.h in Copy src/core/lib/gprpp Private Headers */, - 6324340D1A6D2B079E63625F8EF14B1C /* env.h in Copy src/core/lib/gprpp Private Headers */, - 7CDF216F747283D0DF82D75B5ED96770 /* examine_stack.h in Copy src/core/lib/gprpp Private Headers */, - 7665D837E213055D88E8B3753643BC43 /* fork.h in Copy src/core/lib/gprpp Private Headers */, - 29894954DDB3F1E81FD42647C24E2B77 /* global_config.h in Copy src/core/lib/gprpp Private Headers */, - BBF5DB27986F9BDB2337C6434A8B6DC9 /* global_config_custom.h in Copy src/core/lib/gprpp Private Headers */, - EB0F0FAE4436B78B0E5FAF5799A16CF4 /* global_config_env.h in Copy src/core/lib/gprpp Private Headers */, - B313D4218BDA77BFC8F7BC7916F735AB /* global_config_generic.h in Copy src/core/lib/gprpp Private Headers */, - 060587B965728AA9C3F2F91B0F90774F /* host_port.h in Copy src/core/lib/gprpp Private Headers */, - 557B6D7C1D1FD195B4F83F7BAD743633 /* manual_constructor.h in Copy src/core/lib/gprpp Private Headers */, - B946AE4639299D6DF87741C00B6EE30A /* match.h in Copy src/core/lib/gprpp Private Headers */, - E34C33CE033454FA17100812074350B0 /* memory.h in Copy src/core/lib/gprpp Private Headers */, - AE72F609CAABF708B103628B06B2C961 /* mpscq.h in Copy src/core/lib/gprpp Private Headers */, - 0CFE005E24718D2C7D74A2A212674E54 /* no_destruct.h in Copy src/core/lib/gprpp Private Headers */, - C15EEA878BCD9FF6BC5045654139B5D0 /* notification.h in Copy src/core/lib/gprpp Private Headers */, - 6C1F9880AC3ADC4B90B9D1D7C4673B5B /* orphanable.h in Copy src/core/lib/gprpp Private Headers */, - D8DBFEB840893D47BF5A34632F584464 /* overload.h in Copy src/core/lib/gprpp Private Headers */, - 9DC9D44638FC1357215CFE78368396F2 /* packed_table.h in Copy src/core/lib/gprpp Private Headers */, - 998620D5BD68F9EB5E6BD8C1B9873CF9 /* ref_counted.h in Copy src/core/lib/gprpp Private Headers */, - 94BA8FF736481A4100A0CCDBEBEB0EB5 /* ref_counted_ptr.h in Copy src/core/lib/gprpp Private Headers */, - 9528EA0373D860BB1A35F7865D918906 /* single_set_ptr.h in Copy src/core/lib/gprpp Private Headers */, - F06801CE06965CEE3B5D68C0CA2932FF /* sorted_pack.h in Copy src/core/lib/gprpp Private Headers */, - 29961C9E53DA6F18797F6382B7A7DAB5 /* stat.h in Copy src/core/lib/gprpp Private Headers */, - 924C3CE886C8201C10D48C88D7959346 /* status_helper.h in Copy src/core/lib/gprpp Private Headers */, - 36F6029565F7320580491848C4CA9A70 /* sync.h in Copy src/core/lib/gprpp Private Headers */, - 446C46588D1BA080EFB3C2FF78EF3447 /* table.h in Copy src/core/lib/gprpp Private Headers */, - A4A71BF23CAA5451A4F12828FF1D62CF /* tchar.h in Copy src/core/lib/gprpp Private Headers */, - EA546036870EE5E1190521A741A20F43 /* thd.h in Copy src/core/lib/gprpp Private Headers */, - 4A2E8FB7538910CB1BCF82654795FF65 /* time.h in Copy src/core/lib/gprpp Private Headers */, - C3B0A42535F64CBE2509187F5B345EF8 /* time_averaged_stats.h in Copy src/core/lib/gprpp Private Headers */, - 115981B1A50BC236E6B6FA0A95047EB5 /* time_util.h in Copy src/core/lib/gprpp Private Headers */, - F7C2D89B6E5B25AF7F02320405223D62 /* unique_type_name.h in Copy src/core/lib/gprpp Private Headers */, - E808CE116C0CCB3B477BBEA9FCAEBCE5 /* validation_errors.h in Copy src/core/lib/gprpp Private Headers */, - 6FC4F469AAC9BA3BCF509E4CFE748763 /* work_serializer.h in Copy src/core/lib/gprpp Private Headers */, - ); - name = "Copy src/core/lib/gprpp Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 65E63CC892149FCCFE99B4552DC03DFD /* Copy src/core/ext/upb-generated/xds/service/orca/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/xds/service/orca/v3"; - dstSubfolderSpec = 16; - files = ( - E4EFCC820C77B395A91C3946F822363E /* orca.upb.h in Copy src/core/ext/upb-generated/xds/service/orca/v3 Private Headers */, - ); - name = "Copy src/core/ext/upb-generated/xds/service/orca/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 65F614DF21115EFC84938AE007293B5A /* Copy src/cpp/thread_manager Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/cpp/thread_manager"; - dstSubfolderSpec = 16; - files = ( - 4BFBBE5CB14B876E28D762DABCDB219F /* thread_manager.h in Copy src/cpp/thread_manager Private Headers */, - ); - name = "Copy src/cpp/thread_manager Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 66636AAB9D721F95E7337FD2B5D1DDF1 /* Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/config/core/v3"; - dstSubfolderSpec = 16; - files = ( - 6002B6E60D369A9289C757BD658542A6 /* address.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */, - 5E92950338A9BD4B2F8CD31701DDD42A /* backoff.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */, - 858A60CFF3BF002A7EAE1DB24EACABB9 /* base.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */, - AF26C75064C63ACA602FC21CFD488D98 /* config_source.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */, - 681FC150D2AAD271F8D4897710DFC5D7 /* event_service_config.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */, - 6655E77FD681C3EFFC3D02A3817E4F34 /* extension.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */, - 6B097A72C4C8BD71479464B5CB484DFC /* grpc_method_list.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */, - 8A5B6C1A1AC72355F10C5C80354921CD /* grpc_service.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */, - A35B4B377042800A973EFC9ED2A5FB66 /* health_check.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */, - D1A6F90A482AFDBA1465116A40D34130 /* http_uri.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */, - CB827885D4435E50DFE87B5404CD9F6D /* protocol.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */, - AB905D91AE5FC59B867E6E6BD0D21AF4 /* proxy_protocol.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */, - A841EB21E5D9FE250967D4E734BC1605 /* resolver.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */, - A64A801C3B3C8E1C67A49B93DCA1D742 /* socket_option.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */, - 15C773B406134450AB6973329A92896A /* substitution_format_string.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */, - 93EEAFC03CEACD613E6C5E550B01BEE8 /* udp_socket_config.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */, - ); - name = "Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 66637E335C5531B758FDF63966A5C7CD /* Copy src/core/ext/upb-generated/envoy/annotations Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/annotations"; - dstSubfolderSpec = 16; - files = ( - 908E5F2B6E2541AB20C5BB29E9A840B9 /* deprecation.upb.h in Copy src/core/ext/upb-generated/envoy/annotations Private Headers */, - 2811DBAA1FBC2E0D547EF9273D9A9243 /* resource.upb.h in Copy src/core/ext/upb-generated/envoy/annotations Private Headers */, - ); - name = "Copy src/core/ext/upb-generated/envoy/annotations Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 66C39A8D933975011D5FA47211F75AA8 /* Copy src/core/ext/upb-generated/envoy/type/matcher/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/type/matcher/v3"; - dstSubfolderSpec = 16; - files = ( - C2A3FE45E95477386CAE5C34CB4C5147 /* http_inputs.upb.h in Copy src/core/ext/upb-generated/envoy/type/matcher/v3 Private Headers */, - 516CDC983A2C3A548434E76482D3FA9C /* metadata.upb.h in Copy src/core/ext/upb-generated/envoy/type/matcher/v3 Private Headers */, - 459215241C0D35D51388D4B2FF091F6B /* node.upb.h in Copy src/core/ext/upb-generated/envoy/type/matcher/v3 Private Headers */, - 5AFA87B779C2E693CA23F862948C26FE /* number.upb.h in Copy src/core/ext/upb-generated/envoy/type/matcher/v3 Private Headers */, - D7441B1F639B0B282C29B7B9B1DB4B73 /* path.upb.h in Copy src/core/ext/upb-generated/envoy/type/matcher/v3 Private Headers */, - 9D4847DC28A086B5D7C0524BC9AA591E /* regex.upb.h in Copy src/core/ext/upb-generated/envoy/type/matcher/v3 Private Headers */, - 8603EDB76C48E6174D9B29DDC1BFE36D /* string.upb.h in Copy src/core/ext/upb-generated/envoy/type/matcher/v3 Private Headers */, - DECE50BBB62C249718540920B06FE6D8 /* struct.upb.h in Copy src/core/ext/upb-generated/envoy/type/matcher/v3 Private Headers */, - A70B2E1007FA05A882E4BFE9E24B528A /* value.upb.h in Copy src/core/ext/upb-generated/envoy/type/matcher/v3 Private Headers */, - ); - name = "Copy src/core/ext/upb-generated/envoy/type/matcher/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 66C8C257E5B1C3FA51B407648D669DC6 /* Copy src/core/ext/upbdefs-generated/opencensus/proto/trace/v1 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/opencensus/proto/trace/v1"; - dstSubfolderSpec = 16; - files = ( - F9003A66FE5A6EE2A086199F6F0249BC /* trace_config.upbdefs.h in Copy src/core/ext/upbdefs-generated/opencensus/proto/trace/v1 Private Headers */, - ); - name = "Copy src/core/ext/upbdefs-generated/opencensus/proto/trace/v1 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 66E3FDF903AD628341DF528EA1BB0B5B /* Copy src/core/ext/filters/http/server Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/http/server"; - dstSubfolderSpec = 16; - files = ( - 08F402B987F8DD6089D9ED3F3AAC4F51 /* http_server_filter.h in Copy src/core/ext/filters/http/server Private Headers */, - ); - name = "Copy src/core/ext/filters/http/server Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 673D819B32D0707CD568C69294B01D87 /* Copy src/core/lib/experiments Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/experiments"; - dstSubfolderSpec = 16; - files = ( - 2808AB7FD3FC27335187EF953BDD10A2 /* config.h in Copy src/core/lib/experiments Private Headers */, - BDC58260B93D446E344A061198A6FBAC /* experiments.h in Copy src/core/lib/experiments Private Headers */, - ); - name = "Copy src/core/lib/experiments Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 67553BCDB478E1AD7A7B45DE08D4D696 /* Copy src/core/ext/upb-generated/google/rpc Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/google/rpc"; - dstSubfolderSpec = 16; - files = ( - 8AB53ECA49C1354EEC040EE4C1C866FF /* status.upb.h in Copy src/core/ext/upb-generated/google/rpc Private Headers */, - ); - name = "Copy src/core/ext/upb-generated/google/rpc Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 690C5DED32CF423D7E44302BFC41FCD5 /* Copy src/core/lib/security/security_connector/alts Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/security_connector/alts"; - dstSubfolderSpec = 16; - files = ( - 349F8817A761D8087023A69F1B2AC6E9 /* alts_security_connector.h in Copy src/core/lib/security/security_connector/alts Private Headers */, - ); - name = "Copy src/core/lib/security/security_connector/alts Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 6946955E88EBED2924099372AC960267 /* Copy src/core/ext/upb-generated/xds/core/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/xds/core/v3"; - dstSubfolderSpec = 16; - files = ( - 1078BFBB703A1B81D77028D899D824A8 /* authority.upb.h in Copy src/core/ext/upb-generated/xds/core/v3 Private Headers */, - 503822C1E2C63364D90089D6275A78A6 /* collection_entry.upb.h in Copy src/core/ext/upb-generated/xds/core/v3 Private Headers */, - 4F46274C9A308EA88246BCD9A2928755 /* context_params.upb.h in Copy src/core/ext/upb-generated/xds/core/v3 Private Headers */, - A0A08414F0E68078B96E55BC4628AD9A /* extension.upb.h in Copy src/core/ext/upb-generated/xds/core/v3 Private Headers */, - AA4799FB94B80891DE1D2204CE510FA6 /* resource.upb.h in Copy src/core/ext/upb-generated/xds/core/v3 Private Headers */, - 52066CCDD8138A2ACA2164D5DAA50F90 /* resource_locator.upb.h in Copy src/core/ext/upb-generated/xds/core/v3 Private Headers */, - E94F8C76907BF1941102FE1C0ECA5BE7 /* resource_name.upb.h in Copy src/core/ext/upb-generated/xds/core/v3 Private Headers */, - ); - name = "Copy src/core/ext/upb-generated/xds/core/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 694A398079A96EAD2F330E3795826F17 /* Copy status/internal Public Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/status/internal"; - dstSubfolderSpec = 16; - files = ( - 10FE4FBE6F1B3C9104EF51D6D3178A17 /* status_internal.h in Copy status/internal Public Headers */, - 9E98F7AF0266C1FF765A9156F5576C51 /* statusor_internal.h in Copy status/internal Public Headers */, - ); - name = "Copy status/internal Public Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 6A498BD8026EF56285D20ADC6F4B7974 /* Copy src/core/ext/filters/http/server Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/http/server"; - dstSubfolderSpec = 16; - files = ( - DEF6B5770E02C2F592A7D7D46C0858AD /* http_server_filter.h in Copy src/core/ext/filters/http/server Private Headers */, - ); - name = "Copy src/core/ext/filters/http/server Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 6BBF42C2AB132A3A2DE5526892D1AEEB /* Copy src/core/ext/filters/client_channel/resolver/xds Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/client_channel/resolver/xds"; - dstSubfolderSpec = 16; - files = ( - 8FEA695A774817F9E188D9E4B6CF2742 /* xds_resolver.h in Copy src/core/ext/filters/client_channel/resolver/xds Private Headers */, - ); - name = "Copy src/core/ext/filters/client_channel/resolver/xds Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 6C1918BF538978FE17124BBDC5B15A20 /* Copy src/core/lib/security/credentials/oauth2 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/credentials/oauth2"; - dstSubfolderSpec = 16; - files = ( - D5F702BEB34A1DEF196AC0CC7663F2C9 /* oauth2_credentials.h in Copy src/core/lib/security/credentials/oauth2 Private Headers */, - ); - name = "Copy src/core/lib/security/credentials/oauth2 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 6C4D34EE25B12666107CD65C653F1C69 /* Copy src/core/ext/upbdefs-generated/src/proto/grpc/lookup/v1 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/src/proto/grpc/lookup/v1"; - dstSubfolderSpec = 16; - files = ( - 0B10C650453550B669986DAB67B391DC /* rls_config.upbdefs.h in Copy src/core/ext/upbdefs-generated/src/proto/grpc/lookup/v1 Private Headers */, - ); - name = "Copy src/core/ext/upbdefs-generated/src/proto/grpc/lookup/v1 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 6C4DE6A8A2F8822E229CB2154D015176 /* Copy src/core/lib/security/context Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/context"; - dstSubfolderSpec = 16; - files = ( - 592E2FD997B443159F734EEB229D936F /* security_context.h in Copy src/core/lib/security/context Private Headers */, - ); - name = "Copy src/core/lib/security/context Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 6C6DA3CCDC64D98C9A3B413D159636DD /* Copy src/core/ext/upbdefs-generated/envoy/service/discovery/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/service/discovery/v3"; - dstSubfolderSpec = 16; - files = ( - 0D1BCB1D1EBA750A4AC221A2AEA77E33 /* ads.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/service/discovery/v3 Private Headers */, - 4B31AAB79B2E382016C2F2568D45BD06 /* discovery.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/service/discovery/v3 Private Headers */, - ); - name = "Copy src/core/ext/upbdefs-generated/envoy/service/discovery/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 6CD132FF0FF145C79078EB5CC7803888 /* Copy src/core/lib/address_utils Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/address_utils"; - dstSubfolderSpec = 16; - files = ( - 9EAE8FB2ED7A3193E637CD72810E5A88 /* parse_address.h in Copy src/core/lib/address_utils Private Headers */, - D87168D3065202E3154E902C5370956D /* sockaddr_utils.h in Copy src/core/lib/address_utils Private Headers */, - ); - name = "Copy src/core/lib/address_utils Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 6CFE0E03BC367BB583C1F97AA36173A1 /* Copy src/core/ext/upb-generated/envoy/extensions/clusters/aggregate/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/extensions/clusters/aggregate/v3"; - dstSubfolderSpec = 16; - files = ( - 573AFB45CB728024AB54144055667228 /* cluster.upb.h in Copy src/core/ext/upb-generated/envoy/extensions/clusters/aggregate/v3 Private Headers */, - ); - name = "Copy src/core/ext/upb-generated/envoy/extensions/clusters/aggregate/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 703CC345C4583FA94967F763639941AE /* Copy third_party/upb/third_party/utf8_range Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/third_party/upb/third_party/utf8_range"; - dstSubfolderSpec = 16; - files = ( - 91759FAF8367025D19B0FD78A6FF4CFC /* utf8_range.h in Copy third_party/upb/third_party/utf8_range Private Headers */, - ); - name = "Copy third_party/upb/third_party/utf8_range Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 7179ED2CB5F3EC93EF98BE902ADA061E /* Copy src/core/ext/upbdefs-generated/envoy/config/bootstrap/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/config/bootstrap/v3"; - dstSubfolderSpec = 16; - files = ( - 16914ECAE7AB7E8D4041F70AFED99719 /* bootstrap.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/bootstrap/v3 Private Headers */, - ); - name = "Copy src/core/ext/upbdefs-generated/envoy/config/bootstrap/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 724B4C9E989652967B0999A756669B21 /* Copy src/core/lib/security/credentials/local Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/credentials/local"; - dstSubfolderSpec = 16; - files = ( - A4CA92C700EABDD587B323393FF66574 /* local_credentials.h in Copy src/core/lib/security/credentials/local Private Headers */, - ); - name = "Copy src/core/lib/security/credentials/local Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 724BABAE1BD1CF8F182D1BE0DFEF7636 /* Copy src/core/tsi/ssl/session_cache Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/tsi/ssl/session_cache"; - dstSubfolderSpec = 16; - files = ( - 56FB881265CCDB079000F788C43961AD /* ssl_session.h in Copy src/core/tsi/ssl/session_cache Private Headers */, - A7544102980455D7AE209474CB358CF6 /* ssl_session_cache.h in Copy src/core/tsi/ssl/session_cache Private Headers */, - ); - name = "Copy src/core/tsi/ssl/session_cache Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 7286AC61B384F3A42EFA10B43CF6A1DF /* Copy src/core/ext/upbdefs-generated/envoy/type/http/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/type/http/v3"; - dstSubfolderSpec = 16; - files = ( - 0E66E5B1C6135BD3323C611C786E9DA6 /* cookie.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/http/v3 Private Headers */, - 1AFDA8E30A535171648BF6372D71184F /* path_transformation.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/http/v3 Private Headers */, - ); - name = "Copy src/core/ext/upbdefs-generated/envoy/type/http/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 73FEEB217B99E1185F5342AF6E6CC785 /* Copy src/core/ext/upb-generated/envoy/config/route/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/config/route/v3"; - dstSubfolderSpec = 16; - files = ( - 826C89E8A459A3DE8143367E37C2AFF3 /* route.upb.h in Copy src/core/ext/upb-generated/envoy/config/route/v3 Private Headers */, - 2AA625FBBDB2615C0E09527087CB5F9F /* route_components.upb.h in Copy src/core/ext/upb-generated/envoy/config/route/v3 Private Headers */, - 96F8C956BC3CB66EF1F677A9A85F7DED /* scoped_route.upb.h in Copy src/core/ext/upb-generated/envoy/config/route/v3 Private Headers */, - ); - name = "Copy src/core/ext/upb-generated/envoy/config/route/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 74822D7308F3530B388BA87C2471EC4C /* Copy . Public Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/."; - dstSubfolderSpec = 16; - files = ( - 61B9212A1022F4DC97D218601B57E2BC /* byte_buffer.h in Copy . Public Headers */, - FA5C3CAEA5EE3CF20510FA11A5DDE14F /* byte_buffer_reader.h in Copy . Public Headers */, - F36AFCBC0FAEEDDA139D948EF69971CC /* census.h in Copy . Public Headers */, - 0F284879C3C82EA3552678DB2F59436A /* compression.h in Copy . Public Headers */, - 06D3062409A854F2D0A722A9684DC1F4 /* fork.h in Copy . Public Headers */, - 067C6BA6C56666E46BBD9E2B42D4111E /* grpc.h in Copy . Public Headers */, - D58D9384DBBCB4F7981C3B6704FEFEC9 /* grpc_posix.h in Copy . Public Headers */, - 9C172BC0FF0B10C737566AD2E6F83A20 /* grpc_security.h in Copy . Public Headers */, - D50951561A587D314E36361DD5506342 /* grpc_security_constants.h in Copy . Public Headers */, - 34ED3F862D8738A17AD49D6D0A89F6B6 /* load_reporting.h in Copy . Public Headers */, - 76B0E3A0BFC99888056EA14BA94BB6AC /* slice.h in Copy . Public Headers */, - B4B2CF46B7308CE468507CA11C6466E3 /* slice_buffer.h in Copy . Public Headers */, - 7DAD380D0A13454E6384718B9E1DE5B5 /* status.h in Copy . Public Headers */, - ); - name = "Copy . Public Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 74A30F2311D97431396BADE70FC1F86F /* Copy src/core/lib/security/credentials Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/credentials"; - dstSubfolderSpec = 16; - files = ( - A6BA564316A6EB03982070BBD79E566C /* call_creds_util.h in Copy src/core/lib/security/credentials Private Headers */, - 51D797B08F36315A9E2BAC21F4546D47 /* channel_creds_registry.h in Copy src/core/lib/security/credentials Private Headers */, - 47831F5680CBEACF57265FB696BB1144 /* credentials.h in Copy src/core/lib/security/credentials Private Headers */, - ); - name = "Copy src/core/lib/security/credentials Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 74C4AA3BB69D6E1FE1FA1380D59F05C0 /* Copy src/core/ext/upbdefs-generated/envoy/extensions/clusters/aggregate/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/extensions/clusters/aggregate/v3"; - dstSubfolderSpec = 16; - files = ( - BB6D2B058F0260EA82110B2209B0E260 /* cluster.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/extensions/clusters/aggregate/v3 Private Headers */, - ); - name = "Copy src/core/ext/upbdefs-generated/envoy/extensions/clusters/aggregate/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 7623ED7CD5A2398793404F310C8329AC /* Copy src/core/ext/upb-generated/envoy/config/tap/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/config/tap/v3"; - dstSubfolderSpec = 16; - files = ( - 2E3B8B9623E91585E9A8C738869BE495 /* common.upb.h in Copy src/core/ext/upb-generated/envoy/config/tap/v3 Private Headers */, - ); - name = "Copy src/core/ext/upb-generated/envoy/config/tap/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 766D85EEAE659A24A5815F3C1E6E36A4 /* Copy src/core/lib/security/security_connector/ssl Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/security_connector/ssl"; - dstSubfolderSpec = 16; - files = ( - 77C72ABC42C10EBD4D2016EE2C2B29B1 /* ssl_security_connector.h in Copy src/core/lib/security/security_connector/ssl Private Headers */, - ); - name = "Copy src/core/lib/security/security_connector/ssl Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 76D2117D757AC60FD83FCF2B8F595660 /* Copy algorithm Public Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/algorithm"; - dstSubfolderSpec = 16; - files = ( - EB866996DE680BE8D8908A6778ED1C79 /* algorithm.h in Copy algorithm Public Headers */, - 010F3270DFD134EFD377731191306942 /* container.h in Copy algorithm Public Headers */, - ); - name = "Copy algorithm Public Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 76EE89FEA4B0EF02E81FDC12A9CB531A /* Copy crypto/pkcs8 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/crypto/pkcs8"; - dstSubfolderSpec = 16; - files = ( - 815B4C27156D443E0E988043A8765B40 /* internal.h in Copy crypto/pkcs8 Private Headers */, - ); - name = "Copy crypto/pkcs8 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 7796E089F4B5173EFD422AB0C08F6555 /* Copy crypto/fipsmodule/aes Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/crypto/fipsmodule/aes"; - dstSubfolderSpec = 16; - files = ( - 33C7E59E29CD2AE24D0B103751BAED7F /* internal.h in Copy crypto/fipsmodule/aes Private Headers */, - ); - name = "Copy crypto/fipsmodule/aes Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 786A6007EEA45ADDB423A89F41A9D94A /* Copy src/core/lib/security/credentials/ssl Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/credentials/ssl"; - dstSubfolderSpec = 16; - files = ( - A3BB98D891FFC13021006DD8899C2B75 /* ssl_credentials.h in Copy src/core/lib/security/credentials/ssl Private Headers */, - ); - name = "Copy src/core/lib/security/credentials/ssl Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 7938B5E80185C330B936EB8714C5257C /* Copy src/core/lib/security/credentials/fake Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/credentials/fake"; - dstSubfolderSpec = 16; - files = ( - CE222A86D1513C2B358DF391F04979BF /* fake_credentials.h in Copy src/core/lib/security/credentials/fake Private Headers */, - ); - name = "Copy src/core/lib/security/credentials/fake Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 79462C350247C6DB604FF79638ECB509 /* Copy src/core/ext/upb-generated/envoy/config/metrics/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/config/metrics/v3"; - dstSubfolderSpec = 16; - files = ( - A2785B96252BC41715BF3BF6CB098BC4 /* metrics_service.upb.h in Copy src/core/ext/upb-generated/envoy/config/metrics/v3 Private Headers */, - BC3A029B51653115100E36B926AF2FB2 /* stats.upb.h in Copy src/core/ext/upb-generated/envoy/config/metrics/v3 Private Headers */, - ); - name = "Copy src/core/ext/upb-generated/envoy/config/metrics/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 79B47DB5B702E0B97200487E2A009B15 /* Copy src/core/ext/upbdefs-generated/envoy/annotations Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/annotations"; - dstSubfolderSpec = 16; - files = ( - F4A50B5C3451E6C0286EE7FBA95BE252 /* deprecation.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/annotations Private Headers */, - 1444136078D5850A2EACC7B88ADD224A /* resource.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/annotations Private Headers */, - ); - name = "Copy src/core/ext/upbdefs-generated/envoy/annotations Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 79B5827CAE67AA99E65B44D66FA12368 /* Copy src/core/ext/upb-generated/envoy/config/bootstrap/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/config/bootstrap/v3"; - dstSubfolderSpec = 16; - files = ( - 6FBD2879F4F83CF5114799DF792AAEFF /* bootstrap.upb.h in Copy src/core/ext/upb-generated/envoy/config/bootstrap/v3 Private Headers */, - ); - name = "Copy src/core/ext/upb-generated/envoy/config/bootstrap/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 7C1F9DF7BEBDC892FDBFC92ED4D75A41 /* Copy third_party/re2/re2 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/third_party/re2/re2"; - dstSubfolderSpec = 16; - files = ( - 2D3204837BB47476C42F2903D9E01443 /* bitmap256.h in Copy third_party/re2/re2 Private Headers */, - 911A31EB6D15A034D023B1C7B4E39C4F /* filtered_re2.h in Copy third_party/re2/re2 Private Headers */, - CA19320BF0D4F9A2FBEC38BF197A27FD /* pod_array.h in Copy third_party/re2/re2 Private Headers */, - 2723E66D36E0C9CCE11FE8A905063574 /* prefilter.h in Copy third_party/re2/re2 Private Headers */, - 9DDD30D1DA104B32EAC94F11AED7FC72 /* prefilter_tree.h in Copy third_party/re2/re2 Private Headers */, - E0EA9881A244D81171D29D95D97A0BAB /* prog.h in Copy third_party/re2/re2 Private Headers */, - DE68EBB4B24288C5BEE62B9862A6DA03 /* re2.h in Copy third_party/re2/re2 Private Headers */, - 595F7CC49DD90292F3053E4A55E27D28 /* regexp.h in Copy third_party/re2/re2 Private Headers */, - FAD397BBCADAE1490A57D9F1AAEBA7CD /* set.h in Copy third_party/re2/re2 Private Headers */, - 1E5C5FD951EC6EB42B3A31813765EFB1 /* sparse_array.h in Copy third_party/re2/re2 Private Headers */, - A8C0AF23B353449DC0A593FF7DE26EB8 /* sparse_set.h in Copy third_party/re2/re2 Private Headers */, - D488F96B9122CE5C6F671806A85C099B /* stringpiece.h in Copy third_party/re2/re2 Private Headers */, - E7127D8AA8B5765ECCE76FDE748D8EDE /* unicode_casefold.h in Copy third_party/re2/re2 Private Headers */, - D42BDC3EC2752221FFDC642625531C16 /* unicode_groups.h in Copy third_party/re2/re2 Private Headers */, - 7D2D1D2CF89A1F7C7F7702D1C2CA088B /* walker-inl.h in Copy third_party/re2/re2 Private Headers */, - ); - name = "Copy third_party/re2/re2 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 7F66F5DFCC5A17A301A1F015E455A135 /* Copy src/core/ext/upb-generated/envoy/config/listener/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/config/listener/v3"; - dstSubfolderSpec = 16; - files = ( - 85E280827BFF4DC2F803CB5BC7DF1777 /* api_listener.upb.h in Copy src/core/ext/upb-generated/envoy/config/listener/v3 Private Headers */, - 6588CE088E9A13FC3A79F63F7D5635CA /* listener.upb.h in Copy src/core/ext/upb-generated/envoy/config/listener/v3 Private Headers */, - A3DE06B6294FE179F2547F6D68F66C72 /* listener_components.upb.h in Copy src/core/ext/upb-generated/envoy/config/listener/v3 Private Headers */, - B0BA23726D39C17ABF843B6C2F01A71A /* quic_config.upb.h in Copy src/core/ext/upb-generated/envoy/config/listener/v3 Private Headers */, - CEE0CD61738FAFD83C48B02BF4A6566F /* udp_listener_config.upb.h in Copy src/core/ext/upb-generated/envoy/config/listener/v3 Private Headers */, - ); - name = "Copy src/core/ext/upb-generated/envoy/config/listener/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 810934591F01DD30C2C2D38B8CEB3060 /* Copy third_party/upb/third_party/utf8_range Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/third_party/upb/third_party/utf8_range"; - dstSubfolderSpec = 16; - files = ( - DC5BC90B22C66CE261CDE4CEAB76E649 /* utf8_range.h in Copy third_party/upb/third_party/utf8_range Private Headers */, - ); - name = "Copy third_party/upb/third_party/utf8_range Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 814F3DD73C0F3586D8E78E91A4C25DBE /* Copy src/core/ext/transport/binder/utils Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/transport/binder/utils"; - dstSubfolderSpec = 16; - files = ( - C71A029DD6A2C77A0E60476BF754EAE8 /* binder_auto_utils.h in Copy src/core/ext/transport/binder/utils Private Headers */, - 2062FE972B1782956CD595F4E094D92A /* ndk_binder.h in Copy src/core/ext/transport/binder/utils Private Headers */, - C89311DC631C0639D33E952B9B406CCE /* transport_stream_receiver.h in Copy src/core/ext/transport/binder/utils Private Headers */, - EF4E7A6EC4C9DE2EEB763211549886F4 /* transport_stream_receiver_impl.h in Copy src/core/ext/transport/binder/utils Private Headers */, - ); - name = "Copy src/core/ext/transport/binder/utils Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 8162A4CA2BBB84A89B33BA5A8B5965A0 /* Copy impl Public Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/impl"; - dstSubfolderSpec = 16; - files = ( - D40C25C1F402DA089C56E8FCE6C4830D /* call.h in Copy impl Public Headers */, - D1E49B03589217F8A384CDDEA1AA0105 /* call_hook.h in Copy impl Public Headers */, - 4B3C1C4F02C1CA1F2F18669D95C89CDB /* call_op_set_interface.h in Copy impl Public Headers */, - D18B5E5ED8FB6921451355EABAD44DCB /* channel_argument_option.h in Copy impl Public Headers */, - 8E70038CD7DF210E9D518F588ECBD120 /* client_unary_call.h in Copy impl Public Headers */, - D2E95D5E859160D89C9994C0F5E85DEC /* grpc_library.h in Copy impl Public Headers */, - 47175C82268953AE0E312C2CBD493F84 /* method_handler_impl.h in Copy impl Public Headers */, - 8D235C360CEDC9A6DF925332316E8FA2 /* rpc_method.h in Copy impl Public Headers */, - 22567F87BDD7D8DAA2C3B4543246448C /* rpc_service_method.h in Copy impl Public Headers */, - B4C3973B28074681E8AFBC7C6D5E7D3D /* serialization_traits.h in Copy impl Public Headers */, - 72A076C73C344148EA3505151BB28FBD /* server_builder_option.h in Copy impl Public Headers */, - 57FCDBE21AD3D5FAC88DD952DB02E56C /* server_builder_plugin.h in Copy impl Public Headers */, - 9E6A5ED26E811431F20C2EE6D1AC6A35 /* server_initializer.h in Copy impl Public Headers */, - 7763AD5434D2A0782A8573EAC77C3140 /* service_type.h in Copy impl Public Headers */, - ); - name = "Copy impl Public Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 81D7ED1F6574204AF22C0AB851010A98 /* Copy src/cpp/client Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/cpp/client"; - dstSubfolderSpec = 16; - files = ( - A157C22DAB36FD40D95FE6D930DC8D9B /* create_channel_internal.h in Copy src/cpp/client Private Headers */, - 9F82773AABF42EB17175B2C0E3062C87 /* secure_credentials.h in Copy src/cpp/client Private Headers */, - ); - name = "Copy src/cpp/client Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 81DBAC7536824CDAC99EDE0343AC8313 /* Copy src/core/ext/upbdefs-generated/envoy/config/trace/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/config/trace/v3"; - dstSubfolderSpec = 16; - files = ( - F81CD23B589C5ACF66C05E6879FCCE10 /* datadog.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/trace/v3 Private Headers */, - 61396466A9588D34B12B8C99973091F0 /* dynamic_ot.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/trace/v3 Private Headers */, - C7B8A90D68DCED172232DE4E4A2ADDF2 /* http_tracer.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/trace/v3 Private Headers */, - D1AB1EC55BCA53B078AFC5B55B4B183A /* lightstep.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/trace/v3 Private Headers */, - 6023BB9A90F871F7B1C9A0BCCED9D46E /* opencensus.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/trace/v3 Private Headers */, - 16BADFF3681E5E3DD03832F82401FF8B /* opentelemetry.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/trace/v3 Private Headers */, - AB23F613A07AFB4CDCB183252D429C00 /* service.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/trace/v3 Private Headers */, - 184601F44FF723ED0D3874CD10F77EA1 /* skywalking.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/trace/v3 Private Headers */, - AE55CB602CF6C8AF7AB85DF7CFE7F79B /* trace.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/trace/v3 Private Headers */, - 4591816A2E5B650AD0CBD7FF03F2021E /* xray.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/trace/v3 Private Headers */, - 0EB91DBDB0EEDAC12753851A29FFD3A9 /* zipkin.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/trace/v3 Private Headers */, - ); - name = "Copy src/core/ext/upbdefs-generated/envoy/config/trace/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 8237963315B088247ED6915ADA79E946 /* Copy src/core/ext/upb-generated/google/api Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/google/api"; - dstSubfolderSpec = 16; - files = ( - 965F4D65BDF87C8658F3A54217D1E177 /* annotations.upb.h in Copy src/core/ext/upb-generated/google/api Private Headers */, - 416A27B269B148601A9CCBBE1913B224 /* http.upb.h in Copy src/core/ext/upb-generated/google/api Private Headers */, - F7E1797965351A5B3641F4F1D40497DA /* httpbody.upb.h in Copy src/core/ext/upb-generated/google/api Private Headers */, - ); - name = "Copy src/core/ext/upb-generated/google/api Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 828FAA9CC3EB70C132869FACD67BCFEB /* Copy third_party/re2/util Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/third_party/re2/util"; - dstSubfolderSpec = 16; - files = ( - BD4FC47DFC2DE8355896DF558D89A583 /* benchmark.h in Copy third_party/re2/util Private Headers */, - 588C7EDC43742E4F2A8064C6DFA61707 /* flags.h in Copy third_party/re2/util Private Headers */, - 3EEFACF4BD8B2E904F8E23E049DA5019 /* logging.h in Copy third_party/re2/util Private Headers */, - BA878488E82F69DA9B43F2A527EEBE0B /* malloc_counter.h in Copy third_party/re2/util Private Headers */, - 79FE056227749CEA7FFAFC18194C2A83 /* mix.h in Copy third_party/re2/util Private Headers */, - 885F7C1521D7B7E93D9AA24A6DBFA955 /* mutex.h in Copy third_party/re2/util Private Headers */, - 836C460BB7A08AE2E1F5AE731D80ACAB /* pcre.h in Copy third_party/re2/util Private Headers */, - 01BBAABD19CD1519C622D10FC8C7E90D /* strutil.h in Copy third_party/re2/util Private Headers */, - B2B0B5EE655A98101DE873AFE80E8573 /* test.h in Copy third_party/re2/util Private Headers */, - 60EC0BBBD51026FDD2E76B649BD251B6 /* utf.h in Copy third_party/re2/util Private Headers */, - 1B81712DD3D94134B69E45B630EAFF90 /* util.h in Copy third_party/re2/util Private Headers */, - ); - name = "Copy third_party/re2/util Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 82A91F6C9B8E617BE6BC9FAFEFF80B89 /* Copy src/core/ext/transport/binder/server Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/transport/binder/server"; - dstSubfolderSpec = 16; - files = ( - 1465D34877AC58C33231841BCBA6FD4B /* binder_server.h in Copy src/core/ext/transport/binder/server Private Headers */, - ); - name = "Copy src/core/ext/transport/binder/server Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 83E80BF61436509F21B14DD886E67963 /* Copy src/core/ext/filters/http/client Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/http/client"; - dstSubfolderSpec = 16; - files = ( - 6F0308431D4F1295943A66236C383629 /* http_client_filter.h in Copy src/core/ext/filters/http/client Private Headers */, - ); - name = "Copy src/core/ext/filters/http/client Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 85EEA1EDA4C0F29701BB5D1CB3EC65FD /* Copy src/core/lib/transport Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/transport"; - dstSubfolderSpec = 16; - files = ( - 5869C7F349B31889D72EB54B43B1973E /* bdp_estimator.h in Copy src/core/lib/transport Private Headers */, - 555894E064716161C2F2C7E17E369F6C /* connectivity_state.h in Copy src/core/lib/transport Private Headers */, - 956ECE8C00BF367434D5BEA5F81E907E /* error_utils.h in Copy src/core/lib/transport Private Headers */, - 44817AAE6929637EA1C2564CE13C3CB0 /* handshaker.h in Copy src/core/lib/transport Private Headers */, - 8BCDD302FC652840320FCDB6A4701F1B /* handshaker_factory.h in Copy src/core/lib/transport Private Headers */, - DA7C477CB1B69AF8E5155ED940EA6C12 /* handshaker_registry.h in Copy src/core/lib/transport Private Headers */, - A1D8B1A4DD5F4A59ACFCAD2910E14CE3 /* http2_errors.h in Copy src/core/lib/transport Private Headers */, - 729E6E494B8A49DC130FE985D8C41CC9 /* http_connect_handshaker.h in Copy src/core/lib/transport Private Headers */, - B7BB09F820C7CA0B6F7B096E2E12B1DE /* metadata_batch.h in Copy src/core/lib/transport Private Headers */, - ECEC938809F1F2F99F7A48EC55A3AA4F /* parsed_metadata.h in Copy src/core/lib/transport Private Headers */, - F267488D63EB68648B122630C7DB18E2 /* pid_controller.h in Copy src/core/lib/transport Private Headers */, - 1C8E767F9D7B179D06A38BC4F97B0CF0 /* status_conversion.h in Copy src/core/lib/transport Private Headers */, - EB4BD477D0A33EE7008884E4502EE3C8 /* tcp_connect_handshaker.h in Copy src/core/lib/transport Private Headers */, - 4D4B1DC503F2E88051EF208041AF9FBA /* timeout_encoding.h in Copy src/core/lib/transport Private Headers */, - 3401CE3A5C27C2B6157D1C808C28CE04 /* transport.h in Copy src/core/lib/transport Private Headers */, - 6B52B334BA3A355C2452A7B6A74962EF /* transport_fwd.h in Copy src/core/lib/transport Private Headers */, - A0D07DF0730C1A484DB4BB76BB8814C0 /* transport_impl.h in Copy src/core/lib/transport Private Headers */, - ); - name = "Copy src/core/lib/transport Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 86BD21E54A3664CB4E366C99F64C52B5 /* Copy src/core/ext/upb-generated/envoy/extensions/filters/network/http_connection_manager/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/extensions/filters/network/http_connection_manager/v3"; - dstSubfolderSpec = 16; - files = ( - 969EFB3C6C1EE0D430CECC0C079421D8 /* http_connection_manager.upb.h in Copy src/core/ext/upb-generated/envoy/extensions/filters/network/http_connection_manager/v3 Private Headers */, - ); - name = "Copy src/core/ext/upb-generated/envoy/extensions/filters/network/http_connection_manager/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 86F141C38AD3D2A3A4F56440676B3A68 /* Copy crypto/fipsmodule/digest Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/crypto/fipsmodule/digest"; - dstSubfolderSpec = 16; - files = ( - BBDAFD761823E5D4053202E0956B8565 /* internal.h in Copy crypto/fipsmodule/digest Private Headers */, - CBBB66CD4B1BF570E0D6B6CF67DB9CA1 /* md32_common.h in Copy crypto/fipsmodule/digest Private Headers */, - ); - name = "Copy crypto/fipsmodule/digest Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 870B157156E4E2C142E91024E8964965 /* Copy src/core/ext/upb-generated/envoy/extensions/clusters/aggregate/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/extensions/clusters/aggregate/v3"; - dstSubfolderSpec = 16; - files = ( - FADF920FB6F7D643604B9F77D2288F4E /* cluster.upb.h in Copy src/core/ext/upb-generated/envoy/extensions/clusters/aggregate/v3 Private Headers */, - ); - name = "Copy src/core/ext/upb-generated/envoy/extensions/clusters/aggregate/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 875365A24384B49F31604CBFC3039D38 /* Copy src/core/ext/upb-generated/envoy/type/metadata/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/type/metadata/v3"; - dstSubfolderSpec = 16; - files = ( - 64ACAD57914D7686234794EC132BF5ED /* metadata.upb.h in Copy src/core/ext/upb-generated/envoy/type/metadata/v3 Private Headers */, - ); - name = "Copy src/core/ext/upb-generated/envoy/type/metadata/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 87563FB519DE2AE0A9DB699B7560A132 /* Copy src/core/lib/config Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/config"; - dstSubfolderSpec = 16; - files = ( - D95BF4CBCF3ACF8789F263522CB890FE /* core_configuration.h in Copy src/core/lib/config Private Headers */, - ); - name = "Copy src/core/lib/config Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 87765D3736F26A245F0A4799EE055EAC /* Copy src/core/ext/upbdefs-generated/envoy/extensions/filters/http/fault/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/extensions/filters/http/fault/v3"; - dstSubfolderSpec = 16; - files = ( - 82D2864797C5FB3D0FCBAC0AD68D166C /* fault.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/extensions/filters/http/fault/v3 Private Headers */, - ); - name = "Copy src/core/ext/upbdefs-generated/envoy/extensions/filters/http/fault/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 877AEB742ADED9AFEA891AD14F3700F8 /* Copy src/core/ext/upb-generated/envoy/config/accesslog/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/config/accesslog/v3"; - dstSubfolderSpec = 16; - files = ( - 3BD04241BAABF89202C404132F262421 /* accesslog.upb.h in Copy src/core/ext/upb-generated/envoy/config/accesslog/v3 Private Headers */, - ); - name = "Copy src/core/ext/upb-generated/envoy/config/accesslog/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 87CF834FDB9DCA8DF97BE4CF061660CF /* Copy src/core/ext/upb-generated/envoy/type/http/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/type/http/v3"; - dstSubfolderSpec = 16; - files = ( - 7099B271D10FBB12B0462AEB59B44027 /* cookie.upb.h in Copy src/core/ext/upb-generated/envoy/type/http/v3 Private Headers */, - 01F9A475952537FD47E261799C81CF2D /* path_transformation.upb.h in Copy src/core/ext/upb-generated/envoy/type/http/v3 Private Headers */, - ); - name = "Copy src/core/ext/upb-generated/envoy/type/http/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 89318678B81AD2D5E9835BC2D66CD982 /* Copy src/core/ext/xds Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/xds"; - dstSubfolderSpec = 16; - files = ( - 1D922C2B119C6F4DCBAC4970DE2613BC /* certificate_provider_store.h in Copy src/core/ext/xds Private Headers */, - F7FA4741EFFF717031B757EEE5A53350 /* file_watcher_certificate_provider_factory.h in Copy src/core/ext/xds Private Headers */, - 9ACAF379AAB777387213EEB1BC96750F /* upb_utils.h in Copy src/core/ext/xds Private Headers */, - 9BAEBD31782CBFDF89B7B50BAFD4E358 /* xds_api.h in Copy src/core/ext/xds Private Headers */, - 9FE8FC7884E10139EDFB5CA3641D3E7F /* xds_bootstrap.h in Copy src/core/ext/xds Private Headers */, - B73DD7DD06629592107063D213A19EEC /* xds_bootstrap_grpc.h in Copy src/core/ext/xds Private Headers */, - 4F2201F8099250059AAF7C31442BD7CC /* xds_certificate_provider.h in Copy src/core/ext/xds Private Headers */, - 52A2DD814835BC3DBFFA81CBE1F59B0C /* xds_channel_args.h in Copy src/core/ext/xds Private Headers */, - 3550F438D049B81F9CB710B11F9C347E /* xds_channel_stack_modifier.h in Copy src/core/ext/xds Private Headers */, - 14062A603311239323904281CE33E1E3 /* xds_client.h in Copy src/core/ext/xds Private Headers */, - A834B6EEB32BE9BE1788796334644CE5 /* xds_client_grpc.h in Copy src/core/ext/xds Private Headers */, - E239AF003496DA12D4337B6DF495DC82 /* xds_client_stats.h in Copy src/core/ext/xds Private Headers */, - 6E10D2BAE37BFE071DEECE24D1729A89 /* xds_cluster.h in Copy src/core/ext/xds Private Headers */, - 7458446717A74244FC9DA3B85888FB49 /* xds_cluster_specifier_plugin.h in Copy src/core/ext/xds Private Headers */, - 605A441ABBB2AB65445803E9EC57FB03 /* xds_common_types.h in Copy src/core/ext/xds Private Headers */, - 765E43E79F601546EB8ED86A9BD61CB5 /* xds_endpoint.h in Copy src/core/ext/xds Private Headers */, - A293ED8AF7A99A86E13B1E7350D190FA /* xds_http_fault_filter.h in Copy src/core/ext/xds Private Headers */, - C7C63732BFE0EED2B5031E2783C4941F /* xds_http_filters.h in Copy src/core/ext/xds Private Headers */, - F8560200E0732445F0A7C2FA1C79FCF8 /* xds_http_rbac_filter.h in Copy src/core/ext/xds Private Headers */, - B01607CB6F0B290FE976D78BE83A4058 /* xds_lb_policy_registry.h in Copy src/core/ext/xds Private Headers */, - EE9180D5EFFE2D03ED45812F1CD329DB /* xds_listener.h in Copy src/core/ext/xds Private Headers */, - AFCD1C290CF2747CDA4C04CB07A8DAB6 /* xds_resource_type.h in Copy src/core/ext/xds Private Headers */, - 1D1144959068F52DA21A388464A16691 /* xds_resource_type_impl.h in Copy src/core/ext/xds Private Headers */, - A24AE1F9A6BBBBD4F0BD19216CCC31DC /* xds_route_config.h in Copy src/core/ext/xds Private Headers */, - B1D7E30E17333E14D7624A9F668AEB0D /* xds_routing.h in Copy src/core/ext/xds Private Headers */, - 5E76BC1E7A9ED1EF4BE3EBC74E1EB352 /* xds_transport.h in Copy src/core/ext/xds Private Headers */, - 950F0BE708928659834D55AEDB902E67 /* xds_transport_grpc.h in Copy src/core/ext/xds Private Headers */, - ); - name = "Copy src/core/ext/xds Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 89FE23F80866D9BB25953693DDACBDAB /* Copy src/core/tsi/alts/handshaker Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/tsi/alts/handshaker"; - dstSubfolderSpec = 16; - files = ( - 20A7CBC42B3DB7378E2F1075111C390B /* alts_handshaker_client.h in Copy src/core/tsi/alts/handshaker Private Headers */, - FD381E669DFDCFA12850A85C80974B85 /* alts_shared_resource.h in Copy src/core/tsi/alts/handshaker Private Headers */, - 4C73CC93D8AB1DE9F0CD62D9CAF98CD5 /* alts_tsi_handshaker.h in Copy src/core/tsi/alts/handshaker Private Headers */, - E34849072D4868ED659865161F244EEE /* alts_tsi_handshaker_private.h in Copy src/core/tsi/alts/handshaker Private Headers */, - A7DB520EB8A6E1187C271A9B374D17A5 /* alts_tsi_utils.h in Copy src/core/tsi/alts/handshaker Private Headers */, - D40319ABA70B3C2B7625213EA7A09F83 /* transport_security_common_api.h in Copy src/core/tsi/alts/handshaker Private Headers */, - ); - name = "Copy src/core/tsi/alts/handshaker Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 8A8769BFA3CA491638FB725D166DC636 /* Copy strings Public Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/strings"; - dstSubfolderSpec = 16; - files = ( - 72A62CB62A02D25E5399EBD7986FEA0F /* ascii.h in Copy strings Public Headers */, - DA92E3889F5552AE02BEC5B5A0B8BF52 /* charconv.h in Copy strings Public Headers */, - 1303D110178EEE75FE37EE46362F3AE1 /* cord.h in Copy strings Public Headers */, - 06B841B7FCDE20F3011F3D23351324F2 /* cord_analysis.h in Copy strings Public Headers */, - CA67C602F4BAE72B8F5B9BBE7F75C749 /* cord_buffer.h in Copy strings Public Headers */, - 7B5BB7A0DBA681169D1AA472BBCB16D4 /* escaping.h in Copy strings Public Headers */, - 50B042C8E2D686F0FCEE430FC5D0B697 /* match.h in Copy strings Public Headers */, - 253AA3F9EB4EB2A40AAFA7A6FF334CD8 /* numbers.h in Copy strings Public Headers */, - 69268AABC9A32F33E29CAF1F4A948FFC /* str_cat.h in Copy strings Public Headers */, - 37E8BD97B2AA6100AC847C1FCDFE9AAA /* str_format.h in Copy strings Public Headers */, - 56D284926DC1C51C24947129B3C50553 /* str_join.h in Copy strings Public Headers */, - E0A9F446A0128EE19152D7A6D9D7B5EA /* str_replace.h in Copy strings Public Headers */, - 31BEDABF1A3B9F53567B8F488EFC1C6C /* str_split.h in Copy strings Public Headers */, - 747A1AF8E34C40C09FB4C10DE4FF06CB /* string_view.h in Copy strings Public Headers */, - 68E22D48DC0E145028B4C969726D1E1D /* strip.h in Copy strings Public Headers */, - 7CCAAAB10D1766260D573D0689BF0929 /* substitute.h in Copy strings Public Headers */, - ); - name = "Copy strings Public Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 8B8C5F3D9076EB8FD4DE25D0A9FAC73D /* Copy crypto/evp Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/crypto/evp"; - dstSubfolderSpec = 16; - files = ( - 88AEC180D5618D5C177665D8465CEA32 /* internal.h in Copy crypto/evp Private Headers */, - ); - name = "Copy crypto/evp Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 8C3081254BCE86FEFCA0333DAA967999 /* Copy src/core/ext/upb-generated/envoy/service/discovery/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/service/discovery/v3"; - dstSubfolderSpec = 16; - files = ( - BAACF4CB7E038CF68AA64609BA65A522 /* ads.upb.h in Copy src/core/ext/upb-generated/envoy/service/discovery/v3 Private Headers */, - F90513BA2FFA7912440FE63065328C05 /* discovery.upb.h in Copy src/core/ext/upb-generated/envoy/service/discovery/v3 Private Headers */, - ); - name = "Copy src/core/ext/upb-generated/envoy/service/discovery/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 8C331EEEF3DA79C84A472D6C4436C25D /* Copy src/core/ext/upb-generated/envoy/config/cluster/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/config/cluster/v3"; - dstSubfolderSpec = 16; - files = ( - BEF933B1A2C21322BB93C063BBF4B399 /* circuit_breaker.upb.h in Copy src/core/ext/upb-generated/envoy/config/cluster/v3 Private Headers */, - 3C00BB646C7A3C3266655F33AC3906F4 /* cluster.upb.h in Copy src/core/ext/upb-generated/envoy/config/cluster/v3 Private Headers */, - 69DACF3F2378EE3CBA33BF4D09A54D81 /* filter.upb.h in Copy src/core/ext/upb-generated/envoy/config/cluster/v3 Private Headers */, - 0548939D63D177ADD620F933D803E952 /* outlier_detection.upb.h in Copy src/core/ext/upb-generated/envoy/config/cluster/v3 Private Headers */, - ); - name = "Copy src/core/ext/upb-generated/envoy/config/cluster/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 8C9445BD439779B6ED9CD8369E085D5F /* Copy crypto/fipsmodule/rand Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/crypto/fipsmodule/rand"; - dstSubfolderSpec = 16; - files = ( - 617CE6679BE305BF340997A46E890382 /* fork_detect.h in Copy crypto/fipsmodule/rand Private Headers */, - 7F8F0317AAF78E19640B4EBF5A37AD22 /* getrandom_fillin.h in Copy crypto/fipsmodule/rand Private Headers */, - E9807903E4B839180B2DD0E0FC69C7A0 /* internal.h in Copy crypto/fipsmodule/rand Private Headers */, - ); - name = "Copy crypto/fipsmodule/rand Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 8D1E4390C637776D5D9013AD8BABDE78 /* Copy src/core/ext/upb-generated/envoy/config/accesslog/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/config/accesslog/v3"; - dstSubfolderSpec = 16; - files = ( - 22E8237FA7B3516779F1C1C55071F93C /* accesslog.upb.h in Copy src/core/ext/upb-generated/envoy/config/accesslog/v3 Private Headers */, - ); - name = "Copy src/core/ext/upb-generated/envoy/config/accesslog/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 8E48BA30567A582CEF244347BCE6676B /* Copy src/core/lib/security/credentials/alts Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/credentials/alts"; - dstSubfolderSpec = 16; - files = ( - 3038BFCF0B2AF5E22BCE3C4B3256D967 /* alts_credentials.h in Copy src/core/lib/security/credentials/alts Private Headers */, - 29BB0E4A333854B93F4B229B411F8C01 /* check_gcp_environment.h in Copy src/core/lib/security/credentials/alts Private Headers */, - 48D2DA7A68073266AAA186696B3302E9 /* grpc_alts_credentials_options.h in Copy src/core/lib/security/credentials/alts Private Headers */, - ); - name = "Copy src/core/lib/security/credentials/alts Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 8F3A111D22373CBE654102FE1F05174B /* Copy src/core/lib/security/context Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/context"; - dstSubfolderSpec = 16; - files = ( - E170CE9AEDBAA7681FCEA0559C3E55A1 /* security_context.h in Copy src/core/lib/security/context Private Headers */, - ); - name = "Copy src/core/lib/security/context Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 8F9C6EBB37FD868836C117952FAEEC5D /* Copy src/core/ext/upb-generated/envoy/type/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/type/v3"; - dstSubfolderSpec = 16; - files = ( - 79112F287476176086F6153BCECC99F8 /* hash_policy.upb.h in Copy src/core/ext/upb-generated/envoy/type/v3 Private Headers */, - 88C0EC7419DCF969EE78B49FDB454DC7 /* http.upb.h in Copy src/core/ext/upb-generated/envoy/type/v3 Private Headers */, - 429833FF467249292900B4B6EA0DB158 /* http_status.upb.h in Copy src/core/ext/upb-generated/envoy/type/v3 Private Headers */, - BFABC552B8FDB67589BAF133F7416505 /* percent.upb.h in Copy src/core/ext/upb-generated/envoy/type/v3 Private Headers */, - 0F0C9B5BC00F8F018E366ADA11CD1658 /* range.upb.h in Copy src/core/ext/upb-generated/envoy/type/v3 Private Headers */, - 8444A90CCBAC08EB5680FDD5AF1DDEAC /* ratelimit_strategy.upb.h in Copy src/core/ext/upb-generated/envoy/type/v3 Private Headers */, - E80AC344A8B3C7E6CCDBB73BF55B7A0A /* ratelimit_unit.upb.h in Copy src/core/ext/upb-generated/envoy/type/v3 Private Headers */, - EBBF484078C6F05BE859962A9C59019C /* semantic_version.upb.h in Copy src/core/ext/upb-generated/envoy/type/v3 Private Headers */, - E8031ADC3D2ED573007E7C5E050F6604 /* token_bucket.upb.h in Copy src/core/ext/upb-generated/envoy/type/v3 Private Headers */, - ); - name = "Copy src/core/ext/upb-generated/envoy/type/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 904B03C2066C45B053088607E83E7320 /* Copy src/core/ext/upb-generated/opencensus/proto/trace/v1 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/opencensus/proto/trace/v1"; - dstSubfolderSpec = 16; - files = ( - A1DE1A830C0C8CFF431A4A2FF0BD64F9 /* trace_config.upb.h in Copy src/core/ext/upb-generated/opencensus/proto/trace/v1 Private Headers */, - ); - name = "Copy src/core/ext/upb-generated/opencensus/proto/trace/v1 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 90A05524607A8A34317824666A269355 /* Copy src/core/ext/upbdefs-generated/envoy/config/trace/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/config/trace/v3"; - dstSubfolderSpec = 16; - files = ( - A43AACD094189DEA02C48B55D588F3EB /* datadog.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/trace/v3 Private Headers */, - ECF4BDA7F32F90CEB0925088BA0F8B5C /* dynamic_ot.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/trace/v3 Private Headers */, - E9C86DD307504ACDA4E0921ED510640A /* http_tracer.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/trace/v3 Private Headers */, - 2C374D4316B8C39002AB49AE4A9297D1 /* lightstep.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/trace/v3 Private Headers */, - 728972A2A36B2B5728052FF4ED32FAC2 /* opencensus.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/trace/v3 Private Headers */, - 1A22017256680BD9487113421159D4B7 /* opentelemetry.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/trace/v3 Private Headers */, - 640622CED7986C6116220AE56AA33488 /* service.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/trace/v3 Private Headers */, - C1F8D59A652C0A6611E677000DF2E642 /* skywalking.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/trace/v3 Private Headers */, - 349085B2F32BB7D99135E782E57E5FE5 /* trace.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/trace/v3 Private Headers */, - 734037A794581C247C8735984FDBADDF /* xray.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/trace/v3 Private Headers */, - E2012A62AB927280DD29A0F33F04248B /* zipkin.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/trace/v3 Private Headers */, - ); - name = "Copy src/core/ext/upbdefs-generated/envoy/config/trace/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 90DD1ADEA2F24A1B507F1E96FFA9BA89 /* Copy src/core/ext/upbdefs-generated/google/rpc Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/google/rpc"; - dstSubfolderSpec = 16; - files = ( - 2EE5ABEDC767D177361637E3C65E8DDC /* status.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/rpc Private Headers */, - ); - name = "Copy src/core/ext/upbdefs-generated/google/rpc Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 9114CB443807341631AF1D3A85772A85 /* Copy src/core/ext/upbdefs-generated/envoy/config/accesslog/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/config/accesslog/v3"; - dstSubfolderSpec = 16; - files = ( - FF91071BC1F71D9B84B2BF8F1A026448 /* accesslog.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/accesslog/v3 Private Headers */, - ); - name = "Copy src/core/ext/upbdefs-generated/envoy/config/accesslog/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 917FFCCB976AC602968E8DAE437E95A6 /* Copy src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3"; - dstSubfolderSpec = 16; - files = ( - 2B72CF4E7F6AEF6C4EBE380EEBB16F84 /* cert.upb.h in Copy src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3 Private Headers */, - 60CB8C4F5329DCCE1FE547C007C49B1A /* common.upb.h in Copy src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3 Private Headers */, - C85C734AC220502FD5F4C201EC3D98FB /* secret.upb.h in Copy src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3 Private Headers */, - 43027D1AFCCA0BA73C4AA9032E019617 /* tls.upb.h in Copy src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3 Private Headers */, - FDD8639985872D6CEB859D2075A20731 /* tls_spiffe_validator_config.upb.h in Copy src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3 Private Headers */, - ); - name = "Copy src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 9226DBD909D4E03C2E89BD32B5207423 /* Copy src/core/ext/filters/channel_idle Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/channel_idle"; - dstSubfolderSpec = 16; - files = ( - 5AD8420EDAAE6ECAFB1B9B0F9A75C5D1 /* channel_idle_filter.h in Copy src/core/ext/filters/channel_idle Private Headers */, - 1565F5E883CF1A138FF04993486C430D /* idle_filter_state.h in Copy src/core/ext/filters/channel_idle Private Headers */, - ); - name = "Copy src/core/ext/filters/channel_idle Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 924ACACA72F9BB289B06DF8F726C400D /* Copy src/core/ext/upb-generated/udpa/annotations Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/udpa/annotations"; - dstSubfolderSpec = 16; - files = ( - 36F91918B3B0177C3695DD99C28F088A /* migrate.upb.h in Copy src/core/ext/upb-generated/udpa/annotations Private Headers */, - 9E5ADF5D4834D4D01C3F95CCFE6C34BE /* security.upb.h in Copy src/core/ext/upb-generated/udpa/annotations Private Headers */, - 32E64EAA6A0F58183BFE1B83044DE6F9 /* sensitive.upb.h in Copy src/core/ext/upb-generated/udpa/annotations Private Headers */, - D3E903ECD7CA25F0E49496D2CFB9C4C6 /* status.upb.h in Copy src/core/ext/upb-generated/udpa/annotations Private Headers */, - C0BCB7FE9E5F52B0EEBD750EA8D34A56 /* versioning.upb.h in Copy src/core/ext/upb-generated/udpa/annotations Private Headers */, - ); - name = "Copy src/core/ext/upb-generated/udpa/annotations Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 934331E4CF531F9446DF0F5EAAEE64DB /* Copy src/core/ext/upbdefs-generated/xds/core/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/xds/core/v3"; - dstSubfolderSpec = 16; - files = ( - 5260AC30893BBDFD6E281DB894E0F2A3 /* authority.upbdefs.h in Copy src/core/ext/upbdefs-generated/xds/core/v3 Private Headers */, - 35B7A74EB611AE8034755B0807693DC7 /* collection_entry.upbdefs.h in Copy src/core/ext/upbdefs-generated/xds/core/v3 Private Headers */, - 6D2F68B8E5D22BADA846E97CFBAA9B8B /* context_params.upbdefs.h in Copy src/core/ext/upbdefs-generated/xds/core/v3 Private Headers */, - 13FF6CD758422FF1D1ADDA422A08140D /* extension.upbdefs.h in Copy src/core/ext/upbdefs-generated/xds/core/v3 Private Headers */, - 63379639177671BDF66D0C86463872CA /* resource.upbdefs.h in Copy src/core/ext/upbdefs-generated/xds/core/v3 Private Headers */, - 6A5FE42B96B40929DF827F3568E5F8D4 /* resource_locator.upbdefs.h in Copy src/core/ext/upbdefs-generated/xds/core/v3 Private Headers */, - E64A15E79E254DE42A1B3A985594FD3A /* resource_name.upbdefs.h in Copy src/core/ext/upbdefs-generated/xds/core/v3 Private Headers */, - ); - name = "Copy src/core/ext/upbdefs-generated/xds/core/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 940897F496646D8A0087550D471DF9EC /* Copy src/core/ext/upb-generated/envoy/service/load_stats/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/service/load_stats/v3"; - dstSubfolderSpec = 16; - files = ( - 3CDD136FB88121DAE7E31982B336B68E /* lrs.upb.h in Copy src/core/ext/upb-generated/envoy/service/load_stats/v3 Private Headers */, - ); - name = "Copy src/core/ext/upb-generated/envoy/service/load_stats/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 945F9A5A441FC3724997EF586C44C8AF /* Copy src/core/ext/upb-generated/google/rpc Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/google/rpc"; - dstSubfolderSpec = 16; - files = ( - FB0163B004135EDA58EC8A5BAA4CF12A /* status.upb.h in Copy src/core/ext/upb-generated/google/rpc Private Headers */, - ); - name = "Copy src/core/ext/upb-generated/google/rpc Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 947BA3D9351CB013DE85800D618D81A5 /* Copy src/core/lib/surface Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/surface"; - dstSubfolderSpec = 16; - files = ( - 3751132873F959B1A4B83983C9A4511E /* api_trace.h in Copy src/core/lib/surface Private Headers */, - 48F75B041EFB391D227C35CF4EEA6BE8 /* builtins.h in Copy src/core/lib/surface Private Headers */, - DBC933A6E35C36EC3F38DE4550F76F45 /* call.h in Copy src/core/lib/surface Private Headers */, - 242311EFC286F11D12DA8F9FBCE91508 /* call_test_only.h in Copy src/core/lib/surface Private Headers */, - B8800CEE21629DA9296F986CAA92EB97 /* channel.h in Copy src/core/lib/surface Private Headers */, - 76773D5F761357B8A02E3DF9CB13C520 /* channel_init.h in Copy src/core/lib/surface Private Headers */, - 1168403E11D805E3941AD332FA596C9D /* channel_stack_type.h in Copy src/core/lib/surface Private Headers */, - D4EDBF0AA3E74EA0B87ADDCB81E4290D /* completion_queue.h in Copy src/core/lib/surface Private Headers */, - 8C726AA30A74D1112C371BCDA4F9D714 /* completion_queue_factory.h in Copy src/core/lib/surface Private Headers */, - F921A087D2B817B0D16846143721FA40 /* event_string.h in Copy src/core/lib/surface Private Headers */, - 5650F0892292BEA3938E78550952C7E2 /* init.h in Copy src/core/lib/surface Private Headers */, - 43E3241EE6525E51977E644D9CD48B69 /* init_internally.h in Copy src/core/lib/surface Private Headers */, - 3C40F8B516EB22690A00AD6DA0B4ADE9 /* lame_client.h in Copy src/core/lib/surface Private Headers */, - 4DD20F738233794F982A24648F135F69 /* server.h in Copy src/core/lib/surface Private Headers */, - 5E5F34DD13FA370412DAE8A62A1502C5 /* validate_metadata.h in Copy src/core/lib/surface Private Headers */, - ); - name = "Copy src/core/lib/surface Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 954D220B1CADC4804D96E7FB0CE9EBE9 /* Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/config/core/v3"; - dstSubfolderSpec = 16; - files = ( - 3F3414C58006ABD771E505A808651C18 /* address.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */, - 905292BA0D3EEA93D40FDEF8901A54EF /* backoff.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */, - D65B9AC398145A5465A76D8ADCB41525 /* base.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */, - 03495516BE6675DA7A58B9FF69BAC6BE /* config_source.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */, - B89774D8EF9BE0CBD969A48E05EE3CA0 /* event_service_config.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */, - CE0ED7F03A8E9BFA6D830ED8BC60B767 /* extension.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */, - 9C4F5C9593B4570B7FFFE430FEC1B200 /* grpc_method_list.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */, - 80AC09523CB7A68C75A6A390012F9A86 /* grpc_service.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */, - 0774418F99F5103E565DE81A65F430C6 /* health_check.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */, - DD9D8DD2C8D263513D0462ED30468463 /* http_uri.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */, - C71E373C7BB169063832D485D81D0749 /* protocol.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */, - EA8F499B1752A750DDE256C26DE92836 /* proxy_protocol.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */, - 02824E593A141A28A0DCEB3265F7F88C /* resolver.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */, - 0CF5B8F6B0FDD8E2212A8AAA785FBABA /* socket_option.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */, - 07B3BA8B2E3E8E6E6EC8A4EF2225B907 /* substitution_format_string.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */, - DEFE8118469042380A1B98E4419A5653 /* udp_socket_config.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */, - ); - name = "Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 95CFB4453393B7FF94B46C2C16DF5676 /* Copy src/core/ext/upbdefs-generated/xds/type/matcher/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/xds/type/matcher/v3"; - dstSubfolderSpec = 16; - files = ( - D0010DC7A4FCFF68118E53CB59753666 /* matcher.upbdefs.h in Copy src/core/ext/upbdefs-generated/xds/type/matcher/v3 Private Headers */, - 6495F9A0A2488C7D47A4C19B62A45DB1 /* regex.upbdefs.h in Copy src/core/ext/upbdefs-generated/xds/type/matcher/v3 Private Headers */, - AFE5330A5550848A0258E8F9ABBC995E /* string.upbdefs.h in Copy src/core/ext/upbdefs-generated/xds/type/matcher/v3 Private Headers */, - ); - name = "Copy src/core/ext/upbdefs-generated/xds/type/matcher/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 9687907EDC426B7A2E327BA92584300F /* Copy src/core/ext/upbdefs-generated/xds/type/matcher/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/xds/type/matcher/v3"; - dstSubfolderSpec = 16; - files = ( - 72E5BF9CEA80D60B3AC017E33817DFF7 /* matcher.upbdefs.h in Copy src/core/ext/upbdefs-generated/xds/type/matcher/v3 Private Headers */, - 31FBFA6B48496431282221222D07EECC /* regex.upbdefs.h in Copy src/core/ext/upbdefs-generated/xds/type/matcher/v3 Private Headers */, - 903C2966D559C8C485BEC96EC9766AE9 /* string.upbdefs.h in Copy src/core/ext/upbdefs-generated/xds/type/matcher/v3 Private Headers */, - ); - name = "Copy src/core/ext/upbdefs-generated/xds/type/matcher/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 96D48449C35BEDDF0DB86C602F6995CB /* Copy src/core/ext/upbdefs-generated/envoy/config/metrics/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/config/metrics/v3"; - dstSubfolderSpec = 16; - files = ( - BE6A356B34F09D8E469F0C157E2B221B /* metrics_service.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/metrics/v3 Private Headers */, - A500ADF3DA58D7B13F7F903F3847707A /* stats.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/metrics/v3 Private Headers */, - ); - name = "Copy src/core/ext/upbdefs-generated/envoy/config/metrics/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 978491235AD10AEBAF31A71988C220F9 /* Copy src/core/lib/resource_quota Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/resource_quota"; - dstSubfolderSpec = 16; - files = ( - 78456F4BC23051605EB52FB8ADA193D1 /* api.h in Copy src/core/lib/resource_quota Private Headers */, - A2A50AB21721983F655FA222ECE429EB /* arena.h in Copy src/core/lib/resource_quota Private Headers */, - ABA38803B39D29B0EC86D73D205CE271 /* memory_quota.h in Copy src/core/lib/resource_quota Private Headers */, - BDD1991C15529D84D403620ACEA5ABD8 /* periodic_update.h in Copy src/core/lib/resource_quota Private Headers */, - 55F22D6B8F7ABFCAD9FEF0A764E0E4EF /* resource_quota.h in Copy src/core/lib/resource_quota Private Headers */, - 0001194DC49D6353711DEBAEEBECEEFE /* thread_quota.h in Copy src/core/lib/resource_quota Private Headers */, - CF3CB5547DCDE7CBF3FC55EA48D7647B /* trace.h in Copy src/core/lib/resource_quota Private Headers */, - ); - name = "Copy src/core/lib/resource_quota Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 9794A357E96A180217B38ABA59321126 /* Copy src/core/ext/upb-generated/envoy/type/tracing/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/type/tracing/v3"; - dstSubfolderSpec = 16; - files = ( - 9D99C9D9133A1E38863EEB04107E4CAB /* custom_tag.upb.h in Copy src/core/ext/upb-generated/envoy/type/tracing/v3 Private Headers */, - ); - name = "Copy src/core/ext/upb-generated/envoy/type/tracing/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 979594B3AE93FD11A9D5024D078CFAC0 /* Copy src/core/lib/handshaker Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/handshaker"; - dstSubfolderSpec = 16; - files = ( - BD8A70AEDF8F992EBA07A102B1A13F4D /* proxy_mapper.h in Copy src/core/lib/handshaker Private Headers */, - B1E8E085479469A70F119D37D9DDB421 /* proxy_mapper_registry.h in Copy src/core/lib/handshaker Private Headers */, - ); - name = "Copy src/core/lib/handshaker Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 979A736408C5DF21B9B0FB8B995DB648 /* Copy container/internal Public Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/container/internal"; - dstSubfolderSpec = 16; - files = ( - C7C790F5F57E99744D8F2569BF9D96B7 /* common.h in Copy container/internal Public Headers */, - 5EA50E22AF141CEEBF8923FD690B30C9 /* compressed_tuple.h in Copy container/internal Public Headers */, - 4F0A69824E2AAA749EF5EB75584FC726 /* container_memory.h in Copy container/internal Public Headers */, - C7322D4071B4B5D1D5348C42934BC620 /* hash_function_defaults.h in Copy container/internal Public Headers */, - 51120788C41F5B9A75ECB1F197CC7AFE /* hash_policy_traits.h in Copy container/internal Public Headers */, - CC9656C2626E2C6849BDB5FE94740C6E /* hashtable_debug_hooks.h in Copy container/internal Public Headers */, - 6D817A0D0607DBF2B0E6BF66DFC702B6 /* hashtablez_sampler.h in Copy container/internal Public Headers */, - 255A821B0895063A475C536E4D0D04C0 /* inlined_vector.h in Copy container/internal Public Headers */, - A32BB9431FD9FD63448AD419EACB100E /* layout.h in Copy container/internal Public Headers */, - 401605C07CF0DEE1EA21F4C477CF6423 /* raw_hash_map.h in Copy container/internal Public Headers */, - 96117D0644A9A77FADB2A1DAA6676A4A /* raw_hash_set.h in Copy container/internal Public Headers */, - ); - name = "Copy container/internal Public Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 9811E0DC3A1C13F75B907DCA60103B2A /* Copy crypto/asn1 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/crypto/asn1"; - dstSubfolderSpec = 16; - files = ( - 39DA782DCED398D378A84930E7B8C22A /* charmap.h in Copy crypto/asn1 Private Headers */, - B5EF45343B0ED12E090FE6C4AA2891D2 /* internal.h in Copy crypto/asn1 Private Headers */, - ); - name = "Copy crypto/asn1 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 981AB7C25FD507EC79E955BE9507CA5B /* Copy src/core/ext/upbdefs-generated/envoy/service/status/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/service/status/v3"; - dstSubfolderSpec = 16; - files = ( - FF7FB389A98ED9938D77110A3062E95F /* csds.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/service/status/v3 Private Headers */, - ); - name = "Copy src/core/ext/upbdefs-generated/envoy/service/status/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 9904A922E95F1839F0913D194C7BF017 /* Copy src/core/ext/upbdefs-generated/xds/type/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/xds/type/v3"; - dstSubfolderSpec = 16; - files = ( - F2FDF463636F55967807EEB2F13A76E8 /* typed_struct.upbdefs.h in Copy src/core/ext/upbdefs-generated/xds/type/v3 Private Headers */, - ); - name = "Copy src/core/ext/upbdefs-generated/xds/type/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 991D64888B5176229B885C8C93D4CF6D /* Copy src/core/ext/upbdefs-generated/envoy/admin/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/admin/v3"; - dstSubfolderSpec = 16; - files = ( - FFDD56A4451284F454A3985591049D05 /* certs.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/admin/v3 Private Headers */, - 19824C58048176EEBE5AF89860391889 /* clusters.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/admin/v3 Private Headers */, - F3FA60E760B7E2BB47DCDFFCA7FEA02D /* config_dump.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/admin/v3 Private Headers */, - 07E28CF59397430936A5A8D18BBD31E2 /* config_dump_shared.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/admin/v3 Private Headers */, - 323B1A4097285919E3ECD83F36AACD29 /* init_dump.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/admin/v3 Private Headers */, - DC62095E9F38D86F71F3FA6C12BF7DB4 /* listeners.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/admin/v3 Private Headers */, - 07F4F2DDD89DE403F7503B3A35F9D9C3 /* memory.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/admin/v3 Private Headers */, - 51C51BB7D33894FE6D1E88EC1E0C6C6E /* metrics.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/admin/v3 Private Headers */, - 5EF5070FFF557E14C612E4BBE37CC39E /* mutex_stats.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/admin/v3 Private Headers */, - 6672A470B619092714272279FE20CF15 /* server_info.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/admin/v3 Private Headers */, - D66744CB4B284C48EB62389BD898A289 /* tap.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/admin/v3 Private Headers */, - ); - name = "Copy src/core/ext/upbdefs-generated/envoy/admin/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 9A0EFFD27134E6C2E5286290DC7961A3 /* Copy src/core/ext/upbdefs-generated/envoy/extensions/filters/http/router/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/extensions/filters/http/router/v3"; - dstSubfolderSpec = 16; - files = ( - 9FE5E96D978BB0DB48A9564BE8553E80 /* router.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/extensions/filters/http/router/v3 Private Headers */, - ); - name = "Copy src/core/ext/upbdefs-generated/envoy/extensions/filters/http/router/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 9B1E44C560B0CE34FC8A7924C34E17A3 /* Copy src/core/ext/transport/chttp2/server Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/transport/chttp2/server"; - dstSubfolderSpec = 16; - files = ( - 162E22280EA5901DB4A168CF708AF3E9 /* chttp2_server.h in Copy src/core/ext/transport/chttp2/server Private Headers */, - ); - name = "Copy src/core/ext/transport/chttp2/server Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 9B5A0A887AE7604AD21E81F76E286B39 /* Copy src/core/ext/upb-generated/envoy/extensions/load_balancing_policies/ring_hash/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/extensions/load_balancing_policies/ring_hash/v3"; - dstSubfolderSpec = 16; - files = ( - 17D3D462D9E2DCA159EF8265942A8D1C /* ring_hash.upb.h in Copy src/core/ext/upb-generated/envoy/extensions/load_balancing_policies/ring_hash/v3 Private Headers */, - ); - name = "Copy src/core/ext/upb-generated/envoy/extensions/load_balancing_policies/ring_hash/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 9B672CC3334DD5C3A1D4FC601D67EB3B /* Copy src/core/ext/filters/client_channel/lb_policy/grpclb Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/client_channel/lb_policy/grpclb"; - dstSubfolderSpec = 16; - files = ( - 6B5DEDB849FB64EA9657FF0E8D9C7D0D /* client_load_reporting_filter.h in Copy src/core/ext/filters/client_channel/lb_policy/grpclb Private Headers */, - 0275ECAF9DAA1D93EE9213196DC12C9B /* grpclb.h in Copy src/core/ext/filters/client_channel/lb_policy/grpclb Private Headers */, - 6997675C16CB0BF0BC80CA17BD3B2764 /* grpclb_balancer_addresses.h in Copy src/core/ext/filters/client_channel/lb_policy/grpclb Private Headers */, - 75A08282C25203A891EEC1204A3409D2 /* grpclb_client_stats.h in Copy src/core/ext/filters/client_channel/lb_policy/grpclb Private Headers */, - 15CA38FFFFC1EF79FA3DBD4967A07D29 /* load_balancer_api.h in Copy src/core/ext/filters/client_channel/lb_policy/grpclb Private Headers */, - ); - name = "Copy src/core/ext/filters/client_channel/lb_policy/grpclb Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 9C60C580883D9558006DE296AA27DDFF /* Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/config/core/v3"; - dstSubfolderSpec = 16; - files = ( - 670F113B1EA30BDFCEABBED965BE2A38 /* address.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */, - A8DBA8D6611D921049E4543A92058079 /* backoff.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */, - 6D57FDC696602C730BA603FA1CAD60C2 /* base.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */, - 67A7775187A19F767ED12F8AECFB1AFE /* config_source.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */, - 8F518BA62C650AFADCF0B707629C990A /* event_service_config.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */, - 67193BEAFAFE799CB99C56993072B935 /* extension.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */, - 3BBFA789F7DC886D077C58EF62C783B0 /* grpc_method_list.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */, - B93AC6AAB7D6800271FF44FA7E47E6A0 /* grpc_service.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */, - 6CF3AF624D28052C3ECCC50BE352FFA0 /* health_check.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */, - 670C438EF40A77CBAB710CAF6596AA66 /* http_uri.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */, - 147683E1B91A40257079A127334A8D92 /* protocol.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */, - 226EA31DE9555FD664D37029F3D84220 /* proxy_protocol.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */, - 0A5B913D4EE8189CFAEED952F75FCBAC /* resolver.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */, - DA08BFB9E2362C0BC2429BD0F25A31F3 /* socket_option.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */, - 9FBD20B73F39FA068818A7C3D661C17D /* substitution_format_string.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */, - 38E56220760277569E46831CE6D268B0 /* udp_socket_config.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */, - ); - name = "Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 9C81611334AA97E3F05EDF63792D5370 /* Copy strings/internal/str_format Public Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/strings/internal/str_format"; - dstSubfolderSpec = 16; - files = ( - 407DC8A8C5BF1F587F23386A6422AF54 /* arg.h in Copy strings/internal/str_format Public Headers */, - 46FE06AB5774B7448A1CAB3E2430C456 /* bind.h in Copy strings/internal/str_format Public Headers */, - 7E1A76032973E504C6741DED844677A1 /* checker.h in Copy strings/internal/str_format Public Headers */, - D5BB52F5181BC6BC3D4840D92A89EDD9 /* extension.h in Copy strings/internal/str_format Public Headers */, - 7BF4B5D890A4C108926239C776BA766A /* float_conversion.h in Copy strings/internal/str_format Public Headers */, - AF13ACE37525DEA66528257373359901 /* output.h in Copy strings/internal/str_format Public Headers */, - CA3A4AE7006EF89A9F4AA9BC72936113 /* parser.h in Copy strings/internal/str_format Public Headers */, - ); - name = "Copy strings/internal/str_format Public Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 9ED4A107CC67574C7E4B6AE69507986D /* Copy src/core/ext/filters/http Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/http"; - dstSubfolderSpec = 16; - files = ( - 9D0F642334EA9FE79EAC16B0B66BCD20 /* client_authority_filter.h in Copy src/core/ext/filters/http Private Headers */, - ); - name = "Copy src/core/ext/filters/http Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 9F4ABEB659215C2F602440F6C74098BE /* Copy impl/codegen/security Public Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/impl/codegen/security"; - dstSubfolderSpec = 16; - files = ( - 0D52858DA6015DCD1D02967E64525F01 /* auth_context.h in Copy impl/codegen/security Public Headers */, - ); - name = "Copy impl/codegen/security Public Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 9FAA5170BF7E1D09FAF42C26E86D9F42 /* Copy src/core/ext/upb-generated/xds/service/orca/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/xds/service/orca/v3"; - dstSubfolderSpec = 16; - files = ( - BFFFA89A4604F55081ACBA5DE215582F /* orca.upb.h in Copy src/core/ext/upb-generated/xds/service/orca/v3 Private Headers */, - ); - name = "Copy src/core/ext/upb-generated/xds/service/orca/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - 9FB082EB669B5C66170D865297D4C359 /* Copy src/core/ext/upb-generated/envoy/config/endpoint/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/config/endpoint/v3"; - dstSubfolderSpec = 16; - files = ( - E891AB9A754D53C3053DACD77158566A /* endpoint.upb.h in Copy src/core/ext/upb-generated/envoy/config/endpoint/v3 Private Headers */, - 1A6D3E0E06BBD5B1FBC99BC051EC4719 /* endpoint_components.upb.h in Copy src/core/ext/upb-generated/envoy/config/endpoint/v3 Private Headers */, - 0F215969A1FABC1505FE5635AFA845E1 /* load_report.upb.h in Copy src/core/ext/upb-generated/envoy/config/endpoint/v3 Private Headers */, - ); - name = "Copy src/core/ext/upb-generated/envoy/config/endpoint/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - A065974509FA3F6D40DBC53BC34C4FB6 /* Copy src/core/ext/upb-generated/envoy/config/metrics/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/config/metrics/v3"; - dstSubfolderSpec = 16; - files = ( - 8E441A10D6FD235DC33BB26ADE5F0968 /* metrics_service.upb.h in Copy src/core/ext/upb-generated/envoy/config/metrics/v3 Private Headers */, - 17C5390DC815367FB94F6E0BA0A401EE /* stats.upb.h in Copy src/core/ext/upb-generated/envoy/config/metrics/v3 Private Headers */, - ); - name = "Copy src/core/ext/upb-generated/envoy/config/metrics/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - A09A2CB529330854F092126131D5992F /* Copy crypto/dsa Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/crypto/dsa"; - dstSubfolderSpec = 16; - files = ( - 8339B5472DD45F2D9AC5A64EED308D2B /* internal.h in Copy crypto/dsa Private Headers */, - ); - name = "Copy crypto/dsa Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - A0AE6DA8FCB143AFB62C73D20778F221 /* Copy time/internal Public Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/time/internal"; - dstSubfolderSpec = 16; - files = ( - 664552D4D7EB223551ED8A01A84B87FE /* get_current_time_chrono.inc in Copy time/internal Public Headers */, - 979EF23ACA3E677BE994F47F665C85DF /* get_current_time_posix.inc in Copy time/internal Public Headers */, - ); - name = "Copy time/internal Public Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - A0ECE9025FCA2FBC6A601F4C961B7E13 /* Copy hash Public Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/hash"; - dstSubfolderSpec = 16; - files = ( - 0FE72F2D0E69EAB91424AFDB25E381EB /* hash.h in Copy hash Public Headers */, - ); - name = "Copy hash Public Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - A1816F8C93AFD0027F2E855E1DE9A87E /* Copy crypto/fipsmodule Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/crypto/fipsmodule"; - dstSubfolderSpec = 16; - files = ( - 412DBA037BAEED1F67BA52515CC6F91E /* delocate.h in Copy crypto/fipsmodule Private Headers */, - ); - name = "Copy crypto/fipsmodule Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - A1EF385C18B6AA34B3C7BEA871E35DDF /* Copy crypto/pool Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/crypto/pool"; - dstSubfolderSpec = 16; - files = ( - B6F1F20378275F4FBAE84D07948A5484 /* internal.h in Copy crypto/pool Private Headers */, - ); - name = "Copy crypto/pool Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - A3260ED60E521AA30140B6B055F9A3E8 /* Copy src/core/lib/security/credentials/composite Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/credentials/composite"; - dstSubfolderSpec = 16; - files = ( - 3CE6E17780D25313593286AC6D581B23 /* composite_credentials.h in Copy src/core/lib/security/credentials/composite Private Headers */, - ); - name = "Copy src/core/lib/security/credentials/composite Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - A37ED8A5FCF6EA756205A2B28724EA73 /* Copy src/core/lib/security/credentials/tls Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/credentials/tls"; - dstSubfolderSpec = 16; - files = ( - 2C592B9F0549C7A0D52EE109BEB1DFEF /* grpc_tls_certificate_distributor.h in Copy src/core/lib/security/credentials/tls Private Headers */, - D5A22740562A1EC0F7FF716CFD6164BF /* grpc_tls_certificate_provider.h in Copy src/core/lib/security/credentials/tls Private Headers */, - 4ACA3B905E21264539BEA73F2CACA9D6 /* grpc_tls_certificate_verifier.h in Copy src/core/lib/security/credentials/tls Private Headers */, - 4053CCCB3E077A9C372908A8C27AC43E /* grpc_tls_credentials_options.h in Copy src/core/lib/security/credentials/tls Private Headers */, - BEEC9B2095DBC7A59D7063B4ACCF1524 /* tls_credentials.h in Copy src/core/lib/security/credentials/tls Private Headers */, - A3D3620A5210C20260FCC57E30C77572 /* tls_utils.h in Copy src/core/lib/security/credentials/tls Private Headers */, - ); - name = "Copy src/core/lib/security/credentials/tls Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - A4CB3AB179CFB725D0CEF53723582878 /* Copy status Public Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/status"; - dstSubfolderSpec = 16; - files = ( - 352FB9DF2D7311498D2B1E2F00C8E01A /* status.h in Copy status Public Headers */, - 7674DD2EFA807048BBD9FB546BA6079B /* status_payload_printer.h in Copy status Public Headers */, - 7BF0DDCFFD2EAC3CA6138314F5BB4D6C /* statusor.h in Copy status Public Headers */, - ); - name = "Copy status Public Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - A630EA49A5C764899F91EC41E4C699F0 /* Copy src/core/lib/resolver Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/resolver"; - dstSubfolderSpec = 16; - files = ( - A1083924EC10FE0D53B381576FA9DDA0 /* resolver.h in Copy src/core/lib/resolver Private Headers */, - 6A56F59EB55000E0D9990B51DA3AC393 /* resolver_factory.h in Copy src/core/lib/resolver Private Headers */, - 2C1A7E619BB11F238A8057518F673598 /* resolver_registry.h in Copy src/core/lib/resolver Private Headers */, - 6B34B0F122B37DD3AF7A30F057193180 /* server_address.h in Copy src/core/lib/resolver Private Headers */, - ); - name = "Copy src/core/lib/resolver Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - A6FAAC61AD1529000EBA1CC23C583937 /* Copy event_engine Public Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/event_engine"; - dstSubfolderSpec = 16; - files = ( - E0C5EBFFD06C2B8E45542B709E0631EC /* endpoint_config.h in Copy event_engine Public Headers */, - 1ED9E63E750AF0235303BB2367A1EAC8 /* event_engine.h in Copy event_engine Public Headers */, - 475761F9CBC71020FF49D75996D7A29E /* memory_allocator.h in Copy event_engine Public Headers */, - 73CCC77063940CF6267CD03A1752BF60 /* memory_request.h in Copy event_engine Public Headers */, - CC1730E28B86BD053F76062EC92AC97B /* port.h in Copy event_engine Public Headers */, - 784212F9111208B77AED9517DEF8DD6B /* slice.h in Copy event_engine Public Headers */, - 301FDB0A9B80F9C6960F138914EC6803 /* slice_buffer.h in Copy event_engine Public Headers */, - ); - name = "Copy event_engine Public Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - A75792A4B9361EF329B5B2EF1CEC4F2F /* Copy src/core/lib/uri Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/uri"; - dstSubfolderSpec = 16; - files = ( - BC67AF12F30FDEF8B5CB6C42F4432E52 /* uri_parser.h in Copy src/core/lib/uri Private Headers */, - ); - name = "Copy src/core/lib/uri Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - A79B6EE2D77977A3F679DCEB79C6294F /* Copy src/core/ext/upbdefs-generated/envoy/type/tracing/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/type/tracing/v3"; - dstSubfolderSpec = 16; - files = ( - 1E9300298DC23546AD984ACFF6602572 /* custom_tag.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/tracing/v3 Private Headers */, - ); - name = "Copy src/core/ext/upbdefs-generated/envoy/type/tracing/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - A811AFA6B41363E05F6641FE7F599F8D /* Copy src/core/tsi/ssl/key_logging Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/tsi/ssl/key_logging"; - dstSubfolderSpec = 16; - files = ( - D6B5AB930E9ABA932211709B4D973587 /* ssl_key_logging.h in Copy src/core/tsi/ssl/key_logging Private Headers */, - ); - name = "Copy src/core/tsi/ssl/key_logging Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - A881E37CA5744E18F2B5300441A3653D /* Copy src/core/lib/gpr Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/gpr"; - dstSubfolderSpec = 16; - files = ( - 0E4537A7F25188FFDA24C457315A429B /* alloc.h in Copy src/core/lib/gpr Private Headers */, - 2F3220F2E7CFD83495B911A94F05DF1E /* murmur_hash.h in Copy src/core/lib/gpr Private Headers */, - C375D0E911BD7337A5B6FAF310B5CFB8 /* spinlock.h in Copy src/core/lib/gpr Private Headers */, - BECFEA94EB43B30AA80139161E038AC1 /* string.h in Copy src/core/lib/gpr Private Headers */, - 43E40B86D45E6240059AB0A211D18B45 /* time_precise.h in Copy src/core/lib/gpr Private Headers */, - 6C940D5FCC5AAAC348E2318F07031079 /* tls.h in Copy src/core/lib/gpr Private Headers */, - 657518B51075077ABC75BE8951574582 /* tmpfile.h in Copy src/core/lib/gpr Private Headers */, - 8F4436F26811334262F5ADA69E0DBD99 /* useful.h in Copy src/core/lib/gpr Private Headers */, - ); - name = "Copy src/core/lib/gpr Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - A9416E2A162DBD6A7C493E7A9354D5B8 /* Copy src/core/lib/security/security_connector/insecure Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/security_connector/insecure"; - dstSubfolderSpec = 16; - files = ( - 7828DE00E7988E30B9015371A2D7CD6F /* insecure_security_connector.h in Copy src/core/lib/security/security_connector/insecure Private Headers */, - ); - name = "Copy src/core/lib/security/security_connector/insecure Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - AA537C8F5EE46ECFC37FFFDAEFF27E99 /* Copy src/core/lib/security/credentials/external Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/credentials/external"; - dstSubfolderSpec = 16; - files = ( - 950CF1DF41F33574F504B676A000CDAA /* aws_external_account_credentials.h in Copy src/core/lib/security/credentials/external Private Headers */, - 8F2BBA051A5F077F3C79295489A77D96 /* aws_request_signer.h in Copy src/core/lib/security/credentials/external Private Headers */, - 20E4C4E0C08E33571EE0CBBF11531B97 /* external_account_credentials.h in Copy src/core/lib/security/credentials/external Private Headers */, - 89AD94B705EE87A51CA8B9819EEF6413 /* file_external_account_credentials.h in Copy src/core/lib/security/credentials/external Private Headers */, - 70EEDD4FC5D5FA267D3374102A499142 /* url_external_account_credentials.h in Copy src/core/lib/security/credentials/external Private Headers */, - ); - name = "Copy src/core/lib/security/credentials/external Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - AB3ADD5E6D9FAC6D434A7C547D26207C /* Copy src/core/ext/upb-generated/google/api/expr/v1alpha1 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/google/api/expr/v1alpha1"; - dstSubfolderSpec = 16; - files = ( - 0BD8F342651461981E46E99240EBC53B /* checked.upb.h in Copy src/core/ext/upb-generated/google/api/expr/v1alpha1 Private Headers */, - 7A8868E56F80996B005EEBFB333A3FB2 /* syntax.upb.h in Copy src/core/ext/upb-generated/google/api/expr/v1alpha1 Private Headers */, - ); - name = "Copy src/core/ext/upb-generated/google/api/expr/v1alpha1 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - AC32309EA2FDCD925327A5AEACA63757 /* Copy src/core/ext/upbdefs-generated/envoy/config/accesslog/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/config/accesslog/v3"; - dstSubfolderSpec = 16; - files = ( - 734523B69D8DA32DF0E03563C0041B23 /* accesslog.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/accesslog/v3 Private Headers */, - ); - name = "Copy src/core/ext/upbdefs-generated/envoy/config/accesslog/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - AC99033DD8436CC1F9FFC20F443AFF91 /* Copy src/core/lib/compression Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/compression"; - dstSubfolderSpec = 16; - files = ( - 016C9948CB7F158437C47CD9F66DF1A4 /* compression_internal.h in Copy src/core/lib/compression Private Headers */, - 2BD6A05F25020F9D79CE25910FF2758A /* message_compress.h in Copy src/core/lib/compression Private Headers */, - ); - name = "Copy src/core/lib/compression Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - AD5A46903AA7D884DE17AC55FB440ABF /* Copy src/core/ext/upb-generated/envoy/config/cluster/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/config/cluster/v3"; - dstSubfolderSpec = 16; - files = ( - D52D8D9A39504A3FE566E2A6CE15C49F /* circuit_breaker.upb.h in Copy src/core/ext/upb-generated/envoy/config/cluster/v3 Private Headers */, - 37BFF81E0902DB0635650CDAD71DEDDE /* cluster.upb.h in Copy src/core/ext/upb-generated/envoy/config/cluster/v3 Private Headers */, - 3A2DAF9ABD756DDB80979857B89F3804 /* filter.upb.h in Copy src/core/ext/upb-generated/envoy/config/cluster/v3 Private Headers */, - 19F76D11200AFBE5E8F8814AD6C97183 /* outlier_detection.upb.h in Copy src/core/ext/upb-generated/envoy/config/cluster/v3 Private Headers */, - ); - name = "Copy src/core/ext/upb-generated/envoy/config/cluster/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - AD63539D0E53F0B34D89E71A490C7443 /* Copy src/core/tsi Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/tsi"; - dstSubfolderSpec = 16; - files = ( - C92BB0D47776F2101AB933E0F6CF5A01 /* fake_transport_security.h in Copy src/core/tsi Private Headers */, - 7313C1CF69E7F74F73EFC8FB49EE07DB /* local_transport_security.h in Copy src/core/tsi Private Headers */, - 8E81A4BC645497468BDCDAAB23D7437E /* ssl_transport_security.h in Copy src/core/tsi Private Headers */, - B46582E2F4A2A84C1D521C93938590F4 /* ssl_types.h in Copy src/core/tsi Private Headers */, - 0EEEFC8E48E9B27E84B4BAC1E0A7648F /* transport_security.h in Copy src/core/tsi Private Headers */, - 637CED567F3DB208FA40A35C3EFE9CA3 /* transport_security_grpc.h in Copy src/core/tsi Private Headers */, - 596A1E8FE4BDB4999C40997D0804769D /* transport_security_interface.h in Copy src/core/tsi Private Headers */, - ); - name = "Copy src/core/tsi Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - ADCE608EFA4D589B9411CA09216E04C6 /* Copy src/core/ext/upb-generated/envoy/extensions/filters/network/http_connection_manager/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/extensions/filters/network/http_connection_manager/v3"; - dstSubfolderSpec = 16; - files = ( - 1078C1FE5A1989361161AF501356F60A /* http_connection_manager.upb.h in Copy src/core/ext/upb-generated/envoy/extensions/filters/network/http_connection_manager/v3 Private Headers */, - ); - name = "Copy src/core/ext/upb-generated/envoy/extensions/filters/network/http_connection_manager/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - ADE2A1C49C362A75F3398C6C92BA72F4 /* Copy crypto/x509 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/crypto/x509"; - dstSubfolderSpec = 16; - files = ( - 1FE84DEDA6A3EEA968F2F6084579B87B /* internal.h in Copy crypto/x509 Private Headers */, - ); - name = "Copy crypto/x509 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - AE9100F191CF22E2AB565C5DF5AEEC0A /* Copy src/core/ext/upbdefs-generated/envoy/config/endpoint/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/config/endpoint/v3"; - dstSubfolderSpec = 16; - files = ( - 1DE6D191BA274C5CFC8C523EFB66FC2C /* endpoint.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/endpoint/v3 Private Headers */, - DD1AD8D19ED9A43BF6D58E00FC9CFBFF /* endpoint_components.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/endpoint/v3 Private Headers */, - AFB480B1C31915018AE3E901FE1DB848 /* load_report.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/endpoint/v3 Private Headers */, - ); - name = "Copy src/core/ext/upbdefs-generated/envoy/config/endpoint/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - AF60C4DCC176955249FE0F37A6BD716B /* Copy third_party/upb/upb Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/third_party/upb/upb"; - dstSubfolderSpec = 16; - files = ( - 5931C499B5D8A84B7D45C242F734691C /* arena.h in Copy third_party/upb/upb Private Headers */, - D372BA8330CEBFD862CCA9A5D64CD44E /* array.h in Copy third_party/upb/upb Private Headers */, - DB17FF0D4318F4CD34048A7B27D3B116 /* collections.h in Copy third_party/upb/upb Private Headers */, - 2441CCDBB04E9C7B625F98996C23A916 /* decode.h in Copy third_party/upb/upb Private Headers */, - 400E1ADCDE955AD3FBF3A281EB56C102 /* decode_fast.h in Copy third_party/upb/upb Private Headers */, - D02ED6158DD9C0E86DEDE3C96C8D35FA /* def.h in Copy third_party/upb/upb Private Headers */, - FF6A516F4A7D7AD2A23A9D470BEAD59D /* def.hpp in Copy third_party/upb/upb Private Headers */, - FD66A437AECBEBE8E09F90A3BC023F09 /* encode.h in Copy third_party/upb/upb Private Headers */, - DABDE99A8527002E329050169D8E693B /* extension_registry.h in Copy third_party/upb/upb Private Headers */, - D24FAFE7D7DED4B05435CB310603E7A8 /* json_decode.h in Copy third_party/upb/upb Private Headers */, - 510B52374E380ACED9244C9874CF934D /* json_encode.h in Copy third_party/upb/upb Private Headers */, - A79FCB1B58206B9925B578B935153577 /* map.h in Copy third_party/upb/upb Private Headers */, - A7E1B6B7F81D194C2009AC33B935DDD7 /* message_value.h in Copy third_party/upb/upb Private Headers */, - 2FCC1BDE607CA65DE4DFFAC157E13EC5 /* mini_table.h in Copy third_party/upb/upb Private Headers */, - C4C304E50728ADD8AEA125887E7A1075 /* mini_table.hpp in Copy third_party/upb/upb Private Headers */, - 664FA216996CC58BE23CC279CEAE0AA3 /* msg.h in Copy third_party/upb/upb Private Headers */, - E544B792A9F57CCCAC33E106BFE8E04F /* msg_internal.h in Copy third_party/upb/upb Private Headers */, - F3BA380FDEC642DB13D88C1CC9844C3C /* port_def.inc in Copy third_party/upb/upb Private Headers */, - B5AA7F9850D6DF5A7B9D2224005018BC /* port_undef.inc in Copy third_party/upb/upb Private Headers */, - 3D38898D353BDEAA59A7A93FBDC32564 /* reflection.h in Copy third_party/upb/upb Private Headers */, - C337BA3FA91510F99F9B1389518F8191 /* reflection.hpp in Copy third_party/upb/upb Private Headers */, - EB1A3138CF04765AF82F6FE59B350060 /* status.h in Copy third_party/upb/upb Private Headers */, - 71299911315A96CA799198F8F2E228C4 /* table_internal.h in Copy third_party/upb/upb Private Headers */, - 5857EA79B433DFB9A7E0B2E0F0E3825A /* text_encode.h in Copy third_party/upb/upb Private Headers */, - 657B6C8D59F28CDE6E34C43E14DA5599 /* upb.h in Copy third_party/upb/upb Private Headers */, - 1129EC0DF1D246C05E5C23FAA99938C1 /* upb.hpp in Copy third_party/upb/upb Private Headers */, - ); - name = "Copy third_party/upb/upb Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - AF8A7317BB6C7799098B73B16E506695 /* Copy src/core/lib/security/credentials Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/credentials"; - dstSubfolderSpec = 16; - files = ( - DB3708A08B148A35784DA3DE4F59C217 /* call_creds_util.h in Copy src/core/lib/security/credentials Private Headers */, - 6C1153430E183AFDEB18FCD886CBA303 /* channel_creds_registry.h in Copy src/core/lib/security/credentials Private Headers */, - F5A1C4D614AA3ED88C36F9A2D459A6B1 /* credentials.h in Copy src/core/lib/security/credentials Private Headers */, - ); - name = "Copy src/core/lib/security/credentials Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - AFE6F3B1AB69FEA35C64DA4CDA9334E1 /* Copy src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3"; - dstSubfolderSpec = 16; - files = ( - D59D5F585E662504D2BEFD59BCAC11E2 /* cert.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3 Private Headers */, - 520B599FB841EC738EEFE6912289F957 /* common.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3 Private Headers */, - 69F372FAAB158770F521C2F617CDA60B /* secret.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3 Private Headers */, - 473C3E43111B1DDD93E6607EDE776893 /* tls.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3 Private Headers */, - D9D61ED947A676E12376FDF0D4E114C7 /* tls_spiffe_validator_config.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3 Private Headers */, - ); - name = "Copy src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - B07917C1B5A8941364B6B1DF78515795 /* Copy src/core/lib/config Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/config"; - dstSubfolderSpec = 16; - files = ( - D0D76ED3A1F206396A6F64B79D34C591 /* core_configuration.h in Copy src/core/lib/config Private Headers */, - ); - name = "Copy src/core/lib/config Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - B0D0D352B5A4CBCADC596DF8B96FBDF8 /* Copy crypto/fipsmodule/modes Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/crypto/fipsmodule/modes"; - dstSubfolderSpec = 16; - files = ( - D5DD195CF009A7109FE0B60E7C7F0C6C /* internal.h in Copy crypto/fipsmodule/modes Private Headers */, - ); - name = "Copy crypto/fipsmodule/modes Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - B20F4F53DD9E1015509B6FE78C08912D /* Copy src/core/ext/transport/binder/client Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/transport/binder/client"; - dstSubfolderSpec = 16; - files = ( - B65FFD960721B0EA11C3310F56274F37 /* binder_connector.h in Copy src/core/ext/transport/binder/client Private Headers */, - BE0FD6A58C037A2AEAA87FE20E462CED /* channel_create_impl.h in Copy src/core/ext/transport/binder/client Private Headers */, - 6817BA5F8AEC4B7F5ABFB2DC82EF982F /* connection_id_generator.h in Copy src/core/ext/transport/binder/client Private Headers */, - 87A9B8D317C4CA921AC04338F35D0555 /* endpoint_binder_pool.h in Copy src/core/ext/transport/binder/client Private Headers */, - A13F2F0AC145AB37A6137F23F0578492 /* jni_utils.h in Copy src/core/ext/transport/binder/client Private Headers */, - B7F1B9C8F58E06F43461CD98476028ED /* security_policy_setting.h in Copy src/core/ext/transport/binder/client Private Headers */, - ); - name = "Copy src/core/ext/transport/binder/client Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - B218EBFAD3965010658111D4EB21BE83 /* Copy src/core/ext/upbdefs-generated/google/protobuf Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/google/protobuf"; - dstSubfolderSpec = 16; - files = ( - 8AB85AFA78ED0B818F7B7047E89D4440 /* any.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/protobuf Private Headers */, - 2ED92571C0B3A57DC2DE247EC7D1EEA8 /* descriptor.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/protobuf Private Headers */, - AE69C9221093175E81E233B76E28BD78 /* duration.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/protobuf Private Headers */, - 248438F6ADB4CB71363110CDA14F689B /* empty.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/protobuf Private Headers */, - 83B206D10ECC7596A740A378E674B917 /* struct.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/protobuf Private Headers */, - BBA8A98A114DF8357290260824D1F3FB /* timestamp.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/protobuf Private Headers */, - 02D9422B39B6874E426677B23B3B14C7 /* wrappers.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/protobuf Private Headers */, - ); - name = "Copy src/core/ext/upbdefs-generated/google/protobuf Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - B32E24FDEBFF6CFE0A11F24E7A6C978F /* Copy third_party/xxhash Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/third_party/xxhash"; - dstSubfolderSpec = 16; - files = ( - 89B46DC28B356D0C34DF8581E604B99E /* xxhash.h in Copy third_party/xxhash Private Headers */, - ); - name = "Copy third_party/xxhash Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - B36B3C1189E4D50EDB7067A8088FB7F1 /* Copy src/core/ext/upbdefs-generated/google/api Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/google/api"; - dstSubfolderSpec = 16; - files = ( - 90D006A3519EBF1F1E75385263AD7018 /* annotations.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/api Private Headers */, - 5803935E1C14F7802406434F42C45A33 /* http.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/api Private Headers */, - B146BFD4E27BAFB1D88762D3D583BAAD /* httpbody.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/api Private Headers */, - ); - name = "Copy src/core/ext/upbdefs-generated/google/api Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - B5D4F9A6BD8521AB8BC51512DB989503 /* Copy meta Public Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/meta"; - dstSubfolderSpec = 16; - files = ( - 9DBA02A437EB4AC86E42F1FA85B49FAB /* type_traits.h in Copy meta Public Headers */, - ); - name = "Copy meta Public Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - B5FC8011D5D27BF34A025A3C6F5A990F /* Copy src/core/ext/filters/fault_injection Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/fault_injection"; - dstSubfolderSpec = 16; - files = ( - E8BA49E3A804142DCB71DECC4A852643 /* fault_injection_filter.h in Copy src/core/ext/filters/fault_injection Private Headers */, - 8344451ADF865DB6BE012FE201C335C6 /* service_config_parser.h in Copy src/core/ext/filters/fault_injection Private Headers */, - ); - name = "Copy src/core/ext/filters/fault_injection Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - B619C732C1ED21F8780914754BD8A950 /* Copy src/core/ext/filters/client_channel/resolver Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/client_channel/resolver"; - dstSubfolderSpec = 16; - files = ( - 55358CC038F7C4FBE6E359B2D1C55A4A /* polling_resolver.h in Copy src/core/ext/filters/client_channel/resolver Private Headers */, - ); - name = "Copy src/core/ext/filters/client_channel/resolver Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - B739843399B2B6B0C9DE85183C2FEF72 /* Copy src/core/ext/upb-generated/envoy/type/matcher/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/type/matcher/v3"; - dstSubfolderSpec = 16; - files = ( - 691A3F486056F03B51D6D3A72A2649B9 /* http_inputs.upb.h in Copy src/core/ext/upb-generated/envoy/type/matcher/v3 Private Headers */, - B35C3D1BEB4257081CBDB7196098CE8F /* metadata.upb.h in Copy src/core/ext/upb-generated/envoy/type/matcher/v3 Private Headers */, - E834265EC6F448B7931628A9435E525A /* node.upb.h in Copy src/core/ext/upb-generated/envoy/type/matcher/v3 Private Headers */, - B6A88F39B5E40C08C3BE577C2848E50F /* number.upb.h in Copy src/core/ext/upb-generated/envoy/type/matcher/v3 Private Headers */, - BF0E268716A840C9F238870D4400BE28 /* path.upb.h in Copy src/core/ext/upb-generated/envoy/type/matcher/v3 Private Headers */, - 338A777F18FFA9206EC4CB8E910212BC /* regex.upb.h in Copy src/core/ext/upb-generated/envoy/type/matcher/v3 Private Headers */, - A6C808B5DEA893687BAEB257E1E42341 /* string.upb.h in Copy src/core/ext/upb-generated/envoy/type/matcher/v3 Private Headers */, - 61270BB4E1BB902972CBCB8D7756D745 /* struct.upb.h in Copy src/core/ext/upb-generated/envoy/type/matcher/v3 Private Headers */, - 903B589D84BDD225107B41C632CD03A5 /* value.upb.h in Copy src/core/ext/upb-generated/envoy/type/matcher/v3 Private Headers */, - ); - name = "Copy src/core/ext/upb-generated/envoy/type/matcher/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - B773ECAF6202AE35BA527600FFC86E26 /* Copy src/core/lib/security/credentials/google_default Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/credentials/google_default"; - dstSubfolderSpec = 16; - files = ( - CA9980CBA81B5D98DA71EF52B4A2BC40 /* google_default_credentials.h in Copy src/core/lib/security/credentials/google_default Private Headers */, - ); - name = "Copy src/core/lib/security/credentials/google_default Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - B8129780782A041455A765F99B769BA5 /* Copy crypto/curve25519 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/crypto/curve25519"; - dstSubfolderSpec = 16; - files = ( - 1492475F0AAFC6E745A00549F73D08A0 /* curve25519_tables.h in Copy crypto/curve25519 Private Headers */, - 351E039C861CCBC8BE5B3FF481FF3078 /* internal.h in Copy crypto/curve25519 Private Headers */, - ); - name = "Copy crypto/curve25519 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - BA40A187E2E86F0697D65A27B1B6FCBB /* Copy src/core/ext/upb-generated/xds/type/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/xds/type/v3"; - dstSubfolderSpec = 16; - files = ( - E290ECF033D31D698E809853ABDF75C4 /* typed_struct.upb.h in Copy src/core/ext/upb-generated/xds/type/v3 Private Headers */, - ); - name = "Copy src/core/ext/upb-generated/xds/type/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - BB0EA61DED0699976480C8928910C768 /* Copy support Public Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/support"; - dstSubfolderSpec = 16; - files = ( - 2CD215F457B27BFBD25709583B694314 /* alloc.h in Copy support Public Headers */, - 613C13518665D297EB79DB299F79BA4D /* atm.h in Copy support Public Headers */, - 349636C7BF7FE4932E432378116B1CCD /* atm_gcc_atomic.h in Copy support Public Headers */, - 94E8D047B3F61991E5E82AA6F2C89F02 /* atm_gcc_sync.h in Copy support Public Headers */, - A87BBE945C0E554D5949ACC8EFF202C6 /* atm_windows.h in Copy support Public Headers */, - DA88849A0D723E931802828182366032 /* cpu.h in Copy support Public Headers */, - 867BBACE89C7263E3EC812258E100148 /* log.h in Copy support Public Headers */, - BB1028197132CB4BC6008A851FAE57FB /* log_windows.h in Copy support Public Headers */, - B9C0A483324191DDBDE540127E060924 /* port_platform.h in Copy support Public Headers */, - 39EB2A3A8098C54449059BE90B77D36A /* string_util.h in Copy support Public Headers */, - A312A747ED7CE691B97F79E6AA9D90F4 /* sync.h in Copy support Public Headers */, - BAAB8E3455CF807467AA5E016F30DECF /* sync_abseil.h in Copy support Public Headers */, - D9FD177F7E0414FFDF0BB9B877D1982F /* sync_custom.h in Copy support Public Headers */, - D65CCE52B388B846CB4E0609E5685AF3 /* sync_generic.h in Copy support Public Headers */, - FAAF8CA663EAAE2B794666D0643A64FE /* sync_posix.h in Copy support Public Headers */, - FE10DD06DF4EB3B55FDA107E881BCF2C /* sync_windows.h in Copy support Public Headers */, - AD42C13D2D82062ED0BF6C70B374D2B7 /* thd_id.h in Copy support Public Headers */, - 23B7C4D262044C2E1B31ED1C16FDF45E /* time.h in Copy support Public Headers */, - CF388B3D74CC113A2CCC9E1A844F710F /* workaround_list.h in Copy support Public Headers */, - ); - name = "Copy support Public Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - BBAC0FF71C35FAA3C89DF4CAE285CBD6 /* Copy event_engine/internal Public Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/event_engine/internal"; - dstSubfolderSpec = 16; - files = ( - CC486E3B2A512B4EE4E6DDAFCE7632D8 /* memory_allocator_impl.h in Copy event_engine/internal Public Headers */, - ); - name = "Copy event_engine/internal Public Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - BC537DFBE1242D27E42D36E251E08DB3 /* Copy crypto/x509v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/crypto/x509v3"; - dstSubfolderSpec = 16; - files = ( - 3D675715FB684536BA9E54677A57D3CF /* ext_dat.h in Copy crypto/x509v3 Private Headers */, - EEC063EE8535D591090A77437DC796A5 /* internal.h in Copy crypto/x509v3 Private Headers */, - ); - name = "Copy crypto/x509v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - BCF6CE0B85E44BFAE0C2459E235BC0B5 /* Copy src/core/ext/upbdefs-generated/envoy/config/rbac/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/config/rbac/v3"; - dstSubfolderSpec = 16; - files = ( - 385DFD548B44820D57F9E246F72351A9 /* rbac.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/rbac/v3 Private Headers */, - ); - name = "Copy src/core/ext/upbdefs-generated/envoy/config/rbac/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - BDF54DC6B1F6ACBFE43F80EF4BF9CDC0 /* Copy src/core/ext/filters/client_channel/lb_policy/ring_hash Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/client_channel/lb_policy/ring_hash"; - dstSubfolderSpec = 16; - files = ( - 0F4187701E01D54BF299F87ECF9DE883 /* ring_hash.h in Copy src/core/ext/filters/client_channel/lb_policy/ring_hash Private Headers */, - ); - name = "Copy src/core/ext/filters/client_channel/lb_policy/ring_hash Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - BDFF5E6982AD604B3B6557DE90401DEC /* Copy src/core/lib/security/transport Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/transport"; - dstSubfolderSpec = 16; - files = ( - E4DA80C111150629061252153903D206 /* auth_filters.h in Copy src/core/lib/security/transport Private Headers */, - 9C66ADDA9EA021009958058C41D9ABF8 /* secure_endpoint.h in Copy src/core/lib/security/transport Private Headers */, - 1DA2B46FCFB95514E95D97F3213A89D5 /* security_handshaker.h in Copy src/core/lib/security/transport Private Headers */, - 0F5D4D2AF7A2EC9110C30B7850187A7C /* tsi_error.h in Copy src/core/lib/security/transport Private Headers */, - ); - name = "Copy src/core/lib/security/transport Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - BE5681D3B81F061DE2E104880A0B529A /* Copy src/core/lib/security/credentials/fake Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/credentials/fake"; - dstSubfolderSpec = 16; - files = ( - 732D472823727291EBAAC058235E2D98 /* fake_credentials.h in Copy src/core/lib/security/credentials/fake Private Headers */, - ); - name = "Copy src/core/lib/security/credentials/fake Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - BEDE0A47F7B7FA2FC29688B9D4981035 /* Copy src/core/lib/event_engine Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/event_engine"; - dstSubfolderSpec = 16; - files = ( - 873B1ECFE169619DB733938DE17F0B9F /* channel_args_endpoint_config.h in Copy src/core/lib/event_engine Private Headers */, - 1D8DE4E13EC69519611FCC752CC2D95A /* default_event_engine.h in Copy src/core/lib/event_engine Private Headers */, - BABBA197C5D4AD248560AC5FBDD9B012 /* default_event_engine_factory.h in Copy src/core/lib/event_engine Private Headers */, - 272F7494AFAB86664BA369C62AF30FBD /* forkable.h in Copy src/core/lib/event_engine Private Headers */, - C5CA76C214A5B3212D1F4ECDCAA6C98D /* handle_containers.h in Copy src/core/lib/event_engine Private Headers */, - FAE8232BFA6FD78DAA2A346DACE11B82 /* poller.h in Copy src/core/lib/event_engine Private Headers */, - 49430FC0B604523EC71A6B87B9926A38 /* socket_notifier.h in Copy src/core/lib/event_engine Private Headers */, - 10B474B9B11E67A98F31DF82A49B0C48 /* thread_pool.h in Copy src/core/lib/event_engine Private Headers */, - 1DADCA7C6F11A6DAAD9023BB3875F0E5 /* time_util.h in Copy src/core/lib/event_engine Private Headers */, - 9569A98675A06AE2C1F23B931431ADEA /* trace.h in Copy src/core/lib/event_engine Private Headers */, - D9AC04573FABE62B307E82BC3101B4E0 /* utils.h in Copy src/core/lib/event_engine Private Headers */, - ); - name = "Copy src/core/lib/event_engine Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - BEF3E15B98791730A396D24759AC745F /* Copy src/core/ext/upb-generated/src/proto/grpc/lookup/v1 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/src/proto/grpc/lookup/v1"; - dstSubfolderSpec = 16; - files = ( - 8945787F1C576A0B5ABF49136CF81E62 /* rls.upb.h in Copy src/core/ext/upb-generated/src/proto/grpc/lookup/v1 Private Headers */, - E76A09E78B629F7010D1E8A78AC1F065 /* rls_config.upb.h in Copy src/core/ext/upb-generated/src/proto/grpc/lookup/v1 Private Headers */, - ); - name = "Copy src/core/ext/upb-generated/src/proto/grpc/lookup/v1 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - C024F2AD7B150B0A1F8275DF34320AB0 /* Copy src/core/ext/upbdefs-generated/envoy/config/route/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/config/route/v3"; - dstSubfolderSpec = 16; - files = ( - F39B9EC475C4BC221464E8B3ED64AF9B /* route.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/route/v3 Private Headers */, - 0A3AC3E0285AA9421FA3AD39CEDBB4CD /* route_components.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/route/v3 Private Headers */, - AC1ED5CC510C180158887D73C2C3DE3F /* scoped_route.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/route/v3 Private Headers */, - ); - name = "Copy src/core/ext/upbdefs-generated/envoy/config/route/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - C089AF2DAE54CEFABA0E87B4A348243B /* Copy src/core/ext/upb-generated/envoy/extensions/filters/http/fault/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/extensions/filters/http/fault/v3"; - dstSubfolderSpec = 16; - files = ( - 379C67F0EBACB6BBA8858A2817F36892 /* fault.upb.h in Copy src/core/ext/upb-generated/envoy/extensions/filters/http/fault/v3 Private Headers */, - ); - name = "Copy src/core/ext/upb-generated/envoy/extensions/filters/http/fault/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - C1138CB3DEC1723A3F8226E29A98E03A /* Copy src/core/ext/upbdefs-generated/envoy/config/endpoint/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/config/endpoint/v3"; - dstSubfolderSpec = 16; - files = ( - 263E654BACF3513EB9C711BF9069361F /* endpoint.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/endpoint/v3 Private Headers */, - 6A178BBACD848A781B5393AE4A28B252 /* endpoint_components.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/endpoint/v3 Private Headers */, - B9ECAFC5A8FA0B664AAD0041F7BD977B /* load_report.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/endpoint/v3 Private Headers */, - ); - name = "Copy src/core/ext/upbdefs-generated/envoy/config/endpoint/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - C11BEDC1263841790E0E72613FC79CD9 /* Copy src/core/ext/upbdefs-generated/xds/annotations/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/xds/annotations/v3"; - dstSubfolderSpec = 16; - files = ( - 2DBD0591CCA058CFF60B9BEE4DB41543 /* migrate.upbdefs.h in Copy src/core/ext/upbdefs-generated/xds/annotations/v3 Private Headers */, - 6638F59B899E6E6AB8056D76DA1AD292 /* security.upbdefs.h in Copy src/core/ext/upbdefs-generated/xds/annotations/v3 Private Headers */, - 707C3B07B1AAA400F5DACB23B9ED1B95 /* sensitive.upbdefs.h in Copy src/core/ext/upbdefs-generated/xds/annotations/v3 Private Headers */, - AA2D8FDD7E50B73FDDF498F1E822062F /* status.upbdefs.h in Copy src/core/ext/upbdefs-generated/xds/annotations/v3 Private Headers */, - 4B648E45D7F93D3786F6D1D886E916AE /* versioning.upbdefs.h in Copy src/core/ext/upbdefs-generated/xds/annotations/v3 Private Headers */, - ); - name = "Copy src/core/ext/upbdefs-generated/xds/annotations/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - C25938C793686CA7F84CAB4BC8A52A1E /* Copy src/core/ext/upb-generated/opencensus/proto/trace/v1 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/opencensus/proto/trace/v1"; - dstSubfolderSpec = 16; - files = ( - 4938017026D9B5C6996787AFB572E44D /* trace_config.upb.h in Copy src/core/ext/upb-generated/opencensus/proto/trace/v1 Private Headers */, - ); - name = "Copy src/core/ext/upb-generated/opencensus/proto/trace/v1 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - C28E9F767A8E9594A78E31485C4F711A /* Copy src/core/ext/transport/chttp2/client Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/transport/chttp2/client"; - dstSubfolderSpec = 16; - files = ( - 64BFC30A663CBEDA4CA6525A10A142B5 /* chttp2_connector.h in Copy src/core/ext/transport/chttp2/client Private Headers */, - ); - name = "Copy src/core/ext/transport/chttp2/client Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - C2A583AB037933727015FE25A53BD412 /* Copy src/core/ext/filters/client_channel/health Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/client_channel/health"; - dstSubfolderSpec = 16; - files = ( - 40F2997C6AAE94E744F1056D6BF91CFE /* health_check_client.h in Copy src/core/ext/filters/client_channel/health Private Headers */, - ); - name = "Copy src/core/ext/filters/client_channel/health Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - C2F65E8C1E930DAD0DCA60306C46A2A4 /* Copy src/core/tsi/alts/zero_copy_frame_protector Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/tsi/alts/zero_copy_frame_protector"; - dstSubfolderSpec = 16; - files = ( - 2890D6622D22855D476BBB74A730A889 /* alts_grpc_integrity_only_record_protocol.h in Copy src/core/tsi/alts/zero_copy_frame_protector Private Headers */, - 9FB64F235BA1E7330EFD9E8BC8530EEE /* alts_grpc_privacy_integrity_record_protocol.h in Copy src/core/tsi/alts/zero_copy_frame_protector Private Headers */, - 0F2CABD3F8BF3ECFF04F41D02A993F84 /* alts_grpc_record_protocol.h in Copy src/core/tsi/alts/zero_copy_frame_protector Private Headers */, - 3B60E275AE4B33FC658297FB3420B8F1 /* alts_grpc_record_protocol_common.h in Copy src/core/tsi/alts/zero_copy_frame_protector Private Headers */, - 63DA95BFF026983D56482BB33A882935 /* alts_iovec_record_protocol.h in Copy src/core/tsi/alts/zero_copy_frame_protector Private Headers */, - 3F50F257628E1B85D617C627D3EE355E /* alts_zero_copy_grpc_protector.h in Copy src/core/tsi/alts/zero_copy_frame_protector Private Headers */, - ); - name = "Copy src/core/tsi/alts/zero_copy_frame_protector Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - C3A878DAFF93FD7B9F110B48680AD2BD /* Copy src/core/lib/backoff Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/backoff"; - dstSubfolderSpec = 16; - files = ( - FD8C2D002CE001199E68FA409DF6DD77 /* backoff.h in Copy src/core/lib/backoff Private Headers */, - ); - name = "Copy src/core/lib/backoff Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - C4419EC955B4CF68E391B3AE874C270C /* Copy src/core/lib/channel Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/channel"; - dstSubfolderSpec = 16; - files = ( - 1248E04E4AC2FE2A14F77BB024B98A0B /* call_finalization.h in Copy src/core/lib/channel Private Headers */, - 8B8A10F917432983CE225A67F37C6D15 /* call_tracer.h in Copy src/core/lib/channel Private Headers */, - 17ED09D3AA0E5F0EC7C628B29F17D9BE /* channel_args.h in Copy src/core/lib/channel Private Headers */, - 8A33918A56AB11BCEDD4E604E5C56ECA /* channel_args_preconditioning.h in Copy src/core/lib/channel Private Headers */, - 3CC5301D45667AA804D8BE56BC454984 /* channel_fwd.h in Copy src/core/lib/channel Private Headers */, - 8E9F54F5444AE98383E1452F673E71F0 /* channel_stack.h in Copy src/core/lib/channel Private Headers */, - 3A10E9D5657B474E9C3471C54130B78B /* channel_stack_builder.h in Copy src/core/lib/channel Private Headers */, - 040D82E46A472E182D7B25CCB9AAA1EB /* channel_stack_builder_impl.h in Copy src/core/lib/channel Private Headers */, - FB7D621855A9FE64DE077C9574417CD2 /* channel_trace.h in Copy src/core/lib/channel Private Headers */, - 73D0729DDA0A5E5EDF4C23E55BD93D35 /* channelz.h in Copy src/core/lib/channel Private Headers */, - 4DA5C90FC91C838FE74BF36338B0A17B /* channelz_registry.h in Copy src/core/lib/channel Private Headers */, - 09801099000879547FA654DDDA9B794E /* connected_channel.h in Copy src/core/lib/channel Private Headers */, - 93ADBBD5675373B2087A0C309D9A4758 /* context.h in Copy src/core/lib/channel Private Headers */, - 0CF8A84060AF9975B434DDDB047DAEFC /* promise_based_filter.h in Copy src/core/lib/channel Private Headers */, - CC21371D226F35319702055320CD7F2E /* status_util.h in Copy src/core/lib/channel Private Headers */, - ); - name = "Copy src/core/lib/channel Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - C4D4F7B49125529DF44F8E453EBC61E8 /* Copy src/core/lib/http Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/http"; - dstSubfolderSpec = 16; - files = ( - E63E413B2BDA120754D7333D51BB34E4 /* format_request.h in Copy src/core/lib/http Private Headers */, - 3CD6C8BD344221DC97FF56B2EB91475C /* httpcli.h in Copy src/core/lib/http Private Headers */, - F40B137661AC50C10C69763AE534DD65 /* httpcli_ssl_credentials.h in Copy src/core/lib/http Private Headers */, - AFB959E60B077A6AB088A2B976DC294F /* parser.h in Copy src/core/lib/http Private Headers */, - ); - name = "Copy src/core/lib/http Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - C51BA8F42EF8B6BE5E98986C60F7E6B0 /* Copy src/core/lib/security/certificate_provider Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/certificate_provider"; - dstSubfolderSpec = 16; - files = ( - 52C5D9D06CD0F18389911649741E10B5 /* certificate_provider_factory.h in Copy src/core/lib/security/certificate_provider Private Headers */, - 9FFBA2BE4EFA05B7582F486462790419 /* certificate_provider_registry.h in Copy src/core/lib/security/certificate_provider Private Headers */, - ); - name = "Copy src/core/lib/security/certificate_provider Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - C553FA2041EC33AEE983F4ECD3F747B2 /* Copy random Public Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/random"; - dstSubfolderSpec = 16; - files = ( - FED623591FEB9B95C8F3C2F766CEFCB5 /* bernoulli_distribution.h in Copy random Public Headers */, - 0D48EB34C9FEC3D37F15E0FF1A7BA1CD /* beta_distribution.h in Copy random Public Headers */, - B538D5D51ECB27617E588443FFF76834 /* discrete_distribution.h in Copy random Public Headers */, - 46B67B0F1A734D5035602438EBD48E03 /* distributions.h in Copy random Public Headers */, - CB63913B2B7BF85845F778336DF697CD /* exponential_distribution.h in Copy random Public Headers */, - 4D6D40510BF401FF739B017D0DEDB354 /* gaussian_distribution.h in Copy random Public Headers */, - A080358781CE1C4B4148E52238AAA736 /* log_uniform_int_distribution.h in Copy random Public Headers */, - 47B462E45AF140AF6B0CFFCC9192AEF9 /* poisson_distribution.h in Copy random Public Headers */, - 677D365CC87A67E0A18D491EADD489B9 /* random.h in Copy random Public Headers */, - EA5A59655E682D8DB285DC653A3DD1F4 /* seed_gen_exception.h in Copy random Public Headers */, - 578059A5845E35C6AED809F7DDE11966 /* seed_sequences.h in Copy random Public Headers */, - 0426333E03CA1B5B315FC6A7183B597D /* uniform_int_distribution.h in Copy random Public Headers */, - C890323C10CF55E341E4FF224ADB349E /* uniform_real_distribution.h in Copy random Public Headers */, - 04626F8C67DECD0243AB6C98CC90F71B /* zipf_distribution.h in Copy random Public Headers */, - ); - name = "Copy random Public Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - C66F2E205AD27F3DCEB707CC6FBF4470 /* Copy src/core/ext/upb-generated/src/proto/grpc/lb/v1 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/src/proto/grpc/lb/v1"; - dstSubfolderSpec = 16; - files = ( - 5A85D34FEFDD6D687A71CC6AD6437EEA /* load_balancer.upb.h in Copy src/core/ext/upb-generated/src/proto/grpc/lb/v1 Private Headers */, - ); - name = "Copy src/core/ext/upb-generated/src/proto/grpc/lb/v1 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - C683DBE56BA3D608B23AFCD4B25CE228 /* Copy src/core/ext/transport/chttp2/transport Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/transport/chttp2/transport"; - dstSubfolderSpec = 16; - files = ( - C3F6DB0735669E6F713117BC39CE6919 /* bin_decoder.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, - 5C11A5BAA2E2EDCE90ACBC8731DABD16 /* bin_encoder.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, - FF6F34751E3118DB6B26199D0248CB5A /* chttp2_transport.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, - 67B63AF2A436A4D02E674279D9AF4D6D /* context_list.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, - 9DE13F10E924F2E62547A7E64A6FFA15 /* decode_huff.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, - B68493AF047FB793272827E231C2F644 /* flow_control.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, - 513CBD8BE28F736246A838569C33FCD7 /* frame.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, - 6B863578D9678207C70DC5317CAAB4A1 /* frame_data.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, - 07582F3916B940F5F2911F877DEBBABC /* frame_goaway.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, - 72402926874E3EABCF196C4F093658F1 /* frame_ping.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, - BB2166B9CD7195CE8EE1D0E5A9E1EA9E /* frame_rst_stream.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, - D3274D1D9964B238A1E10CC080615AC6 /* frame_settings.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, - 237F51F8541528D5812B1FF28ACBB764 /* frame_window_update.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, - 7C44BA5A3063EAD7296D7AE807663F12 /* hpack_constants.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, - 9DC7BA340F98075696CC08A883D121EE /* hpack_encoder.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, - 4711CC4FD45C6ECD82ECDDC8E950FA71 /* hpack_encoder_table.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, - 51F71A784968D8D759E829D8CAED1111 /* hpack_parser.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, - A6250E9DE3EC560D2781BF7D2A2BC60A /* hpack_parser_table.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, - 085D08FDBB16B0A7FB4F703F5CB27DC4 /* http2_settings.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, - 381ADA7F6CA5950F45D6D8E2BCF76088 /* huffsyms.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, - 1E813F1F463E6FADB338A92D281E7A5B /* internal.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, - 21B31BCD7D6624625D9307E21ACF8BA6 /* stream_map.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, - D5A45BEE640C1FAFC883744014C4EE25 /* varint.h in Copy src/core/ext/transport/chttp2/transport Private Headers */, - ); - name = "Copy src/core/ext/transport/chttp2/transport Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - C6A4A86D0BDA87A4A36A96D55BA33DA6 /* Copy src/cpp/server/health Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/cpp/server/health"; - dstSubfolderSpec = 16; - files = ( - 0268B262E297C8BF8BDEE00839E1520C /* default_health_check_service.h in Copy src/cpp/server/health Private Headers */, - ); - name = "Copy src/cpp/server/health Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - C760DDBD65812CAA97F0C24E4F0A4076 /* Copy src/core/lib/event_engine Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/event_engine"; - dstSubfolderSpec = 16; - files = ( - CA293E7A0BAE6A3EF714DC67DE569C54 /* channel_args_endpoint_config.h in Copy src/core/lib/event_engine Private Headers */, - D24DD0368B142B54B321F0309269147C /* default_event_engine.h in Copy src/core/lib/event_engine Private Headers */, - 9B1CC84F7F03D3B5FDED555A47108A55 /* default_event_engine_factory.h in Copy src/core/lib/event_engine Private Headers */, - FC0EC309740FADE4F865B5B3125499A3 /* forkable.h in Copy src/core/lib/event_engine Private Headers */, - 0333D89DB2AF71760B13044FB06FEE00 /* handle_containers.h in Copy src/core/lib/event_engine Private Headers */, - 5C4604FC6F4BCEFFF1F4E33763EDA7EA /* poller.h in Copy src/core/lib/event_engine Private Headers */, - 614999B70352BF230BD0EBBDF80E5667 /* socket_notifier.h in Copy src/core/lib/event_engine Private Headers */, - F4358B98BC5FAE67D40A06FAA0F03530 /* thread_pool.h in Copy src/core/lib/event_engine Private Headers */, - B96C1712BDBB20B0BCD535F153D3508A /* time_util.h in Copy src/core/lib/event_engine Private Headers */, - 59E6FE685B30608693826594FC261A91 /* trace.h in Copy src/core/lib/event_engine Private Headers */, - 28C846B2157061EA45E3F01121DD5368 /* utils.h in Copy src/core/lib/event_engine Private Headers */, - ); - name = "Copy src/core/lib/event_engine Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - C76D2FBADC5F3EA6A02B2C6B496A6F99 /* Copy src/core/ext/upb-generated/xds/core/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/xds/core/v3"; - dstSubfolderSpec = 16; - files = ( - DF5B6B93993AD7830F4ED1954C9D73F4 /* authority.upb.h in Copy src/core/ext/upb-generated/xds/core/v3 Private Headers */, - D9B4D94EA0EFFC01A03975F91B39393A /* collection_entry.upb.h in Copy src/core/ext/upb-generated/xds/core/v3 Private Headers */, - 325E9823394874EB00EAEB88F0FBF5D9 /* context_params.upb.h in Copy src/core/ext/upb-generated/xds/core/v3 Private Headers */, - C4CAF050EB0BEA02D4288D4A677390D0 /* extension.upb.h in Copy src/core/ext/upb-generated/xds/core/v3 Private Headers */, - 2DA356E1EA9C2C3F737F34EF6B671155 /* resource.upb.h in Copy src/core/ext/upb-generated/xds/core/v3 Private Headers */, - EF5921CCBEBA0B31BD09B65DD090B71F /* resource_locator.upb.h in Copy src/core/ext/upb-generated/xds/core/v3 Private Headers */, - 1F387A11685186156734CE86CAF3E410 /* resource_name.upb.h in Copy src/core/ext/upb-generated/xds/core/v3 Private Headers */, - ); - name = "Copy src/core/ext/upb-generated/xds/core/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - C7DE63AADF3A5D6689527D496CBD1EC8 /* Copy crypto/obj Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/crypto/obj"; - dstSubfolderSpec = 16; - files = ( - C942BB5C5DFBD7294446E8EBA4A18606 /* obj_dat.h in Copy crypto/obj Private Headers */, - ); - name = "Copy crypto/obj Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - C8EF870225DBF0706B5097BA85E700D9 /* Copy src/core/ext/upb-generated/envoy/type/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/type/v3"; - dstSubfolderSpec = 16; - files = ( - CD2A55585CFF38EC9A960E6B1B24F211 /* hash_policy.upb.h in Copy src/core/ext/upb-generated/envoy/type/v3 Private Headers */, - 61EBE40ADA75D5389D259840E5D8A3E7 /* http.upb.h in Copy src/core/ext/upb-generated/envoy/type/v3 Private Headers */, - 29453E18E3C6AE473101576C6CB3A3C0 /* http_status.upb.h in Copy src/core/ext/upb-generated/envoy/type/v3 Private Headers */, - 479912C4350089142767E1319E551308 /* percent.upb.h in Copy src/core/ext/upb-generated/envoy/type/v3 Private Headers */, - 1288E05FE229296FAA1AADD8382C95DB /* range.upb.h in Copy src/core/ext/upb-generated/envoy/type/v3 Private Headers */, - AFF255B493CA6BED3038E9C679BD4209 /* ratelimit_strategy.upb.h in Copy src/core/ext/upb-generated/envoy/type/v3 Private Headers */, - B9A1B2A8A4F2980F867ED5B7B463FB46 /* ratelimit_unit.upb.h in Copy src/core/ext/upb-generated/envoy/type/v3 Private Headers */, - CFCFA4226B78503081142E98813EFE67 /* semantic_version.upb.h in Copy src/core/ext/upb-generated/envoy/type/v3 Private Headers */, - 75D389BF3E6EA08F23175FD98C5CD6A5 /* token_bucket.upb.h in Copy src/core/ext/upb-generated/envoy/type/v3 Private Headers */, - ); - name = "Copy src/core/ext/upb-generated/envoy/type/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - C981D5EB7684426E9ADE48CE6E718970 /* Copy src/core/lib/address_utils Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/address_utils"; - dstSubfolderSpec = 16; - files = ( - 1FDC0B23787FCB927AEFD3707444AAD2 /* parse_address.h in Copy src/core/lib/address_utils Private Headers */, - DFA185EC73E938C88C85144465923688 /* sockaddr_utils.h in Copy src/core/lib/address_utils Private Headers */, - ); - name = "Copy src/core/lib/address_utils Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - CA3B5893987FE115002A0C0938F7FC6B /* Copy src/core/ext/upb-generated/xds/annotations/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/xds/annotations/v3"; - dstSubfolderSpec = 16; - files = ( - D78E67EBF92351C87C9CFBA959B668D6 /* migrate.upb.h in Copy src/core/ext/upb-generated/xds/annotations/v3 Private Headers */, - A2B6EDC7537DFFBC9647A9CB38D68A11 /* security.upb.h in Copy src/core/ext/upb-generated/xds/annotations/v3 Private Headers */, - FF16E729C1CE85E26F253F5E049B8C89 /* sensitive.upb.h in Copy src/core/ext/upb-generated/xds/annotations/v3 Private Headers */, - CA65D7DF098BC8B1FF10864FA6612696 /* status.upb.h in Copy src/core/ext/upb-generated/xds/annotations/v3 Private Headers */, - DB4A4038F7E3596F2FBD04A1A0536964 /* versioning.upb.h in Copy src/core/ext/upb-generated/xds/annotations/v3 Private Headers */, - ); - name = "Copy src/core/ext/upb-generated/xds/annotations/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - CCB06B65728B8795C00B7D9EDAB46037 /* Copy src/core/ext/upbdefs-generated/envoy/extensions/filters/http/rbac/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/extensions/filters/http/rbac/v3"; - dstSubfolderSpec = 16; - files = ( - D9698F8BE47ED3CC29FB7EC502B72408 /* rbac.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/extensions/filters/http/rbac/v3 Private Headers */, - ); - name = "Copy src/core/ext/upbdefs-generated/envoy/extensions/filters/http/rbac/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - CDE77C88D6CD7F47DF930ABA888A3D52 /* Copy src/core/lib/resolver Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/resolver"; - dstSubfolderSpec = 16; - files = ( - 1CD51F02A6945064DD11701DEA3EF9CB /* resolver.h in Copy src/core/lib/resolver Private Headers */, - B065B4425FBFD82374B4A3694A858F7B /* resolver_factory.h in Copy src/core/lib/resolver Private Headers */, - 059EED82F674F15EBA741168A2F5F8F2 /* resolver_registry.h in Copy src/core/lib/resolver Private Headers */, - 1D9A2B516AFE580896F7756A44DE832C /* server_address.h in Copy src/core/lib/resolver Private Headers */, - ); - name = "Copy src/core/lib/resolver Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - CFADF0AA4DBC51575D3A1BA30BB91DA5 /* Copy crypto/fipsmodule/ec Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/crypto/fipsmodule/ec"; - dstSubfolderSpec = 16; - files = ( - E4ED624A1D7FA9245076FE1C678A717C /* internal.h in Copy crypto/fipsmodule/ec Private Headers */, - AAA6E29D530278E66A1E907597482E42 /* p256-x86_64.h in Copy crypto/fipsmodule/ec Private Headers */, - 470CEBAB48829F8F8571FC7843275A9F /* p256-x86_64-table.h in Copy crypto/fipsmodule/ec Private Headers */, - 05289EB07AE5201FE43CB1969C2B008F /* p256_table.h in Copy crypto/fipsmodule/ec Private Headers */, - ); - name = "Copy crypto/fipsmodule/ec Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - CFF9127A2B2B65DF6383447CB8780BDF /* Copy utility Public Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/utility"; - dstSubfolderSpec = 16; - files = ( - 81256EE4177BA8EAAFB959801BFDCFDF /* utility.h in Copy utility Public Headers */, - ); - name = "Copy utility Public Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - D062971BEBAD8DEAED7D15074D23DA15 /* Copy functional Public Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/functional"; - dstSubfolderSpec = 16; - files = ( - F73B8229115E070A2678190198064D68 /* any_invocable.h in Copy functional Public Headers */, - 735D05852B3573D5F5D5B36D52D0FB40 /* bind_front.h in Copy functional Public Headers */, - 5A8C451F15E8CCAF333728633B0AB154 /* function_ref.h in Copy functional Public Headers */, - ); - name = "Copy functional Public Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - D0891E86373744EDC1CEB536FE7F4EB0 /* Copy src/core/ext/upb-generated/envoy/admin/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/admin/v3"; - dstSubfolderSpec = 16; - files = ( - 634C0EA2C991A4DDC7FDBD4B0078AF74 /* certs.upb.h in Copy src/core/ext/upb-generated/envoy/admin/v3 Private Headers */, - B7DA6751607A94190487E1195F371F1E /* clusters.upb.h in Copy src/core/ext/upb-generated/envoy/admin/v3 Private Headers */, - E48339B371F4F3A68E6FA7728E76C141 /* config_dump.upb.h in Copy src/core/ext/upb-generated/envoy/admin/v3 Private Headers */, - 0CF9AC82BA7FE64826FA5825FCA36947 /* config_dump_shared.upb.h in Copy src/core/ext/upb-generated/envoy/admin/v3 Private Headers */, - B041F2DD5C61BB5807E8C2E3DB0BA587 /* init_dump.upb.h in Copy src/core/ext/upb-generated/envoy/admin/v3 Private Headers */, - 3F0D9019F946C156C03060BAE3FFF3D5 /* listeners.upb.h in Copy src/core/ext/upb-generated/envoy/admin/v3 Private Headers */, - FA6ACA19DECD08356DF9A9C7E33E2288 /* memory.upb.h in Copy src/core/ext/upb-generated/envoy/admin/v3 Private Headers */, - EC986E38476254DAEE53A936B8D29C38 /* metrics.upb.h in Copy src/core/ext/upb-generated/envoy/admin/v3 Private Headers */, - 5E0F0ECA7CF2B545392D247067EB8D29 /* mutex_stats.upb.h in Copy src/core/ext/upb-generated/envoy/admin/v3 Private Headers */, - 668F83006E6AAB477B6A5E41F4A91660 /* server_info.upb.h in Copy src/core/ext/upb-generated/envoy/admin/v3 Private Headers */, - B58B17EDE8E11A7005C548602CE85253 /* tap.upb.h in Copy src/core/ext/upb-generated/envoy/admin/v3 Private Headers */, - ); - name = "Copy src/core/ext/upb-generated/envoy/admin/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - D0F20EF14B51D18D27D7B316E913EEEB /* Copy src/core/ext/upbdefs-generated/envoy/extensions/clusters/aggregate/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/extensions/clusters/aggregate/v3"; - dstSubfolderSpec = 16; - files = ( - E4A77DEEF8A2278C357420D2D903AEBB /* cluster.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/extensions/clusters/aggregate/v3 Private Headers */, - ); - name = "Copy src/core/ext/upbdefs-generated/envoy/extensions/clusters/aggregate/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - D1C9FECD0855458F62C52D4D5E08BCA7 /* Copy src/core/lib/security/credentials/composite Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/credentials/composite"; - dstSubfolderSpec = 16; - files = ( - 015B67D266DBAB91F2D87EA251E59ED1 /* composite_credentials.h in Copy src/core/lib/security/credentials/composite Private Headers */, - ); - name = "Copy src/core/lib/security/credentials/composite Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - D1D8B65E2DB38B2B71AB4A9B47B27F92 /* Copy src/core/ext/upbdefs-generated/envoy/service/load_stats/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/service/load_stats/v3"; - dstSubfolderSpec = 16; - files = ( - 52827F654552C08A3CBE80C3DA407B10 /* lrs.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/service/load_stats/v3 Private Headers */, - ); - name = "Copy src/core/ext/upbdefs-generated/envoy/service/load_stats/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - D1FC6894361BDC061A5255874853689D /* Copy src/core/ext/upb-generated/src/proto/grpc/lookup/v1 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/src/proto/grpc/lookup/v1"; - dstSubfolderSpec = 16; - files = ( - C957E855040FF729486698639C362FF1 /* rls.upb.h in Copy src/core/ext/upb-generated/src/proto/grpc/lookup/v1 Private Headers */, - 52E498B591DE47FABD1D8143AA08217D /* rls_config.upb.h in Copy src/core/ext/upb-generated/src/proto/grpc/lookup/v1 Private Headers */, - ); - name = "Copy src/core/ext/upb-generated/src/proto/grpc/lookup/v1 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - D2477DED9EE8B309CF5C97017C263736 /* Copy src/core/tsi/alts/handshaker Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/tsi/alts/handshaker"; - dstSubfolderSpec = 16; - files = ( - 23DEAB7A4FBE83D0C7EEA34A37A295BD /* alts_handshaker_client.h in Copy src/core/tsi/alts/handshaker Private Headers */, - 4E057C2F484173946E32412693E6501E /* alts_shared_resource.h in Copy src/core/tsi/alts/handshaker Private Headers */, - B5617E1D1B08EA42A0248EEBA633CCAB /* alts_tsi_handshaker.h in Copy src/core/tsi/alts/handshaker Private Headers */, - 39809EC8C626153E108F1C7E50A7EF0C /* alts_tsi_handshaker_private.h in Copy src/core/tsi/alts/handshaker Private Headers */, - 5590EDD97427DB57D4F40D0026277B29 /* alts_tsi_utils.h in Copy src/core/tsi/alts/handshaker Private Headers */, - 9733A59B4035610F3C7324A7E1D6FC72 /* transport_security_common_api.h in Copy src/core/tsi/alts/handshaker Private Headers */, - ); - name = "Copy src/core/tsi/alts/handshaker Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - D2BB1C4541604DE493F56292EDBD1071 /* Copy src/core/ext/upb-generated/envoy/extensions/filters/http/fault/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/extensions/filters/http/fault/v3"; - dstSubfolderSpec = 16; - files = ( - 25BF49F0E3FCCBB380C04551A33B45A9 /* fault.upb.h in Copy src/core/ext/upb-generated/envoy/extensions/filters/http/fault/v3 Private Headers */, - ); - name = "Copy src/core/ext/upb-generated/envoy/extensions/filters/http/fault/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - D2C072CA22AE32AAAFF6980837CA51E8 /* Copy src/core/lib/resource_quota Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/resource_quota"; - dstSubfolderSpec = 16; - files = ( - 7230C8BB67182CC419AF4077639FFAAD /* api.h in Copy src/core/lib/resource_quota Private Headers */, - E24D9CBE30F95519BAB1E3EBBA899BB4 /* arena.h in Copy src/core/lib/resource_quota Private Headers */, - 5C63F6FD35571772ED0949030062C7ED /* memory_quota.h in Copy src/core/lib/resource_quota Private Headers */, - 40AC1A71AB1CE892744BE8117EB7748E /* periodic_update.h in Copy src/core/lib/resource_quota Private Headers */, - DCCF67E0EE89D73E5B8F3779960D341D /* resource_quota.h in Copy src/core/lib/resource_quota Private Headers */, - 731A893C2B5DF2D1BA730358C07AE4BE /* thread_quota.h in Copy src/core/lib/resource_quota Private Headers */, - 40161038DD4852F11968BE6156021149 /* trace.h in Copy src/core/lib/resource_quota Private Headers */, - ); - name = "Copy src/core/lib/resource_quota Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - D3CECDE03724EA831A86F2B9244C26B7 /* Copy crypto/fipsmodule/des Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/crypto/fipsmodule/des"; - dstSubfolderSpec = 16; - files = ( - 00DDDCE4C2E8BB0968F5C7849464D18D /* internal.h in Copy crypto/fipsmodule/des Private Headers */, - ); - name = "Copy crypto/fipsmodule/des Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - D41013E77F65B6CBE7CF532D3855585D /* Copy src/core/ext/filters/client_channel/resolver/dns/c_ares Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/client_channel/resolver/dns/c_ares"; - dstSubfolderSpec = 16; - files = ( - EF37A5B4B90174999AD5D330222D5099 /* grpc_ares_ev_driver.h in Copy src/core/ext/filters/client_channel/resolver/dns/c_ares Private Headers */, - F9A628241C97EEB1FAD12FDAEB1C5BB4 /* grpc_ares_wrapper.h in Copy src/core/ext/filters/client_channel/resolver/dns/c_ares Private Headers */, - ); - name = "Copy src/core/ext/filters/client_channel/resolver/dns/c_ares Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - D435656C2419419ECAFFEF8537DBC262 /* Copy numeric Public Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/numeric"; - dstSubfolderSpec = 16; - files = ( - F976C757E1D420AB815E8EF4C789A3F6 /* bits.h in Copy numeric Public Headers */, - 1CE59A9F37807E0CA7DDE22C059DE868 /* int128.h in Copy numeric Public Headers */, - 2027B9D7B8036F4EF578CA6E6C5E97FD /* int128_have_intrinsic.inc in Copy numeric Public Headers */, - 2A763C292724E5FEBD32CB0065138218 /* int128_no_intrinsic.inc in Copy numeric Public Headers */, - ); - name = "Copy numeric Public Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - D4DB3C019290229A6831FFB837668483 /* Copy src/core/ext/upbdefs-generated/udpa/annotations Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/udpa/annotations"; - dstSubfolderSpec = 16; - files = ( - E48A494C0F436EDCC9F6EE32758A2105 /* migrate.upbdefs.h in Copy src/core/ext/upbdefs-generated/udpa/annotations Private Headers */, - AC454DB998FBD51AFF2D64AA9B665882 /* security.upbdefs.h in Copy src/core/ext/upbdefs-generated/udpa/annotations Private Headers */, - 94637ACA5AE9F2B04551F0279D04D503 /* sensitive.upbdefs.h in Copy src/core/ext/upbdefs-generated/udpa/annotations Private Headers */, - DBB1AFAC686C983A2F55B16B99084059 /* status.upbdefs.h in Copy src/core/ext/upbdefs-generated/udpa/annotations Private Headers */, - 4E188F4095FBE740D64591916B878523 /* versioning.upbdefs.h in Copy src/core/ext/upbdefs-generated/udpa/annotations Private Headers */, - ); - name = "Copy src/core/ext/upbdefs-generated/udpa/annotations Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - D59B1543A1AC40CF7E09D6E18FAF48AC /* Copy src/core/tsi Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/tsi"; - dstSubfolderSpec = 16; - files = ( - 8B327A21CE322D2841FE4A6C04C95F20 /* fake_transport_security.h in Copy src/core/tsi Private Headers */, - AD84B48322A81DE909CCACFC94449CAF /* local_transport_security.h in Copy src/core/tsi Private Headers */, - F9D60CFCA0156F777A291FBF1748028A /* ssl_transport_security.h in Copy src/core/tsi Private Headers */, - 0E999B2DE1992CB8E188E60B6C3D4FBE /* ssl_types.h in Copy src/core/tsi Private Headers */, - 15FDA1228B1FE138C5182463894CA8C4 /* transport_security.h in Copy src/core/tsi Private Headers */, - 32975A8A60AB2A7E92B039C615ADAB09 /* transport_security_grpc.h in Copy src/core/tsi Private Headers */, - 43BB2E2D151AC86F1C19D1DF2C01B5B1 /* transport_security_interface.h in Copy src/core/tsi Private Headers */, - ); - name = "Copy src/core/tsi Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - D5EA3F0D51F32588A1D651BA86286185 /* Copy src/core/ext/upb-generated/xds/type/matcher/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/xds/type/matcher/v3"; - dstSubfolderSpec = 16; - files = ( - 8BD9A3D415EB76B97BD27108A22B6092 /* matcher.upb.h in Copy src/core/ext/upb-generated/xds/type/matcher/v3 Private Headers */, - 1B19AFDD1F21D7C46D76E6E1C064A8A5 /* regex.upb.h in Copy src/core/ext/upb-generated/xds/type/matcher/v3 Private Headers */, - A0128836B6EEC67FE231F95158507DEE /* string.upb.h in Copy src/core/ext/upb-generated/xds/type/matcher/v3 Private Headers */, - ); - name = "Copy src/core/ext/upb-generated/xds/type/matcher/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - D671BBFA51D21C1393665A30F60428E0 /* Copy types Public Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/types"; - dstSubfolderSpec = 16; - files = ( - B22F5C77E63B580F593A29F9D9F853E1 /* any.h in Copy types Public Headers */, - 92B3A47B945C141DA5D4F16F1B252E4E /* bad_any_cast.h in Copy types Public Headers */, - 16C09606B9E57B58F4D4E1B5BC6A9992 /* bad_optional_access.h in Copy types Public Headers */, - 040E92DACB0C607A26EFCFEF159ACE55 /* bad_variant_access.h in Copy types Public Headers */, - D38DC8FEEAAD59E35E68011A3D297293 /* compare.h in Copy types Public Headers */, - D3AC99DBF8AC87DC310633BEC97BB8A6 /* optional.h in Copy types Public Headers */, - 9EB5F46B8B8B4F44F5B806DCF9AB9F5A /* span.h in Copy types Public Headers */, - 21718F264DFD0D48459090E2EC2D57BB /* variant.h in Copy types Public Headers */, - ); - name = "Copy types Public Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - D70425A9E512B600D050773A890E290D /* Copy src/core/ext/transport/chttp2/alpn Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/transport/chttp2/alpn"; - dstSubfolderSpec = 16; - files = ( - 25120329A8F762D35DA60A387C2AB4E3 /* alpn.h in Copy src/core/ext/transport/chttp2/alpn Private Headers */, - ); - name = "Copy src/core/ext/transport/chttp2/alpn Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - D76C8A0A4673C2F79C1597F4EBF37B43 /* Copy src/core/ext/filters/client_channel/resolver/fake Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/client_channel/resolver/fake"; - dstSubfolderSpec = 16; - files = ( - EF56F37BE7B3F54B3DBD241E87CF586A /* fake_resolver.h in Copy src/core/ext/filters/client_channel/resolver/fake Private Headers */, - ); - name = "Copy src/core/ext/filters/client_channel/resolver/fake Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - D76D257D96948276B3D3EDCABC61C9E0 /* Copy random/internal Public Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/random/internal"; - dstSubfolderSpec = 16; - files = ( - 36ACB367EFDD2B50C3C6CBCF6C732935 /* distribution_caller.h in Copy random/internal Public Headers */, - BEBDD17758477541CACB11E723DEB73E /* fast_uniform_bits.h in Copy random/internal Public Headers */, - 618A811055815A0718E55E50FD79F7B3 /* fastmath.h in Copy random/internal Public Headers */, - 3135A9BBE3CF4759D83CE89E7E3D340D /* generate_real.h in Copy random/internal Public Headers */, - E3FEA61064C666D4F0D409ADC2BC6762 /* iostream_state_saver.h in Copy random/internal Public Headers */, - 2D9C0997B81CE21E2D04BD39472C9BF3 /* nonsecure_base.h in Copy random/internal Public Headers */, - 126A98473732996B4915E02CBB7A3906 /* pcg_engine.h in Copy random/internal Public Headers */, - DE7A76DF384FE4C0555B3A2F121EF15E /* platform.h in Copy random/internal Public Headers */, - 0C840EC98A6937D9479C6E8D14D60E0A /* pool_urbg.h in Copy random/internal Public Headers */, - B5A9199766BFA2B5E52EADCB17420F73 /* randen.h in Copy random/internal Public Headers */, - 69936D40844C0EC1AB4A7EBBBCA1BD3A /* randen_detect.h in Copy random/internal Public Headers */, - 21E284BAA4F140877704DCAEBFEE0FDE /* randen_engine.h in Copy random/internal Public Headers */, - 38234C31FFF7F8AA5C66EBE81F034735 /* randen_hwaes.h in Copy random/internal Public Headers */, - 1D6BCD7B6797CA6384EB6F6523682245 /* randen_slow.h in Copy random/internal Public Headers */, - 09F372CC31E501CC9825DF5E6E879FDE /* randen_traits.h in Copy random/internal Public Headers */, - 42A344DD9B55E03B5F8C76709064DF06 /* salted_seed_seq.h in Copy random/internal Public Headers */, - FDF353D1D5F813E9EED3B9CCBD4A0808 /* seed_material.h in Copy random/internal Public Headers */, - C5B058BD660E327B4C9F91B0A6CC1F6A /* traits.h in Copy random/internal Public Headers */, - 9CB945B056A532009D099682CAF7BC3D /* uniform_helper.h in Copy random/internal Public Headers */, - 020B073E0B9914E5722100777CB82E5D /* wide_multiply.h in Copy random/internal Public Headers */, - ); - name = "Copy random/internal Public Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - D7EC4A7096837988A114F24E4269B804 /* Copy src/core/ext/filters/client_channel/lb_policy Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/client_channel/lb_policy"; - dstSubfolderSpec = 16; - files = ( - 420AA946F7E6112E93E2FCD711CA1DA3 /* address_filtering.h in Copy src/core/ext/filters/client_channel/lb_policy Private Headers */, - DAEE17D0B567C103D18FB8DEDE9E3EB7 /* backend_metric_data.h in Copy src/core/ext/filters/client_channel/lb_policy Private Headers */, - DFDED3A8A0451B42A71B61D670038D3E /* child_policy_handler.h in Copy src/core/ext/filters/client_channel/lb_policy Private Headers */, - FB3CF3C81CDBED8A22FBC60390CFDA1A /* oob_backend_metric.h in Copy src/core/ext/filters/client_channel/lb_policy Private Headers */, - 41646645BA075D643A8C3B069B13761B /* subchannel_list.h in Copy src/core/ext/filters/client_channel/lb_policy Private Headers */, - ); - name = "Copy src/core/ext/filters/client_channel/lb_policy Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - D8EBE42A124F75DB6A1EA39DF7879D3E /* Copy src/core/ext/upbdefs-generated/envoy/extensions/filters/network/http_connection_manager/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/extensions/filters/network/http_connection_manager/v3"; - dstSubfolderSpec = 16; - files = ( - 1C08C3A519404AF7F733B2CEA6625911 /* http_connection_manager.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/extensions/filters/network/http_connection_manager/v3 Private Headers */, - ); - name = "Copy src/core/ext/upbdefs-generated/envoy/extensions/filters/network/http_connection_manager/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - D91D36E349A07E0335DF98AE72A4D832 /* Copy third_party/upb/upb Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/third_party/upb/upb"; - dstSubfolderSpec = 16; - files = ( - 877DB4E6C5A9DEBFAF1FC964595B0723 /* arena.h in Copy third_party/upb/upb Private Headers */, - 0AC04A30DAA43DCC577B51A904A190E0 /* array.h in Copy third_party/upb/upb Private Headers */, - CAA76ADB2BE6FC12EC2420016D80195D /* collections.h in Copy third_party/upb/upb Private Headers */, - 5D1012C4E926592322172E0120BC9B2B /* decode.h in Copy third_party/upb/upb Private Headers */, - 0B8D1529FDE745E5B4F955D8F1309C34 /* decode_fast.h in Copy third_party/upb/upb Private Headers */, - 903519530EFE8AC260343017DCFA0ED2 /* def.h in Copy third_party/upb/upb Private Headers */, - 4DB0D5F5B53AECFFF53D46108647ACA0 /* def.hpp in Copy third_party/upb/upb Private Headers */, - D238CF52E852C83DAA880DE6C7B9F711 /* encode.h in Copy third_party/upb/upb Private Headers */, - 21FE4BA123285FA0848FA1A1891176A0 /* extension_registry.h in Copy third_party/upb/upb Private Headers */, - DD554F717E02370E59D82D7D0183EE1C /* json_decode.h in Copy third_party/upb/upb Private Headers */, - 5D31EC1267F1ACA17E0904C21B44E523 /* json_encode.h in Copy third_party/upb/upb Private Headers */, - 02D3D4B2775C0EB72A80ED26AEDB4FA8 /* map.h in Copy third_party/upb/upb Private Headers */, - 0D1BEF0B38886D58F84C9C27294446F2 /* message_value.h in Copy third_party/upb/upb Private Headers */, - 7E89D654F02055621D75964AC6D59EDF /* mini_table.h in Copy third_party/upb/upb Private Headers */, - E12EBB62928208D902F68BB8F8F95B87 /* mini_table.hpp in Copy third_party/upb/upb Private Headers */, - 74D35B36E349B79851B2C91646C7A373 /* msg.h in Copy third_party/upb/upb Private Headers */, - C4B1D875F4582867B2F75938B905A5E7 /* msg_internal.h in Copy third_party/upb/upb Private Headers */, - 3781D236A59D26C1B9F10D99A78A718E /* port_def.inc in Copy third_party/upb/upb Private Headers */, - 4D9A9D5078D5442990C89738CDDC95BE /* port_undef.inc in Copy third_party/upb/upb Private Headers */, - 6554485C994BEB8DEB26C24D40F5A26F /* reflection.h in Copy third_party/upb/upb Private Headers */, - C033099021BDEF6E765AB2EC6DAA9FCF /* reflection.hpp in Copy third_party/upb/upb Private Headers */, - B92B6ABF777B6DFA0F617A567FEF53EA /* status.h in Copy third_party/upb/upb Private Headers */, - 5EBF29765D477A139A139B19CB03AB79 /* table_internal.h in Copy third_party/upb/upb Private Headers */, - A2B615114B6F3500E10E31033C4A3783 /* text_encode.h in Copy third_party/upb/upb Private Headers */, - 5BE88DE5D7564A0403FF87E8E305D05B /* upb.h in Copy third_party/upb/upb Private Headers */, - 01BB2E7A02698FD0EC183995A839A719 /* upb.hpp in Copy third_party/upb/upb Private Headers */, - ); - name = "Copy third_party/upb/upb Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - D9F1C3765E8B5AAAFB97FDAE1A4365EC /* Copy src/core/lib/slice Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/slice"; - dstSubfolderSpec = 16; - files = ( - FC784B2FD01A0AC476BB846198F56003 /* b64.h in Copy src/core/lib/slice Private Headers */, - BC775D5205DC3AA54983E657F6C56E4B /* percent_encoding.h in Copy src/core/lib/slice Private Headers */, - 80873C3FC39139412A734AB96927DCDB /* slice.h in Copy src/core/lib/slice Private Headers */, - AA2809E40D7C6FE46A8632D33768FDC8 /* slice_buffer.h in Copy src/core/lib/slice Private Headers */, - B2EEBA1A6E7739A282A436B7131FBD61 /* slice_internal.h in Copy src/core/lib/slice Private Headers */, - 087A169E3BAEBBD73A1C30A1C3493A75 /* slice_refcount.h in Copy src/core/lib/slice Private Headers */, - B2D985F4DF8764D2D05C8B4D9716A7D5 /* slice_refcount_base.h in Copy src/core/lib/slice Private Headers */, - 3A7C59427F91776A66C05E3F38F02364 /* slice_string_helpers.h in Copy src/core/lib/slice Private Headers */, - ); - name = "Copy src/core/lib/slice Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - DA23B208D23F6CC2666BD2FD591F23AB /* Copy debugging/internal Public Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/debugging/internal"; - dstSubfolderSpec = 16; - files = ( - 502E2FD71DEDFB7CA6B883A427CBFEA2 /* address_is_readable.h in Copy debugging/internal Public Headers */, - FC54B8B8D6EFD2F8D6B5F988887D33D8 /* demangle.h in Copy debugging/internal Public Headers */, - D579F8FD93C9FB25EF6F80E3D8CCC56F /* elf_mem_image.h in Copy debugging/internal Public Headers */, - 86E4DB2BBFA85C439F88FF78245B5E71 /* stacktrace_aarch64-inl.inc in Copy debugging/internal Public Headers */, - 2195F72AE3D105C05B2AB7FCBFA069DD /* stacktrace_arm-inl.inc in Copy debugging/internal Public Headers */, - DE89FF44C648AE262AC96D2A33AD4A29 /* stacktrace_config.h in Copy debugging/internal Public Headers */, - 6F3483D1FED043EEA6A7621B3A7FFEAD /* stacktrace_emscripten-inl.inc in Copy debugging/internal Public Headers */, - 979C045B04E1B066BE60356B99FEF6F2 /* stacktrace_generic-inl.inc in Copy debugging/internal Public Headers */, - 1D1351F186326A8800F93DA4609C6700 /* stacktrace_powerpc-inl.inc in Copy debugging/internal Public Headers */, - 4357E5D477C867B350C9B14AB135A508 /* stacktrace_riscv-inl.inc in Copy debugging/internal Public Headers */, - 3C15E8DA2AA32436E129351D53D2C5C0 /* stacktrace_unimplemented-inl.inc in Copy debugging/internal Public Headers */, - 45EEE4F7F394569F6EE559FE86953FD3 /* stacktrace_win32-inl.inc in Copy debugging/internal Public Headers */, - 69A838028B07EC27E3BEED67C16CF715 /* stacktrace_x86-inl.inc in Copy debugging/internal Public Headers */, - FFBF7D2C7C29F6812FBAA2FAC4091657 /* symbolize.h in Copy debugging/internal Public Headers */, - 41EACE70F8739F533E7B72CF462B4B98 /* vdso_support.h in Copy debugging/internal Public Headers */, - ); - name = "Copy debugging/internal Public Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - DAD1F414A7CDCA73A9028645E9A831F3 /* Copy cleanup/internal Public Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/cleanup/internal"; - dstSubfolderSpec = 16; - files = ( - 19631044917DE84BDA93823BC94C5E8B /* cleanup.h in Copy cleanup/internal Public Headers */, - ); - name = "Copy cleanup/internal Public Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - DB5B8E0F290659F74E33FC86599A2626 /* Copy src/core/ext/upbdefs-generated/envoy/config/listener/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/config/listener/v3"; - dstSubfolderSpec = 16; - files = ( - D6A8DA12D08B3DAAA0B05CFCAEA55FA1 /* api_listener.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/listener/v3 Private Headers */, - 05E6BBA270D289F7AF22FDC02496A48F /* listener.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/listener/v3 Private Headers */, - 955D5A1279D39186754488917BA90121 /* listener_components.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/listener/v3 Private Headers */, - CC540967F7DF37159D1C6C0127F91926 /* quic_config.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/listener/v3 Private Headers */, - 0F37C5AE1C501B49FA38B1639C3D9E82 /* udp_listener_config.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/listener/v3 Private Headers */, - ); - name = "Copy src/core/ext/upbdefs-generated/envoy/config/listener/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - DBD8B0E229FEB5DA077C0A46923BEFA4 /* Copy src/core/ext/upbdefs-generated/envoy/config/overload/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/config/overload/v3"; - dstSubfolderSpec = 16; - files = ( - 1F344977C108018C48168C5D9B49CC2D /* overload.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/overload/v3 Private Headers */, - ); - name = "Copy src/core/ext/upbdefs-generated/envoy/config/overload/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - DC265AEB4B1B21EA20D1D89E7841225D /* Copy src/core/lib/security/security_connector/ssl Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/security_connector/ssl"; - dstSubfolderSpec = 16; - files = ( - E1F3F9957F5F245D9908DE9315155913 /* ssl_security_connector.h in Copy src/core/lib/security/security_connector/ssl Private Headers */, - ); - name = "Copy src/core/lib/security/security_connector/ssl Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - DC779881808CC3547C66907BDB6B7E7D /* Copy src/cpp/server Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/cpp/server"; - dstSubfolderSpec = 16; - files = ( - FF303CF8556BF42C812271ABB7C3C72A /* dynamic_thread_pool.h in Copy src/cpp/server Private Headers */, - 83B9DCCCC8B62FB8F7FDECA749C59CC6 /* external_connection_acceptor_impl.h in Copy src/cpp/server Private Headers */, - 8C8D6CC70170D6DCB02E04337FE25798 /* secure_server_credentials.h in Copy src/cpp/server Private Headers */, - FD3DBC15B63461F1DB28065CD04B1970 /* thread_pool_interface.h in Copy src/cpp/server Private Headers */, - ); - name = "Copy src/cpp/server Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - DC9410FE9EEA047AE1114DE2DA5E2338 /* Copy hash/internal Public Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/hash/internal"; - dstSubfolderSpec = 16; - files = ( - 44E1E439FBEA444E90CD6D2058DA2A38 /* city.h in Copy hash/internal Public Headers */, - 1FC43B9FDA5F1794FFCBC84BF52CCBAA /* hash.h in Copy hash/internal Public Headers */, - 8EFB1A0113649DF6EAC574FE712EC30D /* low_level_hash.h in Copy hash/internal Public Headers */, - ); - name = "Copy hash/internal Public Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - DC941B3D5E94DE023FD4DFDB82436FD1 /* Copy src/core/ext/upbdefs-generated/envoy/config/route/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/config/route/v3"; - dstSubfolderSpec = 16; - files = ( - 69704BB9FA55D995AFF136705D18C558 /* route.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/route/v3 Private Headers */, - 37BC120DC8C4244B52768277C9393D03 /* route_components.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/route/v3 Private Headers */, - 31F3CB0538A9CF8261D6EA62B2AB9238 /* scoped_route.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/route/v3 Private Headers */, - ); - name = "Copy src/core/ext/upbdefs-generated/envoy/config/route/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - DDA2A3EEB9D79A200796C8F6C13902A1 /* Copy src/core/lib/security/security_connector/tls Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/security_connector/tls"; - dstSubfolderSpec = 16; - files = ( - DDBD68AF8F76EBA53C993C829CD16BD4 /* tls_security_connector.h in Copy src/core/lib/security/security_connector/tls Private Headers */, - ); - name = "Copy src/core/lib/security/security_connector/tls Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - E031035D64610F4470636831B3DCE02F /* Copy crypto/fipsmodule/bn Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/crypto/fipsmodule/bn"; - dstSubfolderSpec = 16; - files = ( - 9EC55EECF94C121CCA69BE87D4960DC5 /* internal.h in Copy crypto/fipsmodule/bn Private Headers */, - 692752C142CDC0D3EA794E978A7C55D7 /* rsaz_exp.h in Copy crypto/fipsmodule/bn Private Headers */, - ); - name = "Copy crypto/fipsmodule/bn Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - E035889DA5080A69779B5756BF2CF6E9 /* Copy src/core/ext/upb-generated/envoy/extensions/filters/common/fault/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/extensions/filters/common/fault/v3"; - dstSubfolderSpec = 16; - files = ( - 9F344512158E34C69847ACB647F08306 /* fault.upb.h in Copy src/core/ext/upb-generated/envoy/extensions/filters/common/fault/v3 Private Headers */, - ); - name = "Copy src/core/ext/upb-generated/envoy/extensions/filters/common/fault/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - E163AABEEC2885184FE3F2254F7B79FB /* Copy src/core/ext/upb-generated/envoy/extensions/filters/http/rbac/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/extensions/filters/http/rbac/v3"; - dstSubfolderSpec = 16; - files = ( - 79821138CEC1069B5A49E0CC5F8A528C /* rbac.upb.h in Copy src/core/ext/upb-generated/envoy/extensions/filters/http/rbac/v3 Private Headers */, - ); - name = "Copy src/core/ext/upb-generated/envoy/extensions/filters/http/rbac/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - E18B4A06D3FAC1AA7CF571C6E4A754A1 /* Copy src/core/ext/upbdefs-generated/envoy/extensions/filters/http/rbac/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/extensions/filters/http/rbac/v3"; - dstSubfolderSpec = 16; - files = ( - EADF036CF21B4A564D654EAE8D7F5EDC /* rbac.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/extensions/filters/http/rbac/v3 Private Headers */, - ); - name = "Copy src/core/ext/upbdefs-generated/envoy/extensions/filters/http/rbac/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - E1D4E81E201353A353D53426BED23D6A /* Copy src/core/ext/upb-generated/envoy/config/listener/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/config/listener/v3"; - dstSubfolderSpec = 16; - files = ( - 9CA2A991595FD31161E5EDCCB3F6F062 /* api_listener.upb.h in Copy src/core/ext/upb-generated/envoy/config/listener/v3 Private Headers */, - 26200129B7D860762DD35CD3F8935236 /* listener.upb.h in Copy src/core/ext/upb-generated/envoy/config/listener/v3 Private Headers */, - D0981A79B9297F5C699230E46BBE11A7 /* listener_components.upb.h in Copy src/core/ext/upb-generated/envoy/config/listener/v3 Private Headers */, - DB2D40BF10EAA44B4F48E2FFF1E03BEB /* quic_config.upb.h in Copy src/core/ext/upb-generated/envoy/config/listener/v3 Private Headers */, - B0484711B0E003ABC22B70E35F39299D /* udp_listener_config.upb.h in Copy src/core/ext/upb-generated/envoy/config/listener/v3 Private Headers */, - ); - name = "Copy src/core/ext/upb-generated/envoy/config/listener/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - E248A4838914103CBF5400D845678A95 /* Copy src/core/ext/upb-generated/xds/data/orca/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/xds/data/orca/v3"; - dstSubfolderSpec = 16; - files = ( - 484D8B6A158B4E1C4E079F70E800B4E3 /* orca_load_report.upb.h in Copy src/core/ext/upb-generated/xds/data/orca/v3 Private Headers */, - ); - name = "Copy src/core/ext/upb-generated/xds/data/orca/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - E25DE5165931D33F0BE3CD431D4F42BA /* Copy src/core/lib/security/util Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/util"; - dstSubfolderSpec = 16; - files = ( - 31DECEDED6E13673F833C8B493D7FAD2 /* json_util.h in Copy src/core/lib/security/util Private Headers */, - ); - name = "Copy src/core/lib/security/util Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - E271DC035A9C0B1F9D478B59A744C629 /* Copy src/core/ext/upbdefs-generated/envoy/config/metrics/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/config/metrics/v3"; - dstSubfolderSpec = 16; - files = ( - 462A794A8D77D95F03ABA240C7DD24C5 /* metrics_service.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/metrics/v3 Private Headers */, - B9BEBFC77D991FC5630EC0C0C68CBAFD /* stats.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/metrics/v3 Private Headers */, - ); - name = "Copy src/core/ext/upbdefs-generated/envoy/config/metrics/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - E2AE18269CA078D8438396F9557E387C /* Copy src/core/lib/promise/detail Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/promise/detail"; - dstSubfolderSpec = 16; - files = ( - 15645393B5A237F5FE96FAC4572D982A /* basic_seq.h in Copy src/core/lib/promise/detail Private Headers */, - BBB37EE5D2EA181C70610B7BFC565203 /* promise_factory.h in Copy src/core/lib/promise/detail Private Headers */, - ED649489E67586BAD28656F39FE7E538 /* promise_like.h in Copy src/core/lib/promise/detail Private Headers */, - 506BCFE5860E61994309DA080A2E21B7 /* status.h in Copy src/core/lib/promise/detail Private Headers */, - ); - name = "Copy src/core/lib/promise/detail Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - E32CED16F900CAF1835D47830E2B5F53 /* Copy src/core/ext/upbdefs-generated/google/rpc Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/google/rpc"; - dstSubfolderSpec = 16; - files = ( - 5BC28840A1F2B156452B521342AF63E1 /* status.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/rpc Private Headers */, - ); - name = "Copy src/core/ext/upbdefs-generated/google/rpc Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - E345615082731935B10BF000C111932E /* Copy strings/internal Public Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/strings/internal"; - dstSubfolderSpec = 16; - files = ( - 51CB1AF147900C0D890744811A45524D /* char_map.h in Copy strings/internal Public Headers */, - DB8326918143052DAD0B731AF355300E /* charconv_bigint.h in Copy strings/internal Public Headers */, - F07D2C31E95DE4BA771138FF4626860B /* charconv_parse.h in Copy strings/internal Public Headers */, - 02167C9F6F50687F0A7CA0BB606B2386 /* cord_data_edge.h in Copy strings/internal Public Headers */, - 3ADD71CE854DC8AE2905A252091D9BBF /* cord_internal.h in Copy strings/internal Public Headers */, - 9220F1CAD034A3AD7FB8145A51E17A9C /* cord_rep_btree.h in Copy strings/internal Public Headers */, - 92600DA322E0D4EE44E0E7EED39F0768 /* cord_rep_btree_navigator.h in Copy strings/internal Public Headers */, - 0260A8770B4C07A07C92B47380636FCC /* cord_rep_btree_reader.h in Copy strings/internal Public Headers */, - 06BEF24306841AFE3EA3F70D538E77CA /* cord_rep_consume.h in Copy strings/internal Public Headers */, - E18FFE5247FD75E69E281A3BF9FA1697 /* cord_rep_crc.h in Copy strings/internal Public Headers */, - 36684044929502FBBDF6D0B2E39B342E /* cord_rep_flat.h in Copy strings/internal Public Headers */, - 8C918C7AD6931C876C0B7DE7E1F20903 /* cord_rep_ring.h in Copy strings/internal Public Headers */, - DBA36B267BF7ECE1DB8C24A4F030E501 /* cord_rep_ring_reader.h in Copy strings/internal Public Headers */, - 0381DD598A7751F9B20D292A1ACDAACA /* cordz_functions.h in Copy strings/internal Public Headers */, - 25D8CD1D759B6E7F9DB9149A0FDA1F86 /* cordz_handle.h in Copy strings/internal Public Headers */, - AFA61ED640357B1572BEC60E08E9A8F3 /* cordz_info.h in Copy strings/internal Public Headers */, - 2E81774258298375303F9B97AE96EBFC /* cordz_statistics.h in Copy strings/internal Public Headers */, - 3DB90AA1075B33229CBC152B6DA5C963 /* cordz_update_scope.h in Copy strings/internal Public Headers */, - F3B30C4122085293E44C36DF6FB33ED7 /* cordz_update_tracker.h in Copy strings/internal Public Headers */, - 42EFB86F705A498D6F84F30D49C7C290 /* escaping.h in Copy strings/internal Public Headers */, - 7194024FEB64B499D64849F73AE72C2A /* memutil.h in Copy strings/internal Public Headers */, - 1603064782569C92A1B2BB28C6E18BFE /* ostringstream.h in Copy strings/internal Public Headers */, - 626271530EA6D728D129BBD85F087713 /* resize_uninitialized.h in Copy strings/internal Public Headers */, - CF4B9FC9209D324FB44906A5A5155B81 /* stl_type_traits.h in Copy strings/internal Public Headers */, - 1A98FB47F5278669C041EC9B4C8C1562 /* str_join_internal.h in Copy strings/internal Public Headers */, - 2C4C35325B3C692920665C994C97C0FB /* str_split_internal.h in Copy strings/internal Public Headers */, - 65E9558696589618EC5624B13A9622AA /* string_constant.h in Copy strings/internal Public Headers */, - D846F4330CBD3C155914907D25047B49 /* utf8.h in Copy strings/internal Public Headers */, - ); - name = "Copy strings/internal Public Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - E36B44A35B787E26E3E2FED9DD3AC231 /* Copy src/core/ext/upbdefs-generated/envoy/config/common/matcher/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/config/common/matcher/v3"; - dstSubfolderSpec = 16; - files = ( - 7C56125EFC7A4EC3FC4C888374D7F8C8 /* matcher.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/common/matcher/v3 Private Headers */, - ); - name = "Copy src/core/ext/upbdefs-generated/envoy/config/common/matcher/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - E5079F2A2921B6D30EE8D8BE8A9A60E7 /* Copy src/core/lib/backoff Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/backoff"; - dstSubfolderSpec = 16; - files = ( - DE22F3028B701D39B1C1C7DF8B732384 /* backoff.h in Copy src/core/lib/backoff Private Headers */, - ); - name = "Copy src/core/lib/backoff Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - E5F155298D102FB98CACDDA7B9D266F0 /* Copy src/core/ext/upb-generated/envoy/extensions/filters/http/router/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/extensions/filters/http/router/v3"; - dstSubfolderSpec = 16; - files = ( - D0CF0898C98E0C758AA55DFD194F5D78 /* router.upb.h in Copy src/core/ext/upb-generated/envoy/extensions/filters/http/router/v3 Private Headers */, - ); - name = "Copy src/core/ext/upb-generated/envoy/extensions/filters/http/router/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - E713B877A9C536A8764D4084590970E4 /* Copy src/core/ext/filters/client_channel/lb_policy/ring_hash Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/client_channel/lb_policy/ring_hash"; - dstSubfolderSpec = 16; - files = ( - F073B63791E4557C1DF43D5FF3E3284F /* ring_hash.h in Copy src/core/ext/filters/client_channel/lb_policy/ring_hash Private Headers */, - ); - name = "Copy src/core/ext/filters/client_channel/lb_policy/ring_hash Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - E73FAE79B48277BE3F2AF53CEBDF5443 /* Copy src/core/ext/transport/inproc Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/transport/inproc"; - dstSubfolderSpec = 16; - files = ( - 0C5AD7F1C907CBC906E639F6AC0338F5 /* inproc_transport.h in Copy src/core/ext/transport/inproc Private Headers */, - ); - name = "Copy src/core/ext/transport/inproc Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - E74F2162150FDA959D7E61076FFB579A /* Copy src/core/lib/security/credentials/local Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/credentials/local"; - dstSubfolderSpec = 16; - files = ( - 183375FE65EE463AF0190980AE6D6BED /* local_credentials.h in Copy src/core/lib/security/credentials/local Private Headers */, - ); - name = "Copy src/core/lib/security/credentials/local Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - E7A78840738AE282BF061D15015BA030 /* Copy src/core/ext/filters/fault_injection Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/fault_injection"; - dstSubfolderSpec = 16; - files = ( - F0E40BB277970818422FBD9D8F1100FC /* fault_injection_filter.h in Copy src/core/ext/filters/fault_injection Private Headers */, - 0B9A231243A4249F09F2AE495402CF13 /* service_config_parser.h in Copy src/core/ext/filters/fault_injection Private Headers */, - ); - name = "Copy src/core/ext/filters/fault_injection Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - E7DE287FEB9F455A61D143F767A8985C /* Copy src/core/ext/upb-generated/envoy/config/common/matcher/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/config/common/matcher/v3"; - dstSubfolderSpec = 16; - files = ( - 966FD59BBB980E91868916FC5E318733 /* matcher.upb.h in Copy src/core/ext/upb-generated/envoy/config/common/matcher/v3 Private Headers */, - ); - name = "Copy src/core/ext/upb-generated/envoy/config/common/matcher/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - E7E4EE290131A83F9A73DDC58A62EE27 /* Copy src/core/ext/upb-generated/validate Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/validate"; - dstSubfolderSpec = 16; - files = ( - 186C5BC0B8E798906088D2B04D6710A8 /* validate.upb.h in Copy src/core/ext/upb-generated/validate Private Headers */, - ); - name = "Copy src/core/ext/upb-generated/validate Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - E7E988F868FF3CCAAB3EBAC66C9CB268 /* Copy src/core/ext/upbdefs-generated/envoy/type/metadata/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/type/metadata/v3"; - dstSubfolderSpec = 16; - files = ( - E609ED14F0286804B5DA6157C6838668 /* metadata.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/type/metadata/v3 Private Headers */, - ); - name = "Copy src/core/ext/upbdefs-generated/envoy/type/metadata/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - E829DDB95769CFF7E3535A9987BB9B32 /* Copy src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3"; - dstSubfolderSpec = 16; - files = ( - 028422302345DE5CFE5FB6EC29528382 /* cert.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3 Private Headers */, - E5B8364586A2A6E01DB74AAD3FB24BCF /* common.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3 Private Headers */, - 32C75A54B0B6C12E6C5B83BBA63289CD /* secret.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3 Private Headers */, - 32ACDE9E06FC359603541EE67AB5DFB3 /* tls.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3 Private Headers */, - E005FD29F418CE83854B38AC527F0718 /* tls_spiffe_validator_config.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3 Private Headers */, - ); - name = "Copy src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - E8B726A2A5E5414E399BA38102E2FF14 /* Copy crypto/fipsmodule/sha Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/crypto/fipsmodule/sha"; - dstSubfolderSpec = 16; - files = ( - 1918A8F2CC8BCDF0DA86737B37B5631A /* internal.h in Copy crypto/fipsmodule/sha Private Headers */, - ); - name = "Copy crypto/fipsmodule/sha Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - EA4D08F9E912F717E80A473B705F11C6 /* Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/config/core/v3"; - dstSubfolderSpec = 16; - files = ( - D7CE81B231CA01051FA13BA005D58BC0 /* address.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */, - A40993FD4C13EC4A5EDCD38A6A22E830 /* backoff.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */, - 0F07BF000C0FDACEF7EC932DA91CACEC /* base.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */, - A503B2137D972BC5D010ADCE5CA555F5 /* config_source.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */, - AAE159C5A34511DDCB95BDF9E53C15CD /* event_service_config.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */, - D9369F262EE6E746D7191A4C5929054C /* extension.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */, - A7A3BCE8545C0D901E3B907B518A1445 /* grpc_method_list.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */, - 4E741E0EA18B7C01FE85C4382529454A /* grpc_service.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */, - 29FDF510DACBCE2AE28292AB675FA7C0 /* health_check.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */, - 562B767D69BC523FFE6529C2AC5B49B3 /* http_uri.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */, - 3B36252C98D7F33DDA3AAB92A99874CA /* protocol.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */, - F8C77ADEAA42FAE6794A8B96F8316E42 /* proxy_protocol.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */, - E6A5E15FC13D884329AE9A5C7199F0F0 /* resolver.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */, - F12C737562366B1240AD5FB02DCE25FA /* socket_option.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */, - 18AFCCA41DFFF658A7685B93405EB19C /* substitution_format_string.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */, - 45DE02899389F90731277EBF4DF85A19 /* udp_socket_config.upb.h in Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */, - ); - name = "Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - EAE1422B880C09F562D70D7AF1609AB9 /* Copy src/core/ext/upb-generated/envoy/config/overload/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/config/overload/v3"; - dstSubfolderSpec = 16; - files = ( - ECB23DB5DA045ED55790A3FA9D9572ED /* overload.upb.h in Copy src/core/ext/upb-generated/envoy/config/overload/v3 Private Headers */, - ); - name = "Copy src/core/ext/upb-generated/envoy/config/overload/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - EC3CF1CA9EA6CEB0F657C58E8A48F643 /* Copy src/core/lib/security/credentials/xds Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/credentials/xds"; - dstSubfolderSpec = 16; - files = ( - 6FC4D87DF07B5C322E9003BD78C7817D /* xds_credentials.h in Copy src/core/lib/security/credentials/xds Private Headers */, - ); - name = "Copy src/core/lib/security/credentials/xds Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - ED3A51E07140F186BC8CB17387EB46A1 /* Copy src/core/ext/upbdefs-generated/google/protobuf Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/google/protobuf"; - dstSubfolderSpec = 16; - files = ( - 9E8ED85C46498A6760AACFE9160280B2 /* any.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/protobuf Private Headers */, - 80B04AD63FEB489F79F65096006FCA16 /* descriptor.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/protobuf Private Headers */, - C73D9AF6508E3AAF8D9DA8A6E6F695D6 /* duration.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/protobuf Private Headers */, - 2E764B6576463408B25F7CFDCBA76D6D /* empty.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/protobuf Private Headers */, - ECE673435DCD880914B5A6A3AB49A5AB /* struct.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/protobuf Private Headers */, - 29BE50D6824D64A5B1085CCD98C8F72A /* timestamp.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/protobuf Private Headers */, - 31F162D2A36C1E73834F9238DACD3C39 /* wrappers.upbdefs.h in Copy src/core/ext/upbdefs-generated/google/protobuf Private Headers */, - ); - name = "Copy src/core/ext/upbdefs-generated/google/protobuf Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - ED952FC65B4BA525B3B159F109CFDFEA /* Copy src/core/ext/transport/binder/transport Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/transport/binder/transport"; - dstSubfolderSpec = 16; - files = ( - 00B0EA90AAC9A5403418BE1E83899588 /* binder_stream.h in Copy src/core/ext/transport/binder/transport Private Headers */, - 3CD2CB458C00D651196519836D706272 /* binder_transport.h in Copy src/core/ext/transport/binder/transport Private Headers */, - ); - name = "Copy src/core/ext/transport/binder/transport Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - EDA982549F9A2D136DD9FDAD8E61CBC9 /* Copy src/core/ext/upbdefs-generated/src/proto/grpc/lookup/v1 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/src/proto/grpc/lookup/v1"; - dstSubfolderSpec = 16; - files = ( - 1BD5E21D5FBBBFF3C9101A38A3AA520F /* rls_config.upbdefs.h in Copy src/core/ext/upbdefs-generated/src/proto/grpc/lookup/v1 Private Headers */, - ); - name = "Copy src/core/ext/upbdefs-generated/src/proto/grpc/lookup/v1 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - EE03BF844D7BBAACEE473EF50C1FDFD8 /* Copy src/core/lib/compression Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/compression"; - dstSubfolderSpec = 16; - files = ( - 12BF8C588BF4E9DF122A90F865785721 /* compression_internal.h in Copy src/core/lib/compression Private Headers */, - E8607F6BE09DF7BBF6CA8C86C585FD70 /* message_compress.h in Copy src/core/lib/compression Private Headers */, - ); - name = "Copy src/core/lib/compression Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - EE677FF2AC8E601F31C5C7641FD7A07C /* Copy src/core/ext/upbdefs-generated/envoy/config/cluster/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upbdefs-generated/envoy/config/cluster/v3"; - dstSubfolderSpec = 16; - files = ( - D42C5AFCDB03D5FC12C5792DF46943F6 /* circuit_breaker.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/cluster/v3 Private Headers */, - 8F3DDAACFE29671A60F5228691CD866F /* cluster.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/cluster/v3 Private Headers */, - BDC1989D6F3C3386B25FD2CC3C10C90E /* filter.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/cluster/v3 Private Headers */, - 2E641476DF7110DD1B1EC3215058DB94 /* outlier_detection.upbdefs.h in Copy src/core/ext/upbdefs-generated/envoy/config/cluster/v3 Private Headers */, - ); - name = "Copy src/core/ext/upbdefs-generated/envoy/config/cluster/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - EEF0093BBFCA10B0F98F535C862616E5 /* Copy crypto/lhash Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/crypto/lhash"; - dstSubfolderSpec = 16; - files = ( - E26715D8509024B58A1B316636D104FA /* internal.h in Copy crypto/lhash Private Headers */, - ); - name = "Copy crypto/lhash Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - EF004B4EEC5F032B880F77D144FD78E8 /* Copy src/core/lib/security/credentials/insecure Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/credentials/insecure"; - dstSubfolderSpec = 16; - files = ( - 1988833C017D8F37BEE7C95AFB859580 /* insecure_credentials.h in Copy src/core/lib/security/credentials/insecure Private Headers */, - ); - name = "Copy src/core/lib/security/credentials/insecure Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - F0321575CADE2A7F415AEED61F1B563D /* Copy src/core/ext/filters/rbac Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/rbac"; - dstSubfolderSpec = 16; - files = ( - 360AA65EBCC2F01531BF8FF079B4E236 /* rbac_filter.h in Copy src/core/ext/filters/rbac Private Headers */, - 6F7422F63ACDFFA2D5281E2C9E3BCFCF /* rbac_service_config_parser.h in Copy src/core/ext/filters/rbac Private Headers */, - ); - name = "Copy src/core/ext/filters/rbac Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - F0DBFF551924BAB8276A941B8E6A829B /* Copy crypto Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/crypto"; - dstSubfolderSpec = 16; - files = ( - 473098B9197F919F21F045CB92220DEA /* cpu-arm-linux.h in Copy crypto Private Headers */, - 485AFE775D69E95844004AD3D48BAEE8 /* internal.h in Copy crypto Private Headers */, - ); - name = "Copy crypto Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - F0E268A48B821D71DAD4C044FEAB904F /* Copy memory Public Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/memory"; - dstSubfolderSpec = 16; - files = ( - B1C0A5D44270298DEBA8DD772A0DD1AE /* memory.h in Copy memory Public Headers */, - ); - name = "Copy memory Public Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - F11E38481BCEAAD3E4649A091E8C167E /* Copy src/core/ext/upb-generated/envoy/type/metadata/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/type/metadata/v3"; - dstSubfolderSpec = 16; - files = ( - C8C9B8687D99009253CB221E4F131292 /* metadata.upb.h in Copy src/core/ext/upb-generated/envoy/type/metadata/v3 Private Headers */, - ); - name = "Copy src/core/ext/upb-generated/envoy/type/metadata/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - F201F2087ED296F8467C95FEED39C640 /* Copy src/core/tsi/alts/zero_copy_frame_protector Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/tsi/alts/zero_copy_frame_protector"; - dstSubfolderSpec = 16; - files = ( - 40CC5DB9B99DAFE9169F54701F490DC5 /* alts_grpc_integrity_only_record_protocol.h in Copy src/core/tsi/alts/zero_copy_frame_protector Private Headers */, - 5C3FC2F961EA7C6233919F73FD86D563 /* alts_grpc_privacy_integrity_record_protocol.h in Copy src/core/tsi/alts/zero_copy_frame_protector Private Headers */, - 3FD0A58D280A7852850802F1778C6262 /* alts_grpc_record_protocol.h in Copy src/core/tsi/alts/zero_copy_frame_protector Private Headers */, - EA25E9251D21BE7DF6DED2165BAB6D4D /* alts_grpc_record_protocol_common.h in Copy src/core/tsi/alts/zero_copy_frame_protector Private Headers */, - 90F5B3A728249A66FBFFE5A07186C121 /* alts_iovec_record_protocol.h in Copy src/core/tsi/alts/zero_copy_frame_protector Private Headers */, - 7F6C1443D590918B0F67DDAA3965722A /* alts_zero_copy_grpc_protector.h in Copy src/core/tsi/alts/zero_copy_frame_protector Private Headers */, - ); - name = "Copy src/core/tsi/alts/zero_copy_frame_protector Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - F25A1DBFDBCEC945F2054457C500D090 /* Copy ext Public Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/ext"; - dstSubfolderSpec = 16; - files = ( - C107CFF6160CA7AED0AD48B9D4C42427 /* call_metric_recorder.h in Copy ext Public Headers */, - AF1A88B552D9F37D898E25F2A2ECFFE3 /* health_check_service_server_builder_option.h in Copy ext Public Headers */, - ); - name = "Copy ext Public Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - F2EC21285650B9998000CB90561059CC /* Copy . Public Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/."; - dstSubfolderSpec = 16; - files = ( - 7AD89B187E898FC88CFCCDCEDBA7E3CD /* aead.h in Copy . Public Headers */, - 28212C3E9653A24588AC43A537FBD5F1 /* aes.h in Copy . Public Headers */, - 7FDEF3338FED11AEE0D7121CBD071167 /* arm_arch.h in Copy . Public Headers */, - 5E46B08D9171EDEB11274A11C75E4D37 /* asn1.h in Copy . Public Headers */, - DCB9E51F459CB1DA0317073EE1B765F9 /* asn1_mac.h in Copy . Public Headers */, - 9757BFD2DC479844121239581DBD3E79 /* asn1t.h in Copy . Public Headers */, - 695164CB44F9561742498E2963C3EB0F /* base.h in Copy . Public Headers */, - 88D3E92C293AFA821CA54D8DFB88D1A1 /* base64.h in Copy . Public Headers */, - 20F8D04C33818A2B1FF909BE0795D322 /* bio.h in Copy . Public Headers */, - E5E7391F72A18AC28D3EB6654F24B920 /* blake2.h in Copy . Public Headers */, - 74FB2C5FA64092E4DE340B6C1CE1C0B0 /* blowfish.h in Copy . Public Headers */, - 626BE144F1D0539AC1C6185EFF7C71D1 /* bn.h in Copy . Public Headers */, - C720514F8EEBAE8A848FA154A8B99635 /* boringssl_prefix_symbols.h in Copy . Public Headers */, - A226ED67BBD7EB93483D4C2BB6D30B24 /* buf.h in Copy . Public Headers */, - 7C76EE93DD92D8987DDA4971D678884E /* buffer.h in Copy . Public Headers */, - 742502D88D942F691FD22DE3118EA8E4 /* bytestring.h in Copy . Public Headers */, - 309337D96C54354485D71878672DA459 /* cast.h in Copy . Public Headers */, - BED19D7DDE2503505746FE94C907D0EC /* chacha.h in Copy . Public Headers */, - BE88FB76737E8C60190A5DA8DBFF6765 /* cipher.h in Copy . Public Headers */, - 91144BDBBCD0DB0DAEEE032CABF10A51 /* cmac.h in Copy . Public Headers */, - 50495824DE43B5AD3E5B5F38BC81839A /* conf.h in Copy . Public Headers */, - 13087ABD23306E38FD2CF429861BFBB9 /* cpu.h in Copy . Public Headers */, - D664DF49191FAEE1A52302A5184C20E4 /* crypto.h in Copy . Public Headers */, - 68AF1D655F45B2BA3C07D9B07EAA4D47 /* curve25519.h in Copy . Public Headers */, - 45ACDFCB08CCE5F068E9FD878615A0EB /* des.h in Copy . Public Headers */, - 731778A354E55BA56C165DE782ED814A /* dh.h in Copy . Public Headers */, - 484D6B48971EDF8CB52579E8AEF7E6A8 /* digest.h in Copy . Public Headers */, - B8A7150D949CF1CEB7F0729BA6405059 /* dsa.h in Copy . Public Headers */, - 737E57752664699B89527E9DA2520902 /* dtls1.h in Copy . Public Headers */, - 77D28B4E99F6B47745A58F34E8B92A51 /* e_os2.h in Copy . Public Headers */, - 189A6CAE7828507A99CDD96214B5DE8D /* ec.h in Copy . Public Headers */, - 0F2CE6CA3ACF9ABE892E57A6E90E09DE /* ec_key.h in Copy . Public Headers */, - 9FDCE99BC084DEDFB80F99B2F37F8A45 /* ecdh.h in Copy . Public Headers */, - AB134C42AF2F84659F59AAF574B94A3C /* ecdsa.h in Copy . Public Headers */, - 74AF69099E60CB7E725BA8EAA28455F5 /* engine.h in Copy . Public Headers */, - 4650E54F5675CDEF8F437D44DB62DB35 /* err.h in Copy . Public Headers */, - 3CCC64BC0CE26A1B9B1C09544426D85F /* evp.h in Copy . Public Headers */, - 14DE8B38906E4F881C1E690D7D9DA13C /* evp_errors.h in Copy . Public Headers */, - 0715B29F2BA356AFEDE56D85BF76DF8A /* ex_data.h in Copy . Public Headers */, - D377BF261A1A751A13873208F3ABF5D2 /* hkdf.h in Copy . Public Headers */, - FD7BB710DECDCF17B5FF336111E5B635 /* hmac.h in Copy . Public Headers */, - DF9837D45CDA55A9DDE36A90528DB3E1 /* hpke.h in Copy . Public Headers */, - 53B6F6377CCBAC15754B75E2E3FCED74 /* hrss.h in Copy . Public Headers */, - 0A0AEB0EA2BDF1E21FC5484FC0B22880 /* is_boringssl.h in Copy . Public Headers */, - F7367D5D6BE0D81EFB3AA90AF20519ED /* lhash.h in Copy . Public Headers */, - 762A342C61666909ED7123C9BA1BF43E /* md4.h in Copy . Public Headers */, - 50CE612CE741715246E87F40185122FC /* md5.h in Copy . Public Headers */, - 9D35FE379EF746A44CF165941F75E9F6 /* mem.h in Copy . Public Headers */, - B50FE4AE9BDDCB4352EB6255442D4F48 /* nid.h in Copy . Public Headers */, - D6BFE4095AAE8FE0B9A6BB4E8348ED69 /* obj.h in Copy . Public Headers */, - A4705793489A5E5CA522DD837458F4B9 /* obj_mac.h in Copy . Public Headers */, - 4D55F4CD173C057BE8B6D58AB833AA97 /* objects.h in Copy . Public Headers */, - F8B191CB20CE20F8A5463F4D03A6515C /* opensslconf.h in Copy . Public Headers */, - 4CF49DA0E48373B5DCA0B12E47DD485E /* opensslv.h in Copy . Public Headers */, - FC2A7DBB32D75DF5BBC7E924F0349828 /* ossl_typ.h in Copy . Public Headers */, - CEC80EDE84EF1AFE2F905C0ACEBC0F55 /* pem.h in Copy . Public Headers */, - EDEA27BC0C0FAD4DCDFABF9D41E11617 /* pkcs12.h in Copy . Public Headers */, - 9257C64CC9FFBDB27084E01BDABE8E66 /* pkcs7.h in Copy . Public Headers */, - 351B6EEBDA18122A09A73FE9156C92D8 /* pkcs8.h in Copy . Public Headers */, - 00CAD21F81DAD6BDF4800CCEEAAD5A86 /* poly1305.h in Copy . Public Headers */, - C322CCD47740C5B41DB2B33F2C3A3956 /* pool.h in Copy . Public Headers */, - 8E86E689DA09EEA0F336B12A1A3569BD /* rand.h in Copy . Public Headers */, - 52E334E191752A24F70AA85442752B41 /* rc4.h in Copy . Public Headers */, - 20378404337BC5476BDF10E93298E7A1 /* ripemd.h in Copy . Public Headers */, - 5F2036030CD4FFF1F49F0A35C7FE1ECF /* rsa.h in Copy . Public Headers */, - E82E6B812E27C1D0EC5CA37D91F3234A /* safestack.h in Copy . Public Headers */, - F4113B60B9141E1121C75C7CEEE474E7 /* sha.h in Copy . Public Headers */, - BEDF793A41BD9D94D75703B96B4D1859 /* siphash.h in Copy . Public Headers */, - 07BD1C0BB95C0B0ED771DBFD4B41B2CD /* span.h in Copy . Public Headers */, - 24322671F4F7618428AA9DED38269B72 /* srtp.h in Copy . Public Headers */, - C4C43F5D49E46178233EB7D92871711A /* ssl.h in Copy . Public Headers */, - EA283049ACECBE5E3ECC8049D9AA15CD /* ssl3.h in Copy . Public Headers */, - 079327763D9B55632F9B114ECD79FB76 /* stack.h in Copy . Public Headers */, - 4A37C7269EE86E3CAB6FD4809A85C7E2 /* thread.h in Copy . Public Headers */, - 73D93A5DCC151F3BC43BF55959CB1976 /* tls1.h in Copy . Public Headers */, - C53CE4090ED4AFD1AD67FF107C1EF329 /* trust_token.h in Copy . Public Headers */, - B6A2553FB145DFA2681E4F8672D1A156 /* type_check.h in Copy . Public Headers */, - 5BF66A6657478400AF6231ACD46C06F0 /* umbrella.h in Copy . Public Headers */, - 5D24BB3A0587472A3D49B2DC4172328A /* x509.h in Copy . Public Headers */, - 5C4306960DC0ADDBE2F0F2C56AC50868 /* x509_vfy.h in Copy . Public Headers */, - FA7BEC7F77139DAD4EE86D336EE6AADC /* x509v3.h in Copy . Public Headers */, - ); - name = "Copy . Public Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - F453AC7B7D1B560A404A3E35C0133293 /* Copy src/core/lib/json Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/json"; - dstSubfolderSpec = 16; - files = ( - 8DEFFAA9D47C3139513A93C2E0D244EF /* json.h in Copy src/core/lib/json Private Headers */, - 063C578727684DC1D57569F31F09FD57 /* json_args.h in Copy src/core/lib/json Private Headers */, - A03EE5A05CBF42EF0D5E9ED800FB1CA8 /* json_object_loader.h in Copy src/core/lib/json Private Headers */, - 8734D71DE53492B7B0D613DA0AC04A2E /* json_util.h in Copy src/core/lib/json Private Headers */, - ); - name = "Copy src/core/lib/json Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - F4BD2565FD92CD817CD0740403FCD4DE /* Copy src/core/lib/security/security_connector/fake Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/security_connector/fake"; - dstSubfolderSpec = 16; - files = ( - C02230ADBD015D65622671CAA6D9880B /* fake_security_connector.h in Copy src/core/lib/security/security_connector/fake Private Headers */, - ); - name = "Copy src/core/lib/security/security_connector/fake Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - F54559673C8235DE321A7A40BAF73F82 /* Copy crypto/fipsmodule/md5 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/crypto/fipsmodule/md5"; - dstSubfolderSpec = 16; - files = ( - 1E996295F957C6FE72509894A3C9B1A6 /* internal.h in Copy crypto/fipsmodule/md5 Private Headers */, - ); - name = "Copy crypto/fipsmodule/md5 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - F5AA6D6C5F8521C2399E7324D00E31D5 /* Copy src/core/lib/security/transport Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/transport"; - dstSubfolderSpec = 16; - files = ( - BD4BB53D7D2623D65655FF8824066C54 /* auth_filters.h in Copy src/core/lib/security/transport Private Headers */, - 653BDC47AF80BCAB63C1D70B04141313 /* secure_endpoint.h in Copy src/core/lib/security/transport Private Headers */, - 0BB79644B9E3EC27B907622C5DB4F4F2 /* security_handshaker.h in Copy src/core/lib/security/transport Private Headers */, - 29098143AAD2C59F74E98B4B713181E3 /* tsi_error.h in Copy src/core/lib/security/transport Private Headers */, - ); - name = "Copy src/core/lib/security/transport Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - F61CAFBAFE70598FF4BA2CE3CE77C931 /* Copy src/core/ext/filters/http/message_compress Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/filters/http/message_compress"; - dstSubfolderSpec = 16; - files = ( - 26590B70CBC1652D6CF2777395A6FB2C /* message_compress_filter.h in Copy src/core/ext/filters/http/message_compress Private Headers */, - 3DC8A37586E4927632967FE915C30831 /* message_decompress_filter.h in Copy src/core/ext/filters/http/message_compress Private Headers */, - ); - name = "Copy src/core/ext/filters/http/message_compress Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - F834F56759A5306E07B8DAC2C339BB46 /* Copy src/cpp/common Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/cpp/common"; - dstSubfolderSpec = 16; - files = ( - 52B141188C4034B18B513A7520C0011C /* channel_filter.h in Copy src/cpp/common Private Headers */, - 434567D4702653AA75AFA9A30B6B8805 /* secure_auth_context.h in Copy src/cpp/common Private Headers */, - ); - name = "Copy src/cpp/common Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - F8812EA1C6BF3E13CF525CADB61D0AB9 /* Copy src/core/ext/upb-generated/envoy/config/bootstrap/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/config/bootstrap/v3"; - dstSubfolderSpec = 16; - files = ( - FA24E7B0E5DDA603262443B4FD637388 /* bootstrap.upb.h in Copy src/core/ext/upb-generated/envoy/config/bootstrap/v3 Private Headers */, - ); - name = "Copy src/core/ext/upb-generated/envoy/config/bootstrap/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - F9918238A49A181BCEF4D5FC42D48100 /* Copy src/core/lib/promise Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/promise"; - dstSubfolderSpec = 16; - files = ( - BFCE4EBDA163FA92B911F1A10B7339DA /* activity.h in Copy src/core/lib/promise Private Headers */, - C13FA76825FED71EA9A46BF8F41673CF /* arena_promise.h in Copy src/core/lib/promise Private Headers */, - 46C3FB879AC1C238F0E3138B43ABB89E /* call_push_pull.h in Copy src/core/lib/promise Private Headers */, - 7CFB3A8E801666EFD8CF79451FA13A9B /* context.h in Copy src/core/lib/promise Private Headers */, - 4B9B3F5A096D569BE111605DBB273FA7 /* exec_ctx_wakeup_scheduler.h in Copy src/core/lib/promise Private Headers */, - F319F788126392E954AC9DD64BCCBFF9 /* intra_activity_waiter.h in Copy src/core/lib/promise Private Headers */, - EF6EE4617E1D2E63C92EE3673DE0AD2F /* latch.h in Copy src/core/lib/promise Private Headers */, - B85D21823E601D94D16EBCF084265155 /* loop.h in Copy src/core/lib/promise Private Headers */, - FCB8BCB820E5482D7E44EA1D96F04E3A /* map.h in Copy src/core/lib/promise Private Headers */, - 4B6DD07F582A8EAC15D9739BEB5DC2A7 /* poll.h in Copy src/core/lib/promise Private Headers */, - 3957248E7D96D073D479EDF1CE78C49B /* promise.h in Copy src/core/lib/promise Private Headers */, - C06DB2A6B5B31512F7795636B7019CD2 /* race.h in Copy src/core/lib/promise Private Headers */, - 5F3F34C59AE9D7A1132959B3D94C34B1 /* seq.h in Copy src/core/lib/promise Private Headers */, - 00CE1AF6B5B219CF212AB2C9D1A0CCC7 /* sleep.h in Copy src/core/lib/promise Private Headers */, - 1EA50DF4B3E5C570B164EDC732C6F241 /* try_seq.h in Copy src/core/lib/promise Private Headers */, - ); - name = "Copy src/core/lib/promise Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - FB19BBC43E2B0BEDB82D02D138D25199 /* Copy src/core/ext/upb-generated/envoy/config/endpoint/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/config/endpoint/v3"; - dstSubfolderSpec = 16; - files = ( - 837391E165E7B6680826B83B7B62FDC7 /* endpoint.upb.h in Copy src/core/ext/upb-generated/envoy/config/endpoint/v3 Private Headers */, - 4DA3D47ECCDD741C5514842A5BDF1B34 /* endpoint_components.upb.h in Copy src/core/ext/upb-generated/envoy/config/endpoint/v3 Private Headers */, - 979DB67E3DC4F21271E05881D4478B23 /* load_report.upb.h in Copy src/core/ext/upb-generated/envoy/config/endpoint/v3 Private Headers */, - ); - name = "Copy src/core/ext/upb-generated/envoy/config/endpoint/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - FC45CB381D316461A6B7CD5A902F504B /* Copy src/core/lib/matchers Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/matchers"; - dstSubfolderSpec = 16; - files = ( - 1AFFF74248DF962D79109ABB30B8B689 /* matchers.h in Copy src/core/lib/matchers Private Headers */, - ); - name = "Copy src/core/lib/matchers Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - FC788F63D19585735CA5FB5C4EE12B70 /* Copy src/core/ext/upb-generated/envoy/config/common/matcher/v3 Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/ext/upb-generated/envoy/config/common/matcher/v3"; - dstSubfolderSpec = 16; - files = ( - E794371518DB6DA6E7FF17DB71A350BF /* matcher.upb.h in Copy src/core/ext/upb-generated/envoy/config/common/matcher/v3 Private Headers */, - ); - name = "Copy src/core/ext/upb-generated/envoy/config/common/matcher/v3 Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - FCB7EC1013DFDD04BF67401157221620 /* Copy src/core/lib/avl Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/avl"; - dstSubfolderSpec = 16; - files = ( - 2F0CF8E2C7337D7219EB130342A303EF /* avl.h in Copy src/core/lib/avl Private Headers */, - ); - name = "Copy src/core/lib/avl Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - FDFFB51E2E3F3CF8BBA7EDB48BF55F9D /* Copy src/core/lib/security/security_connector/insecure Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/security_connector/insecure"; - dstSubfolderSpec = 16; - files = ( - 614F5BB1AF3897D5645834F9B7CDEF4F /* insecure_security_connector.h in Copy src/core/lib/security/security_connector/insecure Private Headers */, - ); - name = "Copy src/core/lib/security/security_connector/insecure Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - FE1FB1F4B942A9B577E2BEC43F565426 /* Copy src/core/lib/security/credentials/iam Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/lib/security/credentials/iam"; - dstSubfolderSpec = 16; - files = ( - 1138C5CD9EBE2BB50971EDC39DEE8614 /* iam_credentials.h in Copy src/core/lib/security/credentials/iam Private Headers */, - ); - name = "Copy src/core/lib/security/credentials/iam Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - FF6B06C9DA975E97B84B89742DA8CF4D /* Copy cleanup Public Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PUBLIC_HEADERS_FOLDER_PATH)/cleanup"; - dstSubfolderSpec = 16; - files = ( - B7F21FD1F96718A345D5E0E3E6D572A4 /* cleanup.h in Copy cleanup Public Headers */, - ); - name = "Copy cleanup Public Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; - FFD511A422F602A599813291B4E28DD6 /* Copy src/core/tsi/ssl/key_logging Private Headers */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = "$(PRIVATE_HEADERS_FOLDER_PATH)/src/core/tsi/ssl/key_logging"; - dstSubfolderSpec = 16; - files = ( - FC90BEB90873075E742681C79DAC8F18 /* ssl_key_logging.h in Copy src/core/tsi/ssl/key_logging Private Headers */, - ); - name = "Copy src/core/tsi/ssl/key_logging Private Headers"; - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXCopyFilesBuildPhase section */ - /* Begin PBXFileReference section */ - 0016F3697BB2D507CF5B838ED0900BEA /* sockaddr_windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sockaddr_windows.h; path = src/core/lib/iomgr/sockaddr_windows.h; sourceTree = ""; }; - 0018130066E6249C128D55F895B2BB0B /* proxy_protocol.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = proxy_protocol.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/proxy_protocol.upbdefs.h"; sourceTree = ""; }; - 003347B816C9863C2C9F6BC5CAB6D054 /* md5.c */ = {isa = PBXFileReference; includeInIndex = 1; name = md5.c; path = src/crypto/fipsmodule/md5/md5.c; sourceTree = ""; }; - 00609AE4E4C3184533D744B9A30CC431 /* subchannel_list.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = subchannel_list.h; path = src/core/ext/filters/client_channel/lb_policy/subchannel_list.h; sourceTree = ""; }; - 00842CD947022049AF21532D6F689155 /* secret.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = secret.upb.c; path = "src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/secret.upb.c"; sourceTree = ""; }; - 00A259C3A6174660FA72514B4A203212 /* tls_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tls_credentials.h; path = src/core/lib/security/credentials/tls/tls_credentials.h; sourceTree = ""; }; - 00A47C8B6DD59E2481D98DC277879480 /* base.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = base.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/base.upbdefs.h"; sourceTree = ""; }; - 00AAA4DD02F35853A27F6E5CA59DEF06 /* plugin_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = plugin_credentials.h; path = src/core/lib/security/credentials/plugin/plugin_credentials.h; sourceTree = ""; }; - 00BB305A9AF46FD9CD970D10D2DC3D84 /* p_x25519_asn1.c */ = {isa = PBXFileReference; includeInIndex = 1; name = p_x25519_asn1.c; path = src/crypto/evp/p_x25519_asn1.c; sourceTree = ""; }; - 00C6704DCCCD6335315E13B45707908B /* call_tracer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = call_tracer.h; path = src/core/lib/channel/call_tracer.h; sourceTree = ""; }; - 00C7D96DE833438927B6673F0A7653FC /* iomgr_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = iomgr_windows.cc; path = src/core/lib/iomgr/iomgr_windows.cc; sourceTree = ""; }; - 00C832DBA6BD9A4E192A90F2731ECA42 /* FIRComponentType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentType.h; path = FirebaseCore/Extension/FIRComponentType.h; sourceTree = ""; }; - 00DFA7E80F27D4F09FB74E5AEE1BE4C1 /* http_status.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_status.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/v3/http_status.upbdefs.h"; sourceTree = ""; }; - 00E070AF0A0D570AA32BCF71D39C1C4E /* timer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timer.h; path = src/core/lib/iomgr/timer.h; sourceTree = ""; }; - 0104B37091C693AC47DE79AA35D34CD9 /* GULSecureCoding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULSecureCoding.h; path = GoogleUtilities/Environment/Public/GoogleUtilities/GULSecureCoding.h; sourceTree = ""; }; - 010534D293688125225F9A18822035A2 /* status.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = status.upb.c; path = "src/core/ext/upb-generated/udpa/annotations/status.upb.c"; sourceTree = ""; }; - 0140638BBE5441051DE83716D249E419 /* dynamic_annotations.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dynamic_annotations.h; path = absl/base/dynamic_annotations.h; sourceTree = ""; }; - 014C69344E5FD2245680BF492F49DECD /* load_system_roots.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = load_system_roots.h; path = src/core/lib/security/security_connector/load_system_roots.h; sourceTree = ""; }; - 016C0C136B84613215A41037242687ED /* grpc_tls_certificate_provider.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = grpc_tls_certificate_provider.cc; path = src/core/lib/security/credentials/tls/grpc_tls_certificate_provider.cc; sourceTree = ""; }; - 017315FA27290D2FE48E6C74F79FA697 /* time.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = time.h; path = include/grpcpp/support/time.h; sourceTree = ""; }; - 0178E167F0E133055F578A6E27533F55 /* pollset.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = pollset.cc; path = src/core/lib/iomgr/pollset.cc; sourceTree = ""; }; - 017A1CC21502A56709FACABB0263B6F1 /* test.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = test.h; path = third_party/re2/util/test.h; sourceTree = ""; }; - 0187F135D5F61750CD24C3E04B6E8B64 /* Pods-iosApp-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-iosApp-frameworks.sh"; sourceTree = ""; }; - 018EBBDF9E92975681447908246114B0 /* rpc_method.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rpc_method.h; path = include/grpcpp/impl/codegen/rpc_method.h; sourceTree = ""; }; - 018FB099107C1B9D30BF97F7306BCE03 /* background_queue.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = background_queue.cc; path = Firestore/core/src/util/background_queue.cc; sourceTree = ""; }; - 01AA869DA6F50150DB6A516AA7F4A927 /* backend_metric.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = backend_metric.h; path = src/core/ext/filters/client_channel/backend_metric.h; sourceTree = ""; }; - 01B540E31F3BED592296B10164B3C452 /* semantic_version.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = semantic_version.upb.h; path = "src/core/ext/upb-generated/envoy/type/v3/semantic_version.upb.h"; sourceTree = ""; }; - 01B83F8319266F0CB5F003D7EE703C95 /* status.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = status.cc; path = absl/status/status.cc; sourceTree = ""; }; - 01CF51B3954682CC39060D76C17E7D9B /* retry_service_config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = retry_service_config.h; path = src/core/ext/filters/client_channel/retry_service_config.h; sourceTree = ""; }; - 01D027ED4A430C8DCB4AF625FA7089F5 /* rpc_service_method.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rpc_service_method.h; path = include/grpcpp/impl/rpc_service_method.h; sourceTree = ""; }; - 01D0E5674F05545B5552AA408D4A478B /* xds_channel_args.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_channel_args.h; path = src/core/ext/xds/xds_channel_args.h; sourceTree = ""; }; - 01D371F82EFBA7961697C2A3F97C27F4 /* gpr_slice.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = gpr_slice.h; path = include/grpc/impl/codegen/gpr_slice.h; sourceTree = ""; }; - 01EA2295B3803A3BAEA2498211FD9D5C /* cluster.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cluster.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/cluster/v3/cluster.upbdefs.h"; sourceTree = ""; }; - 020A6AE37E25FE5415EE87787A8B568B /* subchannel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = subchannel.h; path = src/core/ext/filters/client_channel/subchannel.h; sourceTree = ""; }; - 022506EE4C4F2FC4C54187B3A8DB97DB /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/cipher_extra/internal.h; sourceTree = ""; }; - 024F551F4A627FBFCE78E373F99F5779 /* GULNetworkURLSession.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULNetworkURLSession.m; path = GoogleUtilities/Network/GULNetworkURLSession.m; sourceTree = ""; }; - 0251753A62C90D6B9A3E49686D9E3686 /* GULHeartbeatDateStorageUserDefaults.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULHeartbeatDateStorageUserDefaults.m; path = GoogleUtilities/Environment/GULHeartbeatDateStorageUserDefaults.m; sourceTree = ""; }; - 0262101D7563C18C092FDCC09A355971 /* xds_cluster.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = xds_cluster.cc; path = src/core/ext/xds/xds_cluster.cc; sourceTree = ""; }; - 0263F571A4B0EFEE1AF6452C0E09133F /* sync.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sync.h; path = include/grpc/impl/codegen/sync.h; sourceTree = ""; }; - 0269E7C1031CBBABBD46E7ABBC01BE03 /* dynamic_annotations.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dynamic_annotations.h; path = absl/base/internal/dynamic_annotations.h; sourceTree = ""; }; - 026B23DDD049ABB351FD2EB88450346D /* status_helper.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = status_helper.cc; path = src/core/lib/gprpp/status_helper.cc; sourceTree = ""; }; - 0286AD1737C7A52B8606497313F87F76 /* load_balancer.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = load_balancer.upb.h; path = "src/core/ext/upb-generated/src/proto/grpc/lb/v1/load_balancer.upb.h"; sourceTree = ""; }; - 028AB0B787DB2506AFC3C767B60CE71D /* thread_pool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = thread_pool.h; path = src/core/lib/event_engine/thread_pool.h; sourceTree = ""; }; - 029A52B57DE5EB5D739AC0FCE0EED0C6 /* alts_grpc_privacy_integrity_record_protocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_grpc_privacy_integrity_record_protocol.h; path = src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_privacy_integrity_record_protocol.h; sourceTree = ""; }; - 02A83991F374E71998EA0408354704D2 /* frame_rst_stream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = frame_rst_stream.h; path = src/core/ext/transport/chttp2/transport/frame_rst_stream.h; sourceTree = ""; }; - 02ABA4F510562E5E7622ABAA7CCE5DC2 /* FIRHeartbeatLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRHeartbeatLogger.m; path = FirebaseCore/Sources/FIRHeartbeatLogger.m; sourceTree = ""; }; - 02CC35C334D5A5FEEA94346CF765DC82 /* dynamic_filters.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dynamic_filters.h; path = src/core/ext/filters/client_channel/dynamic_filters.h; sourceTree = ""; }; - 02CCD7ECDB0F2D55A4F9279D35FF4B86 /* span.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = span.h; path = absl/types/span.h; sourceTree = ""; }; - 02F30FDA0B8D7B6B39C2D22885B93509 /* pkcs7_x509.c */ = {isa = PBXFileReference; includeInIndex = 1; name = pkcs7_x509.c; path = src/crypto/pkcs7/pkcs7_x509.c; sourceTree = ""; }; - 02FF7A85CD951688B07730AB777CD083 /* FIRAuthProtoStartMFATOTPEnrollmentResponseInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthProtoStartMFATOTPEnrollmentResponseInfo.m; path = FirebaseAuth/Sources/Backend/RPC/Proto/TOTP/FIRAuthProtoStartMFATOTPEnrollmentResponseInfo.m; sourceTree = ""; }; - 030B7DEEE1BD4F2D308AC78EBB0F0F30 /* FIRUserInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRUserInfo.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRUserInfo.h; sourceTree = ""; }; - 031494DA595E537CBDC40E389CEB0D38 /* filter.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = filter.upb.h; path = "src/core/ext/upb-generated/envoy/config/cluster/v3/filter.upb.h"; sourceTree = ""; }; - 0324C9E6C1FD05080C7F876478AC50CB /* node.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = node.upb.c; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/node.upb.c"; sourceTree = ""; }; - 032E3A2530C69F7CEE12F5F16AC3AB63 /* xds_http_fault_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_http_fault_filter.h; path = src/core/ext/xds/xds_http_fault_filter.h; sourceTree = ""; }; - 0336891C61BF31C85E91EEC8BEA4824A /* validate_metadata.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = validate_metadata.h; path = src/core/lib/surface/validate_metadata.h; sourceTree = ""; }; - 0337E27580348BC2BA7F890F50247592 /* pem_info.c */ = {isa = PBXFileReference; includeInIndex = 1; name = pem_info.c; path = src/crypto/pem/pem_info.c; sourceTree = ""; }; - 0347A07F1D9D790A82C6ED088705C92A /* bits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bits.h; path = absl/numeric/bits.h; sourceTree = ""; }; - 034F4021FE6064A1FABBAEA00C6403F4 /* poly1305_vec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = poly1305_vec.c; path = src/crypto/poly1305/poly1305_vec.c; sourceTree = ""; }; - 0350E46334E61C0F9023F5B27C48A26C /* extension.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = extension.upbdefs.h; path = "src/core/ext/upbdefs-generated/xds/core/v3/extension.upbdefs.h"; sourceTree = ""; }; - 0368F8E4C3F699A47D43F08FE26913A0 /* FIRGetRecaptchaConfigResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRGetRecaptchaConfigResponse.h; path = FirebaseAuth/Sources/Backend/RPC/FIRGetRecaptchaConfigResponse.h; sourceTree = ""; }; - 037BA24CC125A5F3EC651AE71CFFFDFE /* client_callback.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = client_callback.h; path = include/grpcpp/support/client_callback.h; sourceTree = ""; }; - 03A33CB17BB2B707EFC6FBFE59298650 /* iterator_wrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = iterator_wrapper.h; path = table/iterator_wrapper.h; sourceTree = ""; }; - 03A419906CDB4D0A8F5F17D59C294D63 /* ring_hash.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ring_hash.upb.h; path = "src/core/ext/upb-generated/envoy/extensions/load_balancing_policies/ring_hash/v3/ring_hash.upb.h"; sourceTree = ""; }; - 03A8FEA26C43557304E9347251306D00 /* empty.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = empty.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/protobuf/empty.upbdefs.h"; sourceTree = ""; }; - 03C409E8C1E26CFB8C9B9624C788EFF1 /* outlier_detection.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = outlier_detection.upb.c; path = "src/core/ext/upb-generated/envoy/config/cluster/v3/outlier_detection.upb.c"; sourceTree = ""; }; - 03CE50D6563B82561D831B251B9E65D3 /* int128_no_intrinsic.inc */ = {isa = PBXFileReference; includeInIndex = 1; name = int128_no_intrinsic.inc; path = absl/numeric/int128_no_intrinsic.inc; sourceTree = ""; }; - 03E5D973622DE685DEC76E0087E05473 /* parser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = parser.h; path = absl/strings/internal/str_format/parser.h; sourceTree = ""; }; - 03E74713156FDAC4C957ECED36CEDA22 /* backoff.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = backoff.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/backoff.upbdefs.h"; sourceTree = ""; }; - 03FED8F623B0E89E9C6E0F2B8465ADA9 /* FIRAuthURLPresenter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthURLPresenter.m; path = FirebaseAuth/Sources/Utilities/FIRAuthURLPresenter.m; sourceTree = ""; }; - 0415D3EED2BF6AEC5288CF80D2A19D22 /* v3_bcons.c */ = {isa = PBXFileReference; includeInIndex = 1; name = v3_bcons.c; path = src/crypto/x509v3/v3_bcons.c; sourceTree = ""; }; - 042271FB2B2387217FDD272A332FE6E7 /* memory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = memory.h; path = src/core/lib/gprpp/memory.h; sourceTree = ""; }; - 0425F3E34C7B177BB60E6F39724B967F /* x509_set.c */ = {isa = PBXFileReference; includeInIndex = 1; name = x509_set.c; path = src/crypto/x509/x509_set.c; sourceTree = ""; }; - 042807C3354340AA4272C4F8A2281FCF /* FIRFirestoreErrors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRFirestoreErrors.h; path = Firestore/Source/Public/FirebaseFirestore/FIRFirestoreErrors.h; sourceTree = ""; }; - 042C092FB084ACFCBCA3250BE9F76EDF /* migrate.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = migrate.upbdefs.h; path = "src/core/ext/upbdefs-generated/xds/annotations/v3/migrate.upbdefs.h"; sourceTree = ""; }; - 043FE3E6C18A23448D40A0E4B4D19A54 /* rls.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rls.upb.c; path = "src/core/ext/upb-generated/src/proto/grpc/lookup/v1/rls.upb.c"; sourceTree = ""; }; - 0440D3F17390445D067205461336D5B1 /* query.nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = query.nanopb.cc; path = Firestore/Protos/nanopb/google/firestore/v1/query.nanopb.cc; sourceTree = ""; }; - 044E1846DE5BE1E69494B3A0BCA176AF /* FIRFirestoreVersion.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRFirestoreVersion.mm; path = Firestore/Source/API/FIRFirestoreVersion.mm; sourceTree = ""; }; - 045D682F705DE385F3D68839734D5F7D /* try_seq.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = try_seq.h; path = src/core/lib/promise/try_seq.h; sourceTree = ""; }; - 045EA26138D5685BF99ED1B0A8E48909 /* table.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = table.cc; path = table/table.cc; sourceTree = ""; }; - 047277A00655CDE380B5780A009C2CA0 /* FIRLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLogger.h; path = FirebaseCore/Extension/FIRLogger.h; sourceTree = ""; }; - 0475F33986AB736E29D0789982EBBA3F /* threaded_executor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = threaded_executor.h; path = src/core/lib/event_engine/executor/threaded_executor.h; sourceTree = ""; }; - 047BF6A39A0C9563AF0E682586D2F0D0 /* FIRMultiFactorInfo+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FIRMultiFactorInfo+Internal.h"; path = "FirebaseAuth/Sources/MultiFactor/FIRMultiFactorInfo+Internal.h"; sourceTree = ""; }; - 049AC23984B57E37A029B5A18A2C5711 /* GULNetworkConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULNetworkConstants.m; path = GoogleUtilities/Network/GULNetworkConstants.m; sourceTree = ""; }; - 049C189516E0D237833FC2030C50E041 /* http_uri.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = http_uri.upb.c; path = "src/core/ext/upb-generated/envoy/config/core/v3/http_uri.upb.c"; sourceTree = ""; }; - 04AA242262A0F3748A18170440020F85 /* any.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = any.upb.h; path = "src/core/ext/upb-generated/google/protobuf/any.upb.h"; sourceTree = ""; }; - 04B265A9EFA08526A9ADF091450CDB8E /* byte_buffer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = byte_buffer.h; path = include/grpc/byte_buffer.h; sourceTree = ""; }; - 04BBD6DBBC6BBA2400FC9AC7717806CC /* FIRUser_Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRUser_Internal.h; path = FirebaseAuth/Sources/User/FIRUser_Internal.h; sourceTree = ""; }; - 04C355AE28356711B25A701D82B41E6B /* index_backfiller.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = index_backfiller.cc; path = Firestore/core/src/local/index_backfiller.cc; sourceTree = ""; }; - 04D1C1A69D8DCC157CDE20761C3A9864 /* semantic_version.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = semantic_version.upb.h; path = "src/core/ext/upb-generated/envoy/type/v3/semantic_version.upb.h"; sourceTree = ""; }; - 04E42307F08965EE6D44D9A9659712C3 /* gcm_nohw.c */ = {isa = PBXFileReference; includeInIndex = 1; name = gcm_nohw.c; path = src/crypto/fipsmodule/modes/gcm_nohw.c; sourceTree = ""; }; - 050E8F52FF88618E647955659FC57E4E /* iocp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = iocp.h; path = src/core/lib/event_engine/windows/iocp.h; sourceTree = ""; }; - 0516547BB153B89651DDB0CADA3D6E7A /* default_event_engine_factory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = default_event_engine_factory.h; path = src/core/lib/event_engine/default_event_engine_factory.h; sourceTree = ""; }; - 051B374A3FE406984A474A5230AB898B /* xds_http_filters.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_http_filters.h; path = src/core/ext/xds/xds_http_filters.h; sourceTree = ""; }; - 05218FB6CA186A4EF0EA1D5DCE406677 /* layout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = layout.h; path = absl/container/internal/layout.h; sourceTree = ""; }; - 054466AB0EC45613E8C82A662860D431 /* useful.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = useful.h; path = src/core/lib/gpr/useful.h; sourceTree = ""; }; - 0548729B5398A6BB1298D4D7D8C8B645 /* auth_metadata_processor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = auth_metadata_processor.h; path = include/grpcpp/security/auth_metadata_processor.h; sourceTree = ""; }; - 0548C87ED687A4B5A91049F19F9B237D /* xray.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xray.upb.h; path = "src/core/ext/upb-generated/envoy/config/trace/v3/xray.upb.h"; sourceTree = ""; }; - 054F7D5A4479D49EB3C9C98416D97E12 /* resolver_registry.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = resolver_registry.cc; path = src/core/lib/resolver/resolver_registry.cc; sourceTree = ""; }; - 05603E080B7957664B50E13BBACA7222 /* security.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = security.upbdefs.h; path = "src/core/ext/upbdefs-generated/xds/annotations/v3/security.upbdefs.h"; sourceTree = ""; }; - 056118C3B185466E4A9338B768DCC007 /* FIRGetRecaptchaConfigResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRGetRecaptchaConfigResponse.m; path = FirebaseAuth/Sources/Backend/RPC/FIRGetRecaptchaConfigResponse.m; sourceTree = ""; }; - 056BF016156B3FBB28C6A4BC43BE4099 /* bitmap256.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bitmap256.h; path = third_party/re2/re2/bitmap256.h; sourceTree = ""; }; - 05732C594FA7B0CE2F028221ABBFC9B9 /* precondition.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = precondition.cc; path = Firestore/core/src/model/precondition.cc; sourceTree = ""; }; - 0577809A1D299D8FE9B6E7FFEB4D45AC /* cbc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cbc.c; path = src/crypto/fipsmodule/modes/cbc.c; sourceTree = ""; }; - 057F035ACC2998725CF70C872F4790E8 /* FIRConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRConfiguration.h; path = FirebaseCore/Sources/Public/FirebaseCore/FIRConfiguration.h; sourceTree = ""; }; - 05BF01215F209396550559B62C9520CF /* memory.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = memory.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/admin/v3/memory.upbdefs.h"; sourceTree = ""; }; - 05C30974CC0A6B3414D949618B032940 /* file_watcher_certificate_provider_factory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = file_watcher_certificate_provider_factory.h; path = src/core/ext/xds/file_watcher_certificate_provider_factory.h; sourceTree = ""; }; - 05D143A84E6FACF76154B99085C0D3A4 /* FIRGetOOBConfirmationCodeResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRGetOOBConfirmationCodeResponse.m; path = FirebaseAuth/Sources/Backend/RPC/FIRGetOOBConfirmationCodeResponse.m; sourceTree = ""; }; - 05E57665ED127DA475D44158C9F39F56 /* shift.c */ = {isa = PBXFileReference; includeInIndex = 1; name = shift.c; path = src/crypto/fipsmodule/bn/shift.c; sourceTree = ""; }; - 060A7153BCB590384738154F4EC45830 /* FirebaseCore.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseCore.release.xcconfig; sourceTree = ""; }; - 061483508AA99914CAF8A34833DF920F /* random.c */ = {isa = PBXFileReference; includeInIndex = 1; name = random.c; path = src/crypto/fipsmodule/bn/random.c; sourceTree = ""; }; - 0625752EBAB40908A94FC824D9F2769E /* listeners.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = listeners.upb.h; path = "src/core/ext/upb-generated/envoy/admin/v3/listeners.upb.h"; sourceTree = ""; }; - 062BDFE49A17AFE3EF96F513A5D5F5D5 /* unicode_groups.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = unicode_groups.cc; path = third_party/re2/re2/unicode_groups.cc; sourceTree = ""; }; - 0634F16BCF6BE1DB9FE0849F05115E3C /* resource.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = resource.upb.c; path = "src/core/ext/upb-generated/envoy/annotations/resource.upb.c"; sourceTree = ""; }; - 064FB5E6568897324CF95F5EF79A3CE9 /* xds_http_filters.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = xds_http_filters.cc; path = src/core/ext/xds/xds_http_filters.cc; sourceTree = ""; }; - 06798116C4E7B8499CA6A421EFA54594 /* FIRLibrary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLibrary.h; path = FirebaseCore/Extension/FIRLibrary.h; sourceTree = ""; }; - 068979B021F3FE38872390BBFF12ECE7 /* ex_data.c */ = {isa = PBXFileReference; includeInIndex = 1; name = ex_data.c; path = src/crypto/ex_data.c; sourceTree = ""; }; - 06AD0B0949883C13EC0B57C10703568D /* grpc_if_nametoindex_unsupported.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = grpc_if_nametoindex_unsupported.cc; path = src/core/lib/iomgr/grpc_if_nametoindex_unsupported.cc; sourceTree = ""; }; - 06B98EBD5D8AB3DF97F8878EB789DD4B /* cpu_iphone.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = cpu_iphone.cc; path = src/core/lib/gpr/cpu_iphone.cc; sourceTree = ""; }; - 06C01CD6ECB4DB8B2FC4240C7A7CB62B /* murmur_hash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = murmur_hash.h; path = src/core/lib/gpr/murmur_hash.h; sourceTree = ""; }; - 06DCCCBA38736B0AB76BC0E3DDE92FC5 /* log_severity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = log_severity.h; path = absl/base/log_severity.h; sourceTree = ""; }; - 06E5D7246C4BC9A2A10097ED3A568796 /* FirebaseFirestore.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseFirestore.release.xcconfig; sourceTree = ""; }; - 06E888DF9412BB6E2A72F109271C870A /* FIRSignInWithGameCenterResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRSignInWithGameCenterResponse.m; path = FirebaseAuth/Sources/Backend/RPC/FIRSignInWithGameCenterResponse.m; sourceTree = ""; }; - 06F30910F336410569E55D073ECD4C8F /* pem_xaux.c */ = {isa = PBXFileReference; includeInIndex = 1; name = pem_xaux.c; path = src/crypto/pem/pem_xaux.c; sourceTree = ""; }; - 06FBFA4E7B6DE6CFD33BFB3E6CBC4A71 /* alts_seal_privacy_integrity_crypter.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = alts_seal_privacy_integrity_crypter.cc; path = src/core/tsi/alts/frame_protector/alts_seal_privacy_integrity_crypter.cc; sourceTree = ""; }; - 06FC5C9CF96D60C50FCD47D339C91951 /* nanopb */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = nanopb; path = nanopb.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 0712CA2B4CBEFC0340A8265E9A81BB84 /* xds_client.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_client.h; path = src/core/ext/xds/xds_client.h; sourceTree = ""; }; - 071AF4850B9833CF10B3A8979EE62B91 /* FIRAuthProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthProvider.m; path = FirebaseAuth/Sources/AuthProvider/FIRAuthProvider.m; sourceTree = ""; }; - 07420C5C2EEECDCB1364153BFAA66BF1 /* path_transformation.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = path_transformation.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/http/v3/path_transformation.upbdefs.h"; sourceTree = ""; }; - 0767F443854EE11AEB1AE0E9F66A771D /* x509_vpm.c */ = {isa = PBXFileReference; includeInIndex = 1; name = x509_vpm.c; path = src/crypto/x509/x509_vpm.c; sourceTree = ""; }; - 0769F7D0C203DBB52262FE517299C863 /* stats_data.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stats_data.h; path = src/core/lib/debug/stats_data.h; sourceTree = ""; }; - 077EFF9F3EF59167E0DEB42E51E3E93F /* security.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = security.upb.h; path = "src/core/ext/upb-generated/xds/annotations/v3/security.upb.h"; sourceTree = ""; }; - 07935EA8F22AFAC027F34E5E3CB81D25 /* binder_android.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = binder_android.cc; path = src/core/ext/transport/binder/wire_format/binder_android.cc; sourceTree = ""; }; - 079383B4BBC29ABB512059412E263624 /* name_print.c */ = {isa = PBXFileReference; includeInIndex = 1; name = name_print.c; path = src/crypto/x509/name_print.c; sourceTree = ""; }; - 07B5614E6363884F610B39068C12B1E7 /* tls_certificate_verifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tls_certificate_verifier.h; path = include/grpcpp/security/tls_certificate_verifier.h; sourceTree = ""; }; - 07DAEE9F3F44E822AB1F56231339D871 /* dynamic_ot.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dynamic_ot.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/trace/v3/dynamic_ot.upbdefs.c"; sourceTree = ""; }; - 07E087072B663C7269710F818833F544 /* memutil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = memutil.h; path = absl/strings/internal/memutil.h; sourceTree = ""; }; - 07F1FD0255609A03C3535619080FBCA5 /* channel_stack.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_stack.h; path = src/core/lib/channel/channel_stack.h; sourceTree = ""; }; - 07F3D2DFC50BDFA20E205B29196F9AD9 /* fault.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = fault.upb.c; path = "src/core/ext/upb-generated/envoy/extensions/filters/http/fault/v3/fault.upb.c"; sourceTree = ""; }; - 07F82A1D332CA1B09252974C55DC728E /* asn_pack.c */ = {isa = PBXFileReference; includeInIndex = 1; name = asn_pack.c; path = src/crypto/asn1/asn_pack.c; sourceTree = ""; }; - 080A8157D303DB6C82C6A918214DD169 /* transport_fwd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = transport_fwd.h; path = src/core/lib/transport/transport_fwd.h; sourceTree = ""; }; - 0819A5898230424794C1944D987B6AB7 /* x_val.c */ = {isa = PBXFileReference; includeInIndex = 1; name = x_val.c; path = src/crypto/x509/x_val.c; sourceTree = ""; }; - 082558C5C19C348FF00FFF8ADA6C91BB /* create_channel_internal.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = create_channel_internal.cc; path = src/cpp/client/create_channel_internal.cc; sourceTree = ""; }; - 08280339E4D147B796EB54AEB5130F2A /* table_cache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = table_cache.h; path = db/table_cache.h; sourceTree = ""; }; - 082E49181F163988C9DB0E41034DCB96 /* table.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = table.h; path = third_party/upb/upb/internal/table.h; sourceTree = ""; }; - 083654ED2F2CEBA320970FF6FB8267A2 /* metrics.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = metrics.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/admin/v3/metrics.upbdefs.h"; sourceTree = ""; }; - 0837FB8A12ADE2BB2305D0FEDBF7ED1F /* secret.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = secret.upb.h; path = "src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/secret.upb.h"; sourceTree = ""; }; - 08399C9C3F27E53366882DB35ED50185 /* work_serializer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = work_serializer.h; path = src/core/lib/gprpp/work_serializer.h; sourceTree = ""; }; - 084247E0555A377384C1F32187EC33E0 /* resolver.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolver.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/resolver.upbdefs.h"; sourceTree = ""; }; - 08451941AC5AB55FE21585ED40E378DE /* nanopb-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "nanopb-dummy.m"; sourceTree = ""; }; - 084B8E1EF4D0EC492AAE5CD86A26089F /* httpbody.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = httpbody.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/api/httpbody.upbdefs.h"; sourceTree = ""; }; - 0864CA5A01B9210E75D570FE804711DA /* sync_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sync_posix.h; path = include/grpc/impl/codegen/sync_posix.h; sourceTree = ""; }; - 08667D3F0E5175D52340FA95B8A52300 /* message_compress_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = message_compress_filter.h; path = src/core/ext/filters/http/message_compress/message_compress_filter.h; sourceTree = ""; }; - 0866A529FD2AA2239BFC2431DA9A9D4C /* GULHeartbeatDateStorageUserDefaults.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULHeartbeatDateStorageUserDefaults.h; path = GoogleUtilities/Environment/Public/GoogleUtilities/GULHeartbeatDateStorageUserDefaults.h; sourceTree = ""; }; - 08907FFC03E574D5F29CE200623AED27 /* socket_utils_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = socket_utils_posix.cc; path = src/core/lib/iomgr/socket_utils_posix.cc; sourceTree = ""; }; - 08937DD8CEA1E5C6D1FFD7BF2DAAC6E6 /* slice_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = slice_internal.h; path = src/core/lib/slice/slice_internal.h; sourceTree = ""; }; - 08A70BD72C1E3ACA8D5046D53559FDBD /* config_dump.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = config_dump.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/admin/v3/config_dump.upbdefs.c"; sourceTree = ""; }; - 08B18F7D8BB4A72D5F150F7A7EDD8EBD /* status.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = status.cc; path = Firestore/core/src/util/status.cc; sourceTree = ""; }; - 08B3811AFAFC25361E9E0A7FBB7C7FDC /* int128.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = int128.h; path = absl/numeric/int128.h; sourceTree = ""; }; - 08B3E4C96B4854DEB61D4D1C85C5E33F /* socket_windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = socket_windows.h; path = src/core/lib/iomgr/socket_windows.h; sourceTree = ""; }; - 08CFC83981C389145911B91A10E16899 /* snapshot.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = snapshot.h; path = db/snapshot.h; sourceTree = ""; }; - 08EBFCBC0C18E57241F4E726DCF80B82 /* montgomery.c */ = {isa = PBXFileReference; includeInIndex = 1; name = montgomery.c; path = src/crypto/fipsmodule/bn/montgomery.c; sourceTree = ""; }; - 08FB3B0CD74D21F7758718A0E59002BD /* extension_registry.c */ = {isa = PBXFileReference; includeInIndex = 1; name = extension_registry.c; path = third_party/upb/upb/extension_registry.c; sourceTree = ""; }; - 0914BC8906B234A1BB722E25A834DC2B /* FIRSecureTokenRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRSecureTokenRequest.m; path = FirebaseAuth/Sources/Backend/RPC/FIRSecureTokenRequest.m; sourceTree = ""; }; - 091869829B459C88E13334F509715B47 /* listener_components.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = listener_components.upb.h; path = "src/core/ext/upb-generated/envoy/config/listener/v3/listener_components.upb.h"; sourceTree = ""; }; - 0946FC2DF4D5FDB95B1C7EDB92A11A4D /* FIRApp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRApp.h; path = FirebaseCore/Sources/Public/FirebaseCore/FIRApp.h; sourceTree = ""; }; - 09588FEDA69EEC5C3508F7FB7E8B887D /* FIRLibrary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLibrary.h; path = FirebaseCore/Extension/FIRLibrary.h; sourceTree = ""; }; - 097054A92AFBBEBF210867D9C46DE3D7 /* alts_crypter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_crypter.h; path = src/core/tsi/alts/frame_protector/alts_crypter.h; sourceTree = ""; }; - 09AF23878F67216BE2C4E0D604BDB0AB /* asn1.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = asn1.h; path = src/include/openssl/asn1.h; sourceTree = ""; }; - 09C20EACCD4D4D4AA6CD6CC0B302EDE2 /* call_test_only.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = call_test_only.h; path = src/core/lib/surface/call_test_only.h; sourceTree = ""; }; - 09E0886FB5EE1B9CCDE2E3424FDB1E10 /* substitution_format_string.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = substitution_format_string.upb.c; path = "src/core/ext/upb-generated/envoy/config/core/v3/substitution_format_string.upb.c"; sourceTree = ""; }; - 09E776A4A87E067224D392D2A2C43C0B /* cluster.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cluster.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/extensions/clusters/aggregate/v3/cluster.upbdefs.h"; sourceTree = ""; }; - 09EA71DD90F518445968BAF87D9DF498 /* init_dump.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = init_dump.upb.c; path = "src/core/ext/upb-generated/envoy/admin/v3/init_dump.upb.c"; sourceTree = ""; }; - 0A013A714F4AED8C5DD374B85A646101 /* alts_grpc_record_protocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_grpc_record_protocol.h; path = src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_record_protocol.h; sourceTree = ""; }; - 0A0870967A6B71036DA6AC5642402C26 /* inproc_transport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = inproc_transport.h; path = src/core/ext/transport/inproc/inproc_transport.h; sourceTree = ""; }; - 0A0A7EB76C1AFA667BEAAB49A2FE9B1A /* crypto.c */ = {isa = PBXFileReference; includeInIndex = 1; name = crypto.c; path = src/crypto/crypto.c; sourceTree = ""; }; - 0A0CCD0F14D2B262C384C2A7A09C71BB /* common.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = common.upb.h; path = "src/core/ext/upb-generated/envoy/config/tap/v3/common.upb.h"; sourceTree = ""; }; - 0A174314C39D401855EA85B42396433A /* security.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = security.upb.h; path = "src/core/ext/upb-generated/udpa/annotations/security.upb.h"; sourceTree = ""; }; - 0A1C06D8F0A57548FFA99DCC4FACA98F /* sensitive.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sensitive.upb.h; path = "src/core/ext/upb-generated/xds/annotations/v3/sensitive.upb.h"; sourceTree = ""; }; - 0A28E301802200A3C88C7E891C07166F /* FirebaseFirestore-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FirebaseFirestore-umbrella.h"; sourceTree = ""; }; - 0A6B4D168909FFE3DB0751F19111BA23 /* FIRAggregateQuerySnapshot.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAggregateQuerySnapshot.h; path = Firestore/Source/Public/FirebaseFirestore/FIRAggregateQuerySnapshot.h; sourceTree = ""; }; - 0A6EE1923D31BADA5E27B972CD911E31 /* binder_transport.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = binder_transport.cc; path = src/core/ext/transport/binder/transport/binder_transport.cc; sourceTree = ""; }; - 0A8F2434FEEA788A70133A74516D5313 /* strerror.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = strerror.cc; path = absl/base/internal/strerror.cc; sourceTree = ""; }; - 0A9F46A999C47653013D3AD854352507 /* leveldb-library */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = "leveldb-library"; path = leveldb.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 0A9FEE752CA6928AD0326A9F883D5086 /* FIRAuthProtoFinalizeMFAPhoneRequestInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthProtoFinalizeMFAPhoneRequestInfo.m; path = FirebaseAuth/Sources/Backend/RPC/Proto/Phone/FIRAuthProtoFinalizeMFAPhoneRequestInfo.m; sourceTree = ""; }; - 0AA1C1B24BB5237282D061255F91D505 /* chttp2_connector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = chttp2_connector.h; path = src/core/ext/transport/chttp2/client/chttp2_connector.h; sourceTree = ""; }; - 0AA43F5227C5ACB14CA49123563CA91E /* GULReachabilityChecker+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "GULReachabilityChecker+Internal.h"; path = "GoogleUtilities/Reachability/GULReachabilityChecker+Internal.h"; sourceTree = ""; }; - 0AB1D33F97938390017ECB2C80330571 /* logging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = logging.h; path = third_party/re2/util/logging.h; sourceTree = ""; }; - 0AC6F56A2FD8AB2FEE770005A53062D6 /* output.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = output.cc; path = absl/strings/internal/str_format/output.cc; sourceTree = ""; }; - 0AC7F295A9BF96E551BD821B01F32EE9 /* bad_variant_access.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bad_variant_access.h; path = absl/types/bad_variant_access.h; sourceTree = ""; }; - 0AC9240598E0FFDED9320ACC157F636E /* httpbody.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = httpbody.upb.h; path = "src/core/ext/upb-generated/google/api/httpbody.upb.h"; sourceTree = ""; }; - 0AD5A08171A428E537C2520CD5F311E9 /* sockaddr_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sockaddr_utils.h; path = src/core/lib/address_utils/sockaddr_utils.h; sourceTree = ""; }; - 0ADE706F501C583FD117E2F804E2B02D /* sockaddr_windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sockaddr_windows.h; path = src/core/lib/iomgr/sockaddr_windows.h; sourceTree = ""; }; - 0AE60F82F70C6CB40ADF2B93118B646E /* tls13_server.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = tls13_server.cc; path = src/ssl/tls13_server.cc; sourceTree = ""; }; - 0AEF6450BC7366BC63114C581296920C /* channelz_registry.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = channelz_registry.cc; path = src/core/lib/channel/channelz_registry.cc; sourceTree = ""; }; - 0AFC54081D9D4DD9CF870208438C633D /* status.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = status.upb.c; path = "src/core/ext/upb-generated/xds/annotations/v3/status.upb.c"; sourceTree = ""; }; - 0AFDD41002641E79F4E12988F82E016D /* exec_ctx_wakeup_scheduler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = exec_ctx_wakeup_scheduler.h; path = src/core/lib/promise/exec_ctx_wakeup_scheduler.h; sourceTree = ""; }; - 0B06CEBE0793FBE33C4712A6E92EBB8A /* completion_queue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = completion_queue.h; path = include/grpcpp/completion_queue.h; sourceTree = ""; }; - 0B1205A5AA2B18BA0CA094E864D8268F /* error_cfstream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = error_cfstream.h; path = src/core/lib/iomgr/error_cfstream.h; sourceTree = ""; }; - 0B24AF1DA82E7EB9FBE61A111EF2A013 /* user_data.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = user_data.cc; path = Firestore/core/src/core/user_data.cc; sourceTree = ""; }; - 0B2695022ADEC049C2EC78CC26BD764F /* curve25519_32.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = curve25519_32.h; path = src/third_party/fiat/curve25519_32.h; sourceTree = ""; }; - 0B3115FB24152FFA95CA7917CD2F9ED1 /* pollset_set_windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pollset_set_windows.h; path = src/core/lib/iomgr/pollset_set_windows.h; sourceTree = ""; }; - 0B36D6BC90DB6F20B965D1505E7709B1 /* alts_security_connector.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = alts_security_connector.cc; path = src/core/lib/security/security_connector/alts/alts_security_connector.cc; sourceTree = ""; }; - 0B3CF4491472F38C5859F81F7DC14EA0 /* ostringstream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ostringstream.h; path = absl/strings/internal/ostringstream.h; sourceTree = ""; }; - 0B4E4385D6FBAA28BFA45C6352F71818 /* call_once.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = call_once.h; path = absl/base/call_once.h; sourceTree = ""; }; - 0B4F5E6C381AE1487BF4F78354B290E5 /* resolver.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolver.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/resolver.upb.h"; sourceTree = ""; }; - 0B511B4215F8C302EF71B18E5016243E /* rbac.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rbac.upb.c; path = "src/core/ext/upb-generated/envoy/config/rbac/v3/rbac.upb.c"; sourceTree = ""; }; - 0B6FD558C468B8F6C2E5813BF35E0412 /* cord_rep_btree.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = cord_rep_btree.cc; path = absl/strings/internal/cord_rep_btree.cc; sourceTree = ""; }; - 0B7216370FB72A5F5AC3267F6B9CC9A0 /* call_hook.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = call_hook.h; path = include/grpcpp/impl/codegen/call_hook.h; sourceTree = ""; }; - 0B78422793D3D90DC6C812587B5B826C /* internal_errqueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal_errqueue.h; path = src/core/lib/iomgr/internal_errqueue.h; sourceTree = ""; }; - 0B7FB9BBCC529428F75ABA3625B7BF56 /* resource_locator.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource_locator.upb.h; path = "src/core/ext/upb-generated/xds/core/v3/resource_locator.upb.h"; sourceTree = ""; }; - 0B8DF3E2F22B6B008556B1DD76AD00F4 /* alloc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alloc.h; path = include/grpc/support/alloc.h; sourceTree = ""; }; - 0B9E4BD6EBC0BC7C8F569E23A93A3F5F /* version.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = version.cc; path = src/core/lib/surface/version.cc; sourceTree = ""; }; - 0BA1CBEF3BB9C1082ACE420547EB9DD3 /* GULLoggerLevel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULLoggerLevel.h; path = GoogleUtilities/Logger/Public/GoogleUtilities/GULLoggerLevel.h; sourceTree = ""; }; - 0BACE8C27F28BDAAA4BA94FDBF4D48FC /* external_connection_acceptor_impl.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = external_connection_acceptor_impl.cc; path = src/cpp/server/external_connection_acceptor_impl.cc; sourceTree = ""; }; - 0BB09B9AC5613704597CBB67857733AE /* ratelimit_unit.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = ratelimit_unit.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/type/v3/ratelimit_unit.upbdefs.c"; sourceTree = ""; }; - 0BB9D5F28D73B100CB9692C701BA83A4 /* channel_ping.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = channel_ping.cc; path = src/core/lib/surface/channel_ping.cc; sourceTree = ""; }; - 0BC130ED50A9D0965C7DA9599DDA20E2 /* FIRMultiFactorSession+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FIRMultiFactorSession+Internal.h"; path = "FirebaseAuth/Sources/MultiFactor/FIRMultiFactorSession+Internal.h"; sourceTree = ""; }; - 0BCFE6FA6F1C01423EE009DD6713DC6A /* http2_settings.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = http2_settings.cc; path = src/core/ext/transport/chttp2/transport/http2_settings.cc; sourceTree = ""; }; - 0C026E164309BD57461813C31AEC0F43 /* tap.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tap.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/admin/v3/tap.upbdefs.h"; sourceTree = ""; }; - 0C043AAE398C84AB28A00AD47F8714B0 /* FIRStartMFAEnrollmentResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRStartMFAEnrollmentResponse.m; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/Enroll/FIRStartMFAEnrollmentResponse.m; sourceTree = ""; }; - 0C07D8003D83CF55A7B8F310F65ED095 /* string_ref.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = string_ref.h; path = include/grpcpp/impl/codegen/string_ref.h; sourceTree = ""; }; - 0C09B35EF0EA7DCC3DB8FDC30EF22EA6 /* def.c */ = {isa = PBXFileReference; includeInIndex = 1; name = def.c; path = third_party/upb/upb/def.c; sourceTree = ""; }; - 0C10BF10D5BDF891B6B35151DC10D2A9 /* grpclb_client_stats.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpclb_client_stats.h; path = src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_client_stats.h; sourceTree = ""; }; - 0C159C663FAF0F9387223336097E40AD /* FIRTwitterAuthProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRTwitterAuthProvider.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRTwitterAuthProvider.h; sourceTree = ""; }; - 0C217E5B2E886D09BA8E24734EB5B097 /* endpoint.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = endpoint.cc; path = src/core/lib/iomgr/endpoint.cc; sourceTree = ""; }; - 0C4B81820294A7FAEF53493E1D11D286 /* metrics.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = metrics.upb.h; path = "src/core/ext/upb-generated/envoy/admin/v3/metrics.upb.h"; sourceTree = ""; }; - 0C4BED0ACBE8292203F54DC3EAE6A267 /* upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = upb.h; path = third_party/upb/upb/internal/upb.h; sourceTree = ""; }; - 0C4C14EBFE2E73D6B1A8E88368C4039A /* grpc_ares_wrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_ares_wrapper.h; path = src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.h; sourceTree = ""; }; - 0C7097935DD467C1ABE0EBA62D15FC44 /* status_conversion.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = status_conversion.cc; path = src/core/lib/transport/status_conversion.cc; sourceTree = ""; }; - 0C7BDD2CB05AADB06C3868BEBB2FC798 /* resource_quota_cc.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = resource_quota_cc.cc; path = src/cpp/common/resource_quota_cc.cc; sourceTree = ""; }; - 0C7CF553C3EC5774B65491A421FA840B /* rbac.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rbac.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/rbac/v3/rbac.upbdefs.h"; sourceTree = ""; }; - 0CB06F6DB7D63425784D848F9657E0AB /* gRPC-C++-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "gRPC-C++-Info.plist"; sourceTree = ""; }; - 0CB37A7EB677EB90FFA69FA4F6CD448E /* ssl_file.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = ssl_file.cc; path = src/ssl/ssl_file.cc; sourceTree = ""; }; - 0CB687260ED178368E23C4D255D62246 /* status.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.upbdefs.h; path = "src/core/ext/upbdefs-generated/udpa/annotations/status.upbdefs.h"; sourceTree = ""; }; - 0CB9F2E62605C9E6718C530233667D7B /* tcp_server_utils_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tcp_server_utils_posix.h; path = src/core/lib/iomgr/tcp_server_utils_posix.h; sourceTree = ""; }; - 0CBE2A64EC2B57F4BA89B40B812DD568 /* sensitive.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = sensitive.upb.c; path = "src/core/ext/upb-generated/xds/annotations/v3/sensitive.upb.c"; sourceTree = ""; }; - 0CC8F95A9FBC5242FAB3453FE77328E0 /* any.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = any.upb.c; path = "src/core/ext/upb-generated/google/protobuf/any.upb.c"; sourceTree = ""; }; - 0CC8FEB777ED475C57683441DCC2299B /* number.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = number.upb.h; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/number.upb.h"; sourceTree = ""; }; - 0CE2AFCC12B9C96AE4C79D8D785C353D /* path.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = path.cc; path = Firestore/core/src/util/path.cc; sourceTree = ""; }; - 0CE3451B14BE5098477B01EA631A96E6 /* tcp_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = tcp_windows.cc; path = src/core/lib/iomgr/tcp_windows.cc; sourceTree = ""; }; - 0CE4CB8589E6AF043320D355DDAA85CA /* cordz_handle.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = cordz_handle.cc; path = absl/strings/internal/cordz_handle.cc; sourceTree = ""; }; - 0CF05BC16C7BE6FE9772893C78E0FEA4 /* xray.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xray.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/trace/v3/xray.upbdefs.h"; sourceTree = ""; }; - 0CFA724637CB489D5E948BA722221A43 /* resource.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/annotations/resource.upbdefs.h"; sourceTree = ""; }; - 0D094DEAB2BA05B268581BC9C17415D2 /* altscontext.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = altscontext.upb.h; path = "src/core/ext/upb-generated/src/proto/grpc/gcp/altscontext.upb.h"; sourceTree = ""; }; - 0D48EEAB7CA7BCA59CECC34B0A589F33 /* binder_stream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = binder_stream.h; path = src/core/ext/transport/binder/transport/binder_stream.h; sourceTree = ""; }; - 0D6A0A6A622EE2DD10856BF2120B85C8 /* context.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = context.h; path = src/core/lib/channel/context.h; sourceTree = ""; }; - 0D92DB675527154DE80F59642D7A61F3 /* http_connect_handshaker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_connect_handshaker.h; path = src/core/lib/transport/http_connect_handshaker.h; sourceTree = ""; }; - 0D9940E9ABA90994FDA72E1ED2DBB8F3 /* http_connection_manager.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_connection_manager.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upbdefs.h"; sourceTree = ""; }; - 0DA72163BFFE545A8CD1251DACC2E4B8 /* token_bucket.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = token_bucket.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/v3/token_bucket.upbdefs.h"; sourceTree = ""; }; - 0DBAF8CFE2B37FF190EC5340B9BA15A0 /* server_config_selector_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = server_config_selector_filter.cc; path = src/core/ext/filters/server_config_selector/server_config_selector_filter.cc; sourceTree = ""; }; - 0DCFD715F6E82D6A1E3E029538CF0FAD /* histogram.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = histogram.cc; path = util/histogram.cc; sourceTree = ""; }; - 0DD1E48A70177D9B7B939D8AFB93066F /* lb_policy_registry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lb_policy_registry.h; path = src/core/lib/load_balancing/lb_policy_registry.h; sourceTree = ""; }; - 0DE2E73D4603621B7AA680EB4199ACF2 /* algorithm.c */ = {isa = PBXFileReference; includeInIndex = 1; name = algorithm.c; path = src/crypto/x509/algorithm.c; sourceTree = ""; }; - 0DE2F018DBEF2901EC4F00D8A8C6659D /* notification.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = notification.h; path = absl/synchronization/notification.h; sourceTree = ""; }; - 0DF45D4C5F26587666F44F5491718DF1 /* FIRAuthInterop.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthInterop.h; path = FirebaseAuth/Interop/FIRAuthInterop.h; sourceTree = ""; }; - 0DF917ADF93C02952787C083C0950012 /* load_system_roots.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = load_system_roots.h; path = src/core/lib/security/security_connector/load_system_roots.h; sourceTree = ""; }; - 0DF9D9F9BB28D79DF52D3C5334674377 /* FIRCreateAuthURIResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCreateAuthURIResponse.m; path = FirebaseAuth/Sources/Backend/RPC/FIRCreateAuthURIResponse.m; sourceTree = ""; }; - 0DFC036D212EE5A4B2930082BD79ABF0 /* event_service_config.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = event_service_config.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/event_service_config.upbdefs.c"; sourceTree = ""; }; - 0E08E597B6588B1CFEAD63915941B59F /* security.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = security.upbdefs.h; path = "src/core/ext/upbdefs-generated/udpa/annotations/security.upbdefs.h"; sourceTree = ""; }; - 0E19542F1435FD16914CCB6487A661A8 /* wide_multiply.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = wide_multiply.h; path = absl/random/internal/wide_multiply.h; sourceTree = ""; }; - 0E394C6120D94A8B14FAF37D19E69684 /* range.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = range.upb.c; path = "src/core/ext/upb-generated/envoy/type/v3/range.upb.c"; sourceTree = ""; }; - 0E3A10DA4563742DC7391E98ACADBA62 /* p_ed25519_asn1.c */ = {isa = PBXFileReference; includeInIndex = 1; name = p_ed25519_asn1.c; path = src/crypto/evp/p_ed25519_asn1.c; sourceTree = ""; }; - 0E5D14075BB50A7D87701A672EBC9444 /* endpoint_pair.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endpoint_pair.h; path = src/core/lib/iomgr/endpoint_pair.h; sourceTree = ""; }; - 0E64064E9501CEE071C07450987CBA40 /* bound.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = bound.cc; path = Firestore/core/src/core/bound.cc; sourceTree = ""; }; - 0E64171273CFB196DC76D354C951DE9B /* algorithm.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = algorithm.h; path = absl/algorithm/algorithm.h; sourceTree = ""; }; - 0E64860B290C852337A2A5932B52373D /* xds_resource_type_impl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_resource_type_impl.h; path = src/core/ext/xds/xds_resource_type_impl.h; sourceTree = ""; }; - 0E9FC9BFBBF679606F71D9CE46EFD5A6 /* ev_poll_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = ev_poll_posix.cc; path = src/core/lib/iomgr/ev_poll_posix.cc; sourceTree = ""; }; - 0EBA18879F5395AA869BF779A0CD70A7 /* backend_metric_data.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = backend_metric_data.h; path = src/core/ext/filters/client_channel/lb_policy/backend_metric_data.h; sourceTree = ""; }; - 0EC6205C591DA2704E9D3A2DE341027B /* string.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = string.upbdefs.h; path = "src/core/ext/upbdefs-generated/xds/type/matcher/v3/string.upbdefs.h"; sourceTree = ""; }; - 0ED55A4E2EB87D1D2EC6B37F89CEB2E3 /* GULAppDelegateSwizzler_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULAppDelegateSwizzler_Private.h; path = GoogleUtilities/AppDelegateSwizzler/Internal/GULAppDelegateSwizzler_Private.h; sourceTree = ""; }; - 0EE18AE557C7BCEDDF032AC7DA353776 /* fixed_array.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fixed_array.h; path = absl/container/fixed_array.h; sourceTree = ""; }; - 0F056D0C31F69C2B7C1EA6E245ECE2C6 /* grpc_completion.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = grpc_completion.cc; path = Firestore/core/src/remote/grpc_completion.cc; sourceTree = ""; }; - 0F078356C759B45AE2D465538210B802 /* csds.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = csds.upb.h; path = "src/core/ext/upb-generated/envoy/service/status/v3/csds.upb.h"; sourceTree = ""; }; - 0F08AB7795776C5F6BD73A55EEED4A3B /* fuchsia.c */ = {isa = PBXFileReference; includeInIndex = 1; name = fuchsia.c; path = src/crypto/rand_extra/fuchsia.c; sourceTree = ""; }; - 0F19488CE91969939757AF32AF3050D4 /* poll.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = poll.h; path = src/core/lib/promise/poll.h; sourceTree = ""; }; - 0F1ABE580A488B5652F06B8ED4EF8C86 /* grpc_tls_certificate_verifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_tls_certificate_verifier.h; path = src/core/lib/security/credentials/tls/grpc_tls_certificate_verifier.h; sourceTree = ""; }; - 0F2A72C75104DE72BD562457BB12D077 /* http_inputs.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = http_inputs.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/type/matcher/v3/http_inputs.upbdefs.c"; sourceTree = ""; }; - 0F30BB17CF6C392F9DF995C4CBE71678 /* slice.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = slice.h; path = src/core/lib/slice/slice.h; sourceTree = ""; }; - 0F34E3713446A1B7F4CD6EEEB1D4EB98 /* printf.c */ = {isa = PBXFileReference; includeInIndex = 1; name = printf.c; path = src/crypto/bio/printf.c; sourceTree = ""; }; - 0F40BC40D176CAFB977DB33584326086 /* FIRGetProjectConfigResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRGetProjectConfigResponse.h; path = FirebaseAuth/Sources/Backend/RPC/FIRGetProjectConfigResponse.h; sourceTree = ""; }; - 0F47CA234DE2F4DEA3B22F1B83CA00EB /* resolve_address_windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolve_address_windows.h; path = src/core/lib/iomgr/resolve_address_windows.h; sourceTree = ""; }; - 0F50E26714E64A7137B3C19A1FE0D7CC /* check.c */ = {isa = PBXFileReference; includeInIndex = 1; name = check.c; path = src/crypto/fipsmodule/dh/check.c; sourceTree = ""; }; - 0F618F5684F180033349C90FCDC87A68 /* outlier_detection.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = outlier_detection.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/cluster/v3/outlier_detection.upbdefs.h"; sourceTree = ""; }; - 0F6516A370559F3696FE839653B24473 /* codegen_init.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = codegen_init.cc; path = src/cpp/codegen/codegen_init.cc; sourceTree = ""; }; - 0F7906BB830F523FC37A0883E75FF6EC /* base64.c */ = {isa = PBXFileReference; includeInIndex = 1; name = base64.c; path = src/crypto/base64/base64.c; sourceTree = ""; }; - 0F8DF8F2E63FC5F767A9EFA03E995FE4 /* checked.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = checked.upb.h; path = "src/core/ext/upb-generated/google/api/expr/v1alpha1/checked.upb.h"; sourceTree = ""; }; - 0FB749D7A47FC3F2A138987E3DD790C8 /* alts_unseal_privacy_integrity_crypter.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = alts_unseal_privacy_integrity_crypter.cc; path = src/core/tsi/alts/frame_protector/alts_unseal_privacy_integrity_crypter.cc; sourceTree = ""; }; - 0FC001E714139D0B27DA58324C56EBE1 /* slice_refcount_base.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = slice_refcount_base.h; path = src/core/lib/slice/slice_refcount_base.h; sourceTree = ""; }; - 0FC93416721A53218A385CE125CCC17E /* FIREmailPasswordAuthCredential.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIREmailPasswordAuthCredential.h; path = FirebaseAuth/Sources/AuthProvider/Email/FIREmailPasswordAuthCredential.h; sourceTree = ""; }; - 0FE744B15AE82C6DC1054FCE0EF8EED0 /* channel_arguments.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = channel_arguments.cc; path = src/cpp/common/channel_arguments.cc; sourceTree = ""; }; - 0FF30A4123BEAC65003F342CEC6FE777 /* node.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = node.upb.h; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/node.upb.h"; sourceTree = ""; }; - 0FF4608DF04A1BEDBBE67DCFA3EB2C7F /* e_aes.c */ = {isa = PBXFileReference; includeInIndex = 1; name = e_aes.c; path = src/crypto/fipsmodule/cipher/e_aes.c; sourceTree = ""; }; - 0FF54C24FCA429B0CD45ABFA725B27B1 /* protocol.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = protocol.upb.c; path = "src/core/ext/upb-generated/envoy/config/core/v3/protocol.upb.c"; sourceTree = ""; }; - 101FA6760343F14228636781C2FA25B2 /* naive.c */ = {isa = PBXFileReference; includeInIndex = 1; name = naive.c; path = third_party/upb/third_party/utf8_range/naive.c; sourceTree = ""; }; - 1023D207CA9A892BC0F1ADF3F866AC62 /* tzfile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tzfile.h; path = absl/time/internal/cctz/src/tzfile.h; sourceTree = ""; }; - 1051391B51DB9F66BCA46C51564875C1 /* async_queue.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = async_queue.cc; path = Firestore/core/src/util/async_queue.cc; sourceTree = ""; }; - 10721F8A1CB60F1526614B29D9542532 /* httpbody.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = httpbody.upbdefs.c; path = "src/core/ext/upbdefs-generated/google/api/httpbody.upbdefs.c"; sourceTree = ""; }; - 1091DA9A1993928A94677295C3CE0488 /* waiter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = waiter.h; path = absl/synchronization/internal/waiter.h; sourceTree = ""; }; - 10AE08A07525149A26BFCFDB121E1864 /* a_i2d_fp.c */ = {isa = PBXFileReference; includeInIndex = 1; name = a_i2d_fp.c; path = src/crypto/asn1/a_i2d_fp.c; sourceTree = ""; }; - 10B23199AFE7B3BEA038A34B76D43A53 /* auth_filters.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = auth_filters.h; path = src/core/lib/security/transport/auth_filters.h; sourceTree = ""; }; - 10B2E2A67BFD5580AC1757E458797646 /* ssl_types.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ssl_types.h; path = src/core/tsi/ssl_types.h; sourceTree = ""; }; - 10CA326DB9F12972F14D647CE44AD434 /* common.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = common.upb.h; path = "src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/common.upb.h"; sourceTree = ""; }; - 10CAD5E37211F3AB267A47CCD83A7516 /* cord_analysis.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cord_analysis.h; path = absl/strings/cord_analysis.h; sourceTree = ""; }; - 10D6B330AF38EF6E0473A1D898D0581E /* xds_transport_grpc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_transport_grpc.h; path = src/core/ext/xds/xds_transport_grpc.h; sourceTree = ""; }; - 10E1F4D8EEA01F4EE3067A245DB84F62 /* get_current_time_chrono.inc */ = {isa = PBXFileReference; includeInIndex = 1; name = get_current_time_chrono.inc; path = absl/time/internal/get_current_time_chrono.inc; sourceTree = ""; }; - 11346C016A41BB95CC7B9B15C0C25A0C /* cluster.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cluster.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/extensions/clusters/aggregate/v3/cluster.upbdefs.c"; sourceTree = ""; }; - 1136CEB901CB7E04E4754B6C11C64C9E /* evaluate_args.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = evaluate_args.h; path = src/core/lib/security/authorization/evaluate_args.h; sourceTree = ""; }; - 113864E342C765136F0D5A56B210FB09 /* status.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.h; path = src/core/lib/promise/detail/status.h; sourceTree = ""; }; - 1165571B49A5871EDCEFE0D735B6D138 /* http.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = http.upb.c; path = "src/core/ext/upb-generated/google/api/http.upb.c"; sourceTree = ""; }; - 117CF7A8A5A4D83B4850FC64E8DE1F8E /* FIRAuthCredential.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthCredential.m; path = FirebaseAuth/Sources/AuthProvider/FIRAuthCredential.m; sourceTree = ""; }; - 119B519B0144C0E738614234A202ABED /* memory_lru_reference_delegate.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = memory_lru_reference_delegate.cc; path = Firestore/core/src/local/memory_lru_reference_delegate.cc; sourceTree = ""; }; - 119EF8A4435910A100F5E99E4EDBCA21 /* ratelimit_unit.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = ratelimit_unit.upb.c; path = "src/core/ext/upb-generated/envoy/type/v3/ratelimit_unit.upb.c"; sourceTree = ""; }; - 11A41C38FA106AB6319EBB40983EE005 /* perl_groups.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = perl_groups.cc; path = third_party/re2/re2/perl_groups.cc; sourceTree = ""; }; - 11B297C02EEA2400F5DEB2B561B9AD67 /* service_config_parser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = service_config_parser.h; path = src/core/lib/service_config/service_config_parser.h; sourceTree = ""; }; - 11BF9ADD9F2453A3CC9D7EE6AE8D1501 /* bind.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = bind.cc; path = absl/strings/internal/str_format/bind.cc; sourceTree = ""; }; - 11CF5C9502D8AD9415678A36EB6C13FD /* wakeup_fd_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = wakeup_fd_posix.cc; path = src/core/lib/iomgr/wakeup_fd_posix.cc; sourceTree = ""; }; - 11E3EB04FA5D3932C280E18008A2810A /* sync_generic.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sync_generic.h; path = include/grpc/impl/codegen/sync_generic.h; sourceTree = ""; }; - 11F728C2D75FF71255DF68685DC56BE1 /* cpu_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = cpu_posix.cc; path = src/core/lib/gpr/cpu_posix.cc; sourceTree = ""; }; - 120973E92D7D51F45C77777F8A6F1C99 /* per_thread_sem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = per_thread_sem.h; path = absl/synchronization/internal/per_thread_sem.h; sourceTree = ""; }; - 120C12EBC55DA13576A550C7D52CE356 /* method_handler_impl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = method_handler_impl.h; path = include/grpcpp/impl/codegen/method_handler_impl.h; sourceTree = ""; }; - 120DE169485F7E52A03A57057AE8A10F /* orca_load_report.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = orca_load_report.upb.h; path = "src/core/ext/upb-generated/xds/data/orca/v3/orca_load_report.upb.h"; sourceTree = ""; }; - 1218D61ECA8821C5D542D4C657DF8B47 /* obj_dat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = obj_dat.h; path = src/crypto/obj/obj_dat.h; sourceTree = ""; }; - 121A4E59D9471F015794CB52DB461D07 /* json_util.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = json_util.h; path = src/core/lib/security/util/json_util.h; sourceTree = ""; }; - 121DDDC118D56428E342CD24CFD53BE5 /* table.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = table.h; path = third_party/upb/upb/internal/table.h; sourceTree = ""; }; - 122E87EF55AA4ADE54F922C772FDE9AB /* port_def.inc */ = {isa = PBXFileReference; includeInIndex = 1; name = port_def.inc; path = third_party/upb/upb/port_def.inc; sourceTree = ""; }; - 123B991CA38B79F5E44EF2E7B8FF414B /* proxy_protocol.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = proxy_protocol.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/proxy_protocol.upb.h"; sourceTree = ""; }; - 124753A0FFAF65FD4E02B674F88A47F2 /* executor_libdispatch.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = executor_libdispatch.mm; path = Firestore/core/src/util/executor_libdispatch.mm; sourceTree = ""; }; - 1252EEEA9B3170B907D71520E1BB9226 /* activity.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = activity.cc; path = src/core/lib/promise/activity.cc; sourceTree = ""; }; - 1256AFE85719C285CF9F350384F93C1C /* bad_any_cast.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = bad_any_cast.cc; path = absl/types/bad_any_cast.cc; sourceTree = ""; }; - 12683401888FF9994AE2BEE01CADA7E7 /* grpc_tls_certificate_provider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_tls_certificate_provider.h; path = src/core/lib/security/credentials/tls/grpc_tls_certificate_provider.h; sourceTree = ""; }; - 127C2BB3447A6AAA56AA95089268906F /* connector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = connector.h; path = src/core/ext/filters/client_channel/connector.h; sourceTree = ""; }; - 1286728D64CAAEFC4147B36CC6CC3CBE /* matcher.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = matcher.upb.h; path = "src/core/ext/upb-generated/envoy/config/common/matcher/v3/matcher.upb.h"; sourceTree = ""; }; - 12920A46440C58D493C61B3924E1D855 /* composite_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = composite_filter.cc; path = Firestore/core/src/core/composite_filter.cc; sourceTree = ""; }; - 12A0ED5F89B30A4928E1E33140AAEB14 /* NSData+FIRBase64.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSData+FIRBase64.m"; path = "FirebaseAuth/Sources/Utilities/NSData+FIRBase64.m"; sourceTree = ""; }; - 12AC982ED3D08ADC9F04D5E3E67A676C /* udp_socket_config.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = udp_socket_config.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/udp_socket_config.upbdefs.c"; sourceTree = ""; }; - 12BC94FF43BD63CDCE5CD5D9A5A6B00E /* server.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server.h; path = include/grpcpp/server.h; sourceTree = ""; }; - 12C217239A5100F16ED795FCC3090BC7 /* xds_listener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_listener.h; path = src/core/ext/xds/xds_listener.h; sourceTree = ""; }; - 12CD8EE7E95D665870239C22F413E917 /* substitution_format_string.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = substitution_format_string.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/substitution_format_string.upbdefs.c"; sourceTree = ""; }; - 12E6FFF3FC945747FF54FA1BA408D8C4 /* cluster.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cluster.upb.h; path = "src/core/ext/upb-generated/envoy/config/cluster/v3/cluster.upb.h"; sourceTree = ""; }; - 12F051A7D064CE804841009E80B706E8 /* tls_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tls_utils.h; path = src/core/lib/security/credentials/tls/tls_utils.h; sourceTree = ""; }; - 130B2FB7210B5C6ECB851A60F7B1E91E /* charconv.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = charconv.h; path = absl/strings/charconv.h; sourceTree = ""; }; - 1326DA35ED700A0AD3AD884629AE89EF /* leveldb-library-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "leveldb-library-dummy.m"; sourceTree = ""; }; - 1331C08243CDF5C2C9DA95CDD2B9DFC2 /* migrate.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = migrate.upb.h; path = "src/core/ext/upb-generated/udpa/annotations/migrate.upb.h"; sourceTree = ""; }; - 133B0BF0F4D04A48625AB32CCE640CAF /* index_entry.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = index_entry.cc; path = Firestore/core/src/index/index_entry.cc; sourceTree = ""; }; - 13439BAA1D978BB3A922745A675A84B6 /* struct.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = struct.upb.c; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/struct.upb.c"; sourceTree = ""; }; - 1345E13BA4FDBB3AFFA68283018BDF09 /* xds_listener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_listener.h; path = src/core/ext/xds/xds_listener.h; sourceTree = ""; }; - 136FE94A85B992DAE7F4E82436E5B3B4 /* cluster.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cluster.upb.h; path = "src/core/ext/upb-generated/envoy/config/cluster/v3/cluster.upb.h"; sourceTree = ""; }; - 138C85F2E2FBD194C63B8E3AC8B59609 /* http_connection_manager.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_connection_manager.upb.h; path = "src/core/ext/upb-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb.h"; sourceTree = ""; }; - 138CA2946B39091949E841709031E65D /* FIRTOTPMultiFactorGenerator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRTOTPMultiFactorGenerator.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRTOTPMultiFactorGenerator.h; sourceTree = ""; }; - 139AF6D02A92BA34E5F403A7A92B5E45 /* trust_token.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = trust_token.h; path = src/include/openssl/trust_token.h; sourceTree = ""; }; - 139CFAB41679A6A88FD545C1FB839799 /* message_size_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = message_size_filter.cc; path = src/core/ext/filters/message_size/message_size_filter.cc; sourceTree = ""; }; - 139D7D030A54A5A74CBA4A86CD427D61 /* HeartbeatStorage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HeartbeatStorage.swift; path = FirebaseCore/Internal/Sources/HeartbeatLogging/HeartbeatStorage.swift; sourceTree = ""; }; - 139E6A898F396ADD0382390D071FA6F9 /* handshaker_factory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = handshaker_factory.h; path = src/core/lib/transport/handshaker_factory.h; sourceTree = ""; }; - 13B4BBFDD69B0F7BAADB4D65F659A97E /* examine_stack.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = examine_stack.h; path = src/core/lib/gprpp/examine_stack.h; sourceTree = ""; }; - 13CA1E9F39FC5295801EDDD032B80C65 /* x509_trs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = x509_trs.c; path = src/crypto/x509/x509_trs.c; sourceTree = ""; }; - 13CA3ADCC25F6A6286E6FD7DCC900368 /* quic_config.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = quic_config.upb.h; path = "src/core/ext/upb-generated/envoy/config/listener/v3/quic_config.upb.h"; sourceTree = ""; }; - 13E53A35A6B10B14B822401B10697A47 /* local_documents_view.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = local_documents_view.cc; path = Firestore/core/src/local/local_documents_view.cc; sourceTree = ""; }; - 13E6E5D6A8EB1C7978814C690D699652 /* alts_grpc_privacy_integrity_record_protocol.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = alts_grpc_privacy_integrity_record_protocol.cc; path = src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_privacy_integrity_record_protocol.cc; sourceTree = ""; }; - 142764120D04DD908496CDD66BC02A0D /* FIRSecureTokenResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRSecureTokenResponse.m; path = FirebaseAuth/Sources/Backend/RPC/FIRSecureTokenResponse.m; sourceTree = ""; }; - 1433FF61669DF6AE8B034989C2EE7053 /* sync.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sync.h; path = include/grpcpp/impl/codegen/sync.h; sourceTree = ""; }; - 145EA771FCD62182DB86117A67DFF1FB /* address.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = address.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/address.upbdefs.h"; sourceTree = ""; }; - 146AC436A90A252FD5897A59D8A920BB /* ssl_utils_config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ssl_utils_config.h; path = src/core/lib/security/security_connector/ssl_utils_config.h; sourceTree = ""; }; - 1473D1F16FF623CD44FF9FE997589B66 /* duration.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = duration.upbdefs.c; path = "src/core/ext/upbdefs-generated/google/protobuf/duration.upbdefs.c"; sourceTree = ""; }; - 1482EA741A890385794839EA2CF8107A /* connectivity_state.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = connectivity_state.h; path = src/core/lib/transport/connectivity_state.h; sourceTree = ""; }; - 148D0F9E8C7373FEAF40D800FC5F1BAA /* FirebaseCoreInternal */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = FirebaseCoreInternal; path = FirebaseCoreInternal.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 148E95C321C2475B0E99E04EB4B11E5F /* ssl_transport_security.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ssl_transport_security.h; path = src/core/tsi/ssl_transport_security.h; sourceTree = ""; }; - 148F8EF09D530248CE191A8B6D575D62 /* grpc_security_constants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_security_constants.h; path = include/grpc/grpc_security_constants.h; sourceTree = ""; }; - 1490659F1A1249DE305319C0673EFF3A /* json_object_loader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = json_object_loader.h; path = src/core/lib/json/json_object_loader.h; sourceTree = ""; }; - 149B3AB286928B969D3A87E8AEA583E2 /* timestamp.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timestamp.upb.h; path = "src/core/ext/upb-generated/google/protobuf/timestamp.upb.h"; sourceTree = ""; }; - 149DF03C26022DEC6A0BB3329C2D3932 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/curve25519/internal.h; sourceTree = ""; }; - 14A49D5AC98299B72F170D4107A58485 /* core_configuration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = core_configuration.h; path = src/core/lib/config/core_configuration.h; sourceTree = ""; }; - 14AFFEA6D12735FB4196FAFB7E399C3F /* trace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = trace.h; path = src/core/lib/resource_quota/trace.h; sourceTree = ""; }; - 14BE70D9DC8CD4AB58B059281663E8CE /* range2-neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = "range2-neon.c"; path = "third_party/upb/third_party/utf8_range/range2-neon.c"; sourceTree = ""; }; - 14BE8B16C391D9A68342E0A702945859 /* FIRWriteBatch.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRWriteBatch.mm; path = Firestore/Source/API/FIRWriteBatch.mm; sourceTree = ""; }; - 14C1624B89A6149ABC322C5237980C8B /* json_args.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = json_args.h; path = src/core/lib/json/json_args.h; sourceTree = ""; }; - 14CDDB904C6B91A2BBDFD2ACDC7957CF /* stream_map.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stream_map.h; path = src/core/ext/transport/chttp2/transport/stream_map.h; sourceTree = ""; }; - 14D7335EFAF9427414BA07D885C75BD8 /* bind_front.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bind_front.h; path = absl/functional/bind_front.h; sourceTree = ""; }; - 14E22EF52F350355122C850C58B5A58B /* FIRComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponent.h; path = FirebaseCore/Extension/FIRComponent.h; sourceTree = ""; }; - 14FB2D8393CA37FB5E6380B640099BB1 /* socket_helper.c */ = {isa = PBXFileReference; includeInIndex = 1; name = socket_helper.c; path = src/crypto/bio/socket_helper.c; sourceTree = ""; }; - 150B0238429C2211A35706B836B6FE88 /* endpoint_cfstream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endpoint_cfstream.h; path = src/core/lib/iomgr/endpoint_cfstream.h; sourceTree = ""; }; - 150B2B6BFDF59CAE192AD0CABF0ACA37 /* regexp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = regexp.h; path = third_party/re2/re2/regexp.h; sourceTree = ""; }; - 1518A275EF5F14FE540310B7DEAB1853 /* ratelimit_unit.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ratelimit_unit.upb.h; path = "src/core/ext/upb-generated/envoy/type/v3/ratelimit_unit.upb.h"; sourceTree = ""; }; - 151B3DD90EEF8B3F67E6A7EF68185BDD /* BoringSSL-GRPC.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "BoringSSL-GRPC.debug.xcconfig"; sourceTree = ""; }; - 1522AC1F5E5340CE17FD3B0621FF0D41 /* parse.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = parse.cc; path = third_party/re2/re2/parse.cc; sourceTree = ""; }; - 1527270284137C30928989B2ED726C0B /* memtable.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = memtable.cc; path = db/memtable.cc; sourceTree = ""; }; - 152D6F8B919BBC43A50DCDBFBB9DD0C4 /* FBLPromise+Race.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Race.h"; path = "Sources/FBLPromises/include/FBLPromise+Race.h"; sourceTree = ""; }; - 154F2BE2B6E8724A87459B9290393B79 /* memory.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = memory.upb.c; path = "src/core/ext/upb-generated/envoy/admin/v3/memory.upb.c"; sourceTree = ""; }; - 1575CF2457FB510CA1BFAE8180A759C8 /* alts_shared_resource.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = alts_shared_resource.cc; path = src/core/tsi/alts/handshaker/alts_shared_resource.cc; sourceTree = ""; }; - 158B1ADEF7E49D23FD2E89C2F4760C09 /* hpack_encoder.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = hpack_encoder.cc; path = src/core/ext/transport/chttp2/transport/hpack_encoder.cc; sourceTree = ""; }; - 15A1BE303BDB64B96512334CC58553FD /* load_report.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = load_report.upb.h; path = "src/core/ext/upb-generated/envoy/config/endpoint/v3/load_report.upb.h"; sourceTree = ""; }; - 15A901D67B2083DA2A89EF65997B4F81 /* server_builder_plugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_builder_plugin.h; path = include/grpcpp/impl/server_builder_plugin.h; sourceTree = ""; }; - 15B1795A64D9495BC11959749DFE5D16 /* FIRTOTPMultiFactorInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRTOTPMultiFactorInfo.m; path = FirebaseAuth/Sources/MultiFactor/TOTP/FIRTOTPMultiFactorInfo.m; sourceTree = ""; }; - 15D241C6BDA2A5BA32E7EE30BEC9D97B /* xds_http_filters.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_http_filters.h; path = src/core/ext/xds/xds_http_filters.h; sourceTree = ""; }; - 15DD4881A40AFD7AA8AAF82760BD77E7 /* FIRSetAccountInfoRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRSetAccountInfoRequest.m; path = FirebaseAuth/Sources/Backend/RPC/FIRSetAccountInfoRequest.m; sourceTree = ""; }; - 15E07316BD2C913FEC484C8B9B357E23 /* FIRFieldPath.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRFieldPath.mm; path = Firestore/Source/API/FIRFieldPath.mm; sourceTree = ""; }; - 15E98AF11ADBA9A2C942B9E7B067A2D9 /* memory_persistence.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = memory_persistence.cc; path = Firestore/core/src/local/memory_persistence.cc; sourceTree = ""; }; - 15F626839572D1DB285F90644A233421 /* ring_hash.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = ring_hash.cc; path = src/core/ext/filters/client_channel/lb_policy/ring_hash/ring_hash.cc; sourceTree = ""; }; - 15FA802375E52FE64C2C51A885C9A7C9 /* time.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = time.h; path = src/core/lib/gprpp/time.h; sourceTree = ""; }; - 16196582E5C5D40C0D157F0BB8D35BBE /* call.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = call.h; path = src/core/lib/surface/call.h; sourceTree = ""; }; - 161FA1ED5BF54385AF4FBCD54B35E2B7 /* dfa.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = dfa.cc; path = third_party/re2/re2/dfa.cc; sourceTree = ""; }; - 1626579DD3A7EFE0F88A48D2C9F14B01 /* GULSceneDelegateSwizzler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULSceneDelegateSwizzler.h; path = GoogleUtilities/AppDelegateSwizzler/Public/GoogleUtilities/GULSceneDelegateSwizzler.h; sourceTree = ""; }; - 1642B1ACAD9E3ED5F07F9FC9B17C2D13 /* fake_transport_security.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fake_transport_security.h; path = src/core/tsi/fake_transport_security.h; sourceTree = ""; }; - 164DBA11BE7F19B1765886A7011DDCD8 /* ssl_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ssl_utils.h; path = src/core/lib/security/security_connector/ssl_utils.h; sourceTree = ""; }; - 1721A8FBD82F65B6216C583121EA9086 /* secure_endpoint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = secure_endpoint.h; path = src/core/lib/security/transport/secure_endpoint.h; sourceTree = ""; }; - 1738FC80FDEF63C2FB7F3782C3C99FC0 /* tls_record.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = tls_record.cc; path = src/ssl/tls_record.cc; sourceTree = ""; }; - 173FEBB8CBBD480F37B2794415F76E3C /* api.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = api.h; path = src/core/lib/resource_quota/api.h; sourceTree = ""; }; - 17460B4EC14F17861C1C9CA708C33128 /* fake_transport_security.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fake_transport_security.h; path = src/core/tsi/fake_transport_security.h; sourceTree = ""; }; - 17485351CF313B46A05549E8FD2DC7DA /* versioning.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = versioning.upbdefs.h; path = "src/core/ext/upbdefs-generated/udpa/annotations/versioning.upbdefs.h"; sourceTree = ""; }; - 1751ED9CFE13D8329D036BB821C81DEF /* tostring.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = tostring.cc; path = third_party/re2/re2/tostring.cc; sourceTree = ""; }; - 1762E9214AD1B7447408F9755D93BBD2 /* iterator.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = iterator.cc; path = table/iterator.cc; sourceTree = ""; }; - 176A10510B33DE33C11855F840E3E4EA /* bad_variant_access.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = bad_variant_access.cc; path = absl/types/bad_variant_access.cc; sourceTree = ""; }; - 1772F3769D36BDB6BC4AC17C3BAAB52F /* FIROAuthProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIROAuthProvider.m; path = FirebaseAuth/Sources/AuthProvider/OAuth/FIROAuthProvider.m; sourceTree = ""; }; - 1776A7F945303F621981858DC78CCB22 /* FIRRevokeTokenRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRRevokeTokenRequest.m; path = FirebaseAuth/Sources/Backend/RPC/FIRRevokeTokenRequest.m; sourceTree = ""; }; - 177DAEA4216A6CE5F8E42BA6E16AB9EB /* backoff.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = backoff.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/backoff.upb.h"; sourceTree = ""; }; - 1781BB0D9BFC6A8BF2634B1A513498E1 /* stat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stat.h; path = src/core/lib/gprpp/stat.h; sourceTree = ""; }; - 17876962FA8C5D0178EC8CEB827D22F7 /* decode_fast.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = decode_fast.h; path = third_party/upb/upb/decode_fast.h; sourceTree = ""; }; - 178E062A4A9CEB480C27DC929BA13932 /* filter.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = filter.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/cluster/v3/filter.upbdefs.h"; sourceTree = ""; }; - 17C30238877BB9F54C7CE0436E61C93C /* FIRPhoneAuthProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRPhoneAuthProvider.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRPhoneAuthProvider.h; sourceTree = ""; }; - 17D95BE4C8D51C1E086ABF442672DC9A /* discrete_distribution.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = discrete_distribution.cc; path = absl/random/discrete_distribution.cc; sourceTree = ""; }; - 17DB8C8B437B6C636D0DD2F316547097 /* global_config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = global_config.h; path = src/core/lib/gprpp/global_config.h; sourceTree = ""; }; - 17E051142539D39490A629C7F0E012D8 /* decode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = decode.h; path = third_party/upb/upb/decode.h; sourceTree = ""; }; - 17EA3630DC9737756BCE14A611D46B21 /* grpc_ares_wrapper.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = grpc_ares_wrapper.cc; path = src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.cc; sourceTree = ""; }; - 17F65555FFC0386F77E3593BC9E87342 /* grpc_tls_credentials_options.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_tls_credentials_options.h; path = src/core/lib/security/credentials/tls/grpc_tls_credentials_options.h; sourceTree = ""; }; - 180481C14161F7B5D4859DAAEFB3555D /* FIRAuthErrorUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthErrorUtils.h; path = FirebaseAuth/Sources/Utilities/FIRAuthErrorUtils.h; sourceTree = ""; }; - 1806ECB9B1472EB77A01E6117300106C /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/pkcs8/internal.h; sourceTree = ""; }; - 1812A735373A742DFA5CAE2600CED9F5 /* check_gcp_environment.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = check_gcp_environment.cc; path = src/core/lib/security/credentials/alts/check_gcp_environment.cc; sourceTree = ""; }; - 1842BC35A00C980B3160A6747CCCB0EB /* alts_frame_protector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_frame_protector.h; path = src/core/tsi/alts/frame_protector/alts_frame_protector.h; sourceTree = ""; }; - 1844EBE4FC14781156F8093B134BFFD1 /* status.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.h; path = include/grpcpp/impl/codegen/status.h; sourceTree = ""; }; - 184D1A8484B271AC5F4BB80557F17552 /* FIRAuthInternalErrors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthInternalErrors.h; path = FirebaseAuth/Sources/Utilities/FIRAuthInternalErrors.h; sourceTree = ""; }; - 1850D2EDCB2F7328D519DD4FA0263608 /* FIRSendVerificationCodeRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRSendVerificationCodeRequest.h; path = FirebaseAuth/Sources/Backend/RPC/FIRSendVerificationCodeRequest.h; sourceTree = ""; }; - 18526C213320164BFF5E7C5B7C186879 /* v3_extku.c */ = {isa = PBXFileReference; includeInIndex = 1; name = v3_extku.c; path = src/crypto/x509v3/v3_extku.c; sourceTree = ""; }; - 18645A2EFEF4D8BFB9451944F15E6A3D /* message_compress.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = message_compress.h; path = src/core/lib/compression/message_compress.h; sourceTree = ""; }; - 186E07F8A9CA37AFC47C52BD0872617C /* string.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = string.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/matcher/v3/string.upbdefs.h"; sourceTree = ""; }; - 187C1A3E5C4CABDD233B58E6DDFC24B6 /* cord_analysis.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = cord_analysis.cc; path = absl/strings/cord_analysis.cc; sourceTree = ""; }; - 188BE3785B4092C02DBE4D892D5A7FF4 /* regexp.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = regexp.cc; path = third_party/re2/re2/regexp.cc; sourceTree = ""; }; - 188CDB4F8ADFDE5FAF959BD35BB56D0E /* health_check_client.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = health_check_client.h; path = src/core/ext/filters/client_channel/health/health_check_client.h; sourceTree = ""; }; - 18BA2C4148FF4903B3C64756224F4598 /* x509_d2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = x509_d2.c; path = src/crypto/x509/x509_d2.c; sourceTree = ""; }; - 18BCC3A2772B3C874715414C19A4FBC0 /* builder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = builder.h; path = db/builder.h; sourceTree = ""; }; - 18D6FF9C7977346DF5A7FE0D0A9EAC2C /* check_gcp_environment_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = check_gcp_environment_windows.cc; path = src/core/lib/security/credentials/alts/check_gcp_environment_windows.cc; sourceTree = ""; }; - 18E4F3732197F713BA20233201F57F1C /* client_channel_plugin.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = client_channel_plugin.cc; path = src/core/ext/filters/client_channel/client_channel_plugin.cc; sourceTree = ""; }; - 190AA77CBDFD209C001B1E1D4FECA0CD /* FIRAuthAPNSTokenType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthAPNSTokenType.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRAuthAPNSTokenType.h; sourceTree = ""; }; - 1911113E0FBF13CFF9132E5FF7685228 /* gRPC-C++ */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = "gRPC-C++"; path = grpcpp.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 1927E1F9D9D46E702AC18225C24EBD49 /* FIRUserInfoImpl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRUserInfoImpl.m; path = FirebaseAuth/Sources/User/FIRUserInfoImpl.m; sourceTree = ""; }; - 192A711206B2630A44D58A1E6F7A765B /* extension.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = extension.h; path = absl/strings/internal/str_format/extension.h; sourceTree = ""; }; - 19592F0E05108D751480092990690648 /* http.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/v3/http.upbdefs.h"; sourceTree = ""; }; - 195A2DB5E78C49C1AE0B418DA24023F1 /* FIRAuthCredential.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthCredential.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRAuthCredential.h; sourceTree = ""; }; - 19747E4348066BF84AFD1ED2BAE50E38 /* FIRAuthUIDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthUIDelegate.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRAuthUIDelegate.h; sourceTree = ""; }; - 1975B513063EC92B14E161186BF1F74E /* rls.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = rls.cc; path = src/core/ext/filters/client_channel/lb_policy/rls/rls.cc; sourceTree = ""; }; - 197FC775AC7F9B944D4C143EC6AA9DB7 /* testharness.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = testharness.h; path = util/testharness.h; sourceTree = ""; }; - 198FC76DFF94EC9C0CE10D0A2559299A /* memutil.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = memutil.cc; path = absl/strings/internal/memutil.cc; sourceTree = ""; }; - 1993D5A3B0668140C34BDCDD5FF5990B /* matcher.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = matcher.upbdefs.h; path = "src/core/ext/upbdefs-generated/xds/type/matcher/v3/matcher.upbdefs.h"; sourceTree = ""; }; - 1995808E960CBF0DACF5C040FF85DD99 /* FIRAuthRecaptchaVerifier.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthRecaptchaVerifier.m; path = FirebaseAuth/Sources/Utilities/FIRAuthRecaptchaVerifier.m; sourceTree = ""; }; - 1995FCF1B624CAA490E946B40CCD18FB /* subchannel_interface_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = subchannel_interface_internal.h; path = src/core/ext/filters/client_channel/subchannel_interface_internal.h; sourceTree = ""; }; - 199AF83A315BCAD46E1E612D27922C10 /* tls13_client.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = tls13_client.cc; path = src/ssl/tls13_client.cc; sourceTree = ""; }; - 19A09BADB75E70F63D955FE33A967D98 /* dual_ref_counted.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dual_ref_counted.h; path = src/core/lib/gprpp/dual_ref_counted.h; sourceTree = ""; }; - 19A23E1AD61FD7EC04565C3077754E2F /* method_handler_impl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = method_handler_impl.h; path = include/grpcpp/impl/method_handler_impl.h; sourceTree = ""; }; - 19A3EB0C3E4614F7F2563AF42374133D /* FIRGameCenterAuthProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRGameCenterAuthProvider.m; path = FirebaseAuth/Sources/AuthProvider/GameCenter/FIRGameCenterAuthProvider.m; sourceTree = ""; }; - 19A5AFA3772DF97B4F21597F320D97CC /* RCARecaptchaClientProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCARecaptchaClientProtocol.h; path = RecaptchaEnterprise/RecaptchaInterop/Public/RecaptchaInterop/RCARecaptchaClientProtocol.h; sourceTree = ""; }; - 19ABBF7577C67551946CD8EF27D02115 /* socket_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = socket_utils.h; path = src/core/lib/iomgr/socket_utils.h; sourceTree = ""; }; - 19BE17B876B955A416B4318AAFD28C30 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/fipsmodule/rand/internal.h; sourceTree = ""; }; - 19BFDA34A5393E1F5CE1D6E761BAA658 /* grpclb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpclb.h; path = src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.h; sourceTree = ""; }; - 19C4F5543656C428F09D47C6E17FABA3 /* security.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = security.upb.h; path = "src/core/ext/upb-generated/udpa/annotations/security.upb.h"; sourceTree = ""; }; - 19CA51DFF75942055965196F29F926E2 /* resolver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolver.h; path = src/core/lib/resolver/resolver.h; sourceTree = ""; }; - 19CB4B90FE8A0383092322CF0CFDF56B /* inlined_vector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = inlined_vector.h; path = absl/container/inlined_vector.h; sourceTree = ""; }; - 19CBF60EAC11EAC2266F3AFC028F0D95 /* FIRGetAccountInfoRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRGetAccountInfoRequest.m; path = FirebaseAuth/Sources/Backend/RPC/FIRGetAccountInfoRequest.m; sourceTree = ""; }; - 19D405D76CF303CD18D241AE0DC046D8 /* async_generic_service.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = async_generic_service.h; path = include/grpcpp/impl/codegen/async_generic_service.h; sourceTree = ""; }; - 19D93B91BADC8E62879B2777C8505028 /* utils.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = utils.cc; path = src/core/lib/event_engine/utils.cc; sourceTree = ""; }; - 19FC241E6FF167DCF943DCB2DA505EEA /* leveldb-library-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "leveldb-library-Info.plist"; sourceTree = ""; }; - 1A1F3A96B2533F58C7FCC8BB56117326 /* FIRUserMetadata.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRUserMetadata.m; path = FirebaseAuth/Sources/User/FIRUserMetadata.m; sourceTree = ""; }; - 1A27EFEF109F68AD716D9F3A83FD6445 /* cookie.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cookie.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/http/v3/cookie.upbdefs.h"; sourceTree = ""; }; - 1A36D9C035BCFD1324F484913C6463A7 /* service_config_impl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = service_config_impl.h; path = src/core/lib/service_config/service_config_impl.h; sourceTree = ""; }; - 1A3C947C609F3B0AD0A39538E07DB66A /* x509_att.c */ = {isa = PBXFileReference; includeInIndex = 1; name = x509_att.c; path = src/crypto/x509/x509_att.c; sourceTree = ""; }; - 1A5587DDED359B09371001E3ED4E1963 /* iomgr_fwd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = iomgr_fwd.h; path = src/core/lib/iomgr/iomgr_fwd.h; sourceTree = ""; }; - 1A70DB7E797A2289D2EA4F62C1E14CDC /* target_id_generator.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = target_id_generator.cc; path = Firestore/core/src/core/target_id_generator.cc; sourceTree = ""; }; - 1A7778C4F025CB8202CC7F27B276FE39 /* manual_constructor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = manual_constructor.h; path = src/core/lib/gprpp/manual_constructor.h; sourceTree = ""; }; - 1A83B8BCFF66CD058423DBF8E8B8EC0D /* FirebaseCoreInternal.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseCoreInternal.debug.xcconfig; sourceTree = ""; }; - 1A8A044AF8C10F2D388A7764DEFDDAE9 /* poly1305.c */ = {isa = PBXFileReference; includeInIndex = 1; name = poly1305.c; path = src/crypto/poly1305/poly1305.c; sourceTree = ""; }; - 1A90885BB10FC6E1EE223C8DC747F79A /* FIRPhoneAuthCredential.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRPhoneAuthCredential.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRPhoneAuthCredential.h; sourceTree = ""; }; - 1AA6CA250C71F83169838147FD45AD3D /* comparator.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = comparator.cc; path = util/comparator.cc; sourceTree = ""; }; - 1AB7C208B5F419F1ADF907917C8EDDAB /* uniform_real_distribution.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = uniform_real_distribution.h; path = absl/random/uniform_real_distribution.h; sourceTree = ""; }; - 1AC51CD662C33BBD4B460B884DE307C8 /* sorted_pack.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sorted_pack.h; path = src/core/lib/gprpp/sorted_pack.h; sourceTree = ""; }; - 1AC593ACF1A23DE1CFD15E9DB296B2E0 /* merger.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = merger.cc; path = table/merger.cc; sourceTree = ""; }; - 1ACB917CF960892AD5AD6CF6035DA2D3 /* config_selector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = config_selector.h; path = src/core/ext/filters/client_channel/config_selector.h; sourceTree = ""; }; - 1AD4378580FE9A399CFBA8EE6182EEFE /* fips_shared_support.c */ = {isa = PBXFileReference; includeInIndex = 1; name = fips_shared_support.c; path = src/crypto/fipsmodule/fips_shared_support.c; sourceTree = ""; }; - 1B17C3C2B832155CA5A0ADE96C472348 /* sync_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sync_posix.h; path = include/grpc/support/sync_posix.h; sourceTree = ""; }; - 1B24BD0A3D0A318FAD9CF5933A7644A7 /* annotations.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = annotations.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/api/annotations.upbdefs.h"; sourceTree = ""; }; - 1B2F8B601960C5232B9ED3108E1D50FF /* channel_args.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_args.h; path = src/core/lib/channel/channel_args.h; sourceTree = ""; }; - 1B46928C3A47E4A4891F6E8EDEE6403D /* re2.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = re2.cc; path = third_party/re2/re2/re2.cc; sourceTree = ""; }; - 1B7ADF6AEAB25592794307A8E97CD5BA /* tcp_server_utils_posix_ifaddrs.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = tcp_server_utils_posix_ifaddrs.cc; path = src/core/lib/iomgr/tcp_server_utils_posix_ifaddrs.cc; sourceTree = ""; }; - 1B883E7E0EF6499C7B22143CE83590E5 /* init.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = init.cc; path = src/core/lib/surface/init.cc; sourceTree = ""; }; - 1B8A5C27DD761FCD7082FFBDC70E736C /* FBLPromise+Timeout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Timeout.m"; path = "Sources/FBLPromises/FBLPromise+Timeout.m"; sourceTree = ""; }; - 1BB50308DCB51A0A5C426E4A32A8EE8E /* validate.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = validate.upb.h; path = "src/core/ext/upb-generated/validate/validate.upb.h"; sourceTree = ""; }; - 1BBC5EBCFA57BFB540973AC6EEA09DAF /* FIRTwitterAuthCredential.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRTwitterAuthCredential.m; path = FirebaseAuth/Sources/AuthProvider/Twitter/FIRTwitterAuthCredential.m; sourceTree = ""; }; - 1BBF3844FAF1D7CCCABA78FF41D836BC /* bind.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bind.h; path = absl/strings/internal/str_format/bind.h; sourceTree = ""; }; - 1BCB85E39B8709AB8B7E047AFE5D5447 /* env_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = env_posix.cc; path = util/env_posix.cc; sourceTree = ""; }; - 1BD45741D4ACCC04949E6770DC9B15CC /* posix_engine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = posix_engine.h; path = src/core/lib/event_engine/posix_engine/posix_engine.h; sourceTree = ""; }; - 1C087812611DD789464B8293CB08C565 /* ref_counted.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ref_counted.h; path = src/core/lib/gprpp/ref_counted.h; sourceTree = ""; }; - 1C0ADF90A07901007BF2B7E7A82B1D5B /* tap.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tap.upb.h; path = "src/core/ext/upb-generated/envoy/admin/v3/tap.upb.h"; sourceTree = ""; }; - 1C29221990192A22A718DC6094646990 /* ex_data.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ex_data.h; path = src/include/openssl/ex_data.h; sourceTree = ""; }; - 1C2977F76C81A65C72F697F2AB533F71 /* migrate.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = migrate.upbdefs.c; path = "src/core/ext/upbdefs-generated/udpa/annotations/migrate.upbdefs.c"; sourceTree = ""; }; - 1C4211ECBF43B68AF35C84179AABD645 /* memory_target_cache.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = memory_target_cache.cc; path = Firestore/core/src/local/memory_target_cache.cc; sourceTree = ""; }; - 1C42BC7313685B7674C0A791D2A72E38 /* struct.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = struct.upb.h; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/struct.upb.h"; sourceTree = ""; }; - 1C78067BDBE1D18ECA497231AC19E002 /* channel_fwd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_fwd.h; path = src/core/lib/channel/channel_fwd.h; sourceTree = ""; }; - 1C794432AEE3059C645696D8CE60EE02 /* load_file.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = load_file.h; path = src/core/lib/iomgr/load_file.h; sourceTree = ""; }; - 1C804E76A5EC6FA9CC2F80A0523C6546 /* secure_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = secure_credentials.h; path = src/cpp/client/secure_credentials.h; sourceTree = ""; }; - 1C80FBFAFFDCE9E2F58823778966930D /* gethostname_fallback.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = gethostname_fallback.cc; path = src/core/lib/iomgr/gethostname_fallback.cc; sourceTree = ""; }; - 1CA9FA7ACCBB7A0C93FB4ED61A315110 /* chunked_vector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = chunked_vector.h; path = src/core/lib/gprpp/chunked_vector.h; sourceTree = ""; }; - 1CB7C53AC46E13F5F5F946BA6080DB57 /* gsec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = gsec.h; path = src/core/tsi/alts/crypt/gsec.h; sourceTree = ""; }; - 1CB9C48F627F540C93D3E9BB0D040949 /* mix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mix.h; path = third_party/re2/util/mix.h; sourceTree = ""; }; - 1CC3B64B2042A436DDA929392E4C4799 /* snapshot_version.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = snapshot_version.cc; path = Firestore/core/src/model/snapshot_version.cc; sourceTree = ""; }; - 1CD2F0292B8E1ACA99BBDAFAE560D126 /* compression.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = compression.h; path = include/grpc/compression.h; sourceTree = ""; }; - 1CD401271C3860EF454268A51B4C91FC /* any.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = any.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/protobuf/any.upbdefs.h"; sourceTree = ""; }; - 1CEC2CB5E13A2A0BDBF79A9BCAC16540 /* rc4.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rc4.h; path = src/include/openssl/rc4.h; sourceTree = ""; }; - 1CECB88D71D7BDF7E0A14D93CBD65AFF /* token_bucket.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = token_bucket.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/type/v3/token_bucket.upbdefs.c"; sourceTree = ""; }; - 1CFE3CCE9E01BCD85301BDCAFC3A0D2B /* context_params.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = context_params.upbdefs.h; path = "src/core/ext/upbdefs-generated/xds/core/v3/context_params.upbdefs.h"; sourceTree = ""; }; - 1CFE86B54EC25DE641935FE6648E13CE /* flow_control.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = flow_control.cc; path = src/core/ext/transport/chttp2/transport/flow_control.cc; sourceTree = ""; }; - 1D1DFFCC43C65919ACB48F7BDCE21155 /* iocp.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = iocp.cc; path = src/core/lib/event_engine/windows/iocp.cc; sourceTree = ""; }; - 1D598A2C214CD177CFE95CEB5B1784DF /* stats_data.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stats_data.h; path = src/core/lib/debug/stats_data.h; sourceTree = ""; }; - 1D6008EB592B75CFE5097504742BA7DA /* extension.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = extension.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/extension.upbdefs.c"; sourceTree = ""; }; - 1D66AE195A622BA6B4699D8C2292663B /* timer.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = timer.cc; path = src/core/lib/event_engine/posix_engine/timer.cc; sourceTree = ""; }; - 1D7102E0832D113DB8685B47A97E882E /* hash_policy.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hash_policy.upb.h; path = "src/core/ext/upb-generated/envoy/type/v3/hash_policy.upb.h"; sourceTree = ""; }; - 1D780F1CC26400888513316ADA2DF632 /* FIRGetProjectConfigRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRGetProjectConfigRequest.m; path = FirebaseAuth/Sources/Backend/RPC/FIRGetProjectConfigRequest.m; sourceTree = ""; }; - 1D7BE3AD52FDA00820CF4EC9167EE0B1 /* json_util.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = json_util.h; path = src/core/lib/json/json_util.h; sourceTree = ""; }; - 1D7CF27997FD0A87CCE91DC194F66D61 /* backoff.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = backoff.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/backoff.upbdefs.c"; sourceTree = ""; }; - 1D9DDF413C634F2C569FE3630DE09562 /* optional.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = optional.h; path = absl/types/optional.h; sourceTree = ""; }; - 1DA0DB6D2819859B62E1C5B754F07771 /* sensitive.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sensitive.upb.h; path = "src/core/ext/upb-generated/udpa/annotations/sensitive.upb.h"; sourceTree = ""; }; - 1DA46895756E69F3B9F46764AA039733 /* resource_name.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = resource_name.upb.c; path = "src/core/ext/upb-generated/xds/core/v3/resource_name.upb.c"; sourceTree = ""; }; - 1DC5F2082BBD8CF6A0D6619BCA254C8A /* jni_utils.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = jni_utils.cc; path = src/core/ext/transport/binder/client/jni_utils.cc; sourceTree = ""; }; - 1DCA68242C6ECF011E50B44F3FEF54D9 /* dumpfile.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = dumpfile.cc; path = db/dumpfile.cc; sourceTree = ""; }; - 1DE62FAAE286CCC194CD33B462FA7EC8 /* tap.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = tap.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/admin/v3/tap.upbdefs.c"; sourceTree = ""; }; - 1DED7A568BB5A9C4FD0D96ADF9DB6752 /* b64.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = b64.cc; path = src/core/lib/slice/b64.cc; sourceTree = ""; }; - 1DEE40E82837740E374C5DD2172EF7F8 /* resource_path.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = resource_path.cc; path = Firestore/core/src/model/resource_path.cc; sourceTree = ""; }; - 1DF316C0F417C1D06A55470C22D0CFCE /* gRPC-Core-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "gRPC-Core-Info.plist"; sourceTree = ""; }; - 1E022FC78DE40F836648FC1DE7BAFD20 /* core_codegen.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = core_codegen.h; path = include/grpcpp/impl/codegen/core_codegen.h; sourceTree = ""; }; - 1E05D7E91A4FC66661C3C2DA1D6CA248 /* auth_filters.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = auth_filters.h; path = src/core/lib/security/transport/auth_filters.h; sourceTree = ""; }; - 1E09B343C8C85CB6C84FD2AB85C3706A /* circuit_breaker.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = circuit_breaker.upb.c; path = "src/core/ext/upb-generated/envoy/config/cluster/v3/circuit_breaker.upb.c"; sourceTree = ""; }; - 1E09FC981BD4109864F3A1EFC649154C /* tls_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tls_credentials.h; path = src/core/lib/security/credentials/tls/tls_credentials.h; sourceTree = ""; }; - 1E1C9FD5EF1187307DC346C3FCC240A2 /* wrappers.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = wrappers.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/protobuf/wrappers.upbdefs.h"; sourceTree = ""; }; - 1E211DB1275783D9C78059A105BE417F /* channel_args.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_args.h; path = src/core/lib/channel/channel_args.h; sourceTree = ""; }; - 1E24E05693D9DC449483756517BB1AEB /* sync_custom.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sync_custom.h; path = include/grpc/impl/codegen/sync_custom.h; sourceTree = ""; }; - 1E73586FCC03ED1B3303A48E00AFF265 /* block_annotate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = block_annotate.h; path = src/core/lib/iomgr/block_annotate.h; sourceTree = ""; }; - 1E959A7D1ABD4C9B0C831B21AB593CD5 /* ev_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ev_posix.h; path = src/core/lib/iomgr/ev_posix.h; sourceTree = ""; }; - 1E997CA9154AF79B101D6E82B916EFF8 /* protocol.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = protocol.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/protocol.upbdefs.c"; sourceTree = ""; }; - 1EB1444C130BA5DED98284F1AF09AA5B /* ssl_types.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ssl_types.h; path = src/core/tsi/ssl_types.h; sourceTree = ""; }; - 1EB4CD6A457FDF73D733D18642481915 /* cfstream_handle.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = cfstream_handle.cc; path = src/core/lib/iomgr/cfstream_handle.cc; sourceTree = ""; }; - 1ECDEDF4C82FCA27BEA956A79DF33F9C /* message_compress_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = message_compress_filter.h; path = src/core/ext/filters/http/message_compress/message_compress_filter.h; sourceTree = ""; }; - 1EE3EC4FFD844681B8CCFE55C0898981 /* endpoint_binder_pool.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = endpoint_binder_pool.cc; path = src/core/ext/transport/binder/client/endpoint_binder_pool.cc; sourceTree = ""; }; - 1EEDB472AB5EEE70306A12A1E8007342 /* FIRTransactionOptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRTransactionOptions.h; path = Firestore/Source/Public/FirebaseFirestore/FIRTransactionOptions.h; sourceTree = ""; }; - 1F096285F1E2CFFB1BAE1DBD7FA0DEB2 /* i2d_pr.c */ = {isa = PBXFileReference; includeInIndex = 1; name = i2d_pr.c; path = src/crypto/x509/i2d_pr.c; sourceTree = ""; }; - 1F11F8643585D41931E1577B6B6525DD /* resolver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolver.h; path = src/core/lib/resolver/resolver.h; sourceTree = ""; }; - 1F13B65A25AAC2D139846A8BD9C33817 /* secret.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = secret.upb.h; path = "src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/secret.upb.h"; sourceTree = ""; }; - 1F50ACB075D0ED0D597628C771FF601D /* call_combiner.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = call_combiner.cc; path = src/core/lib/iomgr/call_combiner.cc; sourceTree = ""; }; - 1F5FA8A6467F58D2EBA8D27644636F33 /* listener_components.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = listener_components.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/listener/v3/listener_components.upbdefs.h"; sourceTree = ""; }; - 1F652B140E607983B920F4855C0736F4 /* status.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.upb.h; path = "src/core/ext/upb-generated/google/rpc/status.upb.h"; sourceTree = ""; }; - 1F6BDF55ADB595DCF7949D3FD6750F6E /* alts_grpc_record_protocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_grpc_record_protocol.h; path = src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_record_protocol.h; sourceTree = ""; }; - 1F80AD3BC9FFB908355FF651B0E9FAAB /* v3_bitst.c */ = {isa = PBXFileReference; includeInIndex = 1; name = v3_bitst.c; path = src/crypto/x509v3/v3_bitst.c; sourceTree = ""; }; - 1F85AC87B6B1AA44555EE31427B6CA0D /* FBLPromise+Async.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Async.h"; path = "Sources/FBLPromises/include/FBLPromise+Async.h"; sourceTree = ""; }; - 1F920C49AFE9E9A591BEE53A41863C71 /* GULSceneDelegateSwizzler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULSceneDelegateSwizzler.m; path = GoogleUtilities/AppDelegateSwizzler/GULSceneDelegateSwizzler.m; sourceTree = ""; }; - 1FB19D674A6C63A47203BE6CD3206057 /* utf.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = utf.h; path = third_party/re2/util/utf.h; sourceTree = ""; }; - 1FC348A7F26B3A78CD3EDE67ED7469AE /* p_dsa_asn1.c */ = {isa = PBXFileReference; includeInIndex = 1; name = p_dsa_asn1.c; path = src/crypto/evp/p_dsa_asn1.c; sourceTree = ""; }; - 1FC764A39A8FE7D34672ED38C9EAA10D /* FBLPromise+All.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+All.h"; path = "Sources/FBLPromises/include/FBLPromise+All.h"; sourceTree = ""; }; - 1FD7FF5E6BBB4576F06A33F1CB622469 /* pcy_lib.c */ = {isa = PBXFileReference; includeInIndex = 1; name = pcy_lib.c; path = src/crypto/x509v3/pcy_lib.c; sourceTree = ""; }; - 1FF793B9627F482170B778D0008FA182 /* FBLPromise+All.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+All.m"; path = "Sources/FBLPromises/FBLPromise+All.m"; sourceTree = ""; }; - 1FFA8BFF04370260E7DF86886A867442 /* server_config_selector_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_config_selector_filter.h; path = src/core/ext/filters/server_config_selector/server_config_selector_filter.h; sourceTree = ""; }; - 1FFD6800917D68054C7B14ED82357771 /* log_reader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = log_reader.h; path = db/log_reader.h; sourceTree = ""; }; - 2032DCC5B304C25D554D131E7EAA99CF /* annotations.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = annotations.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/api/annotations.upbdefs.h"; sourceTree = ""; }; - 203ADC867E690929F957ED926E57349B /* padding.c */ = {isa = PBXFileReference; includeInIndex = 1; name = padding.c; path = src/crypto/fipsmodule/rsa/padding.c; sourceTree = ""; }; - 2047186A0C0844604CF3BDF0237A51B0 /* connect.c */ = {isa = PBXFileReference; includeInIndex = 1; name = connect.c; path = src/crypto/bio/connect.c; sourceTree = ""; }; - 204A3E762E76090C27AAC197A417C4AB /* memory.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = memory.upb.h; path = "src/core/ext/upb-generated/envoy/admin/v3/memory.upb.h"; sourceTree = ""; }; - 205BDCDE52227DE514BAA067BFDB34AD /* FIRAuthDispatcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthDispatcher.h; path = FirebaseAuth/Sources/Auth/FIRAuthDispatcher.h; sourceTree = ""; }; - 206FC3208C8924001449698166E3F536 /* route_components.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = route_components.upb.h; path = "src/core/ext/upb-generated/envoy/config/route/v3/route_components.upb.h"; sourceTree = ""; }; - 2073F50B0FAF1F4D0E37DE1766BDCB54 /* dns_resolver_selection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dns_resolver_selection.h; path = src/core/ext/filters/client_channel/resolver/dns/dns_resolver_selection.h; sourceTree = ""; }; - 20755D82FC61D6246023D7BFFCCC5037 /* regex.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = regex.upbdefs.h; path = "src/core/ext/upbdefs-generated/xds/type/matcher/v3/regex.upbdefs.h"; sourceTree = ""; }; - 207BD07A85E064D82C31A4586F791017 /* xds_channel_args.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_channel_args.h; path = src/core/ext/filters/client_channel/lb_policy/xds/xds_channel_args.h; sourceTree = ""; }; - 209A6D3E47565683A3F872AF130430CE /* not_in_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = not_in_filter.cc; path = Firestore/core/src/core/not_in_filter.cc; sourceTree = ""; }; - 209D2899C8189B79A159CEB805EB127D /* config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = config.h; path = include/grpcpp/impl/codegen/config.h; sourceTree = ""; }; - 209DD28460CC2D690016A18981695D8C /* iomgr_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = iomgr_internal.h; path = src/core/lib/iomgr/iomgr_internal.h; sourceTree = ""; }; - 20A31AC3FF8DA7EE53581272B98C890C /* collection_entry.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = collection_entry.upbdefs.h; path = "src/core/ext/upbdefs-generated/xds/core/v3/collection_entry.upbdefs.h"; sourceTree = ""; }; - 20A4907F772C4293D9F29BC95E41C1B3 /* channel_creds_registry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_creds_registry.h; path = src/core/lib/security/credentials/channel_creds_registry.h; sourceTree = ""; }; - 20CDBE5F9BCABD9B5B94B363740EF479 /* periodic_update.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = periodic_update.cc; path = src/core/lib/resource_quota/periodic_update.cc; sourceTree = ""; }; - 20D6E838B5FCE9A99DDC4B108AC6EBC4 /* str_replace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = str_replace.h; path = absl/strings/str_replace.h; sourceTree = ""; }; - 20DEA631C30BE8FAEE1EE0E44327D9BD /* certs.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = certs.upb.c; path = "src/core/ext/upb-generated/envoy/admin/v3/certs.upb.c"; sourceTree = ""; }; - 20F4519D6C16A124AF79C1199D42EEFB /* rsaz_exp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rsaz_exp.h; path = src/crypto/fipsmodule/bn/rsaz_exp.h; sourceTree = ""; }; - 20F734CF5F8A2EDB1B0DC83C8A4012CF /* grpc_ares_ev_driver_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = grpc_ares_ev_driver_windows.cc; path = src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_windows.cc; sourceTree = ""; }; - 20FDD67BF2AEF2E98D354BB4F6AD025A /* http2_errors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http2_errors.h; path = src/core/lib/transport/http2_errors.h; sourceTree = ""; }; - 210CFB2D8B044E4DBA8071468CFEF8F3 /* collections.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = collections.h; path = third_party/upb/upb/collections.h; sourceTree = ""; }; - 210E6F0DC6674F29050A77F49C6C2687 /* gRPC-C++.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "gRPC-C++.debug.xcconfig"; sourceTree = ""; }; - 212366507065017E4E43F942C17D425E /* tls13_both.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = tls13_both.cc; path = src/ssl/tls13_both.cc; sourceTree = ""; }; - 214FD45FE01F1593CBD2EA29CADBB22E /* event_service_config.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = event_service_config.upb.c; path = "src/core/ext/upb-generated/envoy/config/core/v3/event_service_config.upb.c"; sourceTree = ""; }; - 2160B691C74D2CDA4D8D350C4756DA34 /* FIRAuthProto.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthProto.h; path = FirebaseAuth/Sources/Backend/RPC/Proto/FIRAuthProto.h; sourceTree = ""; }; - 21995EE3344B951AAA0D991E22F21F4E /* socket_option.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = socket_option.upb.c; path = "src/core/ext/upb-generated/envoy/config/core/v3/socket_option.upb.c"; sourceTree = ""; }; - 21C95DAB370F06245ABB72AACC88EEB7 /* cordz_update_scope.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cordz_update_scope.h; path = absl/strings/internal/cordz_update_scope.h; sourceTree = ""; }; - 21D332C63FDD0A327DF11689DFCDB201 /* work_serializer.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = work_serializer.cc; path = src/core/lib/gprpp/work_serializer.cc; sourceTree = ""; }; - 21DDD8B71F8DF9379C2C9044A1AD5BCC /* p_ec_asn1.c */ = {isa = PBXFileReference; includeInIndex = 1; name = p_ec_asn1.c; path = src/crypto/evp/p_ec_asn1.c; sourceTree = ""; }; - 21DF6B46F05D1A34B5744F2AF9CD6C74 /* check_gcp_environment_linux.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = check_gcp_environment_linux.cc; path = src/core/lib/security/credentials/alts/check_gcp_environment_linux.cc; sourceTree = ""; }; - 220A18060F0A697A61A56E3A4227B82C /* FIRUserInfoImpl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRUserInfoImpl.h; path = FirebaseAuth/Sources/User/FIRUserInfoImpl.h; sourceTree = ""; }; - 220CAD286B49150C1CCB39A6B7D19735 /* loop.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = loop.h; path = src/core/lib/promise/loop.h; sourceTree = ""; }; - 2212EC5D07C1E8B7C8A24C7D22A91C4E /* bootstrap.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bootstrap.upb.h; path = "src/core/ext/upb-generated/envoy/config/bootstrap/v3/bootstrap.upb.h"; sourceTree = ""; }; - 221925D455700AC395245A89096F16E4 /* error_utils.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = error_utils.cc; path = src/core/lib/transport/error_utils.cc; sourceTree = ""; }; - 22301206311EA22AD5A3ADF53892E791 /* time_util.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = time_util.h; path = src/core/lib/event_engine/time_util.h; sourceTree = ""; }; - 22386369D1540AFE7E9FE4F50F37F574 /* FIRAuthProtoFinalizeMFATOTPSignInRequestInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthProtoFinalizeMFATOTPSignInRequestInfo.h; path = FirebaseAuth/Sources/Backend/RPC/Proto/TOTP/FIRAuthProtoFinalizeMFATOTPSignInRequestInfo.h; sourceTree = ""; }; - 223C3024FDFE60D37016A63F6FC82BA5 /* fake_resolver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fake_resolver.h; path = src/core/ext/filters/client_channel/resolver/fake/fake_resolver.h; sourceTree = ""; }; - 224A9F761113832ABA61DBE075A08E9B /* opensslconf.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = opensslconf.h; path = src/include/openssl/opensslconf.h; sourceTree = ""; }; - 224FBB78930502C92A4690575D668721 /* arena.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = arena.h; path = src/core/lib/resource_quota/arena.h; sourceTree = ""; }; - 2251B7CDBF5C4541E60B1F5BFEBBF4AF /* empty.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = empty.upb.h; path = "src/core/ext/upb-generated/google/protobuf/empty.upb.h"; sourceTree = ""; }; - 225A86FCC4F24113CBAE01AE913D4E14 /* overload.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = overload.h; path = src/core/lib/gprpp/overload.h; sourceTree = ""; }; - 2271A4695C9EDCE8D0CE18DD508FB57F /* err.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = err.h; path = src/include/openssl/err.h; sourceTree = ""; }; - 22964823D12777DC44BE5BD99D5E245B /* byte_stream_apple.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = byte_stream_apple.mm; path = Firestore/core/src/util/byte_stream_apple.mm; sourceTree = ""; }; - 22970C50F288FFBD9CC888E8B27B049D /* config_dump_shared.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = config_dump_shared.upb.h; path = "src/core/ext/upb-generated/envoy/admin/v3/config_dump_shared.upb.h"; sourceTree = ""; }; - 229BEB63A60FEEF7753A113423A4B18E /* FIRPhoneMultiFactorInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRPhoneMultiFactorInfo.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRPhoneMultiFactorInfo.h; sourceTree = ""; }; - 22B188125BB13FC2AD60F4E2FB8EA8C4 /* FirebaseAuth-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FirebaseAuth-umbrella.h"; sourceTree = ""; }; - 22B3497FF0239A23460FD10F6FFB3AB4 /* stacktrace_config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stacktrace_config.h; path = absl/debugging/internal/stacktrace_config.h; sourceTree = ""; }; - 22DBB810D6FBE3C239E12E0E5A1E44A4 /* semantic_version.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = semantic_version.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/type/v3/semantic_version.upbdefs.c"; sourceTree = ""; }; - 22ECEDC0ACF605625183D0EBEC36F1A9 /* message_decompress_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = message_decompress_filter.h; path = src/core/ext/filters/http/message_compress/message_decompress_filter.h; sourceTree = ""; }; - 22EFD129D2A12100994A98B6A31373F4 /* FIRPhoneMultiFactorInfo+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FIRPhoneMultiFactorInfo+Internal.h"; path = "FirebaseAuth/Sources/MultiFactor/Phone/FIRPhoneMultiFactorInfo+Internal.h"; sourceTree = ""; }; - 2320BAE9A767F4158C5A2B3815D00EA3 /* client_channel_factory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = client_channel_factory.h; path = src/core/ext/filters/client_channel/client_channel_factory.h; sourceTree = ""; }; - 232BB2ACE0E4A6B41534C3ED7B8EF446 /* alts_zero_copy_grpc_protector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_zero_copy_grpc_protector.h; path = src/core/tsi/alts/zero_copy_frame_protector/alts_zero_copy_grpc_protector.h; sourceTree = ""; }; - 234DB096511662BA46EFEADC90D07C85 /* abseil-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "abseil-prefix.pch"; sourceTree = ""; }; - 2357F4805073EC8381563D69EF59E164 /* xds_route_config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_route_config.h; path = src/core/ext/xds/xds_route_config.h; sourceTree = ""; }; - 235F4F298E58662098A2AA7BAF003121 /* FIRGetAccountInfoRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRGetAccountInfoRequest.h; path = FirebaseAuth/Sources/Backend/RPC/FIRGetAccountInfoRequest.h; sourceTree = ""; }; - 237BBF148B7CD307E75CA243F706D46E /* migrate.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = migrate.upb.c; path = "src/core/ext/upb-generated/udpa/annotations/migrate.upb.c"; sourceTree = ""; }; - 237C2014E894CEA77D8DE38BC84609C4 /* ofb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = ofb.c; path = src/crypto/fipsmodule/modes/ofb.c; sourceTree = ""; }; - 23C25CD3FCD6EEC989B61011EEDACC93 /* connectivity_state.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = connectivity_state.cc; path = src/core/lib/transport/connectivity_state.cc; sourceTree = ""; }; - 23C8EE2D4BF4383E917F1E72CB0BA495 /* sync_windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sync_windows.h; path = include/grpc/impl/codegen/sync_windows.h; sourceTree = ""; }; - 23DC30A6F13758839F0A7B225B6E34BD /* srtp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = srtp.h; path = src/include/openssl/srtp.h; sourceTree = ""; }; - 23E140B7B8465179F585CC67FB7ACC7C /* string.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = string.upb.h; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/string.upb.h"; sourceTree = ""; }; - 23E482D3CC9190C930BA642306292C63 /* FBLPromise.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLPromise.h; path = Sources/FBLPromises/include/FBLPromise.h; sourceTree = ""; }; - 23E6AAB4C16B77CD3CCB5FE80E354B13 /* lhash.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lhash.c; path = src/crypto/lhash/lhash.c; sourceTree = ""; }; - 23F8440C05F4FC7549683491BABA0556 /* tmpfile_msys.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = tmpfile_msys.cc; path = src/core/lib/gpr/tmpfile_msys.cc; sourceTree = ""; }; - 23FA38B13623911A587BFA9A240B3677 /* local_store.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = local_store.cc; path = Firestore/core/src/local/local_store.cc; sourceTree = ""; }; - 23FF272E4931E112E178E695DA36C5AE /* endpoint.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endpoint.upb.h; path = "src/core/ext/upb-generated/envoy/config/endpoint/v3/endpoint.upb.h"; sourceTree = ""; }; - 24016B4D793056CA94111FCC1E463716 /* FIRAggregateQuery.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAggregateQuery.h; path = Firestore/Source/Public/FirebaseFirestore/FIRAggregateQuery.h; sourceTree = ""; }; - 2410B066B2D0EE6C2450765410C2ED56 /* FBLPromises.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLPromises.h; path = Sources/FBLPromises/include/FBLPromises.h; sourceTree = ""; }; - 241881A0BD85AA4472D622E8B5D1F159 /* timestamp.nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = timestamp.nanopb.cc; path = Firestore/Protos/nanopb/google/protobuf/timestamp.nanopb.cc; sourceTree = ""; }; - 24206AFE77B0F19EECB7B5D202411858 /* trace.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = trace.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/trace/v3/trace.upbdefs.h"; sourceTree = ""; }; - 244E092A553497D1F248B5FB13893A07 /* aes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = aes.h; path = src/include/openssl/aes.h; sourceTree = ""; }; - 245602F0D6F278BE8C168A4986906922 /* firestore_version.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = firestore_version.cc; path = Firestore/core/src/firestore_version.cc; sourceTree = ""; }; - 245894C829F9D2E2C228299C0DDB28EB /* xds_lb_policy_registry.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = xds_lb_policy_registry.cc; path = src/core/ext/xds/xds_lb_policy_registry.cc; sourceTree = ""; }; - 246F5CBFA37B5BA4FE6897A4B605AA4A /* x509_vfy.c */ = {isa = PBXFileReference; includeInIndex = 1; name = x509_vfy.c; path = src/crypto/x509/x509_vfy.c; sourceTree = ""; }; - 2479511CF957DB2ADC98139CEB4F1917 /* FIRMultiFactorAssertion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRMultiFactorAssertion.m; path = FirebaseAuth/Sources/MultiFactor/FIRMultiFactorAssertion.m; sourceTree = ""; }; - 247A52A8AF7A863EEF3CB43B25E0BB0E /* FIRVerifyPhoneNumberRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRVerifyPhoneNumberRequest.m; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyPhoneNumberRequest.m; sourceTree = ""; }; - 249E3B1353449398D20FA841FCAF8A8D /* trace.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = trace.cc; path = src/core/lib/debug/trace.cc; sourceTree = ""; }; - 24AB50486C6C94BC8CAA3E17B315EB10 /* slice_string_helpers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = slice_string_helpers.h; path = src/core/lib/slice/slice_string_helpers.h; sourceTree = ""; }; - 24ABC9D764EB1572F47819BB2E9FDC18 /* typed_struct.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = typed_struct.upb.h; path = "src/core/ext/upb-generated/xds/type/v3/typed_struct.upb.h"; sourceTree = ""; }; - 24BA90FFDCA5A2EF40F57CAF3466DB8C /* options.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = options.h; path = absl/base/options.h; sourceTree = ""; }; - 24C03425FFD8A3CE623463821FAB28EE /* grpc_method_list.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_method_list.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/grpc_method_list.upb.h"; sourceTree = ""; }; - 24C06396F64238BBD1E2DC57621EA8F2 /* metadata_batch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = metadata_batch.h; path = src/core/lib/transport/metadata_batch.h; sourceTree = ""; }; - 24CA1050C14DC6980DC2AD21A288BEE0 /* varint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = varint.h; path = src/core/ext/transport/chttp2/transport/varint.h; sourceTree = ""; }; - 24D1A4EF638FB0DDC1616E15A53E7E2E /* security.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = security.upb.c; path = "src/core/ext/upb-generated/udpa/annotations/security.upb.c"; sourceTree = ""; }; - 24D571806007841D11747609B67FE1F0 /* ads.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = ads.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/service/discovery/v3/ads.upbdefs.c"; sourceTree = ""; }; - 24E16C567C345BC163E5396656A8160C /* nameser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = nameser.h; path = src/core/lib/iomgr/nameser.h; sourceTree = ""; }; - 24F76B1CE7703B6311D685B6D24E3126 /* grpc_unary_call.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = grpc_unary_call.cc; path = Firestore/core/src/remote/grpc_unary_call.cc; sourceTree = ""; }; - 24F8EFC76F218C7292AA2B4884E7F66E /* FIRAuthProtoStartMFATOTPEnrollmentRequestInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthProtoStartMFATOTPEnrollmentRequestInfo.m; path = FirebaseAuth/Sources/Backend/RPC/Proto/TOTP/FIRAuthProtoStartMFATOTPEnrollmentRequestInfo.m; sourceTree = ""; }; - 250CA429343997A73FF1BA52F6F12DC3 /* e_rc2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = e_rc2.c; path = src/crypto/cipher_extra/e_rc2.c; sourceTree = ""; }; - 25251A5FC7438A7997731B572A2C929C /* FIRAuthWebView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthWebView.m; path = FirebaseAuth/Sources/Utilities/FIRAuthWebView.m; sourceTree = ""; }; - 2530748983BAAB8D32D112BF6325BAF2 /* bloom_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = bloom_filter.cc; path = Firestore/core/src/remote/bloom_filter.cc; sourceTree = ""; }; - 254259009904437260472692D35B1947 /* call_push_pull.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = call_push_pull.h; path = src/core/lib/promise/call_push_pull.h; sourceTree = ""; }; - 2557103E165BDC04D127A9C3EF01B0C2 /* waiter.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = waiter.cc; path = absl/synchronization/internal/waiter.cc; sourceTree = ""; }; - 2591DD30E2ADF43D6390F34666E771F0 /* context_list.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = context_list.cc; path = src/core/ext/transport/chttp2/transport/context_list.cc; sourceTree = ""; }; - 25B1C6BBD41D9BC7BE908D6162D33B62 /* xds_channel_stack_modifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_channel_stack_modifier.h; path = src/core/ext/xds/xds_channel_stack_modifier.h; sourceTree = ""; }; - 25B91D6C55401E8CF9FFBEFB973218AF /* custom_tag.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = custom_tag.upb.h; path = "src/core/ext/upb-generated/envoy/type/tracing/v3/custom_tag.upb.h"; sourceTree = ""; }; - 25B969A9A9A821E49E0DB1D89DA9305D /* any_invocable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = any_invocable.h; path = absl/functional/any_invocable.h; sourceTree = ""; }; - 25D478F279D9CF329222F0B4E3DB8169 /* wakeup_fd_nospecial.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = wakeup_fd_nospecial.cc; path = src/core/lib/iomgr/wakeup_fd_nospecial.cc; sourceTree = ""; }; - 25D4892CDBD1534D500D0B2572174E58 /* endpoint_components.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endpoint_components.upb.h; path = "src/core/ext/upb-generated/envoy/config/endpoint/v3/endpoint_components.upb.h"; sourceTree = ""; }; - 25DCAB504EC68CFA3E22BFF45F0F204F /* pb_encode.c */ = {isa = PBXFileReference; includeInIndex = 1; path = pb_encode.c; sourceTree = ""; }; - 25ED2AB3AE777851175B427979248AD2 /* auth_property_iterator.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = auth_property_iterator.cc; path = src/cpp/common/auth_property_iterator.cc; sourceTree = ""; }; - 2608493C7B8C20CC32333E8A93D0D04D /* security_connector.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = security_connector.cc; path = src/core/lib/security/security_connector/security_connector.cc; sourceTree = ""; }; - 261F26C1A618E7201D25CC088FEE5C67 /* e_rc4.c */ = {isa = PBXFileReference; includeInIndex = 1; name = e_rc4.c; path = src/crypto/cipher_extra/e_rc4.c; sourceTree = ""; }; - 262A5AA2E7052E637C97B4264931FBCF /* json_util.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = json_util.cc; path = src/core/lib/json/json_util.cc; sourceTree = ""; }; - 262C592EC3A0F8789C886B2CD3283C19 /* context_params.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = context_params.upb.h; path = "src/core/ext/upb-generated/xds/core/v3/context_params.upb.h"; sourceTree = ""; }; - 262F2933C136E248FAC5CC0C21B3266B /* grpc_nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = grpc_nanopb.cc; path = Firestore/core/src/remote/grpc_nanopb.cc; sourceTree = ""; }; - 264C03A93FE6C91CECEA391487DD658D /* delegating_channel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = delegating_channel.h; path = include/grpcpp/impl/codegen/delegating_channel.h; sourceTree = ""; }; - 264F5D7A414D1E53BDB43A304C3533E0 /* unicode_casefold.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = unicode_casefold.h; path = third_party/re2/re2/unicode_casefold.h; sourceTree = ""; }; - 266365B20E9CD9F0B66E131ACB113400 /* stacktrace_win32-inl.inc */ = {isa = PBXFileReference; includeInIndex = 1; name = "stacktrace_win32-inl.inc"; path = "absl/debugging/internal/stacktrace_win32-inl.inc"; sourceTree = ""; }; - 2666B3846875F005A0A8300CBCBCB647 /* ascii.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ascii.h; path = absl/strings/ascii.h; sourceTree = ""; }; - 266F84D62EEA081B815444F92DF36788 /* frame_goaway.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = frame_goaway.h; path = src/core/ext/transport/chttp2/transport/frame_goaway.h; sourceTree = ""; }; - 26726BD74B1CA97DF8A4C36E829B7BCB /* upb.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = upb.hpp; path = third_party/upb/upb/upb.hpp; sourceTree = ""; }; - 26A16F1D6A10BE5A569C15FEEF003DA9 /* stats.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = stats.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/metrics/v3/stats.upbdefs.c"; sourceTree = ""; }; - 26C09341D7EC6D699A3E703E35AEDC92 /* range2-sse.c */ = {isa = PBXFileReference; includeInIndex = 1; name = "range2-sse.c"; path = "third_party/upb/third_party/utf8_range/range2-sse.c"; sourceTree = ""; }; - 26C3B20C10C8A98166ADB03C10EE85EF /* grpc_authorization_engine.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = grpc_authorization_engine.cc; path = src/core/lib/security/authorization/grpc_authorization_engine.cc; sourceTree = ""; }; - 26E0FCFBFB3138BD8B021B6C54F965E7 /* spinlock_win32.inc */ = {isa = PBXFileReference; includeInIndex = 1; name = spinlock_win32.inc; path = absl/base/internal/spinlock_win32.inc; sourceTree = ""; }; - 26E37CF61271230304E3FE3E5625764F /* range.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = range.upb.h; path = "src/core/ext/upb-generated/envoy/type/v3/range.upb.h"; sourceTree = ""; }; - 270120CDAE7BAB9C3809949056763408 /* opentelemetry.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = opentelemetry.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/trace/v3/opentelemetry.upbdefs.c"; sourceTree = ""; }; - 2704798CCF3A2AF9C00D74EDFBEA01C2 /* encode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = encode.h; path = third_party/upb/upb/encode.h; sourceTree = ""; }; - 270A610065256330E8535BA38ADAE627 /* thread_manager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = thread_manager.h; path = src/cpp/thread_manager/thread_manager.h; sourceTree = ""; }; - 272B9A5B2DC3FEF40684FBBAA7BAF4CD /* grpc_ares_wrapper_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = grpc_ares_wrapper_windows.cc; path = src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_windows.cc; sourceTree = ""; }; - 272C40603E0783146AB87E36FD410B4F /* FIRLoggerLevel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLoggerLevel.h; path = FirebaseCore/Sources/Public/FirebaseCore/FIRLoggerLevel.h; sourceTree = ""; }; - 273BBB9C7518ABE9ECC1856C3244B8B5 /* x509.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = x509.h; path = src/include/openssl/x509.h; sourceTree = ""; }; - 27442E135381F54C516E929FAB2D37C7 /* substitute.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = substitute.h; path = absl/strings/substitute.h; sourceTree = ""; }; - 2749647CA6BA0679EED2A0D102114A35 /* status_util.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = status_util.cc; path = src/core/lib/channel/status_util.cc; sourceTree = ""; }; - 274DAC7E14BE864825DBD4C86D78CD5F /* v3_ocsp.c */ = {isa = PBXFileReference; includeInIndex = 1; name = v3_ocsp.c; path = src/crypto/x509v3/v3_ocsp.c; sourceTree = ""; }; - 27566AA7F1C7633BE555A957B2DBD4C2 /* metrics_service.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = metrics_service.upb.c; path = "src/core/ext/upb-generated/envoy/config/metrics/v3/metrics_service.upb.c"; sourceTree = ""; }; - 275AFB3AFE5471B08DD0F988AA12C351 /* construct_destruct.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = construct_destruct.h; path = src/core/lib/gprpp/construct_destruct.h; sourceTree = ""; }; - 276AE43E74DBB5BE91261C42A21F1DFC /* string_ref.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = string_ref.cc; path = src/cpp/util/string_ref.cc; sourceTree = ""; }; - 277AA69A94219A1A3B3996F2FE0BB55A /* create_channel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = create_channel.h; path = include/grpcpp/create_channel.h; sourceTree = ""; }; - 277C10F71F11D91A7C5FD71E672768CF /* FIRVerifyAssertionResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRVerifyAssertionResponse.m; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyAssertionResponse.m; sourceTree = ""; }; - 27859DCED734889B65943F0CC7C714FD /* sync_windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sync_windows.h; path = include/grpc/support/sync_windows.h; sourceTree = ""; }; - 27914A60F0F19583118D50119F0B0938 /* lb_policy_factory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lb_policy_factory.h; path = src/core/lib/load_balancing/lb_policy_factory.h; sourceTree = ""; }; - 279D5CCBF8DD8518A716EC4F8E19606C /* div_extra.c */ = {isa = PBXFileReference; includeInIndex = 1; name = div_extra.c; path = src/crypto/fipsmodule/bn/div_extra.c; sourceTree = ""; }; - 27A9E6A0806AF85250E525868F402413 /* wakeup_fd_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = wakeup_fd_posix.h; path = src/core/lib/iomgr/wakeup_fd_posix.h; sourceTree = ""; }; - 27E612A472C523C503F785A151FC9232 /* dsa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dsa.c; path = src/crypto/dsa/dsa.c; sourceTree = ""; }; - 27EB496AE59B13641472D4659A50D875 /* timer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timer.h; path = src/core/lib/event_engine/posix_engine/timer.h; sourceTree = ""; }; - 27F655A7BC1E2925D46BAD3740135D3B /* slice_buffer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = slice_buffer.h; path = src/core/lib/slice/slice_buffer.h; sourceTree = ""; }; - 28095137FAD0FF653301E6FE3F465084 /* nid.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = nid.h; path = src/include/openssl/nid.h; sourceTree = ""; }; - 28095245DA38E3692E1ECE20BEDEAD14 /* pool.c */ = {isa = PBXFileReference; includeInIndex = 1; name = pool.c; path = src/crypto/pool/pool.c; sourceTree = ""; }; - 280A85E81BE200D66457D3D4A5696F67 /* FIRResetPasswordResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRResetPasswordResponse.h; path = FirebaseAuth/Sources/Backend/RPC/FIRResetPasswordResponse.h; sourceTree = ""; }; - 2848F4F17649B517CB956FFC47DC5FB0 /* exec_ctx.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = exec_ctx.h; path = src/core/lib/iomgr/exec_ctx.h; sourceTree = ""; }; - 284E07F713CE39C11E3DBF8D704B1D29 /* encode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = encode.h; path = third_party/upb/upb/encode.h; sourceTree = ""; }; - 2853B6FFC5EB1390F8B01F29542CD2B7 /* periodic_update.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = periodic_update.h; path = src/core/lib/resource_quota/periodic_update.h; sourceTree = ""; }; - 2860503C26A5DA2F0B1A219480BABDE1 /* urandom.c */ = {isa = PBXFileReference; includeInIndex = 1; name = urandom.c; path = src/crypto/fipsmodule/rand/urandom.c; sourceTree = ""; }; - 2865D4C43C8C65CE4907FB7135F10939 /* http_status.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = http_status.upb.c; path = "src/core/ext/upb-generated/envoy/type/v3/http_status.upb.c"; sourceTree = ""; }; - 287D082E25B9600B7A06EDE1A3F80F43 /* arena_promise.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = arena_promise.h; path = src/core/lib/promise/arena_promise.h; sourceTree = ""; }; - 2881965F7068136F58F91B450AA62361 /* server_config_selector.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = server_config_selector.cc; path = src/core/ext/filters/server_config_selector/server_config_selector.cc; sourceTree = ""; }; - 2897E521EAEF034519181E7343AA6455 /* custom_tag.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = custom_tag.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/tracing/v3/custom_tag.upbdefs.h"; sourceTree = ""; }; - 28A15E10BAACFA7CBF7DE5D45A81919E /* xds_certificate_provider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_certificate_provider.h; path = src/core/ext/xds/xds_certificate_provider.h; sourceTree = ""; }; - 28A2A119F7CF07CCECBA972CFB579C14 /* FirebaseFirestore.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = FirebaseFirestore.modulemap; sourceTree = ""; }; - 28A42F16914161A6286E0EDE25C50C58 /* ads.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ads.upb.h; path = "src/core/ext/upb-generated/envoy/service/discovery/v3/ads.upb.h"; sourceTree = ""; }; - 28B8DEEEBD1DD676F586D66C68680207 /* endpoint_pair_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = endpoint_pair_windows.cc; path = src/core/lib/iomgr/endpoint_pair_windows.cc; sourceTree = ""; }; - 28F96F1F4AFD4BFA8332B5D8AC7A6279 /* match.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = match.cc; path = absl/strings/match.cc; sourceTree = ""; }; - 28F988009744B2E8737F4C10A3DAF024 /* FirebaseAuth-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FirebaseAuth-dummy.m"; sourceTree = ""; }; - 28FCCE9D66DC001A7F7A675EF8A00E82 /* transport_fwd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = transport_fwd.h; path = src/core/lib/transport/transport_fwd.h; sourceTree = ""; }; - 28FD5E2CF767D85250B386948985D0BA /* FBLPromise+Any.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Any.m"; path = "Sources/FBLPromises/FBLPromise+Any.m"; sourceTree = ""; }; - 28FE76CFE9F4BEBCB914AFBADBAE79AA /* regex.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = regex.upbdefs.c; path = "src/core/ext/upbdefs-generated/xds/type/matcher/v3/regex.upbdefs.c"; sourceTree = ""; }; - 2913ED9CFC98345166BD46004FDB9F04 /* array.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = array.h; path = third_party/upb/upb/array.h; sourceTree = ""; }; - 2921334CAE7D788B077700717E2C9DBB /* matchers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = matchers.h; path = src/core/lib/security/authorization/matchers.h; sourceTree = ""; }; - 2933DE9AA8BE2131278DB117B23177E8 /* timer_heap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timer_heap.h; path = src/core/lib/event_engine/posix_engine/timer_heap.h; sourceTree = ""; }; - 29358633BC6F5396A7AECA8A735D3C8D /* local_serializer.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = local_serializer.cc; path = Firestore/core/src/local/local_serializer.cc; sourceTree = ""; }; - 2938F4FFE6E8122F63D8129B19774D4E /* FIRMultiFactor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRMultiFactor.m; path = FirebaseAuth/Sources/MultiFactor/FIRMultiFactor.m; sourceTree = ""; }; - 29609538FB95AE462553AC0324A5BFDF /* ecdh_extra.c */ = {isa = PBXFileReference; includeInIndex = 1; name = ecdh_extra.c; path = src/crypto/ecdh_extra/ecdh_extra.c; sourceTree = ""; }; - 296422C02CECC591E78F70EA82EAC54E /* resource_locator.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource_locator.upbdefs.h; path = "src/core/ext/upbdefs-generated/xds/core/v3/resource_locator.upbdefs.h"; sourceTree = ""; }; - 298E941846B394F119C4DAD5BF26A5CD /* base.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = base.h; path = src/include/openssl/base.h; sourceTree = ""; }; - 2995219B51B72201A5CCC6D72F5C69B0 /* dynamic_ot.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dynamic_ot.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/trace/v3/dynamic_ot.upbdefs.h"; sourceTree = ""; }; - 299E519AEC2EB90A55F52BA73DEEAB2E /* extension.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = extension.upb.c; path = "src/core/ext/upb-generated/envoy/config/core/v3/extension.upb.c"; sourceTree = ""; }; - 29A77F5C79177E1D95D7008E32713B9A /* FIRAuthDataResult.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthDataResult.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRAuthDataResult.h; sourceTree = ""; }; - 29B46AD96DCA45527893F593F08C5239 /* validate.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = validate.upbdefs.h; path = "src/core/ext/upbdefs-generated/validate/validate.upbdefs.h"; sourceTree = ""; }; - 29D1C34FC7947809E87213616C12289A /* http_tracer.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_tracer.upb.h; path = "src/core/ext/upb-generated/envoy/config/trace/v3/http_tracer.upb.h"; sourceTree = ""; }; - 29E5210F43DFB47F6E3158630C96DD2C /* core_codegen.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = core_codegen.cc; path = src/cpp/common/core_codegen.cc; sourceTree = ""; }; - 29E5C156BBAD95179DEA6EFA2CC24305 /* status.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/rpc/status.upbdefs.h"; sourceTree = ""; }; - 29F3AAFE1C57026B4889429C58EE7A25 /* common.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = common.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/common.upbdefs.h"; sourceTree = ""; }; - 2A22C5B2AD4B67D84884CB584F3C61C9 /* duration.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = duration.upb.c; path = "src/core/ext/upb-generated/google/protobuf/duration.upb.c"; sourceTree = ""; }; - 2A3B11ED631F1883AF4E338DCED55465 /* server_initializer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_initializer.h; path = include/grpcpp/impl/server_initializer.h; sourceTree = ""; }; - 2A3BC2B6833E24DB9708868535DC5558 /* x509_ext.c */ = {isa = PBXFileReference; includeInIndex = 1; name = x509_ext.c; path = src/crypto/x509/x509_ext.c; sourceTree = ""; }; - 2A443F4D337DBD49A78521A00D970EC5 /* FIRListenerRegistration.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRListenerRegistration.mm; path = Firestore/Source/API/FIRListenerRegistration.mm; sourceTree = ""; }; - 2A4A215704866E10D9865AF9387F25FA /* FBLPromise+Retry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Retry.m"; path = "Sources/FBLPromises/FBLPromise+Retry.m"; sourceTree = ""; }; - 2A4BC126184283F634A70FC24FAB527A /* FIRTimestamp.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRTimestamp.m; path = Firestore/Source/API/FIRTimestamp.m; sourceTree = ""; }; - 2A4F60BAABA2723922AF3791A7AFC5D8 /* message_value.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = message_value.h; path = third_party/upb/upb/message_value.h; sourceTree = ""; }; - 2A554462DB74083987B93EC6EE500BB4 /* experiments.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = experiments.h; path = src/core/lib/experiments/experiments.h; sourceTree = ""; }; - 2A6B9E5C5F11DB7BBE067926A33F97FA /* xds_transport_grpc.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = xds_transport_grpc.cc; path = src/core/ext/xds/xds_transport_grpc.cc; sourceTree = ""; }; - 2A7D2FF6173D8DE0A107DE2F930F13AF /* syntax.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = syntax.upb.c; path = "src/core/ext/upb-generated/google/api/expr/v1alpha1/syntax.upb.c"; sourceTree = ""; }; - 2A7ECDB06B3BBD0B7404CD558EDCE7CB /* nanopb_util.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = nanopb_util.cc; path = Firestore/core/src/nanopb/nanopb_util.cc; sourceTree = ""; }; - 2A8A453018D8AE9C76D49B5914C40EA6 /* GULHeartbeatDateStorable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULHeartbeatDateStorable.h; path = GoogleUtilities/Environment/Public/GoogleUtilities/GULHeartbeatDateStorable.h; sourceTree = ""; }; - 2A91BF0679525A06A66682783F9DD8C5 /* transport_stream_receiver_impl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = transport_stream_receiver_impl.h; path = src/core/ext/transport/binder/utils/transport_stream_receiver_impl.h; sourceTree = ""; }; - 2AB5C82DE51F53DC758CDC53327096B3 /* civil_time_detail.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = civil_time_detail.cc; path = absl/time/internal/cctz/src/civil_time_detail.cc; sourceTree = ""; }; - 2AB6A0EA7F33BBCB167A9D0F6DE110CF /* udp_listener_config.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = udp_listener_config.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/listener/v3/udp_listener_config.upbdefs.c"; sourceTree = ""; }; - 2ADEC484067163ABE5C58AC26B2F0F7E /* insecure_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = insecure_credentials.cc; path = src/core/lib/security/credentials/insecure/insecure_credentials.cc; sourceTree = ""; }; - 2AE18FE86949AC953AE9174B86F6CBC0 /* FIRIdentityToolkitRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRIdentityToolkitRequest.h; path = FirebaseAuth/Sources/Backend/FIRIdentityToolkitRequest.h; sourceTree = ""; }; - 2AFBB0E023D5D7D4335EC10B3DAA2E88 /* http_status.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_status.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/v3/http_status.upbdefs.h"; sourceTree = ""; }; - 2AFEEB84849AAC59EA163A468E67209A /* common.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = common.upb.c; path = "src/core/ext/upb-generated/envoy/config/tap/v3/common.upb.c"; sourceTree = ""; }; - 2B097773EB8859DC62C5F211C7FC588D /* tcp_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tcp_posix.h; path = src/core/lib/iomgr/tcp_posix.h; sourceTree = ""; }; - 2B0DE2EAB81BD4306949AF194DA81B31 /* env_posix_test_helper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = env_posix_test_helper.h; path = util/env_posix_test_helper.h; sourceTree = ""; }; - 2B2D414CA7624F038046DDB7FE5ADCB4 /* FIRConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRConfiguration.m; path = FirebaseCore/Sources/FIRConfiguration.m; sourceTree = ""; }; - 2B32D26986FD325538594D0BF3A8C178 /* spinlock_linux.inc */ = {isa = PBXFileReference; includeInIndex = 1; name = spinlock_linux.inc; path = absl/base/internal/spinlock_linux.inc; sourceTree = ""; }; - 2B48BEEE640A0C6BD075F5C236207552 /* handshaker_registry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = handshaker_registry.h; path = src/core/lib/transport/handshaker_registry.h; sourceTree = ""; }; - 2B4EF7D1D9B98233C513F62B76D216F8 /* GULNetworkInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetworkInternal.h; path = GoogleUtilities/Network/GULNetworkInternal.h; sourceTree = ""; }; - 2B5CDD833547C48509D8ED94ED2548BD /* client_context.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = client_context.h; path = include/grpcpp/client_context.h; sourceTree = ""; }; - 2B629CD1122C320E88A3DF4B791A1516 /* protocol.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = protocol.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/protocol.upb.h"; sourceTree = ""; }; - 2B6CF1314A22C17D6CB51D986074FBF8 /* thread_win.c */ = {isa = PBXFileReference; includeInIndex = 1; name = thread_win.c; path = src/crypto/thread_win.c; sourceTree = ""; }; - 2B6E3048956D259CFFF27CD79958DFA5 /* FIRSecureTokenResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRSecureTokenResponse.h; path = FirebaseAuth/Sources/Backend/RPC/FIRSecureTokenResponse.h; sourceTree = ""; }; - 2B6F66AD8D11C51D98571C63EA0937A1 /* channel_trace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_trace.h; path = src/core/lib/channel/channel_trace.h; sourceTree = ""; }; - 2B70582C4EE06B2F4DB75283093713F0 /* client_context.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = client_context.cc; path = src/cpp/client/client_context.cc; sourceTree = ""; }; - 2B753E1984903757C52DB81EE42F4EA6 /* write_batch.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = write_batch.cc; path = Firestore/core/src/api/write_batch.cc; sourceTree = ""; }; - 2B8EE286B52565E3BF9E6AE3C75897CA /* intra_activity_waiter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = intra_activity_waiter.h; path = src/core/lib/promise/intra_activity_waiter.h; sourceTree = ""; }; - 2B9712CF6CEEB8C86B40E7AC5BA07E98 /* sha.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sha.h; path = src/include/openssl/sha.h; sourceTree = ""; }; - 2B9D55C7BC6752DBA75BF5318E4BEAAB /* handshaker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = handshaker.h; path = src/core/lib/transport/handshaker.h; sourceTree = ""; }; - 2BA606250839500CF6864FAC5B98EC3B /* pick_first.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = pick_first.cc; path = src/core/ext/filters/client_channel/lb_policy/pick_first/pick_first.cc; sourceTree = ""; }; - 2BB09620E3329C4697D1C8DF68E622DA /* compare.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = compare.h; path = absl/types/compare.h; sourceTree = ""; }; - 2BB53E541D39B25721F425457B4999D6 /* string_util.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = string_util.h; path = include/grpc/support/string_util.h; sourceTree = ""; }; - 2BC15D15FC3EEA275223D5A6A2D10AD3 /* path.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = path.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/type/matcher/v3/path.upbdefs.c"; sourceTree = ""; }; - 2BCC60AE22AEC1BDBEEB1812F8CD2131 /* mutex_stats.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mutex_stats.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/admin/v3/mutex_stats.upbdefs.h"; sourceTree = ""; }; - 2BCE260B03AF3F48775E998B397CAFBE /* metrics.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = metrics.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/admin/v3/metrics.upbdefs.c"; sourceTree = ""; }; - 2BCF8215E4EC3E538910C877778AFA4B /* map.c */ = {isa = PBXFileReference; includeInIndex = 1; name = map.c; path = third_party/upb/upb/map.c; sourceTree = ""; }; - 2BD78645EA5EEDA4E4ECF3C16C67FCEB /* channel_args_endpoint_config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_args_endpoint_config.h; path = src/core/lib/event_engine/channel_args_endpoint_config.h; sourceTree = ""; }; - 2BDD080ABA5EC111966827D6C30CE44F /* config_dump_shared.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = config_dump_shared.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/admin/v3/config_dump_shared.upbdefs.c"; sourceTree = ""; }; - 2BE5A8A0969AB2C5BCA16A49B7DB030A /* xds_cluster_specifier_plugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_cluster_specifier_plugin.h; path = src/core/ext/xds/xds_cluster_specifier_plugin.h; sourceTree = ""; }; - 2BF4588309DE5CD6475039ACC15D12CB /* combiner.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = combiner.h; path = src/core/lib/iomgr/combiner.h; sourceTree = ""; }; - 2C015E5FA9579AD3C108A5110433DC31 /* ResourceBundle-gRPCCertificates-Cpp-gRPC-C++-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-gRPCCertificates-Cpp-gRPC-C++-Info.plist"; sourceTree = ""; }; - 2C3834A922DC0459067DDE0E105D774B /* cpu-ppc64le.c */ = {isa = PBXFileReference; includeInIndex = 1; name = "cpu-ppc64le.c"; path = "src/crypto/cpu-ppc64le.c"; sourceTree = ""; }; - 2C4BF08538BF564BE1A81112221DDE88 /* deadline_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = deadline_filter.h; path = src/core/ext/filters/deadline/deadline_filter.h; sourceTree = ""; }; - 2C4D580353877D237ABEDB948858B761 /* sha512.c */ = {isa = PBXFileReference; includeInIndex = 1; name = sha512.c; path = src/crypto/fipsmodule/sha/sha512.c; sourceTree = ""; }; - 2C78FC38FA900F6FBB02043937093CD8 /* deprecation.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = deprecation.upb.c; path = "src/core/ext/upb-generated/envoy/annotations/deprecation.upb.c"; sourceTree = ""; }; - 2C809026551253328C62242516D9B89A /* firebase_metadata_provider_noop.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = firebase_metadata_provider_noop.cc; path = Firestore/core/src/remote/firebase_metadata_provider_noop.cc; sourceTree = ""; }; - 2C9FD610C0A93C16EB93688CF4A8259D /* promise_factory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = promise_factory.h; path = src/core/lib/promise/detail/promise_factory.h; sourceTree = ""; }; - 2CB87611B5AFDB959DFD077808B4FF11 /* des.c */ = {isa = PBXFileReference; includeInIndex = 1; name = des.c; path = src/crypto/fipsmodule/des/des.c; sourceTree = ""; }; - 2CC450B15ABC2966E7852D32E0BF7F25 /* document_key.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = document_key.cc; path = Firestore/core/src/model/document_key.cc; sourceTree = ""; }; - 2CC5911D1AA7258ED37D328DD3577840 /* lightstep.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lightstep.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/trace/v3/lightstep.upbdefs.c"; sourceTree = ""; }; - 2CD0F3AEDFF9D0F52F0CD48386F44BF2 /* cordz_update_tracker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cordz_update_tracker.h; path = absl/strings/internal/cordz_update_tracker.h; sourceTree = ""; }; - 2CE19B9FC7E470FD0590714772741D56 /* resource_name.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = resource_name.upbdefs.c; path = "src/core/ext/upbdefs-generated/xds/core/v3/resource_name.upbdefs.c"; sourceTree = ""; }; - 2CFC72481901EF1CF6CC0FAA9CA494E9 /* cord_buffer.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = cord_buffer.cc; path = absl/strings/cord_buffer.cc; sourceTree = ""; }; - 2CFCEFB76B73C3019203ACBE144E2235 /* init.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = init.h; path = src/core/lib/surface/init.h; sourceTree = ""; }; - 2CFE842F513A06AC5E0080FD67F58512 /* FIRPhoneAuthCredential_Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRPhoneAuthCredential_Internal.h; path = FirebaseAuth/Sources/AuthProvider/Phone/FIRPhoneAuthCredential_Internal.h; sourceTree = ""; }; - 2D0F02ACAEB1165A1B87A1A82EACCC1D /* env_windows_test_helper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = env_windows_test_helper.h; path = util/env_windows_test_helper.h; sourceTree = ""; }; - 2D18CC9EA292D9B6E06A8FAF66690A08 /* leveldb_document_overlay_cache.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = leveldb_document_overlay_cache.cc; path = Firestore/core/src/local/leveldb_document_overlay_cache.cc; sourceTree = ""; }; - 2D26254D99475D263C91C35A23C96262 /* health_check_service_server_builder_option.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = health_check_service_server_builder_option.h; path = include/grpcpp/ext/health_check_service_server_builder_option.h; sourceTree = ""; }; - 2D2AABA1C6284EB46E3A8EBF5E9B4334 /* error.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = error.cc; path = src/core/lib/iomgr/error.cc; sourceTree = ""; }; - 2D2B5932D59CF896AF331C7455E83E87 /* service_config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = service_config.h; path = src/core/lib/service_config/service_config.h; sourceTree = ""; }; - 2D3EC06B242AE9553A46B047B1689E43 /* json_writer.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = json_writer.cc; path = src/core/lib/json/json_writer.cc; sourceTree = ""; }; - 2D476990B3136475ADE67B7391B07406 /* substitution_format_string.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = substitution_format_string.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/substitution_format_string.upb.h"; sourceTree = ""; }; - 2D56127644C72E2FD0CCEB3AC015FE17 /* endpoint.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endpoint.upb.h; path = "src/core/ext/upb-generated/envoy/config/endpoint/v3/endpoint.upb.h"; sourceTree = ""; }; - 2D71D6CA4DF4585FBC6033687F37E0A1 /* validation_errors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = validation_errors.h; path = src/core/lib/gprpp/validation_errors.h; sourceTree = ""; }; - 2D8AA2A9E8946D1CBCA6659B7ED67C1C /* cord_rep_ring.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = cord_rep_ring.cc; path = absl/strings/internal/cord_rep_ring.cc; sourceTree = ""; }; - 2D8AC6514D7B15FE4A4223B74A8821BA /* FIRVerifyCustomTokenRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRVerifyCustomTokenRequest.h; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyCustomTokenRequest.h; sourceTree = ""; }; - 2D8C876FDB4E11E8F348ACF9B15B4DFA /* document_reference.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = document_reference.cc; path = Firestore/core/src/api/document_reference.cc; sourceTree = ""; }; - 2D914461D85784124AA8CE79666C3308 /* python_util.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = python_util.h; path = src/core/lib/iomgr/python_util.h; sourceTree = ""; }; - 2DB4309F3B1FC1A442E9F4F485C1BAB8 /* json_reader.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = json_reader.cc; path = Firestore/core/src/util/json_reader.cc; sourceTree = ""; }; - 2DB6AC5960B68B54964C2F6CD5C6DB3C /* tcp_server_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = tcp_server_windows.cc; path = src/core/lib/iomgr/tcp_server_windows.cc; sourceTree = ""; }; - 2DB7CEC54180C1A475EB9B35A5C97635 /* health_check.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = health_check.upb.c; path = "src/core/ext/upb-generated/envoy/config/core/v3/health_check.upb.c"; sourceTree = ""; }; - 2DB95C1C3E98A9E39DAD46642CEA8E81 /* options.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = options.h; path = include/leveldb/options.h; sourceTree = ""; }; - 2DBB683C00DC4D500F1E3FA4DAA22E55 /* async_generic_service.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = async_generic_service.cc; path = src/cpp/server/async_generic_service.cc; sourceTree = ""; }; - 2DC76C83BA21A07D6D3B59C97EEB682E /* stats.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stats.h; path = src/core/lib/debug/stats.h; sourceTree = ""; }; - 2DCFEB02E1188E6E7B3C7BC6744C8280 /* tcp_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tcp_posix.h; path = src/core/lib/iomgr/tcp_posix.h; sourceTree = ""; }; - 2DE4D9390896EA9A69B43A1DA59D3439 /* aws_request_signer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = aws_request_signer.h; path = src/core/lib/security/credentials/external/aws_request_signer.h; sourceTree = ""; }; - 2DE87DC53874A9580137D9A897BB90A6 /* metadata.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = metadata.upb.c; path = "src/core/ext/upb-generated/envoy/type/metadata/v3/metadata.upb.c"; sourceTree = ""; }; - 2DEFEFBC6DA2130ADB90992ADBA6042C /* stats.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stats.h; path = src/core/lib/debug/stats.h; sourceTree = ""; }; - 2E01D681F72796048F614E01B39FAA2B /* x_name.c */ = {isa = PBXFileReference; includeInIndex = 1; name = x_name.c; path = src/crypto/x509/x_name.c; sourceTree = ""; }; - 2E12FEB335A336F84686E4A888FC8497 /* secret.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = secret.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/secret.upbdefs.h"; sourceTree = ""; }; - 2E159FB0F890470CE0468CA58CD19B20 /* FBLPromise+Do.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Do.m"; path = "Sources/FBLPromises/FBLPromise+Do.m"; sourceTree = ""; }; - 2E16B574F95739FBFF8A149BA59B53A6 /* stacktrace_unimplemented-inl.inc */ = {isa = PBXFileReference; includeInIndex = 1; name = "stacktrace_unimplemented-inl.inc"; path = "absl/debugging/internal/stacktrace_unimplemented-inl.inc"; sourceTree = ""; }; - 2E1F25ACEC57995CFB39BF3FE0B38575 /* load_file.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = load_file.cc; path = src/core/lib/iomgr/load_file.cc; sourceTree = ""; }; - 2E28BBE6A5148634A207B89E3C1EF135 /* passive.c */ = {isa = PBXFileReference; includeInIndex = 1; name = passive.c; path = src/crypto/rand_extra/passive.c; sourceTree = ""; }; - 2E2C52ECE094E306EF5F0FB83EBEC007 /* endpoint.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endpoint.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/endpoint.upbdefs.h"; sourceTree = ""; }; - 2E378F98C1686C82248E0A52A9D8E3E3 /* atm.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = atm.cc; path = src/core/lib/gpr/atm.cc; sourceTree = ""; }; - 2E3ED0E5E9173B991156BF72C9B7AB19 /* FIROAuthCredential_Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIROAuthCredential_Internal.h; path = FirebaseAuth/Sources/AuthProvider/OAuth/FIROAuthCredential_Internal.h; sourceTree = ""; }; - 2E49450A0245D82B48D393C7F99C7DDC /* xds_resource_type_impl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_resource_type_impl.h; path = src/core/ext/xds/xds_resource_type_impl.h; sourceTree = ""; }; - 2E4EC37AD5CF94BC831DB3FADAB021AB /* format.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = format.cc; path = absl/time/format.cc; sourceTree = ""; }; - 2E577A9C81666A9F91FA34C74874730A /* config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = config.h; path = absl/base/config.h; sourceTree = ""; }; - 2E63FEDD199336042B2B317F667A874B /* FIRAggregateQuerySnapshot.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRAggregateQuerySnapshot.mm; path = Firestore/Source/API/FIRAggregateQuerySnapshot.mm; sourceTree = ""; }; - 2E677EB36E010F5FFAEA2E4D4CBA7BA8 /* abseil-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "abseil-umbrella.h"; sourceTree = ""; }; - 2E728DF3C719A431532FBD088134BA75 /* subchannel_stream_client.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = subchannel_stream_client.h; path = src/core/ext/filters/client_channel/subchannel_stream_client.h; sourceTree = ""; }; - 2E8628A56468D58FC7C1FA03B6DADFC0 /* table.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = table.h; path = src/core/lib/gprpp/table.h; sourceTree = ""; }; - 2E878D6BE81E0EA3533B0FE83904085D /* stub_options.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stub_options.h; path = include/grpcpp/support/stub_options.h; sourceTree = ""; }; - 2EA0FF97D96F7BF03649833B91EA20AD /* arg.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = arg.h; path = absl/strings/internal/str_format/arg.h; sourceTree = ""; }; - 2EBFEB9706D13970EED7D6DED48D25C4 /* sensitive.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sensitive.upbdefs.h; path = "src/core/ext/upbdefs-generated/udpa/annotations/sensitive.upbdefs.h"; sourceTree = ""; }; - 2ED2F950F249C0D4D90500EAD145B65B /* GULNetworkInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULNetworkInfo.m; path = GoogleUtilities/Environment/NetworkInfo/GULNetworkInfo.m; sourceTree = ""; }; - 2ED7BE3720E0AEBB34D3F05F7D1650D9 /* e_null.c */ = {isa = PBXFileReference; includeInIndex = 1; name = e_null.c; path = src/crypto/cipher_extra/e_null.c; sourceTree = ""; }; - 2ED89895513FA5CDC17ACD2CE9930819 /* lrs.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lrs.upb.c; path = "src/core/ext/upb-generated/envoy/service/load_stats/v3/lrs.upb.c"; sourceTree = ""; }; - 2EE8E21BA32861296FB6B8FCB845190A /* opentelemetry.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = opentelemetry.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/trace/v3/opentelemetry.upbdefs.h"; sourceTree = ""; }; - 2EFF8483796509D020B74F203A79C806 /* grpc_tls_certificate_provider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_tls_certificate_provider.h; path = src/core/lib/security/credentials/tls/grpc_tls_certificate_provider.h; sourceTree = ""; }; - 2F12C6F86E611F4C643014C1EC0FCB5F /* kdf.c */ = {isa = PBXFileReference; includeInIndex = 1; name = kdf.c; path = src/crypto/fipsmodule/tls/kdf.c; sourceTree = ""; }; - 2F56D706E77012F897CE34BE94F4C9F0 /* grpc_service.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_service.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/grpc_service.upb.h"; sourceTree = ""; }; - 2F6975A74D5863F197D4D66923A86895 /* ber.c */ = {isa = PBXFileReference; includeInIndex = 1; name = ber.c; path = src/crypto/bytestring/ber.c; sourceTree = ""; }; - 2F75B64E02CB5F326B83EEF622007BD3 /* pcy_cache.c */ = {isa = PBXFileReference; includeInIndex = 1; name = pcy_cache.c; path = src/crypto/x509v3/pcy_cache.c; sourceTree = ""; }; - 2F9356B36BD2E56055BBD884C65BCC1D /* frame_window_update.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = frame_window_update.h; path = src/core/ext/transport/chttp2/transport/frame_window_update.h; sourceTree = ""; }; - 2F97685D966EAEE9E509D67B1FBC96D0 /* custom_tag.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = custom_tag.upb.c; path = "src/core/ext/upb-generated/envoy/type/tracing/v3/custom_tag.upb.c"; sourceTree = ""; }; - 2F9A4FE4ADAB11BFF4D07BDAC28193BA /* altscontext.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = altscontext.upb.h; path = "src/core/ext/upb-generated/src/proto/grpc/gcp/altscontext.upb.h"; sourceTree = ""; }; - 2FA806DD6AFCE175C9376E5EA0EA370F /* FIRAuthProtoMFAEnrollment.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthProtoMFAEnrollment.h; path = FirebaseAuth/Sources/Backend/RPC/Proto/FIRAuthProtoMFAEnrollment.h; sourceTree = ""; }; - 2FAC688AA5AB810052F128AACBE1289A /* extension_registry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = extension_registry.h; path = third_party/upb/upb/extension_registry.h; sourceTree = ""; }; - 2FAEEFFF1D96A6D1A7DB9564B24F3163 /* cfstream_handle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cfstream_handle.h; path = src/core/lib/iomgr/cfstream_handle.h; sourceTree = ""; }; - 2FB6213803210C01FCBA55285F94A3DA /* x509_req.c */ = {isa = PBXFileReference; includeInIndex = 1; name = x509_req.c; path = src/crypto/x509/x509_req.c; sourceTree = ""; }; - 2FBFB689B8154175D5E4803A6C1F5C57 /* stats.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stats.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/metrics/v3/stats.upbdefs.h"; sourceTree = ""; }; - 2FCD5B61392BE1D0D9B3315415E8EC2C /* time_util.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = time_util.h; path = src/core/lib/gprpp/time_util.h; sourceTree = ""; }; - 2FCFBA8D9B7AD7C2263B7F07A1101984 /* matchers.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = matchers.cc; path = src/core/lib/matchers/matchers.cc; sourceTree = ""; }; - 2FF2D2C00B45F1B7B6E8E7786685BAEC /* FIRGetRecaptchaConfigRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRGetRecaptchaConfigRequest.h; path = FirebaseAuth/Sources/Backend/RPC/FIRGetRecaptchaConfigRequest.h; sourceTree = ""; }; - 2FFCF45E8C2CC492873013C2661F5E3B /* status.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.upbdefs.h; path = "src/core/ext/upbdefs-generated/udpa/annotations/status.upbdefs.h"; sourceTree = ""; }; - 30012554A58375A1CB09BED5718C39E3 /* xds_channel_args.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_channel_args.h; path = src/core/ext/xds/xds_channel_args.h; sourceTree = ""; }; - 3018A45187382EF60EDC7D0826513711 /* generic.c */ = {isa = PBXFileReference; includeInIndex = 1; name = generic.c; path = src/crypto/fipsmodule/bn/generic.c; sourceTree = ""; }; - 3025549F4662802E6E043C29EA116C83 /* output.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = output.h; path = absl/strings/internal/str_format/output.h; sourceTree = ""; }; - 302F88279ED3476551D7CF43993239AC /* representation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = representation.h; path = absl/numeric/internal/representation.h; sourceTree = ""; }; - 304C032D2BE426AA583E780E60E8D0D4 /* xds_resource_type.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_resource_type.h; path = src/core/ext/xds/xds_resource_type.h; sourceTree = ""; }; - 305069D0B7CDB47BA21D29D33129734B /* load_balancer_api.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = load_balancer_api.h; path = src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.h; sourceTree = ""; }; - 30617105DB03B071497D2BCAA85CBFEC /* symbolize.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = symbolize.h; path = absl/debugging/internal/symbolize.h; sourceTree = ""; }; - 306175127D60E11E57515EB8E9BCF1B0 /* trace_config.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = trace_config.upbdefs.h; path = "src/core/ext/upbdefs-generated/opencensus/proto/trace/v1/trace_config.upbdefs.h"; sourceTree = ""; }; - 3073966C67600A5F83E0808ADFC8CFD2 /* FBLPromise+Always.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Always.h"; path = "Sources/FBLPromises/include/FBLPromise+Always.h"; sourceTree = ""; }; - 307A02501BEA07B87967E12BB6C0029D /* default_event_engine.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = default_event_engine.cc; path = src/core/lib/event_engine/default_event_engine.cc; sourceTree = ""; }; - 308442F05C4D620147A8558452DCB40F /* cpu.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cpu.h; path = include/grpc/support/cpu.h; sourceTree = ""; }; - 30883659BB3EA13CFA7312B5A23F0217 /* backup_poller.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = backup_poller.h; path = src/core/ext/filters/client_channel/backup_poller.h; sourceTree = ""; }; - 309555DFE023C00AB4D7AB6290E3B0BB /* gRPC-C++.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "gRPC-C++.release.xcconfig"; sourceTree = ""; }; - 30A2CB414B944153384BA5FAFF9D2270 /* server_info.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_info.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/admin/v3/server_info.upbdefs.h"; sourceTree = ""; }; - 30A7AD78C67962228AF19D3C62C8896F /* status.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.h; path = include/grpc/status.h; sourceTree = ""; }; - 30BCF3EFAE4D317FF2B7F827B91CA82F /* thread_pool.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = thread_pool.cc; path = src/core/lib/event_engine/thread_pool.cc; sourceTree = ""; }; - 30F5F23419385F4B50AFEF1B5CA651E7 /* sockaddr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sockaddr.h; path = src/core/lib/iomgr/sockaddr.h; sourceTree = ""; }; - 31008F3EF87979E7EAA163916EF64D83 /* mutex.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mutex.h; path = third_party/re2/util/mutex.h; sourceTree = ""; }; - 311135A38FB9B4F980524B49FD6F620E /* aggregate_query.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = aggregate_query.cc; path = Firestore/core/src/api/aggregate_query.cc; sourceTree = ""; }; - 31307B076E97E3677B561AE63CBA1D5F /* elf_mem_image.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = elf_mem_image.cc; path = absl/debugging/internal/elf_mem_image.cc; sourceTree = ""; }; - 314A227D9B39287AE8E10A79879B1050 /* HeartbeatsPayload.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HeartbeatsPayload.swift; path = FirebaseCore/Internal/Sources/HeartbeatLogging/HeartbeatsPayload.swift; sourceTree = ""; }; - 31538717DE44174F76E7921728F0ECFF /* slice.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = slice.h; path = src/core/lib/slice/slice.h; sourceTree = ""; }; - 318C501DFBECF4348CBECADB26186D34 /* stacktrace_arm-inl.inc */ = {isa = PBXFileReference; includeInIndex = 1; name = "stacktrace_arm-inl.inc"; path = "absl/debugging/internal/stacktrace_arm-inl.inc"; sourceTree = ""; }; - 31957344DB02BBE794FF2969E74DA26C /* FIRAuthExceptionUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthExceptionUtils.m; path = FirebaseAuth/Sources/Utilities/FIRAuthExceptionUtils.m; sourceTree = ""; }; - 319704F9A36EE4F96D23648FA6317B7E /* leveldb-library-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "leveldb-library-prefix.pch"; sourceTree = ""; }; - 31BB11A7E6D72A36B63D01368E38939A /* struct.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = struct.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/matcher/v3/struct.upbdefs.h"; sourceTree = ""; }; - 31C2BCBDB222630431F638FACF0F9414 /* load_file.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = load_file.h; path = src/core/lib/iomgr/load_file.h; sourceTree = ""; }; - 31CC756094CE168F7023ED9619E2A11A /* match.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = match.h; path = src/core/lib/gprpp/match.h; sourceTree = ""; }; - 31D48CC002303851B60BB531377CBFA3 /* str_replace.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = str_replace.cc; path = absl/strings/str_replace.cc; sourceTree = ""; }; - 31DA655DF3D6FCCBCDCFB2B6676BDE95 /* posix_engine.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = posix_engine.cc; path = src/core/lib/event_engine/posix_engine/posix_engine.cc; sourceTree = ""; }; - 320B1179E34CB4024E5004CB3B9D6F8B /* conf.c */ = {isa = PBXFileReference; includeInIndex = 1; name = conf.c; path = src/crypto/conf/conf.c; sourceTree = ""; }; - 320DBBF2F6AE8B771191D7380958FAF5 /* FIRTransaction.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRTransaction.h; path = Firestore/Source/Public/FirebaseFirestore/FIRTransaction.h; sourceTree = ""; }; - 321F515DBCB9A9485EC57A0201F2A855 /* spinlock_akaros.inc */ = {isa = PBXFileReference; includeInIndex = 1; name = spinlock_akaros.inc; path = absl/base/internal/spinlock_akaros.inc; sourceTree = ""; }; - 322458ADDB75562BBC219C9FBDD0C3F3 /* FIRGeoPoint.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRGeoPoint.mm; path = Firestore/Source/API/FIRGeoPoint.mm; sourceTree = ""; }; - 3230029473DC4A88131A7D55079A2EB2 /* FirebaseFirestore-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FirebaseFirestore-dummy.m"; sourceTree = ""; }; - 325C32E742636F03939C351FC1830DD3 /* hmac.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hmac.h; path = src/include/openssl/hmac.h; sourceTree = ""; }; - 325E0FC0BEB3C5BD5613692259DC18A9 /* atm_gcc_sync.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = atm_gcc_sync.h; path = include/grpc/support/atm_gcc_sync.h; sourceTree = ""; }; - 327583D1AE50D855A5DC66860F098F72 /* outlier_detection.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = outlier_detection.upb.h; path = "src/core/ext/upb-generated/envoy/config/cluster/v3/outlier_detection.upb.h"; sourceTree = ""; }; - 327BC8D07AAD7738AE459D1D2527F75A /* xds_cluster_manager.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = xds_cluster_manager.cc; path = src/core/ext/filters/client_channel/lb_policy/xds/xds_cluster_manager.cc; sourceTree = ""; }; - 327D1FA8ADCF1DA2B9CE13E0FE10F59E /* tcp_server_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = tcp_server_posix.cc; path = src/core/lib/iomgr/tcp_server_posix.cc; sourceTree = ""; }; - 3282F1AEF772ECEA9B2DA45B3C8B1706 /* call_op_set_interface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = call_op_set_interface.h; path = include/grpcpp/impl/call_op_set_interface.h; sourceTree = ""; }; - 329BEBF73249662C2D188CA1832390FE /* statusor.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = statusor.cc; path = Firestore/core/src/util/statusor.cc; sourceTree = ""; }; - 32B516A1BEC4CFF25A8E8D66A5322BB8 /* watch_stream.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = watch_stream.cc; path = Firestore/core/src/remote/watch_stream.cc; sourceTree = ""; }; - 32BD28ECD693FF23ED3986A1F0E1DDA4 /* logging.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = logging.cc; path = util/logging.cc; sourceTree = ""; }; - 32C86FED17DD95F9B7C6B6E64438F05A /* trace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = trace.h; path = src/core/lib/event_engine/trace.h; sourceTree = ""; }; - 32D2E6A16B9A52394281683B7706D5EC /* transport_impl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = transport_impl.h; path = src/core/lib/transport/transport_impl.h; sourceTree = ""; }; - 32E34A099A30234EF389724235213746 /* iterator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = iterator.h; path = include/leveldb/iterator.h; sourceTree = ""; }; - 32ED262357C53929A601DE949E124D2C /* mode_wrappers.c */ = {isa = PBXFileReference; includeInIndex = 1; name = mode_wrappers.c; path = src/crypto/fipsmodule/aes/mode_wrappers.c; sourceTree = ""; }; - 330671DD8D31C61CE7777FBACC562941 /* v3_enum.c */ = {isa = PBXFileReference; includeInIndex = 1; name = v3_enum.c; path = src/crypto/x509v3/v3_enum.c; sourceTree = ""; }; - 33129397BEB630E69985E604A171C2A4 /* orca_load_report.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = orca_load_report.upb.h; path = "src/core/ext/upb-generated/xds/data/orca/v3/orca_load_report.upb.h"; sourceTree = ""; }; - 3340F1EFB30DF475E91F8448CC0D12CF /* custom_tag.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = custom_tag.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/tracing/v3/custom_tag.upbdefs.h"; sourceTree = ""; }; - 33448C9404020ABFFBBB0103E1001B13 /* endpoint.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = endpoint.upb.c; path = "src/core/ext/upb-generated/envoy/config/endpoint/v3/endpoint.upb.c"; sourceTree = ""; }; - 3347A1AB6546F0A3977529B8F199DC41 /* PromisesObjC */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = PromisesObjC; path = FBLPromises.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 33659C106C597E06603A0554A65A3821 /* FIRAuthSerialTaskQueue.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthSerialTaskQueue.m; path = FirebaseAuth/Sources/Auth/FIRAuthSerialTaskQueue.m; sourceTree = ""; }; - 33664FDD4141A7A76BA7C6B80E5B2234 /* latch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = latch.h; path = src/core/lib/promise/latch.h; sourceTree = ""; }; - 337D14FE64F04CAF68645EB8093FD65A /* message_allocator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = message_allocator.h; path = include/grpcpp/support/message_allocator.h; sourceTree = ""; }; - 338C41D1810425B51CE75208980BD225 /* xds_resolver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_resolver.h; path = src/core/ext/filters/client_channel/resolver/xds/xds_resolver.h; sourceTree = ""; }; - 33A88C7415B9C77919580468A27A29F8 /* binder_auto_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = binder_auto_utils.h; path = src/core/ext/transport/binder/utils/binder_auto_utils.h; sourceTree = ""; }; - 33A8EC5E689E1E55CFC3895B326BF58C /* server_timestamp_util.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = server_timestamp_util.cc; path = Firestore/core/src/model/server_timestamp_util.cc; sourceTree = ""; }; - 33AAA0CC9B1BED878B77DB963BD785F5 /* gRPC-Core.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "gRPC-Core.debug.xcconfig"; sourceTree = ""; }; - 33B763A67E3F4479336E7E55F97CF10A /* FIRQuerySnapshot.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRQuerySnapshot.h; path = Firestore/Source/Public/FirebaseFirestore/FIRQuerySnapshot.h; sourceTree = ""; }; - 33C4A96A5DE21D1E08DA02F702FF5916 /* frame_goaway.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = frame_goaway.h; path = src/core/ext/transport/chttp2/transport/frame_goaway.h; sourceTree = ""; }; - 33D32CF9DD8FF148548D1DB3F5F6BFC4 /* host_port.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = host_port.h; path = src/core/lib/gprpp/host_port.h; sourceTree = ""; }; - 33D34D2210961B1CBFEC1D194B0AAB9F /* RecaptchaInterop */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = RecaptchaInterop; path = RecaptchaInterop.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 33EE0318AF45ABE8ADAE15C7E30B7A0D /* sockaddr_resolver.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = sockaddr_resolver.cc; path = src/core/ext/filters/client_channel/resolver/sockaddr/sockaddr_resolver.cc; sourceTree = ""; }; - 340B5E56498E6EF7492DAC663857867E /* timer_heap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timer_heap.h; path = src/core/lib/iomgr/timer_heap.h; sourceTree = ""; }; - 3411A1A42B2A46331D1100D65DC7A9CD /* des.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = des.h; path = src/include/openssl/des.h; sourceTree = ""; }; - 3433683EDB408361D8D03D5683A9CA4B /* binder_constants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = binder_constants.h; path = src/core/ext/transport/binder/wire_format/binder_constants.h; sourceTree = ""; }; - 344ACC36B17FC8167067E434D8405371 /* call_combiner.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = call_combiner.h; path = src/core/lib/iomgr/call_combiner.h; sourceTree = ""; }; - 344BE8BC3B785DDBA347A6AD19D1686B /* FirebaseAppCheckInterop-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "FirebaseAppCheckInterop-Info.plist"; sourceTree = ""; }; - 346080040C30E4053AA2A7299F46A5C2 /* load_balancer_api.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = load_balancer_api.h; path = src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.h; sourceTree = ""; }; - 346CB45C394BC2C0B30A7E7825A3BFA9 /* abseil.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = abseil.modulemap; sourceTree = ""; }; - 348763B349FB3F41AEBE8E7B5A6CA1D1 /* regex.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = regex.upbdefs.h; path = "src/core/ext/upbdefs-generated/xds/type/matcher/v3/regex.upbdefs.h"; sourceTree = ""; }; - 34915FB06B4D197FAFFF29F2749E7318 /* completion_queue_factory.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = completion_queue_factory.cc; path = src/core/lib/surface/completion_queue_factory.cc; sourceTree = ""; }; - 3496A53D41C46E8C76D1A18F1518B2E9 /* FirebaseCore.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = FirebaseCore.modulemap; sourceTree = ""; }; - 34AD2E39AA180A9D3A58EE2B0409264A /* common.nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = common.nanopb.cc; path = Firestore/Protos/nanopb/google/firestore/v1/common.nanopb.cc; sourceTree = ""; }; - 34BF075FFDAF54CC4899F95E304AB3DF /* ctrdrbg.c */ = {isa = PBXFileReference; includeInIndex = 1; name = ctrdrbg.c; path = src/crypto/fipsmodule/rand/ctrdrbg.c; sourceTree = ""; }; - 34C00D5A69B9779843AE763D220152D6 /* flags.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = flags.h; path = third_party/re2/util/flags.h; sourceTree = ""; }; - 34C42FF0416B8C107FBF9E77C4A64245 /* base64.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = base64.h; path = src/include/openssl/base64.h; sourceTree = ""; }; - 34D0D07D449E5133B6F9F2CAF5E3EB51 /* BoringSSL-GRPC-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "BoringSSL-GRPC-Info.plist"; sourceTree = ""; }; - 34DFB8830092F41584F56A2DF3BD27D9 /* FIRAuthExceptionUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthExceptionUtils.h; path = FirebaseAuth/Sources/Utilities/FIRAuthExceptionUtils.h; sourceTree = ""; }; - 34EA51FCBBBB11B0131384466FFD70A2 /* local_transport_security.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = local_transport_security.h; path = src/core/tsi/local_transport_security.h; sourceTree = ""; }; - 34F53D5BE1F3C538EB74CE713C2D673D /* status.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/rpc/status.upbdefs.h"; sourceTree = ""; }; - 351B2E3C11F7CC74ABB0F11C776740BC /* alts_handshaker_client.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_handshaker_client.h; path = src/core/tsi/alts/handshaker/alts_handshaker_client.h; sourceTree = ""; }; - 352CEF9C1FFB46CF0881CF7577763C4C /* t_x509.c */ = {isa = PBXFileReference; includeInIndex = 1; name = t_x509.c; path = src/crypto/x509/t_x509.c; sourceTree = ""; }; - 352F9E41B868B9B610A5B0D14B6A34F5 /* resolved_address.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolved_address.h; path = src/core/lib/iomgr/resolved_address.h; sourceTree = ""; }; - 353A7C68D6C4588F7CB2E33F969352F5 /* GULKeychainStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULKeychainStorage.h; path = GoogleUtilities/Environment/Public/GoogleUtilities/GULKeychainStorage.h; sourceTree = ""; }; + 0011AEE22E8296B3D9E0B0B2CDCAB2EE /* Pods-iosApp-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-iosApp-acknowledgements.plist"; sourceTree = ""; }; + 1A2FB55B5C37861BC78ECD1420D818C3 /* Pods-iosApp.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-iosApp.release.xcconfig"; sourceTree = ""; }; 35548E3BD8DA30925E8FE97E67B84868 /* shared.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = shared.release.xcconfig; sourceTree = ""; }; - 3575F8D3ABA823BD4E0C775B378CAD64 /* fault.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fault.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/extensions/filters/common/fault/v3/fault.upbdefs.h"; sourceTree = ""; }; - 357D38A2FFBAF186424EB9B0A5246416 /* key_field_in_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = key_field_in_filter.cc; path = Firestore/core/src/core/key_field_in_filter.cc; sourceTree = ""; }; - 358520D93B3C479B798F73BD398B9E6B /* FIRGoogleAuthCredential.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRGoogleAuthCredential.m; path = FirebaseAuth/Sources/AuthProvider/Google/FIRGoogleAuthCredential.m; sourceTree = ""; }; - 35AD402BFFA0EB939C0552B3FEA54261 /* GULKeychainUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULKeychainUtils.h; path = GoogleUtilities/Environment/Public/GoogleUtilities/GULKeychainUtils.h; sourceTree = ""; }; - 35B968D638FD8203F0A649B8655020C3 /* grpc_method_list.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_method_list.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/grpc_method_list.upbdefs.h"; sourceTree = ""; }; - 35BEDE946D34A49E78AEF7756E6D8F29 /* datastore.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = datastore.cc; path = Firestore/core/src/remote/datastore.cc; sourceTree = ""; }; - 35C3478E58EF9BDAEBE26A644E68106D /* a_dup.c */ = {isa = PBXFileReference; includeInIndex = 1; name = a_dup.c; path = src/crypto/asn1/a_dup.c; sourceTree = ""; }; - 35C9072FE84E4E63B48146BC96926907 /* checked.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = checked.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/checked.upbdefs.h"; sourceTree = ""; }; - 35D4FD4083A50042E79FFD0C83FFFED5 /* grpc_tls_certificate_verifier.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = grpc_tls_certificate_verifier.cc; path = src/core/lib/security/credentials/tls/grpc_tls_certificate_verifier.cc; sourceTree = ""; }; - 35E898B12A207112DB0853AE3275B0C3 /* channel_argument_option.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = channel_argument_option.cc; path = src/cpp/server/channel_argument_option.cc; sourceTree = ""; }; - 35E8A32CE322A3E022C3DCB888208A0E /* resolve_address_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolve_address_posix.h; path = src/core/lib/iomgr/resolve_address_posix.h; sourceTree = ""; }; - 3611235070AE4A66DDCC04DB845D7A1D /* slice_string_helpers.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = slice_string_helpers.cc; path = src/core/lib/slice/slice_string_helpers.cc; sourceTree = ""; }; - 36148282188F1893905C3FDEEF53B382 /* url_external_account_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = url_external_account_credentials.cc; path = src/core/lib/security/credentials/external/url_external_account_credentials.cc; sourceTree = ""; }; - 36169A9BB6EA80ECA2B79CE6743341F2 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/core/ext/transport/chttp2/transport/internal.h; sourceTree = ""; }; - 361F1765394550B8F24A02F702A16728 /* internal_errqueue.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = internal_errqueue.cc; path = src/core/lib/iomgr/internal_errqueue.cc; sourceTree = ""; }; - 363D6848FA832967E80C1336837CB963 /* spake25519.c */ = {isa = PBXFileReference; includeInIndex = 1; name = spake25519.c; path = src/crypto/curve25519/spake25519.c; sourceTree = ""; }; - 366152B858E875BC001D50DC9E5A3021 /* BoringSSL-GRPC.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "BoringSSL-GRPC.modulemap"; sourceTree = ""; }; - 368C22818757BD00841F71BECA39CBE1 /* dsa_asn1.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dsa_asn1.c; path = src/crypto/dsa/dsa_asn1.c; sourceTree = ""; }; - 36BB80B8E1EA2FF2786F608B078DA8EF /* substitution_format_string.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = substitution_format_string.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/substitution_format_string.upbdefs.h"; sourceTree = ""; }; - 36C86A1E1380A713ECA3A59A5E8A06BE /* chttp2_transport.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = chttp2_transport.cc; path = src/core/ext/transport/chttp2/transport/chttp2_transport.cc; sourceTree = ""; }; - 36D4A2D5DB33A05913107137DE0BCF73 /* ecdsa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ecdsa.h; path = src/include/openssl/ecdsa.h; sourceTree = ""; }; - 36F0DCAEBD3D688E3154982FBE823F25 /* grpc_tls_certificate_distributor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_tls_certificate_distributor.h; path = src/core/lib/security/credentials/tls/grpc_tls_certificate_distributor.h; sourceTree = ""; }; - 370DBE5D5E689BFE5ABA6481CC90C7FC /* db_iter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = db_iter.h; path = db/db_iter.h; sourceTree = ""; }; - 371C2AB56B9E1DCD66FDB54BBD3E7A43 /* database_info.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = database_info.cc; path = Firestore/core/src/core/database_info.cc; sourceTree = ""; }; - 37253A0CF4F309D3341749330B4D4BA8 /* stats_data.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = stats_data.cc; path = src/core/lib/debug/stats_data.cc; sourceTree = ""; }; - 372FE16E9F9B80CB1F1BF5874A89F8A3 /* descriptor.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = descriptor.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/protobuf/descriptor.upbdefs.h"; sourceTree = ""; }; - 3744D0941F8A545EFD6E4310FDEE7618 /* FIRFacebookAuthCredential.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRFacebookAuthCredential.h; path = FirebaseAuth/Sources/AuthProvider/Facebook/FIRFacebookAuthCredential.h; sourceTree = ""; }; - 37723074CAD3AD2A43F4D33146D841F3 /* extension.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = extension.upb.c; path = "src/core/ext/upb-generated/xds/core/v3/extension.upb.c"; sourceTree = ""; }; - 3777DF72BAC7AA8E70608D3E05234AE4 /* e_des.c */ = {isa = PBXFileReference; includeInIndex = 1; name = e_des.c; path = src/crypto/fipsmodule/cipher/e_des.c; sourceTree = ""; }; - 3786B216292DD72574530A53CDE63061 /* ev_epoll1_linux.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ev_epoll1_linux.h; path = src/core/lib/iomgr/ev_epoll1_linux.h; sourceTree = ""; }; - 3794EF5B2603668BC5F5F4D774C65E8C /* ssl_lib.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = ssl_lib.cc; path = src/ssl/ssl_lib.cc; sourceTree = ""; }; - 37AE5488268F3775770C2248293FA676 /* ossl_typ.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ossl_typ.h; path = src/include/openssl/ossl_typ.h; sourceTree = ""; }; - 37B71D016F5AB4B39D0BE3A2EC98DF0C /* proxy_mapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = proxy_mapper.h; path = src/core/lib/handshaker/proxy_mapper.h; sourceTree = ""; }; - 37F0393FA22A723EF3B2F2DD1F51B51C /* barrier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = barrier.h; path = absl/synchronization/barrier.h; sourceTree = ""; }; - 37F0476FE3695902968717FC48DDA17A /* lb_policy_factory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lb_policy_factory.h; path = src/core/lib/load_balancing/lb_policy_factory.h; sourceTree = ""; }; - 380B094704F420D4E0EC9F2759DAC40F /* dns_resolver.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = dns_resolver.cc; path = src/core/ext/filters/client_channel/resolver/dns/native/dns_resolver.cc; sourceTree = ""; }; - 3812B343FB792033520820ADFBAFD132 /* montgomery_inv.c */ = {isa = PBXFileReference; includeInIndex = 1; name = montgomery_inv.c; path = src/crypto/fipsmodule/bn/montgomery_inv.c; sourceTree = ""; }; - 3815A6BA42057C3F99842FA6B7823213 /* x509rset.c */ = {isa = PBXFileReference; includeInIndex = 1; name = x509rset.c; path = src/crypto/x509/x509rset.c; sourceTree = ""; }; - 3817AA49B807F526FC21E3DD84ADC8AA /* service_config_parser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = service_config_parser.h; path = src/core/ext/filters/fault_injection/service_config_parser.h; sourceTree = ""; }; - 381827D7CE874AFD5179B42E152CC1F8 /* by_dir.c */ = {isa = PBXFileReference; includeInIndex = 1; name = by_dir.c; path = src/crypto/x509/by_dir.c; sourceTree = ""; }; - 381A3485DDA7E4F2E64C3127D0E847FD /* grpc_tls_certificate_verifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_tls_certificate_verifier.h; path = src/core/lib/security/credentials/tls/grpc_tls_certificate_verifier.h; sourceTree = ""; }; - 3824C1962AB1BC1EE6A2BDFE75BA4A86 /* no_destructor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = no_destructor.h; path = util/no_destructor.h; sourceTree = ""; }; - 3829ABB814C6845689AEC6BB49EFDEE3 /* evaluate_args.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = evaluate_args.cc; path = src/core/lib/security/authorization/evaluate_args.cc; sourceTree = ""; }; - 382CF00AC9B3E3B0FEBA9B1A38D76AEF /* alts_frame_protector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_frame_protector.h; path = src/core/tsi/alts/frame_protector/alts_frame_protector.h; sourceTree = ""; }; - 382E90F0A87E29EDCDFC3252CB2B6EAC /* cord_buffer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cord_buffer.h; path = absl/strings/cord_buffer.h; sourceTree = ""; }; - 38372C8CCE137F7D37EF2CE7E811572B /* alarm.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alarm.h; path = include/grpcpp/alarm.h; sourceTree = ""; }; - 3838986E3FB6D16ABB9B5EBE29E09E19 /* grpc_plugin_registry_extra.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = grpc_plugin_registry_extra.cc; path = src/core/plugin_registry/grpc_plugin_registry_extra.cc; sourceTree = ""; }; - 385605BD39CAC22DBC84D88F0A42DC7A /* resolve_address.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolve_address.h; path = src/core/lib/iomgr/resolve_address.h; sourceTree = ""; }; - 388D0DC6537080711BCB27B8221D4AD6 /* trace_config.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = trace_config.upbdefs.h; path = "src/core/ext/upbdefs-generated/opencensus/proto/trace/v1/trace_config.upbdefs.h"; sourceTree = ""; }; - 38A1DCA3064BA8F96D1E9127F712BDA3 /* executor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = executor.h; path = src/core/lib/iomgr/executor.h; sourceTree = ""; }; - 38AFFF99F7E583F7A5049E6FE6826FB0 /* service_config_parser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = service_config_parser.h; path = src/core/ext/filters/fault_injection/service_config_parser.h; sourceTree = ""; }; - 38D052780525542B9D7CBC3DB4AF5AFD /* subchannel_interface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = subchannel_interface.h; path = src/core/lib/load_balancing/subchannel_interface.h; sourceTree = ""; }; - 38D5B2B2D6554D4105B581C0B7174EEE /* v3_purp.c */ = {isa = PBXFileReference; includeInIndex = 1; name = v3_purp.c; path = src/crypto/x509v3/v3_purp.c; sourceTree = ""; }; - 38DB8290A9A9A619338D360EE034C48C /* time_util.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = time_util.cc; path = src/core/lib/event_engine/time_util.cc; sourceTree = ""; }; - 38DFEB12E491FE27CE0123B485FA92CC /* plugin_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = plugin_credentials.cc; path = src/core/lib/security/credentials/plugin/plugin_credentials.cc; sourceTree = ""; }; - 38E257665B0ECE3EE3E6E3FC9A355908 /* fault.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fault.upb.h; path = "src/core/ext/upb-generated/envoy/extensions/filters/common/fault/v3/fault.upb.h"; sourceTree = ""; }; - 38FC2742B4198EFD796D9BA5C3EAEE8A /* FBLPromise+Catch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Catch.h"; path = "Sources/FBLPromises/include/FBLPromise+Catch.h"; sourceTree = ""; }; - 38FC676B1E21DD852CB7072EF9FF9FFD /* async_unary_call.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = async_unary_call.h; path = include/grpcpp/impl/codegen/async_unary_call.h; sourceTree = ""; }; - 3909D3F6B40E48F42C11E9F67FAE0688 /* FirebaseCoreInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseCoreInternal.h; path = FirebaseCore/Extension/FirebaseCoreInternal.h; sourceTree = ""; }; - 3922CFD54B85B0F45E8F44EA32F09DD7 /* metadata.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = metadata.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/matcher/v3/metadata.upbdefs.h"; sourceTree = ""; }; - 39252B52400CE636040946DBEEF5E7DA /* FIRAuth.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuth.m; path = FirebaseAuth/Sources/Auth/FIRAuth.m; sourceTree = ""; }; - 39592733D5F67B93976E9E68975F9D1C /* GTMSessionFetcherService.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GTMSessionFetcherService.m; path = Sources/Core/GTMSessionFetcherService.m; sourceTree = ""; }; - 396D0E09EB10E85067B861A943D52CF3 /* metadata.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = metadata.upb.h; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/metadata.upb.h"; sourceTree = ""; }; - 39757624A0559A9432811637D57F253A /* grpclb_client_stats.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpclb_client_stats.h; path = src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_client_stats.h; sourceTree = ""; }; - 398DB00B926B8A795F11AA30BB9744C1 /* check_gcp_environment.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = check_gcp_environment.h; path = src/core/lib/security/credentials/alts/check_gcp_environment.h; sourceTree = ""; }; - 3990D9F719024BA5F88C3712DF7C80BD /* thread_quota.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = thread_quota.h; path = src/core/lib/resource_quota/thread_quota.h; sourceTree = ""; }; - 399ED03BC404637B55C5EF41757EEAC9 /* table_builder.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = table_builder.cc; path = table/table_builder.cc; sourceTree = ""; }; - 39BB54E277AB31BD264879FC69D21755 /* a_time.c */ = {isa = PBXFileReference; includeInIndex = 1; name = a_time.c; path = src/crypto/asn1/a_time.c; sourceTree = ""; }; - 39C1E7B3AB66A85AEB91EEFE7847AA26 /* evp_ctx.c */ = {isa = PBXFileReference; includeInIndex = 1; name = evp_ctx.c; path = src/crypto/evp/evp_ctx.c; sourceTree = ""; }; - 39CA2812BFD62B232487F55ED0915306 /* civil_time.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = civil_time.h; path = absl/time/internal/cctz/include/cctz/civil_time.h; sourceTree = ""; }; - 39CF3D4298290AD557652E9185300916 /* document.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = document.cc; path = Firestore/core/src/model/document.cc; sourceTree = ""; }; - 39D20BFB3E98C05B1E42DEB6C4EF9DCA /* format_request.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = format_request.h; path = src/core/lib/http/format_request.h; sourceTree = ""; }; - 39D3E28102BBB1AF3E1D37D90C92A1EE /* sockaddr_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sockaddr_posix.h; path = src/core/lib/iomgr/sockaddr_posix.h; sourceTree = ""; }; - 39D949EA50CA8F9E6BDDBD4A26FF2769 /* binder_connector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = binder_connector.h; path = src/core/ext/transport/binder/client/binder_connector.h; sourceTree = ""; }; - 39EABC4334216A0DDD5A81B7BF40C50F /* print.c */ = {isa = PBXFileReference; includeInIndex = 1; name = print.c; path = src/crypto/evp/print.c; sourceTree = ""; }; - 39F508108094F547D50CCE8E8ED241F3 /* grpc_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_posix.h; path = include/grpc/grpc_posix.h; sourceTree = ""; }; - 39F82BB721AD6B6F79DD61E7260869A7 /* FIRAppCheckTokenResultInterop.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAppCheckTokenResultInterop.h; path = FirebaseAppCheck/Interop/FIRAppCheckTokenResultInterop.h; sourceTree = ""; }; - 3A322B4302CA5F4C4581C0A9C895ABA7 /* mini_table.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = mini_table.hpp; path = third_party/upb/upb/mini_table.hpp; sourceTree = ""; }; - 3A38A39751745D4AC1841F472A785A98 /* config_selector.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = config_selector.cc; path = src/core/ext/filters/client_channel/config_selector.cc; sourceTree = ""; }; - 3A576FED4141FC5A1271EFD8611C8A4B /* FirebaseAppCheckInterop-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FirebaseAppCheckInterop-dummy.m"; sourceTree = ""; }; - 3A77CACF24E2E68E9FE8D4A93DF64164 /* xds.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds.h; path = src/core/ext/filters/client_channel/lb_policy/xds/xds.h; sourceTree = ""; }; - 3A7A4D2B3EA04CD2D431FC77E580A86C /* string.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = string.h; path = src/core/lib/gpr/string.h; sourceTree = ""; }; - 3A9A77D417395A339197A0213DDE226C /* message.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = message.cc; path = Firestore/core/src/nanopb/message.cc; sourceTree = ""; }; - 3AA6E176F35E2BC57CAF04250568093A /* sample_recorder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sample_recorder.h; path = absl/profiling/internal/sample_recorder.h; sourceTree = ""; }; - 3AA97A7C0C06BA437D076E32AEB18D57 /* FIREmailPasswordAuthCredential.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIREmailPasswordAuthCredential.m; path = FirebaseAuth/Sources/AuthProvider/Email/FIREmailPasswordAuthCredential.m; sourceTree = ""; }; - 3AB1E9B05CA3D23CB6A370322FAB7C54 /* verify_mutation.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = verify_mutation.cc; path = Firestore/core/src/model/verify_mutation.cc; sourceTree = ""; }; - 3AB2D2578787D1977C2A086623DF4E6D /* evp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = evp.h; path = src/include/openssl/evp.h; sourceTree = ""; }; - 3ACBE943965D4328EC514EB23BBE6178 /* tls_spiffe_validator_config.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tls_spiffe_validator_config.upb.h; path = "src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upb.h"; sourceTree = ""; }; - 3AD9DEC313F8CE490F8DDF1DC5DAC13C /* rsa_impl.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rsa_impl.c; path = src/crypto/fipsmodule/rsa/rsa_impl.c; sourceTree = ""; }; - 3ADECC74F92D4955B7E72247A83B3768 /* grpc_if_nametoindex.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_if_nametoindex.h; path = src/core/lib/iomgr/grpc_if_nametoindex.h; sourceTree = ""; }; - 3AF63EDD6806BF6A876B63EA55CBA64E /* murmur_hash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = murmur_hash.h; path = src/core/lib/gpr/murmur_hash.h; sourceTree = ""; }; - 3B1AA9559BDE1C0FD02B513FF76C89EF /* resolver.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolver.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/resolver.upbdefs.h"; sourceTree = ""; }; - 3B1AE8185AA1582F23BE517DE128680D /* PromisesObjC.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = PromisesObjC.release.xcconfig; sourceTree = ""; }; - 3B2BBBCA2A334A2B5A286924E8C390CC /* udp_listener_config.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = udp_listener_config.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/listener/v3/udp_listener_config.upbdefs.h"; sourceTree = ""; }; - 3B32B1F1E09CEEDBF447CABE86592ED9 /* annotations.nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = annotations.nanopb.cc; path = Firestore/Protos/nanopb/google/api/annotations.nanopb.cc; sourceTree = ""; }; - 3B42AA4452710A4A8E01539C22D553C4 /* document.nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = document.nanopb.cc; path = Firestore/Protos/nanopb/google/firestore/v1/document.nanopb.cc; sourceTree = ""; }; - 3B4A06CBAD268E78F4BA1ADE5814C5F3 /* checked.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = checked.upbdefs.c; path = "src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/checked.upbdefs.c"; sourceTree = ""; }; - 3B4EA5001DF5A95AA069FB8283A85A92 /* derive_key.c */ = {isa = PBXFileReference; includeInIndex = 1; name = derive_key.c; path = src/crypto/cipher_extra/derive_key.c; sourceTree = ""; }; - 3B7472FF5EB86A2EBB4614BBEB9A998C /* log_writer.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = log_writer.cc; path = db/log_writer.cc; sourceTree = ""; }; - 3B7879FD2FF62773440D4069832105C3 /* SystemConfiguration.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SystemConfiguration.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.0.sdk/System/Library/Frameworks/SystemConfiguration.framework; sourceTree = DEVELOPER_DIR; }; - 3B8ED7C0A5717A59310573EC17E1367D /* hpke.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hpke.h; path = src/include/openssl/hpke.h; sourceTree = ""; }; - 3B9AB857B8D9653E68D1A3909D4D9907 /* discovery.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = discovery.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/service/discovery/v3/discovery.upbdefs.h"; sourceTree = ""; }; - 3B9C2A8E760124F796BA316B005FD621 /* insecure_security_connector.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = insecure_security_connector.cc; path = src/core/lib/security/security_connector/insecure/insecure_security_connector.cc; sourceTree = ""; }; - 3BACF8DCC4AB40857D5741211D1E5EE5 /* timer_manager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timer_manager.h; path = src/core/lib/event_engine/posix_engine/timer_manager.h; sourceTree = ""; }; - 3BCF691DC99C8D9743A3AA74FF645890 /* socket_option.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = socket_option.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/socket_option.upb.h"; sourceTree = ""; }; - 3BD90E818DD2D4334EB9A39CA84CDCB7 /* upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = upb.h; path = third_party/upb/upb/upb.h; sourceTree = ""; }; - 3BDF926F308AF5FCEE56EA7523893A97 /* child_policy_handler.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = child_policy_handler.cc; path = src/core/ext/filters/client_channel/lb_policy/child_policy_handler.cc; sourceTree = ""; }; - 3BE9DB234E00C9CBB012C22A427922D3 /* FIRGetOOBConfirmationCodeRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRGetOOBConfirmationCodeRequest.m; path = FirebaseAuth/Sources/Backend/RPC/FIRGetOOBConfirmationCodeRequest.m; sourceTree = ""; }; - 3BEF1AF9160BD729A275F0D55878D5D5 /* nanopb-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "nanopb-umbrella.h"; sourceTree = ""; }; - 3BFD5B29978F033F0AEA351AB9470BD2 /* str_format.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = str_format.h; path = absl/strings/str_format.h; sourceTree = ""; }; - 3C180102BA32CE9B12AF39D1E5AB3210 /* struct.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = struct.upb.c; path = "src/core/ext/upb-generated/google/protobuf/struct.upb.c"; sourceTree = ""; }; - 3C265AC8532D61B1CD13B91B87576FB6 /* alts_grpc_integrity_only_record_protocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_grpc_integrity_only_record_protocol.h; path = src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_integrity_only_record_protocol.h; sourceTree = ""; }; - 3C4F1074A58B80D18F3ACCE466B237F1 /* percent_encoding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = percent_encoding.h; path = src/core/lib/slice/percent_encoding.h; sourceTree = ""; }; - 3C54D928DEDBF85F1E48C687045DB0DF /* x_attrib.c */ = {isa = PBXFileReference; includeInIndex = 1; name = x_attrib.c; path = src/crypto/x509/x_attrib.c; sourceTree = ""; }; - 3C5D527AA998FA1582770E1C2BE83A8F /* value.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = value.upb.c; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/value.upb.c"; sourceTree = ""; }; - 3C7AD5BF274896C2D7B990B777A63999 /* tcp_client.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tcp_client.h; path = src/core/lib/iomgr/tcp_client.h; sourceTree = ""; }; - 3CBD302CC0B8EA28E6C29CAD109FA4F3 /* md5.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = md5.cc; path = Firestore/core/src/util/md5.cc; sourceTree = ""; }; - 3CDB38CC3A2723099BA584C7552B5450 /* descriptor.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = descriptor.upb.h; path = "src/core/ext/upb-generated/google/protobuf/descriptor.upb.h"; sourceTree = ""; }; - 3CDDE1765E0F260A558CC6E99E6C0A20 /* memory_allocator.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = memory_allocator.cc; path = src/core/lib/event_engine/memory_allocator.cc; sourceTree = ""; }; - 3CF1D78C3C2E17B49A9E25964B735374 /* authority.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = authority.upbdefs.h; path = "src/core/ext/upbdefs-generated/xds/core/v3/authority.upbdefs.h"; sourceTree = ""; }; - 3D1494E98F37D17D3FCBC3C238573961 /* plugin_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = plugin_credentials.h; path = src/core/lib/security/credentials/plugin/plugin_credentials.h; sourceTree = ""; }; - 3D2E7E57DF93DAE54FABFA6DEA74E15B /* lightstep.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lightstep.upb.h; path = "src/core/ext/upb-generated/envoy/config/trace/v3/lightstep.upb.h"; sourceTree = ""; }; - 3D42FCC370A6088C0015DA5F7E60C62B /* stringpiece.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = stringpiece.cc; path = third_party/re2/re2/stringpiece.cc; sourceTree = ""; }; - 3D46EDF9122ABA759BFC755058F54AB6 /* xds_http_fault_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_http_fault_filter.h; path = src/core/ext/xds/xds_http_fault_filter.h; sourceTree = ""; }; - 3D4AE8F8BAE1ED57A44D83971C250970 /* poisson_distribution.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = poisson_distribution.h; path = absl/random/poisson_distribution.h; sourceTree = ""; }; - 3D4BDB3AFD0A321E3DD7D127E6117761 /* v3_crld.c */ = {isa = PBXFileReference; includeInIndex = 1; name = v3_crld.c; path = src/crypto/x509v3/v3_crld.c; sourceTree = ""; }; - 3D5CF40EE7AD60D5023793ABD71D8D0A /* channelz.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channelz.h; path = src/core/lib/channel/channelz.h; sourceTree = ""; }; - 3D71BD54336B8B478F5EC751A285F9DD /* port.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = port.h; path = include/grpc/event_engine/port.h; sourceTree = ""; }; - 3DA01CEE16745AE7DAC47E0CF19A2D05 /* scoped_route.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = scoped_route.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/route/v3/scoped_route.upbdefs.h"; sourceTree = ""; }; - 3DA08BA8B50DC72DDB36532E53EF6857 /* socket_factory_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = socket_factory_posix.h; path = src/core/lib/iomgr/socket_factory_posix.h; sourceTree = ""; }; - 3DAF25A5933F55C9285B7AF56B85F8B2 /* graphcycles.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = graphcycles.cc; path = absl/synchronization/internal/graphcycles.cc; sourceTree = ""; }; - 3E21D04A398C9A1C5EFC27FAA6DD00C2 /* endpoint_binder_pool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endpoint_binder_pool.h; path = src/core/ext/transport/binder/client/endpoint_binder_pool.h; sourceTree = ""; }; - 3E280793D99C21902483E68E8A614975 /* config_dump_shared.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = config_dump_shared.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/admin/v3/config_dump_shared.upbdefs.h"; sourceTree = ""; }; - 3E3B9724C33E603269CD4A9091E8B422 /* alloc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alloc.h; path = src/core/lib/gpr/alloc.h; sourceTree = ""; }; - 3E48A20086959F1D370E5662A5A1494A /* timer_heap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timer_heap.h; path = src/core/lib/iomgr/timer_heap.h; sourceTree = ""; }; - 3E4BAFF6F02A834FB12A45458BEC9303 /* validate.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = validate.upbdefs.h; path = "src/core/ext/upbdefs-generated/validate/validate.upbdefs.h"; sourceTree = ""; }; - 3E5FF95446D1DF5956622C8B460E18B5 /* table_builder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = table_builder.h; path = include/leveldb/table_builder.h; sourceTree = ""; }; - 3E604C81CA7C7A49D8494A10200E5BB7 /* transport_security_grpc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = transport_security_grpc.h; path = src/core/tsi/transport_security_grpc.h; sourceTree = ""; }; - 3E80C3622404D773E90B3F164B70C3B3 /* discovery.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = discovery.upb.h; path = "src/core/ext/upb-generated/envoy/service/discovery/v3/discovery.upb.h"; sourceTree = ""; }; - 3E841452D22D8D7B6EBA233662941B3D /* metrics_service.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = metrics_service.upb.h; path = "src/core/ext/upb-generated/envoy/config/metrics/v3/metrics_service.upb.h"; sourceTree = ""; }; - 3E8C38B68E50ECF8A8F8F3CD90CCD74C /* memory.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = memory.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/admin/v3/memory.upbdefs.c"; sourceTree = ""; }; - 3EA24C0597378DB5F748AFBFCB7BD7BA /* order_by.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = order_by.cc; path = Firestore/core/src/core/order_by.cc; sourceTree = ""; }; - 3EA8343325E1E8A0CF13F57C9ABBF03D /* config_dump.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = config_dump.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/admin/v3/config_dump.upbdefs.h"; sourceTree = ""; }; - 3EAB3FF108AC6E40D1CC890D330257AD /* FIRVerifyPasswordRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRVerifyPasswordRequest.h; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyPasswordRequest.h; sourceTree = ""; }; - 3EADB00A7F92A434ECB62E508C4C1ED2 /* create_default_thread_pool.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = create_default_thread_pool.cc; path = src/cpp/server/create_default_thread_pool.cc; sourceTree = ""; }; - 3F0340BE5A31437558ED606A17F43A15 /* resource.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = resource.upbdefs.c; path = "src/core/ext/upbdefs-generated/xds/core/v3/resource.upbdefs.c"; sourceTree = ""; }; - 3F03B7BC829FD1D8E52CCAA208E7B4EE /* FIRAuthProtoStartMFATOTPEnrollmentResponseInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthProtoStartMFATOTPEnrollmentResponseInfo.h; path = FirebaseAuth/Sources/Backend/RPC/Proto/TOTP/FIRAuthProtoStartMFATOTPEnrollmentResponseInfo.h; sourceTree = ""; }; - 3F0A3E8FF9497E386AD68B859A1566DF /* logging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = logging.h; path = util/logging.h; sourceTree = ""; }; - 3F3C3DCC41E388C7D914B5A81952B485 /* FIRGoogleAuthProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRGoogleAuthProvider.m; path = FirebaseAuth/Sources/AuthProvider/Google/FIRGoogleAuthProvider.m; sourceTree = ""; }; - 3F5790C6D4AA210C8AE0821F86AB2270 /* xds_lb_policy_registry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_lb_policy_registry.h; path = src/core/ext/xds/xds_lb_policy_registry.h; sourceTree = ""; }; - 3F64BADB16C311E9D09DAD0116F684F4 /* Pods-iosApp.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-iosApp.debug.xcconfig"; sourceTree = ""; }; - 3F66040F0E63D24D666E8784C52774F2 /* FIRSendVerificationCodeResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRSendVerificationCodeResponse.h; path = FirebaseAuth/Sources/Backend/RPC/FIRSendVerificationCodeResponse.h; sourceTree = ""; }; - 3F6C05F1E6B1AC54757BE1214A27B7BD /* external_account_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = external_account_credentials.cc; path = src/core/lib/security/credentials/external/external_account_credentials.cc; sourceTree = ""; }; - 3F83D5014BCC9A3842ABBB114BD533DE /* backend_metric.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = backend_metric.cc; path = src/core/ext/filters/client_channel/backend_metric.cc; sourceTree = ""; }; - 3F875EF5A8C7D0F1203F455C6888424A /* ratelimit_unit.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ratelimit_unit.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/v3/ratelimit_unit.upbdefs.h"; sourceTree = ""; }; - 3F8C0C6C92FD5F79F104515886E6BC0C /* xds_common_types.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = xds_common_types.cc; path = src/core/ext/xds/xds_common_types.cc; sourceTree = ""; }; - 3F947FC7348DA5365E8CE84F1516CEE2 /* endpoint_cfstream.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = endpoint_cfstream.cc; path = src/core/lib/iomgr/endpoint_cfstream.cc; sourceTree = ""; }; - 3F95891C71213B1883A61B576E955919 /* memory_allocator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = memory_allocator.h; path = include/grpc/event_engine/memory_allocator.h; sourceTree = ""; }; - 3FAEE96EAC5733AF3960575410373416 /* parser.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = parser.cc; path = src/core/lib/http/parser.cc; sourceTree = ""; }; - 3FB0DF5272FF94014759BD9D23CC33C1 /* transform_operation.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = transform_operation.cc; path = Firestore/core/src/model/transform_operation.cc; sourceTree = ""; }; - 3FB8A10139A04EDFB7C1D53279E7647A /* civil_time_detail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = civil_time_detail.h; path = absl/time/internal/cctz/include/cctz/civil_time_detail.h; sourceTree = ""; }; - 3FBBF7AD25C40865DB0BB85D9D404A87 /* config_source.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = config_source.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/config_source.upbdefs.c"; sourceTree = ""; }; - 3FD506A5CBFA0523639A3865A5C91A8B /* kernel_timeout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = kernel_timeout.h; path = absl/synchronization/internal/kernel_timeout.h; sourceTree = ""; }; - 3FECB813F2A9EB49EEF492BA92C86824 /* grpc_service.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_service.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/grpc_service.upbdefs.h"; sourceTree = ""; }; - 3FEFD01AD6F526A81D3B734BDB3AD046 /* t1_enc.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = t1_enc.cc; path = src/ssl/t1_enc.cc; sourceTree = ""; }; - 3FFFAF029ABF7DCE2482970E72A6FDD0 /* xds_routing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_routing.h; path = src/core/ext/xds/xds_routing.h; sourceTree = ""; }; - 4015CC6C7A2657E7A77D1BB4DAE345C5 /* filename.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = filename.cc; path = db/filename.cc; sourceTree = ""; }; - 4030873CD5D0678DDD37C92A24FEAFDF /* server_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_posix.h; path = include/grpcpp/server_posix.h; sourceTree = ""; }; - 4042EBE7F65AF424E71FCA03CC332773 /* obj.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = obj.h; path = src/include/openssl/obj.h; sourceTree = ""; }; - 4052AF24F34F960E8F438025F17715C7 /* gRPC-Core-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "gRPC-Core-prefix.pch"; sourceTree = ""; }; - 405A39BF6061898F5A507AD2D187FEF5 /* sign.c */ = {isa = PBXFileReference; includeInIndex = 1; name = sign.c; path = src/crypto/evp/sign.c; sourceTree = ""; }; - 408BD66CC047A94055DFEB2F1EA0B130 /* ref_counted.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ref_counted.h; path = src/core/lib/gprpp/ref_counted.h; sourceTree = ""; }; - 409E713A61C962A168AF3B702C1E9B5E /* common.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = common.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/tap/v3/common.upbdefs.h"; sourceTree = ""; }; - 40A22BF40D6693542845AF42F046D412 /* channel_connectivity.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = channel_connectivity.cc; path = src/core/ext/filters/client_channel/channel_connectivity.cc; sourceTree = ""; }; - 40AC164038E11F2390A9FB94AD128995 /* invoke.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = invoke.h; path = absl/base/internal/invoke.h; sourceTree = ""; }; - 40BFAAA18E82A3927DB2263D4C446C86 /* FIRSecureTokenService.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRSecureTokenService.m; path = FirebaseAuth/Sources/SystemService/FIRSecureTokenService.m; sourceTree = ""; }; - 40BFCA09D8810AF25F717122F2DB9FDC /* config_source.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = config_source.upb.c; path = "src/core/ext/upb-generated/envoy/config/core/v3/config_source.upb.c"; sourceTree = ""; }; - 4115FECB4A6A56EBC208F60EE3B9CECB /* client_context.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = client_context.h; path = include/grpcpp/impl/codegen/client_context.h; sourceTree = ""; }; - 411E840D505791211DA2011F66A84A06 /* buffer_list.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = buffer_list.h; path = src/core/lib/iomgr/buffer_list.h; sourceTree = ""; }; - 41271B628A9A0446764BAE8A1E03A160 /* FIRGitHubAuthProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRGitHubAuthProvider.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRGitHubAuthProvider.h; sourceTree = ""; }; - 4157C0017850E2AFD4DA6BBA7B9F18B8 /* utf8.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = utf8.cc; path = absl/strings/internal/utf8.cc; sourceTree = ""; }; - 41672B98A8255E20F55CC81C990582F9 /* seed_gen_exception.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = seed_gen_exception.cc; path = absl/random/seed_gen_exception.cc; sourceTree = ""; }; - 4173C2AB943154E8F5FD8DE826DAA61B /* port_undef.inc */ = {isa = PBXFileReference; includeInIndex = 1; name = port_undef.inc; path = third_party/upb/upb/port_undef.inc; sourceTree = ""; }; - 41AC16BCD9A08381A3F97850B0C9BF21 /* message_decompress_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = message_decompress_filter.h; path = src/core/ext/filters/http/message_compress/message_decompress_filter.h; sourceTree = ""; }; - 41CD127B3C489332BA557C830355417D /* percent.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = percent.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/v3/percent.upbdefs.h"; sourceTree = ""; }; - 41CF845524B4D03216B3E587FF11F5F2 /* fork_detect.c */ = {isa = PBXFileReference; includeInIndex = 1; name = fork_detect.c; path = src/crypto/fipsmodule/rand/fork_detect.c; sourceTree = ""; }; - 41E6988F82084782CE70EB824E643991 /* service_config_call_data.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = service_config_call_data.h; path = src/core/lib/service_config/service_config_call_data.h; sourceTree = ""; }; - 41F4B8E09D1DF8576BE40DCD9EA1B2B4 /* exec_ctx_wakeup_scheduler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = exec_ctx_wakeup_scheduler.h; path = src/core/lib/promise/exec_ctx_wakeup_scheduler.h; sourceTree = ""; }; - 42098459F9DDB98C3E1E61025964ABEF /* FIRAuthInterop.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthInterop.h; path = FirebaseAuth/Interop/FIRAuthInterop.h; sourceTree = ""; }; - 4212079D8333803243EC1F4C4404C10F /* load_system_roots_supported.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = load_system_roots_supported.cc; path = src/core/lib/security/security_connector/load_system_roots_supported.cc; sourceTree = ""; }; - 4224259A4A8BBEB52ACB1922DC7B2B69 /* FIRVerifyPasswordResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRVerifyPasswordResponse.m; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyPasswordResponse.m; sourceTree = ""; }; - 42293DF2129D34926EC4828CE92E6912 /* mini_table.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = mini_table.hpp; path = third_party/upb/upb/mini_table.hpp; sourceTree = ""; }; - 4237353321590370C33B334D492BDDCA /* call_creds_util.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = call_creds_util.cc; path = src/core/lib/security/credentials/call_creds_util.cc; sourceTree = ""; }; - 42451DEB71FC64F850C3832CF5A3E213 /* seq.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = seq.h; path = src/core/lib/promise/seq.h; sourceTree = ""; }; - 424D6FA6873DFC0C8CEC698D71B70784 /* alts_security_connector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_security_connector.h; path = src/core/lib/security/security_connector/alts/alts_security_connector.h; sourceTree = ""; }; - 425884339893268BE59E26ED8C67658D /* alts_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = alts_credentials.cc; path = src/core/lib/security/credentials/alts/alts_credentials.cc; sourceTree = ""; }; - 425D58437AF65185850AD1738BA6E4ED /* time.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = time.h; path = src/core/lib/gprpp/time.h; sourceTree = ""; }; - 42639D986C862DF1254B51467DEC74B6 /* x509_txt.c */ = {isa = PBXFileReference; includeInIndex = 1; name = x509_txt.c; path = src/crypto/x509/x509_txt.c; sourceTree = ""; }; - 42694FA75E2F6A63EED5401CD00C1EEF /* backup_poller.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = backup_poller.h; path = src/core/ext/filters/client_channel/backup_poller.h; sourceTree = ""; }; - 426DBCF93F06A2D81CC0547A49242F5B /* x_spki.c */ = {isa = PBXFileReference; includeInIndex = 1; name = x_spki.c; path = src/crypto/x509/x_spki.c; sourceTree = ""; }; - 4270ACF9D8572C36B9895119689F73DD /* f_int.c */ = {isa = PBXFileReference; includeInIndex = 1; name = f_int.c; path = src/crypto/asn1/f_int.c; sourceTree = ""; }; - 42AB9B55E892FB51A7F21415CE890F75 /* GULNSData+zlib.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "GULNSData+zlib.h"; path = "GoogleUtilities/NSData+zlib/Public/GoogleUtilities/GULNSData+zlib.h"; sourceTree = ""; }; - 42B765F8AC321C2481AE576B5F714863 /* config_dump_shared.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = config_dump_shared.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/admin/v3/config_dump_shared.upbdefs.h"; sourceTree = ""; }; - 42D34499225FBE825CADB32FCF087DE9 /* common.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = common.h; path = absl/container/internal/common.h; sourceTree = ""; }; - 42DC33213771446563736A226E3D2ABF /* path.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = path.upb.c; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/path.upb.c"; sourceTree = ""; }; - 42F5A83768EA56ECD8B187D5BBC9729B /* health_check.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = health_check.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/health_check.upbdefs.c"; sourceTree = ""; }; - 42F87903F3FA822AFAF183B8B91DFE37 /* config_source.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = config_source.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/config_source.upb.h"; sourceTree = ""; }; - 4305DDACB736A7FA28EFA8562BA8204A /* tls_spiffe_validator_config.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tls_spiffe_validator_config.upb.h; path = "src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upb.h"; sourceTree = ""; }; - 43276600EC6EAE64185A8F8A6263CA00 /* time_averaged_stats.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = time_averaged_stats.h; path = src/core/lib/gprpp/time_averaged_stats.h; sourceTree = ""; }; - 43473412FF8B04FB6CDF0EBA049B58F1 /* win_socket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = win_socket.h; path = src/core/lib/event_engine/windows/win_socket.h; sourceTree = ""; }; - 43597551198F0566BC64DBA14F992D76 /* datadog.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = datadog.upb.h; path = "src/core/ext/upb-generated/envoy/config/trace/v3/datadog.upb.h"; sourceTree = ""; }; - 436696C43D6DD11C40814CF76E78D91B /* gRPC-Core.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "gRPC-Core.modulemap"; sourceTree = ""; }; - 4389A8F4BA3BE3B78651D056A413B8D8 /* ssl_stat.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = ssl_stat.cc; path = src/ssl/ssl_stat.cc; sourceTree = ""; }; - 439C109346C1F19EE1A1308C8352D258 /* cookie.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cookie.upb.c; path = "src/core/ext/upb-generated/envoy/type/http/v3/cookie.upb.c"; sourceTree = ""; }; - 43AC3D2DEF5D82E0D4EC4BB0CEE6E359 /* versioning.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = versioning.upb.h; path = "src/core/ext/upb-generated/xds/annotations/v3/versioning.upb.h"; sourceTree = ""; }; - 43B1E4CD7B30B9FD278100133C2AC788 /* FirebaseAuth */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = FirebaseAuth; path = FirebaseAuth.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 43C0EFC7C2CB7A88A5083B5DAECA78E6 /* FirebaseAppCheckInterop.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseAppCheckInterop.release.xcconfig; sourceTree = ""; }; - 43D080E10B8A1E9B406CF5D329BF4816 /* randen_hwaes.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = randen_hwaes.cc; path = absl/random/internal/randen_hwaes.cc; sourceTree = ""; }; - 43D4853532B32FC9414E3929D6AE60FA /* database_id.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = database_id.cc; path = Firestore/core/src/model/database_id.cc; sourceTree = ""; }; - 43DCBCF5145460B9E34A6FE5E6AE9225 /* clusters.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = clusters.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/admin/v3/clusters.upbdefs.c"; sourceTree = ""; }; - 43E71514D4554E01A6957C0ED3C73B1C /* resource_quota.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource_quota.h; path = src/core/lib/resource_quota/resource_quota.h; sourceTree = ""; }; - 440C4807CB381042D513B5686E592430 /* pool_urbg.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = pool_urbg.cc; path = absl/random/internal/pool_urbg.cc; sourceTree = ""; }; - 4418C9424B02438767AA9101D620F065 /* unicode_groups.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = unicode_groups.h; path = third_party/re2/re2/unicode_groups.h; sourceTree = ""; }; - 443E99F27A9B6F2B778BB81A9F04D53E /* fork_detect.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fork_detect.h; path = src/crypto/fipsmodule/rand/fork_detect.h; sourceTree = ""; }; - 444BE1385FA3DEC4EFDA000A2A73B075 /* config_dump.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = config_dump.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/admin/v3/config_dump.upbdefs.h"; sourceTree = ""; }; - 4459B50AD1E0EF350D4D46A3C060EFB5 /* query_core.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = query_core.cc; path = Firestore/core/src/api/query_core.cc; sourceTree = ""; }; - 44604EF6DA4D53CBB1F128CAFE32509B /* typed_struct.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = typed_struct.upbdefs.h; path = "src/core/ext/upbdefs-generated/xds/type/v3/typed_struct.upbdefs.h"; sourceTree = ""; }; - 449F252B8F734C44E2239A3321D2E672 /* binder_security_policy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = binder_security_policy.h; path = include/grpcpp/security/binder_security_policy.h; sourceTree = ""; }; - 44AA50AEA617B6562511EC6C56E3C3C7 /* polling_resolver.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = polling_resolver.cc; path = src/core/ext/filters/client_channel/resolver/polling_resolver.cc; sourceTree = ""; }; - 44E0887652C53813B7152574FD40C54F /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/dsa/internal.h; sourceTree = ""; }; - 44EE63CF925FADD43746E9BDCFA0C4AE /* GULLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULLogger.m; path = GoogleUtilities/Logger/GULLogger.m; sourceTree = ""; }; - 44F14B9CF128B252894BFB64D8BF6743 /* FIROAuthProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIROAuthProvider.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIROAuthProvider.h; sourceTree = ""; }; - 44F1F0CADCF2BF04F8634250A6AA78E3 /* xds_cluster_resolver.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = xds_cluster_resolver.cc; path = src/core/ext/filters/client_channel/lb_policy/xds/xds_cluster_resolver.cc; sourceTree = ""; }; - 4503E8A7899D86D8E705BCA82EAEBC4C /* quic_config.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = quic_config.upb.c; path = "src/core/ext/upb-generated/envoy/config/listener/v3/quic_config.upb.c"; sourceTree = ""; }; - 452AEF02AF512CBA16C87AC120FF3F63 /* resource_name.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource_name.upb.h; path = "src/core/ext/upb-generated/xds/core/v3/resource_name.upb.h"; sourceTree = ""; }; - 452E303343CC1BBDAB931785FCA37A86 /* server_context.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = server_context.cc; path = src/cpp/server/server_context.cc; sourceTree = ""; }; - 4539744A379524A0BD27344ABCDCB411 /* json_token.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = json_token.h; path = src/core/lib/security/credentials/jwt/json_token.h; sourceTree = ""; }; - 4560AC8C4A0FBBD9C575F8DBE37D1948 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/fipsmodule/bn/internal.h; sourceTree = ""; }; - 45679618617E39DB195E389B6BE6E56D /* cluster.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cluster.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/cluster/v3/cluster.upbdefs.c"; sourceTree = ""; }; - 458AADF755A03242A04A379635F670D3 /* FIRLibrary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLibrary.h; path = FirebaseCore/Extension/FIRLibrary.h; sourceTree = ""; }; - 458D7BD629B76E935D350A42D8DA7F51 /* resource_locator.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource_locator.upb.h; path = "src/core/ext/upb-generated/xds/core/v3/resource_locator.upb.h"; sourceTree = ""; }; - 45999E1EA437166DBA5793231C531C43 /* FIRSignUpNewUserRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRSignUpNewUserRequest.h; path = FirebaseAuth/Sources/Backend/RPC/FIRSignUpNewUserRequest.h; sourceTree = ""; }; - 45A6D9388A48CD6B8C19CCB34796D622 /* api_listener.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = api_listener.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/listener/v3/api_listener.upbdefs.c"; sourceTree = ""; }; - 45B0142DE952F1627CF2AFACF03990F9 /* builder.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = builder.cc; path = db/builder.cc; sourceTree = ""; }; - 45B48D94DEADFEDBDEFCBB3239C776EF /* transaction.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = transaction.cc; path = Firestore/core/src/core/transaction.cc; sourceTree = ""; }; - 45E158F553AE5D6633D3EAAE60EB63CE /* FIRFirestoreSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRFirestoreSource.h; path = Firestore/Source/Public/FirebaseFirestore/FIRFirestoreSource.h; sourceTree = ""; }; - 45E81D9E7235332FA5B87A9A6EFB4FF6 /* object_value.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = object_value.cc; path = Firestore/core/src/model/object_value.cc; sourceTree = ""; }; - 45F12C68E6AA6CE8860D74166036B9A9 /* deadline_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = deadline_filter.h; path = src/core/ext/filters/deadline/deadline_filter.h; sourceTree = ""; }; - 4603E61AC977F1F10CE880A7ADD96D96 /* health_check_client.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = health_check_client.cc; path = src/core/ext/filters/client_channel/health/health_check_client.cc; sourceTree = ""; }; - 460D4A75DA76D45D9E41A2638CCCAF08 /* bad_optional_access.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = bad_optional_access.cc; path = absl/types/bad_optional_access.cc; sourceTree = ""; }; - 4623B5385E4C86B54107B66F1A18F2D4 /* log_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = log_windows.cc; path = src/core/lib/gpr/log_windows.cc; sourceTree = ""; }; - 4628D674F912E9CD140496EC33EF9B2F /* cpu_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = cpu_windows.cc; path = src/core/lib/gpr/cpu_windows.cc; sourceTree = ""; }; - 4630CCD35443096D1E2FEEED400B0C29 /* value.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = value.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/matcher/v3/value.upbdefs.h"; sourceTree = ""; }; - 4647B464DAC3C7CA2C1AF5799DF7800E /* deadline_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = deadline_filter.cc; path = src/core/ext/filters/deadline/deadline_filter.cc; sourceTree = ""; }; - 4649E9244A05EE1F42822D58A3559E3F /* metadata.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = metadata.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/metadata/v3/metadata.upbdefs.h"; sourceTree = ""; }; - 464A7D85D8AB25BD049351772D239605 /* backoff.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = backoff.h; path = src/core/lib/backoff/backoff.h; sourceTree = ""; }; - 465739B1B6CD8C59738290F3F0EF9275 /* ec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = ec.c; path = src/crypto/fipsmodule/ec/ec.c; sourceTree = ""; }; - 465C992A00DF734E450EA64547316D35 /* listener.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = listener.upb.h; path = "src/core/ext/upb-generated/envoy/config/listener/v3/listener.upb.h"; sourceTree = ""; }; - 467BA4014208F0E720792971663D263E /* path.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = path.upb.h; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/path.upb.h"; sourceTree = ""; }; - 46A1A3F35E5D70C2DD82E1F1B67BC469 /* security_handshaker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = security_handshaker.h; path = src/core/lib/security/transport/security_handshaker.h; sourceTree = ""; }; - 46B718ECD83A634DF60B69CFB56C57CE /* grpc_method_list.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_method_list.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/grpc_method_list.upb.h"; sourceTree = ""; }; - 46C99CB910DC4D335D3B72EC7EDFCE51 /* insecure_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = insecure_credentials.cc; path = src/cpp/client/insecure_credentials.cc; sourceTree = ""; }; - 46DF5109E3E41B59471CA6D4A5DEBB13 /* xds_endpoint.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = xds_endpoint.cc; path = src/core/ext/xds/xds_endpoint.cc; sourceTree = ""; }; - 470DDA3D7EBDA386014E4071AD8F3BE1 /* promise_factory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = promise_factory.h; path = src/core/lib/promise/detail/promise_factory.h; sourceTree = ""; }; - 4716776435D1969D8B69A39A9608C247 /* json_args.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = json_args.h; path = src/core/lib/json/json_args.h; sourceTree = ""; }; - 471A65B86F7026E28EAF9DD25789E568 /* FIRFilter.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRFilter.mm; path = Firestore/Source/API/FIRFilter.mm; sourceTree = ""; }; - 472908D0FA32FF83EB1C98D618CD8F8E /* upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = upb.c; path = third_party/upb/upb/upb.c; sourceTree = ""; }; - 4735E0CC0246CAAA6B6894E1FD0E31EA /* resolver.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolver.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/resolver.upb.h"; sourceTree = ""; }; - 473CEE855C0450139FC80C3F4F3FA7DE /* exponentiation.c */ = {isa = PBXFileReference; includeInIndex = 1; name = exponentiation.c; path = src/crypto/fipsmodule/bn/exponentiation.c; sourceTree = ""; }; - 4742CCD5F8521E9B9032FA3B9D9CD007 /* FIRAuthSettings.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthSettings.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRAuthSettings.h; sourceTree = ""; }; - 474FEC55DA64E7732133B4A28D565818 /* merger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = merger.h; path = table/merger.h; sourceTree = ""; }; - 47509376033A3C34BA5D277828F8123F /* transport_impl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = transport_impl.h; path = src/core/lib/transport/transport_impl.h; sourceTree = ""; }; - 47774A628458D45006AB2200890347CA /* api.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = api.h; path = src/core/lib/resource_quota/api.h; sourceTree = ""; }; - 47965232E48917F41362BCA0E50826A8 /* def.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = def.hpp; path = third_party/upb/upb/def.hpp; sourceTree = ""; }; - 47966719743DBDFE3EA0E7807EC57A09 /* FIRAuthTokenResult_Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthTokenResult_Internal.h; path = FirebaseAuth/Sources/Auth/FIRAuthTokenResult_Internal.h; sourceTree = ""; }; - 4797401D1B22D884FDB2731470EBC952 /* malloc_counter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = malloc_counter.h; path = third_party/re2/util/malloc_counter.h; sourceTree = ""; }; - 47A8305E6A9E14C2635BAA90AAE38FA6 /* s3_lib.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = s3_lib.cc; path = src/ssl/s3_lib.cc; sourceTree = ""; }; - 47C519F120B972BAA62C106CDD15F9B4 /* gRPC-C++-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "gRPC-C++-umbrella.h"; sourceTree = ""; }; - 47D47483362AF68A27EAA27C598F91B8 /* round_robin.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = round_robin.cc; path = src/core/ext/filters/client_channel/lb_policy/round_robin/round_robin.cc; sourceTree = ""; }; - 47D69B97D5406D465A8A99DDCD6DB090 /* table_cache.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = table_cache.cc; path = db/table_cache.cc; sourceTree = ""; }; - 47ED763C8062323E1B68212451AD5898 /* city.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = city.h; path = absl/hash/internal/city.h; sourceTree = ""; }; - 47F900A793A5B6C92BCD57457053FBE0 /* try_seq.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = try_seq.h; path = src/core/lib/promise/try_seq.h; sourceTree = ""; }; - 4811DB344972C01C5B8EAD49449943E4 /* client_channel_factory.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = client_channel_factory.cc; path = src/core/ext/filters/client_channel/client_channel_factory.cc; sourceTree = ""; }; - 4814DD23E64C444E95AE02FE86E36EB4 /* block_builder.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = block_builder.cc; path = table/block_builder.cc; sourceTree = ""; }; - 481EBC83D9774AEA967E2C144AD5698A /* credentials_generic.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = credentials_generic.cc; path = src/core/lib/security/credentials/google_default/credentials_generic.cc; sourceTree = ""; }; - 48290503A5BB8F5F01D63C7A13A116C3 /* pkcs7.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pkcs7.h; path = src/include/openssl/pkcs7.h; sourceTree = ""; }; - 4843BD24732CAA1BE51AF39CD2ECDE7E /* path.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = path.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/matcher/v3/path.upbdefs.h"; sourceTree = ""; }; - 48605680A04A6A06D364C18AEA49FACA /* e_aesccm.c */ = {isa = PBXFileReference; includeInIndex = 1; name = e_aesccm.c; path = src/crypto/cipher_extra/e_aesccm.c; sourceTree = ""; }; - 4862B1E05E14E6DAA2870C9F290C2DE6 /* client_authority_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = client_authority_filter.h; path = src/core/ext/filters/http/client_authority_filter.h; sourceTree = ""; }; - 486F932832F407A1FB39ED9FF85127C6 /* rbac.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rbac.upb.h; path = "src/core/ext/upb-generated/envoy/config/rbac/v3/rbac.upb.h"; sourceTree = ""; }; - 487B71059510806925E3175A83F23958 /* GTMSessionUploadFetcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GTMSessionUploadFetcher.m; path = Sources/Core/GTMSessionUploadFetcher.m; sourceTree = ""; }; - 487BA1CB8FAB8A6FD229DD996EF9AB9A /* table.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = table.h; path = src/core/lib/gprpp/table.h; sourceTree = ""; }; - 488298E5DD41AE6DF42CAFA39632BDEB /* FIRSignInWithGameCenterRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRSignInWithGameCenterRequest.h; path = FirebaseAuth/Sources/Backend/RPC/FIRSignInWithGameCenterRequest.h; sourceTree = ""; }; - 48846572A8C465521BFF0F2194EB9D52 /* fork.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fork.h; path = include/grpc/impl/codegen/fork.h; sourceTree = ""; }; - 48890493A852412B48EE2155632A62DA /* a_gentm.c */ = {isa = PBXFileReference; includeInIndex = 1; name = a_gentm.c; path = src/crypto/asn1/a_gentm.c; sourceTree = ""; }; - 4894CEC24ED81D6A849FF3D735356CFD /* channel_init.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_init.h; path = src/core/lib/surface/channel_init.h; sourceTree = ""; }; - 489B3CE59D241BF44E0D80C4FC220E1A /* sha1-altivec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = "sha1-altivec.c"; path = "src/crypto/fipsmodule/sha/sha1-altivec.c"; sourceTree = ""; }; - 48A489C288E821611ECD4FB85149DB06 /* parse_address.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = parse_address.cc; path = src/core/lib/address_utils/parse_address.cc; sourceTree = ""; }; - 48B28F0E6B79393478B2468B4E240F90 /* ssl_asn1.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = ssl_asn1.cc; path = src/ssl/ssl_asn1.cc; sourceTree = ""; }; - 48BFA24DB91B4F48D1FE2CB683127234 /* FIRVerifyPasswordResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRVerifyPasswordResponse.h; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyPasswordResponse.h; sourceTree = ""; }; - 48CE49C03EE094E4D3931D0F06DC696A /* parse_address.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = parse_address.h; path = src/core/lib/address_utils/parse_address.h; sourceTree = ""; }; - 48D98A3AFAE95D01525515410ED73D72 /* FIRAuthAppCredential.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthAppCredential.m; path = FirebaseAuth/Sources/SystemService/FIRAuthAppCredential.m; sourceTree = ""; }; - 48EC2AC596C611471E1B80C9DF097C54 /* tls_security_connector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tls_security_connector.h; path = src/core/lib/security/security_connector/tls/tls_security_connector.h; sourceTree = ""; }; - 48F47ADD365EFB1A2A6E9778EDD6AA55 /* umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = umbrella.h; path = src/include/openssl/umbrella.h; sourceTree = ""; }; - 4905DEDED50FDA250A1F79866DB0C5F8 /* health_check.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = health_check.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/health_check.upbdefs.h"; sourceTree = ""; }; - 491BDBC48B11ACBEB7CCE9D1D87E8275 /* http.nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = http.nanopb.cc; path = Firestore/Protos/nanopb/google/api/http.nanopb.cc; sourceTree = ""; }; - 491BFA36A0530FF3EC002F1FB3CB333A /* connectivity_state.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = connectivity_state.h; path = src/core/lib/transport/connectivity_state.h; sourceTree = ""; }; - 49219DC7A0D9981492CC7D8B488A3DE7 /* rsaz_exp.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rsaz_exp.c; path = src/crypto/fipsmodule/bn/rsaz_exp.c; sourceTree = ""; }; - 4923DB9A47DED71DD8F57000BE8D8897 /* FIRFacebookAuthCredential.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRFacebookAuthCredential.m; path = FirebaseAuth/Sources/AuthProvider/Facebook/FIRFacebookAuthCredential.m; sourceTree = ""; }; - 4927744B72E21892CC18EFA818CE3E71 /* xds_route_config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_route_config.h; path = src/core/ext/xds/xds_route_config.h; sourceTree = ""; }; - 492D01E59D4586D3181EA46C12549E18 /* altscontext.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = altscontext.upb.c; path = "src/core/ext/upb-generated/src/proto/grpc/gcp/altscontext.upb.c"; sourceTree = ""; }; - 492F51A5C1C59D9EB6F0108CE300CDB1 /* tls.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = tls.upb.c; path = "src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/tls.upb.c"; sourceTree = ""; }; - 49390ED3B202EAAD55CB4A2272AC14CD /* dynamic_annotations.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dynamic_annotations.h; path = src/core/lib/iomgr/dynamic_annotations.h; sourceTree = ""; }; - 493B841C63E9E70E741D381FAA7EB85F /* load_balancer_api.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = load_balancer_api.cc; path = src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.cc; sourceTree = ""; }; - 49535D78406F24160B801FFF22C2722E /* ssl_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ssl_credentials.h; path = src/core/lib/security/credentials/ssl/ssl_credentials.h; sourceTree = ""; }; - 496D800EFD7E242BC303D05A20DC1B4E /* FIRAuthAPNSTokenManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthAPNSTokenManager.m; path = FirebaseAuth/Sources/SystemService/FIRAuthAPNSTokenManager.m; sourceTree = ""; }; - 498924F002E148C19F59782E5E42A1F3 /* a_int.c */ = {isa = PBXFileReference; includeInIndex = 1; name = a_int.c; path = src/crypto/asn1/a_int.c; sourceTree = ""; }; - 499957B0557ED6C50970E9BC59DAE30B /* x509spki.c */ = {isa = PBXFileReference; includeInIndex = 1; name = x509spki.c; path = src/crypto/x509/x509spki.c; sourceTree = ""; }; - 499C98641AC653051E58F37C56DFDC90 /* status_conversion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status_conversion.h; path = src/core/lib/transport/status_conversion.h; sourceTree = ""; }; - 499FE9B2FF9C133B079D8F52F5109B43 /* GULNetwork.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetwork.h; path = GoogleUtilities/Network/Public/GoogleUtilities/GULNetwork.h; sourceTree = ""; }; - 49B1D643AF51D3C998E932D069B17407 /* circuit_breaker.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = circuit_breaker.upb.h; path = "src/core/ext/upb-generated/envoy/config/cluster/v3/circuit_breaker.upb.h"; sourceTree = ""; }; - 49BD80CD795324336288115C9871BB52 /* target_data.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = target_data.cc; path = Firestore/core/src/local/target_data.cc; sourceTree = ""; }; - 49C61257B52713317DD0183844018D76 /* FIRDocumentReference.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRDocumentReference.mm; path = Firestore/Source/API/FIRDocumentReference.mm; sourceTree = ""; }; - 49DA1EE9DBD89923A441D6F7E523E1CD /* write_batch.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = write_batch.cc; path = db/write_batch.cc; sourceTree = ""; }; - 49EFF549AE06BED7E1604FEDE1687262 /* str_cat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = str_cat.h; path = absl/strings/str_cat.h; sourceTree = ""; }; - 4A2BC83680056E5E24FD01A22FCECCD3 /* utf8_range.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = utf8_range.h; path = third_party/upb/third_party/utf8_range/utf8_range.h; sourceTree = ""; }; - 4A3082BF8D45B270736707BDDBE46BF1 /* xds_api.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = xds_api.cc; path = src/core/ext/xds/xds_api.cc; sourceTree = ""; }; - 4A3BBBFD49DE0B7746308EA84E91E66B /* iocp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = iocp.h; path = src/core/lib/event_engine/windows/iocp.h; sourceTree = ""; }; - 4A76AC70FA6B5188711B6BCDEC09AAEF /* HeartbeatLoggingTestUtils.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HeartbeatLoggingTestUtils.swift; path = FirebaseCore/Internal/Sources/HeartbeatLogging/HeartbeatLoggingTestUtils.swift; sourceTree = ""; }; - 4A7ABB5493AD45ACDB93F848A02843F8 /* timer_manager.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = timer_manager.cc; path = src/core/lib/event_engine/posix_engine/timer_manager.cc; sourceTree = ""; }; - 4A7B922B3A183E563A5A2E361D2F73DE /* migrate.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = migrate.upb.h; path = "src/core/ext/upb-generated/xds/annotations/v3/migrate.upb.h"; sourceTree = ""; }; - 4A84271205C910073062A075B8C4731D /* raw_logging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = raw_logging.h; path = absl/base/internal/raw_logging.h; sourceTree = ""; }; - 4A8DDF4A2F0B7582CE3E8EA4ADF69C9D /* grpc_plugin_registry.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = grpc_plugin_registry.cc; path = src/core/plugin_registry/grpc_plugin_registry.cc; sourceTree = ""; }; - 4A97659BA5049E13C49E920DDFAB371D /* xds_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_credentials.h; path = src/core/lib/security/credentials/xds/xds_credentials.h; sourceTree = ""; }; - 4AB2D7CAE02AD13C08BD330638A71232 /* listener_components.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = listener_components.upb.h; path = "src/core/ext/upb-generated/envoy/config/listener/v3/listener_components.upb.h"; sourceTree = ""; }; - 4AD540A8F4BE557397CBDBA98C01306B /* ostringstream.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = ostringstream.cc; path = absl/strings/internal/ostringstream.cc; sourceTree = ""; }; - 4AE7117E188A1986ED90299EE00B7C47 /* FIRAuthWebViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthWebViewController.h; path = FirebaseAuth/Sources/Utilities/FIRAuthWebViewController.h; sourceTree = ""; }; - 4AEEBFD269A1040AC399650FDC0A3BD9 /* core_codegen_interface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = core_codegen_interface.h; path = include/grpcpp/impl/codegen/core_codegen_interface.h; sourceTree = ""; }; - 4B05C0E180F3A12885A769A071238B78 /* error_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = error_utils.h; path = src/core/lib/transport/error_utils.h; sourceTree = ""; }; - 4B071A7B2CD93C95C6619E13D709E0ED /* alts_handshaker_client.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_handshaker_client.h; path = src/core/tsi/alts/handshaker/alts_handshaker_client.h; sourceTree = ""; }; - 4B0EBFAF80EECAF41BCCF91E669104EF /* tasn_fre.c */ = {isa = PBXFileReference; includeInIndex = 1; name = tasn_fre.c; path = src/crypto/asn1/tasn_fre.c; sourceTree = ""; }; - 4B1407F033A3518A8532DD705304F466 /* time_util.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = time_util.h; path = src/core/lib/event_engine/time_util.h; sourceTree = ""; }; - 4B14774D806972A74ADB0DE0D83FCB23 /* timer_heap.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = timer_heap.cc; path = src/core/lib/event_engine/posix_engine/timer_heap.cc; sourceTree = ""; }; - 4B1EC8407D1F38484594FAB9262A7590 /* ssl3.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ssl3.h; path = src/include/openssl/ssl3.h; sourceTree = ""; }; - 4B24444088D584F712D7FC14D82C35BC /* sync_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = sync_posix.cc; path = src/core/lib/gpr/sync_posix.cc; sourceTree = ""; }; - 4B274F9109C0E3690A9687208E23CE6E /* unix_sockets_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = unix_sockets_posix.cc; path = src/core/lib/iomgr/unix_sockets_posix.cc; sourceTree = ""; }; - 4B379C69A3F0C28D20D25AA29D1715B2 /* two_level_iterator.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = two_level_iterator.cc; path = table/two_level_iterator.cc; sourceTree = ""; }; - 4B677005586E12690055682B28A8BA34 /* range.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = range.upb.h; path = "src/core/ext/upb-generated/envoy/type/v3/range.upb.h"; sourceTree = ""; }; - 4B68B9D103D1FB0B0528BEE47E4B5267 /* server_interface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_interface.h; path = include/grpcpp/impl/codegen/server_interface.h; sourceTree = ""; }; - 4B7E7237991BD74BC55049495059B2C4 /* Storage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Storage.swift; path = FirebaseCore/Internal/Sources/HeartbeatLogging/Storage.swift; sourceTree = ""; }; - 4B8F111B82846B568159073F077790CB /* rand.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rand.h; path = src/include/openssl/rand.h; sourceTree = ""; }; - 4BA6BC4089EA085298C7D968A50DEFF2 /* log_android.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = log_android.cc; path = src/core/lib/gpr/log_android.cc; sourceTree = ""; }; - 4BC4D6BBC1F78503A39459F50DD1BAB1 /* memory.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = memory.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/admin/v3/memory.upbdefs.h"; sourceTree = ""; }; - 4BE4B22FC4440CF7E4A38053BB7519A8 /* load_system_roots_supported.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = load_system_roots_supported.h; path = src/core/lib/security/security_connector/load_system_roots_supported.h; sourceTree = ""; }; - 4BEA3C12F6D38D3478C10DD89046722F /* hrss.c */ = {isa = PBXFileReference; includeInIndex = 1; name = hrss.c; path = src/crypto/hrss/hrss.c; sourceTree = ""; }; - 4BFCF47DE994E304571FAB4557D74ED4 /* channel_stack_builder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_stack_builder.h; path = src/core/lib/channel/channel_stack_builder.h; sourceTree = ""; }; - 4C0882E0E8F34C6262DF39744272D550 /* json_util.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = json_util.cc; path = src/core/lib/security/util/json_util.cc; sourceTree = ""; }; - 4C132BF366A57434EFC8D62AB9CAFB4F /* serialization_traits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = serialization_traits.h; path = include/grpcpp/impl/codegen/serialization_traits.h; sourceTree = ""; }; - 4C28D633474CF61599409602163AB165 /* status.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.h; path = third_party/upb/upb/status.h; sourceTree = ""; }; - 4C320D5290B6783F300E8614462C946E /* grpc_tls_certificate_distributor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_tls_certificate_distributor.h; path = src/core/lib/security/credentials/tls/grpc_tls_certificate_distributor.h; sourceTree = ""; }; - 4C4D5A755BD5FCD21AB8C2D0ADB8873B /* certificate_provider_store.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = certificate_provider_store.h; path = src/core/ext/xds/certificate_provider_store.h; sourceTree = ""; }; - 4C8C29A15A74FB46087B5D1B9100D667 /* metadata.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = metadata.upb.c; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/metadata.upb.c"; sourceTree = ""; }; - 4C8D4AD392472B6DE3CAE9F1E403E696 /* slice.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = slice.cc; path = src/core/lib/event_engine/slice.cc; sourceTree = ""; }; - 4C9174E0D172985BACA90A52616E8757 /* authority.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = authority.upb.h; path = "src/core/ext/upb-generated/xds/core/v3/authority.upb.h"; sourceTree = ""; }; - 4CA0A2E13AF5D89332995263289903E7 /* exception_apple.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = exception_apple.mm; path = Firestore/core/src/util/exception_apple.mm; sourceTree = ""; }; - 4CA4F9A5994DABB86460BB8C3B5BA7B3 /* bio_mem.c */ = {isa = PBXFileReference; includeInIndex = 1; name = bio_mem.c; path = src/crypto/bio/bio_mem.c; sourceTree = ""; }; - 4CB302D376AA289CC2E13FDC9BD2D0C7 /* event_service_config.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = event_service_config.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/event_service_config.upbdefs.h"; sourceTree = ""; }; - 4CBD2DA5AF23D05371273038813442D9 /* alts_grpc_privacy_integrity_record_protocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_grpc_privacy_integrity_record_protocol.h; path = src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_privacy_integrity_record_protocol.h; sourceTree = ""; }; - 4CBEC30B3090CE9F4ADB415E299AF879 /* frame_rst_stream.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = frame_rst_stream.cc; path = src/core/ext/transport/chttp2/transport/frame_rst_stream.cc; sourceTree = ""; }; - 4CD37D1232681B15B152671402B1D3F4 /* server_info.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_info.upb.h; path = "src/core/ext/upb-generated/envoy/admin/v3/server_info.upb.h"; sourceTree = ""; }; - 4CDE79020F08EFE07D8A5C7A08EB8F50 /* resolver_registry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolver_registry.h; path = src/core/lib/resolver/resolver_registry.h; sourceTree = ""; }; - 4CEE2C4FE7E9393F6F04F080373DCE1C /* filtered_re2.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = filtered_re2.cc; path = third_party/re2/re2/filtered_re2.cc; sourceTree = ""; }; - 4CFE7AE761289C6E26F2B422D627F66F /* env_linux.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = env_linux.cc; path = src/core/lib/gprpp/env_linux.cc; sourceTree = ""; }; - 4D089AE32962EFFB68C08CC2F47C17EC /* x509_cmp.c */ = {isa = PBXFileReference; includeInIndex = 1; name = x509_cmp.c; path = src/crypto/x509/x509_cmp.c; sourceTree = ""; }; - 4D1685818D38F01330C6E6E034A05F3D /* field_mask.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = field_mask.cc; path = Firestore/core/src/model/field_mask.cc; sourceTree = ""; }; - 4D1F60313EDE14B0F8C5057996F65A9D /* SafariServices.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SafariServices.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.0.sdk/System/Library/Frameworks/SafariServices.framework; sourceTree = DEVELOPER_DIR; }; - 4D26C801CC5160BB4E2C02B5ECB2E5D8 /* leveldb_bundle_cache.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = leveldb_bundle_cache.cc; path = Firestore/core/src/local/leveldb_bundle_cache.cc; sourceTree = ""; }; - 4D36AF9EE5791B878E4BA43E2C34234F /* message_size_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = message_size_filter.h; path = src/core/ext/filters/message_size/message_size_filter.h; sourceTree = ""; }; - 4D4ED0148A27A92C2483C269BD5549AD /* create_channel.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = create_channel.cc; path = src/cpp/client/create_channel.cc; sourceTree = ""; }; - 4D5378060BCB42AA8BF69C98FF163CE3 /* scoped_route.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = scoped_route.upb.h; path = "src/core/ext/upb-generated/envoy/config/route/v3/scoped_route.upb.h"; sourceTree = ""; }; - 4D890AB1006AE73CD3FAF69FE7B83F30 /* rbac.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rbac.upb.h; path = "src/core/ext/upb-generated/envoy/extensions/filters/http/rbac/v3/rbac.upb.h"; sourceTree = ""; }; - 4D8EB38A995B5AF22AF854DE8AB8EA09 /* FIRBundleUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRBundleUtil.h; path = FirebaseCore/Sources/FIRBundleUtil.h; sourceTree = ""; }; - 4D9AD7EB3568EDB85941E58DD7A083B3 /* str_split_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = str_split_internal.h; path = absl/strings/internal/str_split_internal.h; sourceTree = ""; }; - 4DA1CB1C91DC6BD9A8798976C00F3BFB /* address_is_readable.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = address_is_readable.cc; path = absl/debugging/internal/address_is_readable.cc; sourceTree = ""; }; - 4DC81F445E70B55FF44852E0A692D918 /* chttp2_transport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = chttp2_transport.h; path = src/core/ext/transport/chttp2/transport/chttp2_transport.h; sourceTree = ""; }; - 4DCA0588686078EBF559251C99D85422 /* tap.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tap.upb.h; path = "src/core/ext/upb-generated/envoy/admin/v3/tap.upb.h"; sourceTree = ""; }; - 4DE350BCAB150FD0C901C800523B0F62 /* xds_channel_args.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_channel_args.h; path = src/core/ext/filters/client_channel/lb_policy/xds/xds_channel_args.h; sourceTree = ""; }; - 4DE69AA462853C53EA531DFCA2F89334 /* fork.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = fork.cc; path = src/core/lib/gprpp/fork.cc; sourceTree = ""; }; - 4DFDC825C68BEFF359AB77D63963DA3F /* frame_data.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = frame_data.h; path = src/core/ext/transport/chttp2/transport/frame_data.h; sourceTree = ""; }; - 4E055439FF5B3CC31E680570D6DBB750 /* resolver.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = resolver.cc; path = src/core/lib/resolver/resolver.cc; sourceTree = ""; }; - 4E3D10C2327C5C7A98767A5BE3071FCD /* digests.c */ = {isa = PBXFileReference; includeInIndex = 1; name = digests.c; path = src/crypto/fipsmodule/digest/digests.c; sourceTree = ""; }; - 4E3E7675CE17E4AFD6F620315D2DAC07 /* set.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = set.h; path = third_party/re2/re2/set.h; sourceTree = ""; }; - 4E404FD8A1A3C08A58DD5BC4CE9E5CE1 /* compression_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = compression_internal.h; path = src/core/lib/compression/compression_internal.h; sourceTree = ""; }; - 4E44117A4EA0E55D6DB71C16533BB2B1 /* token_bucket.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = token_bucket.upb.h; path = "src/core/ext/upb-generated/envoy/type/v3/token_bucket.upb.h"; sourceTree = ""; }; - 4E70880A680300C2F8EBCFCB8AB11FB0 /* struct.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = struct.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/protobuf/struct.upbdefs.h"; sourceTree = ""; }; - 4E7D1EE72EFE33DFE52091513D66C041 /* abseil-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "abseil-Info.plist"; sourceTree = ""; }; - 4EA4F61BA6DE6D6741FA81CAD1B4A769 /* status.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.upb.h; path = "src/core/ext/upb-generated/udpa/annotations/status.upb.h"; sourceTree = ""; }; - 4EB51A584EC203ACE44341032C9521F6 /* trace.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = trace.upb.c; path = "src/core/ext/upb-generated/envoy/config/trace/v3/trace.upb.c"; sourceTree = ""; }; - 4EC20B669118BFD522D821D6CB0E5F79 /* x509_lu.c */ = {isa = PBXFileReference; includeInIndex = 1; name = x509_lu.c; path = src/crypto/x509/x509_lu.c; sourceTree = ""; }; - 4EE1E6CD19428D464014A5E0E635FA70 /* FIRGetOOBConfirmationCodeRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRGetOOBConfirmationCodeRequest.h; path = FirebaseAuth/Sources/Backend/RPC/FIRGetOOBConfirmationCodeRequest.h; sourceTree = ""; }; - 4EEE09F9719B9D20921FAB9F9B184F3E /* arena.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = arena.h; path = third_party/upb/upb/arena.h; sourceTree = ""; }; - 4EEFD82193E0C49AD0A3A978C6BC196F /* socket_mutator.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = socket_mutator.cc; path = src/core/lib/iomgr/socket_mutator.cc; sourceTree = ""; }; - 4EF66996D48034F85009C251BDEB566D /* wrappers.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = wrappers.upb.h; path = "src/core/ext/upb-generated/google/protobuf/wrappers.upb.h"; sourceTree = ""; }; - 4EF8D8725746F14A8B061129CFAF2C4C /* FIRAdditionalUserInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAdditionalUserInfo.m; path = FirebaseAuth/Sources/User/FIRAdditionalUserInfo.m; sourceTree = ""; }; - 4F0708D2CB74F4243A26E9D51244D42F /* slice_string_helpers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = slice_string_helpers.h; path = src/core/lib/slice/slice_string_helpers.h; sourceTree = ""; }; - 4F0934EBA9CBCBBD3607760701C315AA /* slice_buffer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = slice_buffer.h; path = include/grpc/event_engine/slice_buffer.h; sourceTree = ""; }; - 4F0CC3773A16DF5ACA6C98DD1929579F /* v3_pcia.c */ = {isa = PBXFileReference; includeInIndex = 1; name = v3_pcia.c; path = src/crypto/x509v3/v3_pcia.c; sourceTree = ""; }; - 4F0E7CB18E742B2087BE213E82BA08CD /* leveldb_overlay_migration_manager.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = leveldb_overlay_migration_manager.cc; path = Firestore/core/src/local/leveldb_overlay_migration_manager.cc; sourceTree = ""; }; - 4F11CCD4D3B1BBB32AB3F9357EF85359 /* GULHeartbeatDateStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULHeartbeatDateStorage.h; path = GoogleUtilities/Environment/Public/GoogleUtilities/GULHeartbeatDateStorage.h; sourceTree = ""; }; - 4F21D1135ADA76CC1CC14D2C7E1E26C2 /* FIRTOTPMultiFactorAssertion+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FIRTOTPMultiFactorAssertion+Internal.h"; path = "FirebaseAuth/Sources/MultiFactor/TOTP/FIRTOTPMultiFactorAssertion+Internal.h"; sourceTree = ""; }; - 4F3DA4917DD71C8B8A0BE1DBD8AC9E2A /* frame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = frame.h; path = src/core/ext/transport/chttp2/transport/frame.h; sourceTree = ""; }; - 4F47FDAD31792661958BD344023637B4 /* config.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = config.cc; path = src/core/lib/experiments/config.cc; sourceTree = ""; }; - 4F701D5835D97013D2431EC213F1E23E /* FIRVerifyPasswordRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRVerifyPasswordRequest.m; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyPasswordRequest.m; sourceTree = ""; }; - 4F777712A036CB356574BBFEB25DBFD7 /* view.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = view.cc; path = Firestore/core/src/core/view.cc; sourceTree = ""; }; - 4F9309A80B991B45C41D372EF7F02657 /* alts_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_credentials.h; path = src/core/lib/security/credentials/alts/alts_credentials.h; sourceTree = ""; }; - 4F986AD521AB6183B6760C59D28DB935 /* key_wrap.c */ = {isa = PBXFileReference; includeInIndex = 1; name = key_wrap.c; path = src/crypto/fipsmodule/aes/key_wrap.c; sourceTree = ""; }; - 4FA00014B160F0B395455EE9B18DA7AF /* hmac.c */ = {isa = PBXFileReference; includeInIndex = 1; name = hmac.c; path = src/crypto/fipsmodule/hmac/hmac.c; sourceTree = ""; }; - 4FAAE301281B4502D94306AB89D80838 /* symbolize_elf.inc */ = {isa = PBXFileReference; includeInIndex = 1; name = symbolize_elf.inc; path = absl/debugging/symbolize_elf.inc; sourceTree = ""; }; - 4FC17DECA4A5369AB8660F9A127AEAA5 /* bio.c */ = {isa = PBXFileReference; includeInIndex = 1; name = bio.c; path = src/crypto/bio/bio.c; sourceTree = ""; }; - 4FC63B17115E7EB4C8F07347CC235F7E /* RecaptchaInterop-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RecaptchaInterop-umbrella.h"; sourceTree = ""; }; - 4FCD21CE47988D7EB1ED3DFB211733DB /* grpc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc.h; path = include/grpc/grpc.h; sourceTree = ""; }; - 4FD27341A0A00B409A56F98B50F74B70 /* tls_security_connector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tls_security_connector.h; path = src/core/lib/security/security_connector/tls/tls_security_connector.h; sourceTree = ""; }; - 4FE87A67CC739306C0575B6302C9BC14 /* FIRFirestoreSource.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRFirestoreSource.mm; path = Firestore/Source/API/FIRFirestoreSource.mm; sourceTree = ""; }; - 4FED8EFDB285A0A7E0152A20806369B7 /* blake2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = blake2.c; path = src/crypto/blake2/blake2.c; sourceTree = ""; }; - 5027D12C5A01C823EF016ACDC2223C88 /* binder_server.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = binder_server.cc; path = src/core/ext/transport/binder/server/binder_server.cc; sourceTree = ""; }; - 50364AA3C7DE7E4E42D2A8708F52F0D1 /* fake_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fake_credentials.h; path = src/core/lib/security/credentials/fake/fake_credentials.h; sourceTree = ""; }; - 503DDB1054A207F8BBA5812C745A121F /* document_set.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = document_set.cc; path = Firestore/core/src/model/document_set.cc; sourceTree = ""; }; - 506BE959A8FF341230D42448ABDD67EC /* dns_resolver_selection.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = dns_resolver_selection.cc; path = src/core/ext/filters/client_channel/resolver/dns/dns_resolver_selection.cc; sourceTree = ""; }; - 507D4D4C69EAA3402BC276141C61F415 /* transport_security.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = transport_security.h; path = src/core/tsi/transport_security.h; sourceTree = ""; }; - 50A05ACAB29F061EEE6C18C316847090 /* escaping.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = escaping.cc; path = absl/strings/escaping.cc; sourceTree = ""; }; - 50AF9E86FF5C2CDFFCF1D849A09DA1D2 /* GULReachabilityChecker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULReachabilityChecker.h; path = GoogleUtilities/Reachability/Public/GoogleUtilities/GULReachabilityChecker.h; sourceTree = ""; }; - 50C4607A5E9C800D0DADB4059DC29BE7 /* mutex_stats.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = mutex_stats.upb.c; path = "src/core/ext/upb-generated/envoy/admin/v3/mutex_stats.upb.c"; sourceTree = ""; }; - 50CB5656CAF0BE54637FDD8AFBEE29EE /* bitstate.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = bitstate.cc; path = third_party/re2/re2/bitstate.cc; sourceTree = ""; }; - 51336D71B379B293BCA3C8B3E9D9EBFF /* struct.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = struct.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/type/matcher/v3/struct.upbdefs.c"; sourceTree = ""; }; - 5144E0B838F00F833911BAAFAEE6D784 /* reflection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = reflection.h; path = third_party/upb/upb/reflection.h; sourceTree = ""; }; - 514D7742C6CBB0BDBD9984AEE97DDFDE /* BoringSSL-GRPC */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = "BoringSSL-GRPC"; path = openssl_grpc.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 515F33D7B56AC9A5FEABF5D7D834CC05 /* server_info.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_info.upb.h; path = "src/core/ext/upb-generated/envoy/admin/v3/server_info.upb.h"; sourceTree = ""; }; - 5193F0BDE0AB361BF772B69494B70A4D /* FIRAuthAPNSTokenManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthAPNSTokenManager.h; path = FirebaseAuth/Sources/SystemService/FIRAuthAPNSTokenManager.h; sourceTree = ""; }; - 51AA7CF048C27C081307004296AD222F /* windows_engine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = windows_engine.h; path = src/core/lib/event_engine/windows/windows_engine.h; sourceTree = ""; }; - 51BA01EB872ACBA9D90695E399E8BC9D /* insecure_security_connector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = insecure_security_connector.h; path = src/core/lib/security/security_connector/insecure/insecure_security_connector.h; sourceTree = ""; }; - 51BF9DD484184CBA7FF5554CACA1B924 /* FIRAppCheckTokenResultInterop.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAppCheckTokenResultInterop.h; path = FirebaseAppCheck/Interop/FIRAppCheckTokenResultInterop.h; sourceTree = ""; }; - 51C22FBE5E3F6217C474FC6962FF6743 /* city.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = city.cc; path = absl/hash/internal/city.cc; sourceTree = ""; }; - 51D2CF91FBDFA49F8EE3313584DBAEE7 /* service.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = service.upb.c; path = "src/core/ext/upb-generated/envoy/config/trace/v3/service.upb.c"; sourceTree = ""; }; - 51FD51F75DDB42A3A9B76BE91ADFDE02 /* cleanup.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cleanup.h; path = absl/cleanup/cleanup.h; sourceTree = ""; }; - 521589AB076C08D434BFB00471194C77 /* log_apple.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = log_apple.mm; path = Firestore/core/src/util/log_apple.mm; sourceTree = ""; }; - 5220BA4693B0224BC4F12CF8D5D39683 /* int128_have_intrinsic.inc */ = {isa = PBXFileReference; includeInIndex = 1; name = int128_have_intrinsic.inc; path = absl/numeric/int128_have_intrinsic.inc; sourceTree = ""; }; - 523794809B51B648FD57064BA081DC90 /* metrics.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = metrics.upb.h; path = "src/core/ext/upb-generated/envoy/admin/v3/metrics.upb.h"; sourceTree = ""; }; - 5246CD7FBE45B3ABDA4EF3D967322AC6 /* FIRAuthProtoFinalizeMFATOTPEnrollmentRequestInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthProtoFinalizeMFATOTPEnrollmentRequestInfo.m; path = FirebaseAuth/Sources/Backend/RPC/Proto/TOTP/FIRAuthProtoFinalizeMFATOTPEnrollmentRequestInfo.m; sourceTree = ""; }; - 52516FE1FE4EFB9A6E859662C7D66077 /* FIRTOTPMultiFactorAssertion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRTOTPMultiFactorAssertion.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRTOTPMultiFactorAssertion.h; sourceTree = ""; }; - 525B19BD992D61DC26F8A0F11C53690C /* format_request.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = format_request.h; path = src/core/lib/http/format_request.h; sourceTree = ""; }; - 526CD969E1DB97E5F128C9ACF806D905 /* remote_event.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = remote_event.cc; path = Firestore/core/src/remote/remote_event.cc; sourceTree = ""; }; - 528027506D85A397F6562989C0C2F59A /* FIRComponent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRComponent.m; path = FirebaseCore/Sources/FIRComponent.m; sourceTree = ""; }; - 528091B66F03D3BA5F2E67AA2589B8C9 /* abseil-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "abseil-dummy.m"; sourceTree = ""; }; - 5281B3C90A0D05462C25AD26B78D7FB9 /* _ObjC_HeartbeatController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = _ObjC_HeartbeatController.swift; path = FirebaseCore/Internal/Sources/HeartbeatLogging/_ObjC_HeartbeatController.swift; sourceTree = ""; }; - 528CEAAD4E90587ABAB45EDD96C0B9DC /* httpcli.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = httpcli.h; path = src/core/lib/http/httpcli.h; sourceTree = ""; }; - 529867BA488FC08C3043FABD9AA34F06 /* hashtable_debug_hooks.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hashtable_debug_hooks.h; path = absl/container/internal/hashtable_debug_hooks.h; sourceTree = ""; }; - 529F2132B01FC492077BC8A18DA09C7B /* x509_vfy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = x509_vfy.h; path = src/include/openssl/x509_vfy.h; sourceTree = ""; }; - 52AF8092DA64472A441D58650E2F6628 /* leveldb_transaction.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = leveldb_transaction.cc; path = Firestore/core/src/local/leveldb_transaction.cc; sourceTree = ""; }; - 52C08D56756499F2949727A978D74B60 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/lhash/internal.h; sourceTree = ""; }; - 52C0C161BF0634F95CFBB58486010B0F /* http2_errors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http2_errors.h; path = src/core/lib/transport/http2_errors.h; sourceTree = ""; }; - 52D84E70155B87C243F4C1CB7479D60F /* socket_utils_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = socket_utils_posix.h; path = src/core/lib/iomgr/socket_utils_posix.h; sourceTree = ""; }; - 52E5C10E762C42015A754510026EB4A0 /* alloc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alloc.h; path = src/core/lib/gpr/alloc.h; sourceTree = ""; }; - 52F4575211180F40E0CEF52240DD2AC6 /* event_string.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = event_string.h; path = src/core/lib/surface/event_string.h; sourceTree = ""; }; - 52F9419BDF7CFB1A64EA4A2D5256A294 /* uri_parser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = uri_parser.h; path = src/core/lib/uri/uri_parser.h; sourceTree = ""; }; - 52FCEA7EC52A43FDFEFFA090EF7DD356 /* rls_config.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rls_config.upb.h; path = "src/core/ext/upb-generated/src/proto/grpc/lookup/v1/rls_config.upb.h"; sourceTree = ""; }; - 5300D7C68AB06FD3378D77E031FFAD13 /* Heartbeat.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Heartbeat.swift; path = FirebaseCore/Internal/Sources/HeartbeatLogging/Heartbeat.swift; sourceTree = ""; }; - 531FF5A0013E66803F262C86EC4453E3 /* datadog.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = datadog.upb.h; path = "src/core/ext/upb-generated/envoy/config/trace/v3/datadog.upb.h"; sourceTree = ""; }; - 533655527D81DA5AE7037858605AD0F4 /* event_service_config.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = event_service_config.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/event_service_config.upbdefs.h"; sourceTree = ""; }; - 534DC6D1DC5F2230E2293F6EA5469D22 /* FIRMultiFactor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRMultiFactor.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRMultiFactor.h; sourceTree = ""; }; - 53660483CC051A5A551C354394CA2EEE /* rbac_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = rbac_filter.cc; path = src/core/ext/filters/rbac/rbac_filter.cc; sourceTree = ""; }; - 539ABCC72228C715467E75FE10A31D6C /* certs.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = certs.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/admin/v3/certs.upbdefs.h"; sourceTree = ""; }; - 53AA960E3E8C8CB8A6BF667D234082A9 /* asn1t.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = asn1t.h; path = src/include/openssl/asn1t.h; sourceTree = ""; }; - 53BAEC956CA1A4355E7F3E2B725705B9 /* tcp_windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tcp_windows.h; path = src/core/lib/iomgr/tcp_windows.h; sourceTree = ""; }; - 53BF0ACFA3332B5020ECC2862EE12B66 /* ssl_session.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = ssl_session.cc; path = src/ssl/ssl_session.cc; sourceTree = ""; }; - 53CCBA6B8BCBCA8BD2A8F39C33DB28FC /* repair.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = repair.cc; path = db/repair.cc; sourceTree = ""; }; - 53DDA015F3A789693A8A38FB380474B4 /* collections.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = collections.h; path = third_party/upb/upb/collections.h; sourceTree = ""; }; - 53ED99E00ACB7EF1FB410B71D0E6B601 /* jwt_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = jwt_credentials.h; path = src/core/lib/security/credentials/jwt/jwt_credentials.h; sourceTree = ""; }; - 53EE4E6DDACBC578020A1B75F103332F /* binder_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = binder_credentials.h; path = include/grpcpp/security/binder_credentials.h; sourceTree = ""; }; - 53F87ACAEF4603F1B0FDD6364456AEA6 /* service_config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = service_config.h; path = src/core/lib/service_config/service_config.h; sourceTree = ""; }; - 54073F7D1227F56635F9D8186877FAB3 /* endpoint_components.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endpoint_components.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/endpoint_components.upbdefs.h"; sourceTree = ""; }; - 541E3899767A5FECBDF151A718D4B7B2 /* GULKeychainStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULKeychainStorage.m; path = GoogleUtilities/Environment/SecureStorage/GULKeychainStorage.m; sourceTree = ""; }; - 5429BD3A57E4435D54B5E57F3721F8FC /* char_map.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = char_map.h; path = absl/strings/internal/char_map.h; sourceTree = ""; }; - 545AD2F6F656B8D054032F185659B4DD /* map.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = map.h; path = src/core/lib/promise/map.h; sourceTree = ""; }; - 546BC79BE2B19A814F67D07637E8EEDE /* url_external_account_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = url_external_account_credentials.h; path = src/core/lib/security/credentials/external/url_external_account_credentials.h; sourceTree = ""; }; - 54740C790D97AC79FC6E71BFC679C950 /* trace_config.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = trace_config.upb.h; path = "src/core/ext/upb-generated/opencensus/proto/trace/v1/trace_config.upb.h"; sourceTree = ""; }; - 5493500EEFD797D756FFA833C0471765 /* timer_generic.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = timer_generic.cc; path = src/core/lib/iomgr/timer_generic.cc; sourceTree = ""; }; - 54A02406232C8593A4CD231CBFFF9EF4 /* iam_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = iam_credentials.h; path = src/core/lib/security/credentials/iam/iam_credentials.h; sourceTree = ""; }; - 54A4C452D72F5192D61186F24C060D34 /* httpcli.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = httpcli.cc; path = src/core/lib/http/httpcli.cc; sourceTree = ""; }; - 54AB70879F3962A9188A1875D333A5B5 /* FIRUserMetadata_Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRUserMetadata_Internal.h; path = FirebaseAuth/Sources/User/FIRUserMetadata_Internal.h; sourceTree = ""; }; - 54B15F35DC0C15C4B43851A2BADF7EF0 /* time.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = time.cc; path = src/core/lib/gpr/time.cc; sourceTree = ""; }; - 54C25DAA2253A55609D9120E82A6957A /* subchannel_interface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = subchannel_interface.h; path = src/core/lib/load_balancing/subchannel_interface.h; sourceTree = ""; }; - 54DC7F9924F99FEE67A9AD3BEE09A10C /* Pods-iosApp-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-iosApp-dummy.m"; sourceTree = ""; }; - 54EB8059BF382C70FD70EEBAD47B8B9A /* accesslog.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = accesslog.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/accesslog/v3/accesslog.upbdefs.h"; sourceTree = ""; }; - 54F6335D179B673204FEAA39B5D88F7A /* xds_api.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_api.h; path = src/core/ext/xds/xds_api.h; sourceTree = ""; }; - 55149F7022F75A2FDB46F8740643388C /* refcount_lock.c */ = {isa = PBXFileReference; includeInIndex = 1; name = refcount_lock.c; path = src/crypto/refcount_lock.c; sourceTree = ""; }; - 5515FF80F48EFE037E28FEA13CFA3436 /* extension.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = extension.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/extension.upbdefs.h"; sourceTree = ""; }; - 5522275A83A2EADD2BC0674F6A044070 /* hpack_parser_table.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hpack_parser_table.h; path = src/core/ext/transport/chttp2/transport/hpack_parser_table.h; sourceTree = ""; }; - 552C7E81B4607B1144C0BEBBFDEAFDFB /* ssl_utils.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = ssl_utils.cc; path = src/core/lib/security/security_connector/ssl_utils.cc; sourceTree = ""; }; - 553747F2878660240CC64A8F8907F346 /* service_config_parser.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = service_config_parser.cc; path = src/core/ext/filters/fault_injection/service_config_parser.cc; sourceTree = ""; }; - 55664534FA5CEA84E23501867A8233A8 /* coding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = coding.h; path = util/coding.h; sourceTree = ""; }; - 556F3182402F68F408EA0C94B7CE40DB /* transport.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = transport.cc; path = src/core/lib/transport/transport.cc; sourceTree = ""; }; - 5570AB8FE5E3E47A62CC39563159EFE8 /* collection_entry.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = collection_entry.upbdefs.h; path = "src/core/ext/upbdefs-generated/xds/core/v3/collection_entry.upbdefs.h"; sourceTree = ""; }; - 5578B99147B7935FEED758D90B000502 /* extension.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = extension.upb.h; path = "src/core/ext/upb-generated/xds/core/v3/extension.upb.h"; sourceTree = ""; }; - 5583D02FF8953D0C6D07E80775C48E90 /* backoff.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = backoff.upb.c; path = "src/core/ext/upb-generated/envoy/config/core/v3/backoff.upb.c"; sourceTree = ""; }; - 558664D36082923D6E87CEB773269977 /* bytestring.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bytestring.h; path = src/include/openssl/bytestring.h; sourceTree = ""; }; - 5586CECE0803689FFA4F34E2AC4F255D /* nanopb.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = nanopb.modulemap; sourceTree = ""; }; - 559A054F40CF91467BADF1F1E2E432A3 /* cpu-arm-linux.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "cpu-arm-linux.h"; path = "src/crypto/cpu-arm-linux.h"; sourceTree = ""; }; - 559D70D0074AB54F863B6E67468F9979 /* grpc_server_authz_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = grpc_server_authz_filter.cc; path = src/core/lib/security/authorization/grpc_server_authz_filter.cc; sourceTree = ""; }; - 55A215E2D6B46036FCB634A8ACFB2B75 /* FIRFirestoreSettings.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRFirestoreSettings.mm; path = Firestore/Source/API/FIRFirestoreSettings.mm; sourceTree = ""; }; - 55B36CCF75E31146A3418F3C8397AEA0 /* proxy_mapper_registry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = proxy_mapper_registry.h; path = src/core/lib/handshaker/proxy_mapper_registry.h; sourceTree = ""; }; - 55B6BD22C2AAA079D65318F4BB98E229 /* FIRWithdrawMFARequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRWithdrawMFARequest.h; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/Unenroll/FIRWithdrawMFARequest.h; sourceTree = ""; }; - 55C2F375DFC523DF473B83E3BD26B18A /* client_channel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = client_channel.h; path = src/core/ext/filters/client_channel/client_channel.h; sourceTree = ""; }; - 55F11C5F7973DBA687B26BEF19DB834C /* completion_queue_cc.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = completion_queue_cc.cc; path = src/cpp/common/completion_queue_cc.cc; sourceTree = ""; }; - 55F29C12F604DCE7A9D041D44D3D5970 /* lb_policy_registry.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = lb_policy_registry.cc; path = src/core/lib/load_balancing/lb_policy_registry.cc; sourceTree = ""; }; - 55FB15C1B5D44B83E91C7DBE1025AE61 /* descriptor.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = descriptor.upbdefs.c; path = "src/core/ext/upbdefs-generated/google/protobuf/descriptor.upbdefs.c"; sourceTree = ""; }; - 561368502117315E1C8C52B9F44F8750 /* promise_based_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = promise_based_filter.h; path = src/core/lib/channel/promise_based_filter.h; sourceTree = ""; }; - 5613C337AA35BB54C1118672B3A575E8 /* x_pkey.c */ = {isa = PBXFileReference; includeInIndex = 1; name = x_pkey.c; path = src/crypto/x509/x_pkey.c; sourceTree = ""; }; - 561833220B4A8A47C02BFBAEB08A7D97 /* GTMSessionFetcher.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = GTMSessionFetcher.modulemap; sourceTree = ""; }; - 561A2718AFFF8B6389B2BFC4D66CC8A6 /* binder_connector.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = binder_connector.cc; path = src/core/ext/transport/binder/client/binder_connector.cc; sourceTree = ""; }; - 56271BC0CD53E6791C9B8E20E0CB73D5 /* env.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = env.h; path = src/core/lib/gprpp/env.h; sourceTree = ""; }; - 5647BFEE8075FF69E7F5ACF7D1500170 /* stacktrace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stacktrace.h; path = absl/debugging/stacktrace.h; sourceTree = ""; }; - 565B5A3A5A88FE4EAF9C63CBBB5E6D5F /* spinlock.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = spinlock.cc; path = absl/base/internal/spinlock.cc; sourceTree = ""; }; - 5660127BA17F0342C2293D076477DE32 /* resource.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource.upb.h; path = "src/core/ext/upb-generated/envoy/annotations/resource.upb.h"; sourceTree = ""; }; - 56723D415501F9F9B8EA04A3B4C72D16 /* executor.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = executor.cc; path = src/core/lib/iomgr/executor.cc; sourceTree = ""; }; - 5679B6B360A9D56E5390A072D8C20AD5 /* FIRWriteBatch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRWriteBatch.h; path = Firestore/Source/Public/FirebaseFirestore/FIRWriteBatch.h; sourceTree = ""; }; - 5683FA40D6FA0D9DCDB888F619339694 /* parsed_metadata.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = parsed_metadata.h; path = src/core/lib/transport/parsed_metadata.h; sourceTree = ""; }; - 56B9A055B9950E329EAF0B5318553000 /* firestore_client.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = firestore_client.cc; path = Firestore/core/src/core/firestore_client.cc; sourceTree = ""; }; - 56BCD9F86AFD02A8680D285E30551DA0 /* c.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = c.h; path = include/leveldb/c.h; sourceTree = ""; }; - 57015A3555BDA5B5476363053AC3962E /* charconv_bigint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = charconv_bigint.h; path = absl/strings/internal/charconv_bigint.h; sourceTree = ""; }; - 570D74242F34E9983FC76E8429332A46 /* node.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = node.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/matcher/v3/node.upbdefs.h"; sourceTree = ""; }; - 5718EBD3D052E008DE6E5C38BFF4DADB /* sysinfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sysinfo.h; path = absl/base/internal/sysinfo.h; sourceTree = ""; }; - 57447590CA8373001BB53BF27B93E004 /* front_binder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = front_binder.h; path = absl/functional/internal/front_binder.h; sourceTree = ""; }; - 579A2429C6C7C7DFF8A90E17A9C23E1E /* buf.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = buf.h; path = src/include/openssl/buf.h; sourceTree = ""; }; - 57A2DA839D5033E675A3AEFE5174D189 /* throw_delegate.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = throw_delegate.cc; path = absl/base/internal/throw_delegate.cc; sourceTree = ""; }; - 57A40B48F5F191F834C38D0559133007 /* bloom.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = bloom.cc; path = util/bloom.cc; sourceTree = ""; }; - 57AB98EA56FC6F511C62AD43AA886235 /* local_view_changes.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = local_view_changes.cc; path = Firestore/core/src/local/local_view_changes.cc; sourceTree = ""; }; - 57B9BF3CF08822683DDCABC109ADD823 /* descriptor.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = descriptor.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/protobuf/descriptor.upbdefs.h"; sourceTree = ""; }; - 57BF870F526EAE355673A38DCBDD7512 /* listener.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = listener.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/listener/v3/listener.upbdefs.c"; sourceTree = ""; }; - 57CE896908A53A5D74D475845DB39A8A /* cpu-aarch64-fuchsia.c */ = {isa = PBXFileReference; includeInIndex = 1; name = "cpu-aarch64-fuchsia.c"; path = "src/crypto/cpu-aarch64-fuchsia.c"; sourceTree = ""; }; - 57ECF721863A71EBB8B6DCE2669E9B47 /* tap.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = tap.upb.c; path = "src/core/ext/upb-generated/envoy/admin/v3/tap.upb.c"; sourceTree = ""; }; - 57F486DACB222167DF1C1CCEBD3A566E /* memory_request.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = memory_request.h; path = include/grpc/event_engine/memory_request.h; sourceTree = ""; }; - 57F76FDFC2D8E073DB783AA8FBB56B07 /* forkable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = forkable.h; path = src/core/lib/event_engine/forkable.h; sourceTree = ""; }; - 57FF00184BBCBACB0BD93313AE0295AB /* arena.c */ = {isa = PBXFileReference; includeInIndex = 1; name = arena.c; path = third_party/upb/upb/arena.c; sourceTree = ""; }; - 5809005D6A643FA2CD8B9E5FD0929C7B /* FIRDeleteAccountResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRDeleteAccountResponse.m; path = FirebaseAuth/Sources/Backend/RPC/FIRDeleteAccountResponse.m; sourceTree = ""; }; - 5809F16E1565F6CA14FF9115A226C2B7 /* pem_lib.c */ = {isa = PBXFileReference; includeInIndex = 1; name = pem_lib.c; path = src/crypto/pem/pem_lib.c; sourceTree = ""; }; - 58134D0403E2A6A27BACFFDCE11206F6 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/internal.h; sourceTree = ""; }; - 581CCA92F93134248BE3029048BD3D5F /* promise_based_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = promise_based_filter.cc; path = src/core/lib/channel/promise_based_filter.cc; sourceTree = ""; }; - 583427480B637D6CF0F3B433F4D15A7F /* any.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = any.upbdefs.c; path = "src/core/ext/upbdefs-generated/google/protobuf/any.upbdefs.c"; sourceTree = ""; }; - 583770A9623A9D33F182DDA0104B7494 /* alts_iovec_record_protocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_iovec_record_protocol.h; path = src/core/tsi/alts/zero_copy_frame_protector/alts_iovec_record_protocol.h; sourceTree = ""; }; - 5854DBE2DB9C896859118F6DBEB18FA3 /* channel_idle_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = channel_idle_filter.cc; path = src/core/ext/filters/channel_idle/channel_idle_filter.cc; sourceTree = ""; }; - 58640A70D90FCB3560E49C22EE4D0F00 /* lockfree_event.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lockfree_event.h; path = src/core/lib/iomgr/lockfree_event.h; sourceTree = ""; }; - 5867EA59171E5DECD72FA35F7304D76E /* api.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = api.cc; path = src/core/lib/resource_quota/api.cc; sourceTree = ""; }; - 586943017A008DAFEAFE5AB044FEB5FC /* local_security_connector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = local_security_connector.h; path = src/core/lib/security/security_connector/local/local_security_connector.h; sourceTree = ""; }; - 5880CF772E91BE7AF2D4558A6785D2E8 /* accesslog.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = accesslog.upb.c; path = "src/core/ext/upb-generated/envoy/config/accesslog/v3/accesslog.upb.c"; sourceTree = ""; }; - 588FD11B90900BDCD531B3BCFF90A23B /* notification.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = notification.cc; path = absl/synchronization/notification.cc; sourceTree = ""; }; - 5890FB02BD062A30CE25893709B9BF06 /* leveldb_remote_document_cache.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = leveldb_remote_document_cache.cc; path = Firestore/core/src/local/leveldb_remote_document_cache.cc; sourceTree = ""; }; - 58A3508AC81E61FBA6E484F7CE29E973 /* regex.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = regex.upb.c; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/regex.upb.c"; sourceTree = ""; }; - 58D0BC0962FFA577369408058F767285 /* FIRDocumentSnapshot.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRDocumentSnapshot.mm; path = Firestore/Source/API/FIRDocumentSnapshot.mm; sourceTree = ""; }; - 58D15552A3E54445716EDD63E55E2EF9 /* digest.c */ = {isa = PBXFileReference; includeInIndex = 1; name = digest.c; path = src/crypto/fipsmodule/digest/digest.c; sourceTree = ""; }; - 58E5F9881F917BE0F51C8DE05FCE722B /* fake_security_connector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fake_security_connector.h; path = src/core/lib/security/security_connector/fake/fake_security_connector.h; sourceTree = ""; }; - 58EE8B34DBE5ACBCEB1468967F7DF943 /* FirebaseAuth.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = FirebaseAuth.modulemap; sourceTree = ""; }; - 5918C26FF0F929718A43FAFED301963D /* FIRGameCenterAuthProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRGameCenterAuthProvider.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRGameCenterAuthProvider.h; sourceTree = ""; }; - 592900DA030AC4A58A4883B28D648DBE /* regex.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = regex.upb.h; path = "src/core/ext/upb-generated/xds/type/matcher/v3/regex.upb.h"; sourceTree = ""; }; - 593056ABD00C208F10A56E3427D84A2C /* pkcs8.c */ = {isa = PBXFileReference; includeInIndex = 1; name = pkcs8.c; path = src/crypto/pkcs8/pkcs8.c; sourceTree = ""; }; - 5955E56DFC74566E66F9624940E3FD41 /* FIRAuthRecaptchaVerifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthRecaptchaVerifier.h; path = FirebaseAuth/Sources/Utilities/FIRAuthRecaptchaVerifier.h; sourceTree = ""; }; - 59677A49FF785B876C8D865B91CEC32D /* ssl_transcript.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = ssl_transcript.cc; path = src/ssl/ssl_transcript.cc; sourceTree = ""; }; - 598487EDD24FBA335DD24B6A5C31DC9C /* insecure_security_connector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = insecure_security_connector.h; path = src/core/lib/security/security_connector/insecure/insecure_security_connector.h; sourceTree = ""; }; - 59915C66E81FA26B40805A8DB514E1F2 /* tcp_client_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tcp_client_posix.h; path = src/core/lib/iomgr/tcp_client_posix.h; sourceTree = ""; }; - 59922FF312F9A2D0847E9976AA03732B /* config_dump.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = config_dump.upb.c; path = "src/core/ext/upb-generated/envoy/admin/v3/config_dump.upb.c"; sourceTree = ""; }; - 59A55275A82EC3577A8D3E5E0C72691D /* is_boringssl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = is_boringssl.h; path = src/include/openssl/is_boringssl.h; sourceTree = ""; }; - 59B0AF343FAA29A9C7CA47B8E3C375A8 /* cord_rep_btree_reader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cord_rep_btree_reader.h; path = absl/strings/internal/cord_rep_btree_reader.h; sourceTree = ""; }; - 59B15E74BE99EB5C8C571EF2C7C7AA05 /* wakeup_fd_pipe.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = wakeup_fd_pipe.cc; path = src/core/lib/iomgr/wakeup_fd_pipe.cc; sourceTree = ""; }; - 59D31710FB08979F21802130F6377807 /* iomgr_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = iomgr_posix.cc; path = src/core/lib/iomgr/iomgr_posix.cc; sourceTree = ""; }; - 59D62B24DC860D53550EFABCF1159A6D /* FBLPromise+Testing.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Testing.m"; path = "Sources/FBLPromises/FBLPromise+Testing.m"; sourceTree = ""; }; - 59EF36BF4F79771B64C36DB8BBDD0920 /* cipher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cipher.h; path = src/include/openssl/cipher.h; sourceTree = ""; }; - 59F3222F272F14CFA97A279FD2C657F9 /* FIRAuthDefaultUIDelegate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthDefaultUIDelegate.m; path = FirebaseAuth/Sources/Utilities/FIRAuthDefaultUIDelegate.m; sourceTree = ""; }; - 5A18A4B3C0859743D5C261E93B181286 /* p256-x86_64.c */ = {isa = PBXFileReference; includeInIndex = 1; name = "p256-x86_64.c"; path = "src/crypto/fipsmodule/ec/p256-x86_64.c"; sourceTree = ""; }; - 5A19369177954AD52FDF5B66226BB75D /* x_all.c */ = {isa = PBXFileReference; includeInIndex = 1; name = x_all.c; path = src/crypto/x509/x_all.c; sourceTree = ""; }; - 5A2E6485B6CC467E45DCA237903107FA /* message_value.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = message_value.h; path = third_party/upb/upb/message_value.h; sourceTree = ""; }; - 5A3917ED5CCDEAEC04D0490F77DC19F5 /* GULLoggerCodes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULLoggerCodes.h; path = GoogleUtilities/Common/GULLoggerCodes.h; sourceTree = ""; }; - 5A4454C59EC4E76B6ABB54F47B1B58FD /* xds_client_stats.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = xds_client_stats.cc; path = src/core/ext/xds/xds_client_stats.cc; sourceTree = ""; }; - 5A6111432424CD3F01FD6FB5E3A39986 /* listener_components.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = listener_components.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/listener/v3/listener_components.upbdefs.h"; sourceTree = ""; }; - 5A689F574D2D13763A0A1E9450146719 /* iomgr.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = iomgr.cc; path = src/core/lib/iomgr/iomgr.cc; sourceTree = ""; }; - 5A6DB7A1DA911ECF9958B15032F751CF /* thread_pthread.c */ = {isa = PBXFileReference; includeInIndex = 1; name = thread_pthread.c; path = src/crypto/thread_pthread.c; sourceTree = ""; }; - 5A6DEB607A098732838AD3D974372E75 /* FirebaseAppCheckInterop-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FirebaseAppCheckInterop-umbrella.h"; sourceTree = ""; }; - 5A71526266EF70CFF204476072747484 /* socket_factory_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = socket_factory_posix.cc; path = src/core/lib/iomgr/socket_factory_posix.cc; sourceTree = ""; }; - 5A8532672CFBD96D3CF961AD06F617B2 /* backend_metric.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = backend_metric.h; path = src/core/ext/filters/client_channel/backend_metric.h; sourceTree = ""; }; - 5A8986A61A03A7BAF9DDDC5B80D9EB9B /* spinlock_wait.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = spinlock_wait.h; path = absl/base/internal/spinlock_wait.h; sourceTree = ""; }; - 5A94685383E599EC13870BDEE0198082 /* address.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = address.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/address.upbdefs.h"; sourceTree = ""; }; - 5A993101D8FE0C50A170CA30BB76C3C6 /* grpc_ares_ev_driver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_ares_ev_driver.h; path = src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver.h; sourceTree = ""; }; - 5A9D748A72C5EF3D4D0D6FDAD619166B /* service_config_call_data.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = service_config_call_data.h; path = src/core/lib/service_config/service_config_call_data.h; sourceTree = ""; }; - 5AA54FFBE2AF4B22CAE375C19E4786D0 /* tmpfile_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = tmpfile_posix.cc; path = src/core/lib/gpr/tmpfile_posix.cc; sourceTree = ""; }; - 5ABA285C7A4F0F7172CD67574178B910 /* FIROptionsInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIROptionsInternal.h; path = FirebaseCore/Extension/FIROptionsInternal.h; sourceTree = ""; }; - 5AC23B5DA5F7B31CFA2D94A0A10B7C33 /* metadata.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = metadata.upb.h; path = "src/core/ext/upb-generated/envoy/type/metadata/v3/metadata.upb.h"; sourceTree = ""; }; - 5AC974169B09D4545F741E9A2147610E /* Pods-iosApp-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-iosApp-Info.plist"; sourceTree = ""; }; - 5AD05BF198C92840A113BB63ABB626A7 /* trace.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = trace.upb.h; path = "src/core/ext/upb-generated/envoy/config/trace/v3/trace.upb.h"; sourceTree = ""; }; - 5ADC95A05159E9A7BF399E81A02EF3EE /* slice_buffer_api.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = slice_buffer_api.cc; path = src/core/lib/slice/slice_buffer_api.cc; sourceTree = ""; }; - 5AE44DBFFD1D7C9E8C6728E2C4DC8577 /* builtins.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = builtins.cc; path = src/core/lib/surface/builtins.cc; sourceTree = ""; }; - 5B268B72904055358B955F9F4CF219D4 /* stats.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = stats.upb.c; path = "src/core/ext/upb-generated/envoy/config/metrics/v3/stats.upb.c"; sourceTree = ""; }; - 5B26EE68C8AA205B525CB8D50F64FC91 /* FIRTwitterAuthProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRTwitterAuthProvider.m; path = FirebaseAuth/Sources/AuthProvider/Twitter/FIRTwitterAuthProvider.m; sourceTree = ""; }; - 5B3CF0051F125615540DBA3C3D4E1552 /* cert.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cert.upb.h; path = "src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/cert.upb.h"; sourceTree = ""; }; - 5B40A95164ADF4F451EBCF0470A9B272 /* load_report.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = load_report.upb.h; path = "src/core/ext/upb-generated/envoy/config/endpoint/v3/load_report.upb.h"; sourceTree = ""; }; - 5B63618FF3B1EF7AC7E4279CB1805FAD /* http_tracer.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = http_tracer.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/trace/v3/http_tracer.upbdefs.c"; sourceTree = ""; }; - 5B685F791560C3DC98995CBC0FAE3369 /* wrappers.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = wrappers.upb.h; path = "src/core/ext/upb-generated/google/protobuf/wrappers.upb.h"; sourceTree = ""; }; - 5B6FEFCF5951CCB876A05DED38B16567 /* thread_identity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = thread_identity.h; path = absl/base/internal/thread_identity.h; sourceTree = ""; }; - 5B99439A029E2DC329A7B5A7A4EDD9AD /* cipher_extra.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cipher_extra.c; path = src/crypto/cipher_extra/cipher_extra.c; sourceTree = ""; }; - 5BD56AA7A2CFC6D576101018A24800C9 /* FIRPhoneMultiFactorGenerator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRPhoneMultiFactorGenerator.m; path = FirebaseAuth/Sources/MultiFactor/Phone/FIRPhoneMultiFactorGenerator.m; sourceTree = ""; }; - 5BE3EC3AC7EE796933EB91AF442728B6 /* direct_mmap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = direct_mmap.h; path = absl/base/internal/direct_mmap.h; sourceTree = ""; }; - 5BED6A13971AF289354334A6AB6F183F /* timestamp.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = timestamp.upbdefs.c; path = "src/core/ext/upbdefs-generated/google/protobuf/timestamp.upbdefs.c"; sourceTree = ""; }; - 5BF7660098B22650743132F0226AB30C /* GoogleUtilities-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "GoogleUtilities-umbrella.h"; sourceTree = ""; }; - 5C0B954A1904FC1BC267B4350E6E64CA /* nanopb-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "nanopb-prefix.pch"; sourceTree = ""; }; - 5C706862ED66421F97CA47041AED9E69 /* socket_windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = socket_windows.h; path = src/core/lib/iomgr/socket_windows.h; sourceTree = ""; }; - 5C89BCD7E0BED75B1C6FF63BFFACADA2 /* FIRAuthProtoFinalizeMFAPhoneResponseInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthProtoFinalizeMFAPhoneResponseInfo.h; path = FirebaseAuth/Sources/Backend/RPC/Proto/Phone/FIRAuthProtoFinalizeMFAPhoneResponseInfo.h; sourceTree = ""; }; - 5C8DB9B69197BB9C109C319C1AD91FD6 /* variant.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = variant.h; path = absl/types/internal/variant.h; sourceTree = ""; }; - 5C93C5F8AD53DE3D25662800C9393B6B /* sensitive.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = sensitive.upbdefs.c; path = "src/core/ext/upbdefs-generated/xds/annotations/v3/sensitive.upbdefs.c"; sourceTree = ""; }; - 5C9E1E1B59B83F436A47645E29F6E7A4 /* versioning.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = versioning.upbdefs.c; path = "src/core/ext/upbdefs-generated/xds/annotations/v3/versioning.upbdefs.c"; sourceTree = ""; }; - 5C9EB4B6A882977B31E8F54C0FA991E9 /* security_context.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = security_context.h; path = src/core/lib/security/context/security_context.h; sourceTree = ""; }; - 5CC42C060F544932394327771D03EE37 /* a_object.c */ = {isa = PBXFileReference; includeInIndex = 1; name = a_object.c; path = src/crypto/asn1/a_object.c; sourceTree = ""; }; - 5CD658EE2CC2E60FB425C7FE285A61A3 /* wrr_locality.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = wrr_locality.upb.h; path = "src/core/ext/upb-generated/envoy/extensions/load_balancing_policies/wrr_locality/v3/wrr_locality.upb.h"; sourceTree = ""; }; - 5D005D8A4BD29D324B5F19F3D39C900C /* call.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = call.h; path = include/grpcpp/impl/codegen/call.h; sourceTree = ""; }; - 5D15C396F3F532BE655A2C429FBF2BF0 /* grpc_stream.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = grpc_stream.cc; path = Firestore/core/src/remote/grpc_stream.cc; sourceTree = ""; }; - 5D271EFBB7265BE0490BCAE13329CE7B /* descriptor.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = descriptor.upb.h; path = "src/core/ext/upb-generated/google/protobuf/descriptor.upb.h"; sourceTree = ""; }; - 5D40A8B86BC481D22C195A2F75BA294F /* FIRAggregateField.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRAggregateField.mm; path = Firestore/Source/API/FIRAggregateField.mm; sourceTree = ""; }; - 5D4284E7FA6E1CEB9CC9F19F51E4E61F /* channel_creds_registry_init.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = channel_creds_registry_init.cc; path = src/core/lib/security/credentials/channel_creds_registry_init.cc; sourceTree = ""; }; - 5D552113FF9E586AB23A27E8E4EFB64B /* health_check_client.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = health_check_client.h; path = src/core/ext/filters/client_channel/health/health_check_client.h; sourceTree = ""; }; - 5D61F4ABE3847EF01C0A150DD9CB2283 /* GoogleUtilities.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleUtilities.debug.xcconfig; sourceTree = ""; }; - 5D71FA456F5CC276DCD6818F1FC5679C /* decode_huff.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = decode_huff.h; path = src/core/ext/transport/chttp2/transport/decode_huff.h; sourceTree = ""; }; - 5DA515DDBC6DB17BF5D9035F8FCF91B6 /* timeout_encoding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timeout_encoding.h; path = src/core/lib/transport/timeout_encoding.h; sourceTree = ""; }; - 5DAD5411E07B7D3355A5584C75F496CD /* field_index.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = field_index.cc; path = Firestore/core/src/model/field_index.cc; sourceTree = ""; }; - 5DB582511550650827F09433C9E85599 /* binder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = binder.h; path = src/core/ext/transport/binder/wire_format/binder.h; sourceTree = ""; }; - 5DDB2EF64F8D3A146C6DAAA4198E2FF1 /* FIRTwitterAuthCredential.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRTwitterAuthCredential.h; path = FirebaseAuth/Sources/AuthProvider/Twitter/FIRTwitterAuthCredential.h; sourceTree = ""; }; - 5DDD87C0B789B20353B0AAD2340A1C59 /* wrappers.nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = wrappers.nanopb.cc; path = Firestore/Protos/nanopb/google/protobuf/wrappers.nanopb.cc; sourceTree = ""; }; - 5DEA42821B6F225F6CABB26B48C297D2 /* address_filtering.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = address_filtering.cc; path = src/core/ext/filters/client_channel/lb_policy/address_filtering.cc; sourceTree = ""; }; - 5E07B9C1678C91623B18DB42D63B45C3 /* ratelimit_strategy.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ratelimit_strategy.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/v3/ratelimit_strategy.upbdefs.h"; sourceTree = ""; }; - 5E09020B5D3C183A7C47AC81BF64505C /* proxy_mapper_registry.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = proxy_mapper_registry.cc; path = src/core/lib/handshaker/proxy_mapper_registry.cc; sourceTree = ""; }; - 5E1843A17296FD38C7D38AD8FF0FAC5D /* scrypt.c */ = {isa = PBXFileReference; includeInIndex = 1; name = scrypt.c; path = src/crypto/evp/scrypt.c; sourceTree = ""; }; - 5E23E7230E1671507457BB8628145784 /* buf.c */ = {isa = PBXFileReference; includeInIndex = 1; name = buf.c; path = src/crypto/buf/buf.c; sourceTree = ""; }; - 5E373C39844A705F9266F61407512500 /* mutex.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mutex.h; path = absl/synchronization/mutex.h; sourceTree = ""; }; - 5E4F5F7C9E12D4FF1D60882C8C7DA5FD /* call_metric_recorder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = call_metric_recorder.h; path = include/grpcpp/ext/call_metric_recorder.h; sourceTree = ""; }; - 5E64D0B8B12B69B0C836CA639796945E /* matchers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = matchers.h; path = src/core/lib/matchers/matchers.h; sourceTree = ""; }; - 5E6F78950A5D6889537FB4BAA5BC3AF8 /* socket_notifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = socket_notifier.h; path = src/core/lib/event_engine/socket_notifier.h; sourceTree = ""; }; - 5E71E0E2135FD8BE46A183C3C89361EA /* backup_poller.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = backup_poller.cc; path = src/core/ext/filters/client_channel/backup_poller.cc; sourceTree = ""; }; - 5E785E4BC16356AC99F7A3E6AABC9C7B /* json_decode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = json_decode.h; path = third_party/upb/upb/json_decode.h; sourceTree = ""; }; - 5E7E4014E5A3344D8A08C0FA2F80FCEC /* opentelemetry.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = opentelemetry.upb.h; path = "src/core/ext/upb-generated/envoy/config/trace/v3/opentelemetry.upb.h"; sourceTree = ""; }; - 5E84A027945F0807860C495DE2BE596A /* statusor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = statusor.h; path = absl/status/statusor.h; sourceTree = ""; }; - 5EFBD0382600267A7270504D7C8C5AC3 /* autoid.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = autoid.cc; path = Firestore/core/src/util/autoid.cc; sourceTree = ""; }; - 5F0893E574A1F0E0E5383E10AC78F47A /* obj_mac.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = obj_mac.h; path = src/include/openssl/obj_mac.h; sourceTree = ""; }; - 5F0F918542AF47A0A5D64E15E43C5BB0 /* dtls1.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dtls1.h; path = src/include/openssl/dtls1.h; sourceTree = ""; }; - 5F1347A6ACE5A7FFDE80F51E86B62AF9 /* time_zone_format.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = time_zone_format.cc; path = absl/time/internal/cctz/src/time_zone_format.cc; sourceTree = ""; }; - 5F1A982373F65E8533884BF6E56AE150 /* FIRSignInWithGameCenterRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRSignInWithGameCenterRequest.m; path = FirebaseAuth/Sources/Backend/RPC/FIRSignInWithGameCenterRequest.m; sourceTree = ""; }; - 5F1C7493078EA6ADFDF0B0E69A494773 /* server_address.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = server_address.cc; path = src/core/lib/resolver/server_address.cc; sourceTree = ""; }; - 5F22DE2FD8C5049C2446ADDD71014688 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/asn1/internal.h; sourceTree = ""; }; - 5F3800C8FCB9B8F81FECF69F59AC7AA7 /* health.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = health.upb.h; path = "src/core/ext/upb-generated/src/proto/grpc/health/v1/health.upb.h"; sourceTree = ""; }; - 5F3833159854516E2D0B9B92DD654F2B /* migrate.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = migrate.upb.c; path = "src/core/ext/upb-generated/xds/annotations/v3/migrate.upb.c"; sourceTree = ""; }; - 5F8D4753A60F89C16344108636A22117 /* filter.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filter.upb.c; path = "src/core/ext/upb-generated/envoy/config/cluster/v3/filter.upb.c"; sourceTree = ""; }; - 5FC82169E23A83F404FC9210514B4663 /* thread_quota.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = thread_quota.h; path = src/core/lib/resource_quota/thread_quota.h; sourceTree = ""; }; - 5FFDBA3DC6A285E9AE3E4A59FA86D5FF /* grpc_service.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_service.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/grpc_service.upb.h"; sourceTree = ""; }; - 60103051EB2FC1ACA6744A519E613995 /* sensitive.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sensitive.upb.h; path = "src/core/ext/upb-generated/udpa/annotations/sensitive.upb.h"; sourceTree = ""; }; - 6018B45D1FDEE584DBB7B4695D48503B /* global_config_env.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = global_config_env.cc; path = src/core/lib/gprpp/global_config_env.cc; sourceTree = ""; }; - 602DF832695D428540A68EBCC1CB05DF /* siphash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = siphash.h; path = src/include/openssl/siphash.h; sourceTree = ""; }; - 603AC1CECA7F0325A0645F75AEAA6CD8 /* compression.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = compression.cc; path = src/core/lib/compression/compression.cc; sourceTree = ""; }; - 604431C45AC92D9F096CF2D24CD8D5B4 /* timer_generic.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timer_generic.h; path = src/core/lib/iomgr/timer_generic.h; sourceTree = ""; }; - 605D983B33DE71B5BCEC0C12B68F0569 /* security_policy_setting.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = security_policy_setting.cc; path = src/core/ext/transport/binder/client/security_policy_setting.cc; sourceTree = ""; }; - 605FE44A9239FEDD2A4221429C15E070 /* rls.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rls.upb.h; path = "src/core/ext/upb-generated/src/proto/grpc/lookup/v1/rls.upb.h"; sourceTree = ""; }; - 6071149C2FF4694B726158839C8DA594 /* backoff.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = backoff.cc; path = src/core/lib/backoff/backoff.cc; sourceTree = ""; }; - 60776B8F1DE8EB37CB8BE7600C64C808 /* completion_queue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = completion_queue.h; path = src/core/lib/surface/completion_queue.h; sourceTree = ""; }; - 6077FA03F13DDC81DFA4650E0391631B /* FIRTOTPMultiFactorAssertion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRTOTPMultiFactorAssertion.m; path = FirebaseAuth/Sources/MultiFactor/TOTP/FIRTOTPMultiFactorAssertion.m; sourceTree = ""; }; - 607ADFCCBAC72296AAF834D6CBA3945C /* p256_table.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = p256_table.h; path = src/crypto/fipsmodule/ec/p256_table.h; sourceTree = ""; }; - 608C3A3543BC52AF33520B50D1213221 /* v3_info.c */ = {isa = PBXFileReference; includeInIndex = 1; name = v3_info.c; path = src/crypto/x509v3/v3_info.c; sourceTree = ""; }; - 60943C8515DC3BEB09B4519B1BE22C11 /* http_inputs.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_inputs.upb.h; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/http_inputs.upb.h"; sourceTree = ""; }; - 6097A96131150EFC5CBFE14B777EC693 /* spinlock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = spinlock.h; path = src/core/lib/gpr/spinlock.h; sourceTree = ""; }; - 60A43A1A15E45FAEC7CCEB752C9FF372 /* FIRTransactionOptions.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRTransactionOptions.mm; path = Firestore/Source/API/FIRTransactionOptions.mm; sourceTree = ""; }; - 60C84D094248B065E7CEE6F6A0CD1BF2 /* pb_encode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = pb_encode.h; sourceTree = ""; }; - 60D3BE4BA25C88023931632F22A02A29 /* gcm.c */ = {isa = PBXFileReference; includeInIndex = 1; name = gcm.c; path = src/crypto/fipsmodule/modes/gcm.c; sourceTree = ""; }; - 60D420F96CDF12208D4F3E3F89FEADC8 /* status.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = status.upbdefs.c; path = "src/core/ext/upbdefs-generated/google/rpc/status.upbdefs.c"; sourceTree = ""; }; - 60E97D2B0FBDFF885802A1B8ECE2742B /* ratelimit_strategy.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ratelimit_strategy.upb.h; path = "src/core/ext/upb-generated/envoy/type/v3/ratelimit_strategy.upb.h"; sourceTree = ""; }; - 60F06674CC66FBC7B3158AE708C81303 /* grpc_alts_credentials_client_options.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = grpc_alts_credentials_client_options.cc; path = src/core/lib/security/credentials/alts/grpc_alts_credentials_client_options.cc; sourceTree = ""; }; - 60F65B0E1AB5434E5FD6A5EDE06D8198 /* gaussian_distribution.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = gaussian_distribution.cc; path = absl/random/gaussian_distribution.cc; sourceTree = ""; }; - 612092FF34C08EA646FDBB6F59EB7C5E /* discovery.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = discovery.upb.h; path = "src/core/ext/upb-generated/envoy/service/discovery/v3/discovery.upb.h"; sourceTree = ""; }; - 612EA281157C51DCCBA7761FF7AA1501 /* alts_frame_protector.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = alts_frame_protector.cc; path = src/core/tsi/alts/frame_protector/alts_frame_protector.cc; sourceTree = ""; }; - 615D5ADB743B4244EBAD71C4B506214A /* GULAppEnvironmentUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULAppEnvironmentUtil.m; path = GoogleUtilities/Environment/third_party/GULAppEnvironmentUtil.m; sourceTree = ""; }; - 616A1B62B882A324C9750D053E055938 /* chttp2_transport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = chttp2_transport.h; path = src/core/ext/transport/chttp2/transport/chttp2_transport.h; sourceTree = ""; }; - 616EA307C2DD626543957DA7845F3561 /* composite_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = composite_credentials.cc; path = src/core/lib/security/credentials/composite/composite_credentials.cc; sourceTree = ""; }; - 618CE0051962CB7EF75D2A71FBC894D9 /* trace_config.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = trace_config.upb.c; path = "src/core/ext/upb-generated/opencensus/proto/trace/v1/trace_config.upb.c"; sourceTree = ""; }; - 6199E30F0237F0382BBEA7AAF6C29D19 /* credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = credentials.h; path = include/grpcpp/security/credentials.h; sourceTree = ""; }; - 61A38FC5D9BACE9C0F57BB794239CBFF /* alts_tsi_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_tsi_utils.h; path = src/core/tsi/alts/handshaker/alts_tsi_utils.h; sourceTree = ""; }; - 61A876D516AEC1CF9D7CB38D19213911 /* futex.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = futex.h; path = absl/synchronization/internal/futex.h; sourceTree = ""; }; - 61C198A4B5670386EC74AA48413C6D88 /* struct.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = struct.upb.h; path = "src/core/ext/upb-generated/google/protobuf/struct.upb.h"; sourceTree = ""; }; - 61D1E6B691A6C974CDE940589D8006F4 /* listeners.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = listeners.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/admin/v3/listeners.upbdefs.c"; sourceTree = ""; }; - 61F1B4D8F8EBCD0425109556F925ACBB /* curve25519.c */ = {isa = PBXFileReference; includeInIndex = 1; name = curve25519.c; path = src/crypto/curve25519/curve25519.c; sourceTree = ""; }; - 626ACD30A6B524FE908495C4DEFE5EE9 /* FIRVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRVersion.h; path = FirebaseCore/Sources/Public/FirebaseCore/FIRVersion.h; sourceTree = ""; }; - 626C1127ECEC310CAA6FED22EDCC4AE3 /* endpoint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endpoint.h; path = src/core/lib/iomgr/endpoint.h; sourceTree = ""; }; - 626DBE3B2E122C648FBF932E289733B9 /* transport_security_interface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = transport_security_interface.h; path = src/core/tsi/transport_security_interface.h; sourceTree = ""; }; - 627AB2FA042DA10851D02C9567850C54 /* orca_load_report.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = orca_load_report.upb.c; path = "src/core/ext/upb-generated/xds/data/orca/v3/orca_load_report.upb.c"; sourceTree = ""; }; - 628C96061E1534AD017000BA1E3336BC /* cookie.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cookie.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/http/v3/cookie.upbdefs.h"; sourceTree = ""; }; - 629444E4E1A9FC1F2757CE426FBE60B3 /* node.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = node.upb.h; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/node.upb.h"; sourceTree = ""; }; - 62B7CC1F779071DC0078EA5ABE7882F9 /* cordz_info.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = cordz_info.cc; path = absl/strings/internal/cordz_info.cc; sourceTree = ""; }; - 62BA6FE22AEDDAFDEB9C2B233BA1140A /* threaded_executor.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = threaded_executor.cc; path = src/core/lib/event_engine/executor/threaded_executor.cc; sourceTree = ""; }; - 62BDE3839255CDE399FFECF78A2EC3E5 /* charmap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = charmap.h; path = src/crypto/asn1/charmap.h; sourceTree = ""; }; - 62C0DF30B6A036767B05313E8E340DBF /* seed_sequences.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = seed_sequences.h; path = absl/random/seed_sequences.h; sourceTree = ""; }; - 62C5546236C9A6E5DD5C319C6474149A /* experiments.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = experiments.cc; path = src/core/lib/experiments/experiments.cc; sourceTree = ""; }; - 62D2CB7539315C4667F8DB4B16A53781 /* global_subchannel_pool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = global_subchannel_pool.h; path = src/core/ext/filters/client_channel/global_subchannel_pool.h; sourceTree = ""; }; - 62D461F7A3AFADCDB3F7990CEE96E7B1 /* value.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = value.upb.h; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/value.upb.h"; sourceTree = ""; }; - 62D6191BBB78AEFAFAA01747BA6C14EC /* array_contains_any_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = array_contains_any_filter.cc; path = Firestore/core/src/core/array_contains_any_filter.cc; sourceTree = ""; }; - 62F31A570C21E4784474A1A9BD23A4B6 /* endpoint.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = endpoint.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/endpoint.upbdefs.c"; sourceTree = ""; }; - 62FA72B7577675E21A9E83DC6185D589 /* percent.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = percent.upb.h; path = "src/core/ext/upb-generated/envoy/type/v3/percent.upb.h"; sourceTree = ""; }; - 6303FB2E62D7556F5DB77DD3A5EC121F /* endpoint.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endpoint.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/endpoint.upbdefs.h"; sourceTree = ""; }; - 6338F6E0BC6CD448B253C5681F745F26 /* tchar.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = tchar.cc; path = src/core/lib/gprpp/tchar.cc; sourceTree = ""; }; - 6349E18ED9BC599E24798EA657788567 /* grpclb_client_stats.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = grpclb_client_stats.cc; path = src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_client_stats.cc; sourceTree = ""; }; - 635E7706B3303D4C01DE0094FBBFBAC1 /* local_transport_security.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = local_transport_security.h; path = src/core/tsi/local_transport_security.h; sourceTree = ""; }; - 6360BDBD7F2CA4293AA9EDB99C551A82 /* skywalking.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = skywalking.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/trace/v3/skywalking.upbdefs.c"; sourceTree = ""; }; - 636A1D63408A7783FACE3FE5377D7D62 /* json_util.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = json_util.h; path = src/core/lib/security/util/json_util.h; sourceTree = ""; }; - 636DC4CD513E8471A5776B96417DC0D8 /* slice.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = slice.cc; path = src/core/lib/slice/slice.cc; sourceTree = ""; }; - 6382414CC02CB218E2363A66E296F53B /* timer_heap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timer_heap.h; path = src/core/lib/event_engine/posix_engine/timer_heap.h; sourceTree = ""; }; - 638C8902386FE8639FA04FC4550ACFC0 /* FIRFinalizeMFASignInResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRFinalizeMFASignInResponse.h; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/SignIn/FIRFinalizeMFASignInResponse.h; sourceTree = ""; }; - 63BECD86605B49069EA07E39CF04722C /* call_details.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = call_details.cc; path = src/core/lib/surface/call_details.cc; sourceTree = ""; }; - 63D3114D176A6F166DCC21725B75E26E /* maybe_document.nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = maybe_document.nanopb.cc; path = Firestore/Protos/nanopb/firestore/local/maybe_document.nanopb.cc; sourceTree = ""; }; - 63E5B2E435521AAA50D70C9594103894 /* FIRAppInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAppInternal.h; path = FirebaseCore/Extension/FIRAppInternal.h; sourceTree = ""; }; - 63FFC879B10D32F3C74F42B3E11D067F /* e_chacha20poly1305.c */ = {isa = PBXFileReference; includeInIndex = 1; name = e_chacha20poly1305.c; path = src/crypto/cipher_extra/e_chacha20poly1305.c; sourceTree = ""; }; - 642ACDB1EA8365F1ACF3CCD7B4654AF3 /* csds.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = csds.upb.h; path = "src/core/ext/upb-generated/envoy/service/status/v3/csds.upb.h"; sourceTree = ""; }; - 642BEF8EE7132285CFAA9EDF81B8E84A /* FIRComponentContainer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRComponentContainer.m; path = FirebaseCore/Sources/FIRComponentContainer.m; sourceTree = ""; }; - 6451A52ECE7630AB836DAF27E76313C5 /* FIRLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLogger.h; path = FirebaseCore/Extension/FIRLogger.h; sourceTree = ""; }; - 648DB80FB60129CA418F4346506E0F4D /* proxy_protocol.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = proxy_protocol.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/proxy_protocol.upb.h"; sourceTree = ""; }; - 64942CF36E750B68834864AFE7A428E6 /* FIREmailLinkSignInRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIREmailLinkSignInRequest.h; path = FirebaseAuth/Sources/Backend/RPC/FIREmailLinkSignInRequest.h; sourceTree = ""; }; - 6499C785CC09C8B79953179FFBCFE114 /* xds_common_types.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_common_types.h; path = src/core/ext/xds/xds_common_types.h; sourceTree = ""; }; - 6499ED3474FFF05C0E5B27761D1C05D5 /* slice_refcount_base.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = slice_refcount_base.h; path = src/core/lib/slice/slice_refcount_base.h; sourceTree = ""; }; - 64A38D50022AC8327753F04316558DFE /* FBLPromise+Delay.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Delay.m"; path = "Sources/FBLPromises/FBLPromise+Delay.m"; sourceTree = ""; }; - 64A786F90353B5C190F0C469477587E4 /* ev_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ev_posix.h; path = src/core/lib/iomgr/ev_posix.h; sourceTree = ""; }; - 64B430672EC15BDE4E66E14FB59B04F4 /* idle_filter_state.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = idle_filter_state.h; path = src/core/ext/filters/channel_idle/idle_filter_state.h; sourceTree = ""; }; - 64F75CB8AD8FB246982389E337AB7450 /* msg_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = msg_internal.h; path = third_party/upb/upb/msg_internal.h; sourceTree = ""; }; - 64F88E052E243C4DAB957F2FFA7D1AA1 /* auth_context.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = auth_context.h; path = include/grpcpp/security/auth_context.h; sourceTree = ""; }; - 6502B66701E14DD734858905A8F62A0E /* poly1305_arm.c */ = {isa = PBXFileReference; includeInIndex = 1; name = poly1305_arm.c; path = src/crypto/poly1305/poly1305_arm.c; sourceTree = ""; }; - 6509F3F4EEB375FFEFC4DD7D6B0D36F5 /* t_x509a.c */ = {isa = PBXFileReference; includeInIndex = 1; name = t_x509a.c; path = src/crypto/x509/t_x509a.c; sourceTree = ""; }; - 65155D084FBE12372CBA1E8DA86CC4A9 /* utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = utils.h; path = src/core/lib/event_engine/utils.h; sourceTree = ""; }; - 65175563D9654EA9D6A6449CB1821E95 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/fipsmodule/des/internal.h; sourceTree = ""; }; - 65416ED0373A4CA19EB0B6CF4D732370 /* http2_settings.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http2_settings.h; path = src/core/ext/transport/chttp2/transport/http2_settings.h; sourceTree = ""; }; - 6545AE38DFE5BCD5EA3421121EC9E608 /* md5.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = md5.h; path = src/include/openssl/md5.h; sourceTree = ""; }; - 65484BA53ADB21B9354A1AECABAFF212 /* gcd.c */ = {isa = PBXFileReference; includeInIndex = 1; name = gcd.c; path = src/crypto/fipsmodule/bn/gcd.c; sourceTree = ""; }; - 654935D1135F3D751C672E6CE4D65125 /* sockaddr_utils_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = sockaddr_utils_posix.cc; path = src/core/lib/iomgr/sockaddr_utils_posix.cc; sourceTree = ""; }; - 654C4E40BD86A82A13A5F185A923EA57 /* GULNetworkInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetworkInfo.h; path = GoogleUtilities/Environment/Public/GoogleUtilities/GULNetworkInfo.h; sourceTree = ""; }; - 655F0313FE586FC42B0F470D7F116EB7 /* tcp_server_utils_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tcp_server_utils_posix.h; path = src/core/lib/iomgr/tcp_server_utils_posix.h; sourceTree = ""; }; - 6566A9B876C3FB9B41E9B77FA2169348 /* port.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = port.h; path = port/port.h; sourceTree = ""; }; - 658E2E2D689692259EBE738972B52BB2 /* FBLPromise+Timeout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Timeout.h"; path = "Sources/FBLPromises/include/FBLPromise+Timeout.h"; sourceTree = ""; }; - 6591BCAFB4298119AB4185E24A528D76 /* event_service_config.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = event_service_config.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/event_service_config.upb.h"; sourceTree = ""; }; - 659FEFDE9FF9E10D9A33FBC1DABF8FB8 /* migrate.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = migrate.upbdefs.h; path = "src/core/ext/upbdefs-generated/xds/annotations/v3/migrate.upbdefs.h"; sourceTree = ""; }; - 65AA0752CA1CCAB85CDCF79822FFE962 /* matcher.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = matcher.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/common/matcher/v3/matcher.upbdefs.h"; sourceTree = ""; }; - 65AC650755E70917DB6DADB38BA70D3C /* server_auth_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = server_auth_filter.cc; path = src/core/lib/security/transport/server_auth_filter.cc; sourceTree = ""; }; - 65B152465368906722D6829E6B49574F /* FBLPromiseError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLPromiseError.h; path = Sources/FBLPromises/include/FBLPromiseError.h; sourceTree = ""; }; - 660CCFDEDD5B3D9FDC02F4707996D582 /* validate.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = validate.upbdefs.c; path = "src/core/ext/upbdefs-generated/validate/validate.upbdefs.c"; sourceTree = ""; }; - 6610712D920973C1CDA4D107D969B88A /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/evp/internal.h; sourceTree = ""; }; - 661B937FC5674347933097C3C8FFEAAD /* health_check_service_interface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = health_check_service_interface.h; path = include/grpcpp/health_check_service_interface.h; sourceTree = ""; }; - 661CA9BDF111176627DB5C230CBCD051 /* load_reporting.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = load_reporting.h; path = include/grpc/load_reporting.h; sourceTree = ""; }; - 661DF176C7CFB3AF930EF8951DE2744A /* wrap_memcpy.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = wrap_memcpy.cc; path = src/core/lib/gpr/wrap_memcpy.cc; sourceTree = ""; }; - 6639E77A5114D12B8C11237BB1CE9F7E /* http.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/api/http.upbdefs.h"; sourceTree = ""; }; - 66583862B20E51C44ABA6DF0559A62FD /* timestamp.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = timestamp.cc; path = Firestore/core/src/timestamp.cc; sourceTree = ""; }; - 666C927E519CFBBC9CB01F7B0137F582 /* atm_gcc_atomic.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = atm_gcc_atomic.h; path = include/grpc/support/atm_gcc_atomic.h; sourceTree = ""; }; - 667E24C6A2AA29ABD2E5C1924C33B6F4 /* log_uniform_int_distribution.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = log_uniform_int_distribution.h; path = absl/random/log_uniform_int_distribution.h; sourceTree = ""; }; - 6691054229FE27550E269235F3E624AD /* slice_buffer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = slice_buffer.h; path = src/core/lib/slice/slice_buffer.h; sourceTree = ""; }; - 6694D89C132250DCEBF289F187424B61 /* siphash.c */ = {isa = PBXFileReference; includeInIndex = 1; name = siphash.c; path = src/crypto/siphash/siphash.c; sourceTree = ""; }; - 66BE8DF3EC4C835B625C0E96B49E1971 /* server_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = server_credentials.cc; path = src/cpp/server/server_credentials.cc; sourceTree = ""; }; - 66CBACC04E32CE70A8EF3C0982CE028A /* GULSecureCoding.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULSecureCoding.m; path = GoogleUtilities/Environment/GULSecureCoding.m; sourceTree = ""; }; - 66F6DE563A446AA08317343F90BDE250 /* hpack_encoder_table.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = hpack_encoder_table.cc; path = src/core/ext/transport/chttp2/transport/hpack_encoder_table.cc; sourceTree = ""; }; - 66FF31333A00D1CCF92B7A56582111B5 /* collection_entry.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = collection_entry.upb.h; path = "src/core/ext/upb-generated/xds/core/v3/collection_entry.upb.h"; sourceTree = ""; }; - 6703DD21A38A841429A2E73AC6897614 /* msg_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = msg_internal.h; path = third_party/upb/upb/msg_internal.h; sourceTree = ""; }; - 67086824536AD3BA315A8B5E49F55B8E /* server.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server.h; path = src/core/lib/surface/server.h; sourceTree = ""; }; - 6729B23B85A97CE38A810ECF62EB7A0D /* curve25519.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = curve25519.h; path = src/include/openssl/curve25519.h; sourceTree = ""; }; - 673177F4971544C9C1FBF552C282F599 /* regex.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = regex.upb.c; path = "src/core/ext/upb-generated/xds/type/matcher/v3/regex.upb.c"; sourceTree = ""; }; - 6735B6C3344D159A3FE8C55D29177ED5 /* connection_id_generator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = connection_id_generator.h; path = src/core/ext/transport/binder/client/connection_id_generator.h; sourceTree = ""; }; - 6747F980D1FB521C984E987FE2A1DD62 /* tchar.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tchar.h; path = src/core/lib/gprpp/tchar.h; sourceTree = ""; }; - 674DB6B7DD1EA16B25962F892CB65046 /* memory_index_manager.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = memory_index_manager.cc; path = Firestore/core/src/local/memory_index_manager.cc; sourceTree = ""; }; - 677ABAF6941728100ADF71395EBDC59E /* http_tracer.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = http_tracer.upb.c; path = "src/core/ext/upb-generated/envoy/config/trace/v3/http_tracer.upb.c"; sourceTree = ""; }; - 677B40C1A4115D44A0302A4F88C3C27E /* deprecation.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = deprecation.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/annotations/deprecation.upbdefs.h"; sourceTree = ""; }; - 677EBD26018DD4F0935B9C7D8A9B371A /* credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = credentials.h; path = src/core/lib/security/credentials/credentials.h; sourceTree = ""; }; - 678756EB92B5901E3C557909700B5E98 /* alts_shared_resource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_shared_resource.h; path = src/core/tsi/alts/handshaker/alts_shared_resource.h; sourceTree = ""; }; - 678A0A9D19CF0E40C86CAD173BF6392D /* x509.c */ = {isa = PBXFileReference; includeInIndex = 1; name = x509.c; path = src/crypto/x509/x509.c; sourceTree = ""; }; - 678D368A633EEEF83385F17AC5DB4681 /* write_stream.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = write_stream.cc; path = Firestore/core/src/remote/write_stream.cc; sourceTree = ""; }; - 6798E263C7C5EA17A26793A0714EF4EF /* ads.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ads.upb.h; path = "src/core/ext/upb-generated/envoy/service/discovery/v3/ads.upb.h"; sourceTree = ""; }; - 67A06EB2141681007B622553A1A0ACA8 /* aws_external_account_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = aws_external_account_credentials.cc; path = src/core/lib/security/credentials/external/aws_external_account_credentials.cc; sourceTree = ""; }; - 67AC88401672AD0DC1A588A030A4C78B /* arg.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = arg.cc; path = absl/strings/internal/str_format/arg.cc; sourceTree = ""; }; - 67AD21C2EEA09C3B798CD0AD50610930 /* proxy_mapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = proxy_mapper.h; path = src/core/lib/handshaker/proxy_mapper.h; sourceTree = ""; }; - 67AFD862A626ADDFAC91C835F3EEFDD7 /* cpu-arm.c */ = {isa = PBXFileReference; includeInIndex = 1; name = "cpu-arm.c"; path = "src/crypto/cpu-arm.c"; sourceTree = ""; }; - 67AFE159430D49510A65B94BAB6602DB /* protocol.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = protocol.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/protocol.upb.h"; sourceTree = ""; }; - 67B36A3B6FDCF2B3C62DF46148B52179 /* address.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = address.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/address.upb.h"; sourceTree = ""; }; - 67D181297C71AC703F9DCC6B73E79FAA /* patch_mutation.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = patch_mutation.cc; path = Firestore/core/src/model/patch_mutation.cc; sourceTree = ""; }; - 67E521E952D8AF471EF259499F53A6AA /* zipkin.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = zipkin.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/trace/v3/zipkin.upbdefs.h"; sourceTree = ""; }; - 67EF3CC730EEDB4BA19DB1232444325E /* gsec.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = gsec.cc; path = src/core/tsi/alts/crypt/gsec.cc; sourceTree = ""; }; - 680366A2B1EBCB97FC1D5185CB51269E /* symbolize_darwin.inc */ = {isa = PBXFileReference; includeInIndex = 1; name = symbolize_darwin.inc; path = absl/debugging/symbolize_darwin.inc; sourceTree = ""; }; - 6806EE93DA3A5F6092FA3DDE23A02A83 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/pkcs7/internal.h; sourceTree = ""; }; - 6818705A38B832A128816C50B9FBB10F /* FIRAuthDefaultUIDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthDefaultUIDelegate.h; path = FirebaseAuth/Sources/Utilities/FIRAuthDefaultUIDelegate.h; sourceTree = ""; }; - 681A185F19E0F02CB112009600E9F9B9 /* default_health_check_service.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = default_health_check_service.cc; path = src/cpp/server/health/default_health_check_service.cc; sourceTree = ""; }; - 682A4FC28DC3D3C3CEFBBB4E0D43CD6D /* outlier_detection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = outlier_detection.h; path = src/core/ext/filters/client_channel/lb_policy/outlier_detection/outlier_detection.h; sourceTree = ""; }; - 683365243AA576502F8B647A84F6B179 /* arena.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = arena.cc; path = src/core/lib/resource_quota/arena.cc; sourceTree = ""; }; - 6839766BFB84C47DA25ED6083B416F9D /* httpcli.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = httpcli.h; path = src/core/lib/http/httpcli.h; sourceTree = ""; }; - 684FC0BC69AD400F535589D1D61529FF /* scoped_route.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = scoped_route.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/route/v3/scoped_route.upbdefs.c"; sourceTree = ""; }; - 686883483813F592C61194D39E2972B8 /* ssl_aead_ctx.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = ssl_aead_ctx.cc; path = src/ssl/ssl_aead_ctx.cc; sourceTree = ""; }; - 687AB0BB816A0703C0E4E969966E9CBA /* channel.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = channel.cc; path = src/core/lib/surface/channel.cc; sourceTree = ""; }; - 68899930347F6398814220466D1DA45D /* syntax.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = syntax.upb.h; path = "src/core/ext/upb-generated/google/api/expr/v1alpha1/syntax.upb.h"; sourceTree = ""; }; - 68A82223FFE7CB8C76ED7DABA9BEA2BB /* str_join_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = str_join_internal.h; path = absl/strings/internal/str_join_internal.h; sourceTree = ""; }; - 68C1DD396516234BA2C51EF11565EE2B /* string_util_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = string_util_windows.cc; path = src/core/lib/gpr/string_util_windows.cc; sourceTree = ""; }; - 68C239C60B8E52D5988C72A7A491602B /* base.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = base.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/base.upbdefs.c"; sourceTree = ""; }; - 68CB1F72DF917BC3B040A6A9B16022B1 /* context.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = context.h; path = src/core/lib/channel/context.h; sourceTree = ""; }; - 68CD59BDFDBB8007FED4EC851B852E60 /* httpcli_security_connector.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = httpcli_security_connector.cc; path = src/core/lib/http/httpcli_security_connector.cc; sourceTree = ""; }; - 68DC936E74CF4BE1A50D95DA9764460B /* datadog.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = datadog.upb.c; path = "src/core/ext/upb-generated/envoy/config/trace/v3/datadog.upb.c"; sourceTree = ""; }; - 691FED75920CDA87F00C6C52A59CF129 /* http.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = http.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/type/v3/http.upbdefs.c"; sourceTree = ""; }; - 6937CA174368F516E7D43989322F587C /* timeout_encoding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timeout_encoding.h; path = src/core/lib/transport/timeout_encoding.h; sourceTree = ""; }; - 6944293CB2607243C2718706B91089ED /* RecaptchaInterop.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RecaptchaInterop.h; path = RecaptchaEnterprise/RecaptchaInterop/Public/RecaptchaInterop/RecaptchaInterop.h; sourceTree = ""; }; - 6953D1B0C47A36752B480C63D53F92A9 /* GTMSessionFetcher.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GTMSessionFetcher.release.xcconfig; sourceTree = ""; }; - 69564087DDBD14EEBF809B204844C59F /* hrss.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hrss.h; path = src/include/openssl/hrss.h; sourceTree = ""; }; - 69710F8E722FA67AA07F795BFE22C367 /* forkable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = forkable.h; path = src/core/lib/event_engine/forkable.h; sourceTree = ""; }; - 6976A310739358E04A136BBD397833B3 /* lame_client.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lame_client.h; path = src/core/lib/surface/lame_client.h; sourceTree = ""; }; - 699572CE718D8499EECECE2D16326F24 /* mutation_batch.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = mutation_batch.cc; path = Firestore/core/src/model/mutation_batch.cc; sourceTree = ""; }; - 69B2911F143DE41B880832760F562B8C /* float_conversion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = float_conversion.h; path = absl/strings/internal/str_format/float_conversion.h; sourceTree = ""; }; - 69C61FF6745919F7D8F5093F81A37A72 /* FIRBundleUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRBundleUtil.m; path = FirebaseCore/Sources/FIRBundleUtil.m; sourceTree = ""; }; - 69CFD1307C912B9D47E120F558E4B0AE /* md32_common.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = md32_common.h; path = src/crypto/fipsmodule/digest/md32_common.h; sourceTree = ""; }; - 69D19C1DE663BB0048D8C3490C7293A7 /* stat_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = stat_posix.cc; path = src/core/lib/gprpp/stat_posix.cc; sourceTree = ""; }; - 69EBA31AEB067C068C6DDB66943A2C61 /* function_ref.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = function_ref.h; path = absl/functional/internal/function_ref.h; sourceTree = ""; }; - 6A0D5205704830E07C3EFFFAB46E5CBE /* BoringSSL-GRPC-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "BoringSSL-GRPC-prefix.pch"; sourceTree = ""; }; - 6A0DFEB3AD5115B4EF963CA6ECB7B0EA /* FIRVerifyAssertionRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRVerifyAssertionRequest.m; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyAssertionRequest.m; sourceTree = ""; }; - 6A23B807B03895BC98C5B37DA78E17BD /* FIRAuthErrors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthErrors.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRAuthErrors.h; sourceTree = ""; }; - 6A3023C771A2D4C19AA78C8C5DD0F961 /* authorization_engine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = authorization_engine.h; path = src/core/lib/security/authorization/authorization_engine.h; sourceTree = ""; }; - 6A469E5C6DB2F95ED28A3096E328EDF1 /* forkable.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = forkable.cc; path = src/core/lib/event_engine/forkable.cc; sourceTree = ""; }; - 6A50FA6F08C5FDFDD0B8AC25C59EE9FD /* ssl_security_connector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ssl_security_connector.h; path = src/core/lib/security/security_connector/ssl/ssl_security_connector.h; sourceTree = ""; }; - 6A552E6FC0373E664B44E522495B4F78 /* xds_endpoint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_endpoint.h; path = src/core/ext/xds/xds_endpoint.h; sourceTree = ""; }; - 6A57EBD664F1A3009FCA9192C3943553 /* handshaker.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = handshaker.cc; path = src/core/lib/transport/handshaker.cc; sourceTree = ""; }; - 6A6043BA6228715407F893402899D7F7 /* handshaker_factory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = handshaker_factory.h; path = src/core/lib/transport/handshaker_factory.h; sourceTree = ""; }; - 6A635F33D61E117112CA04E90990D870 /* xds_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = xds_credentials.cc; path = src/core/lib/security/credentials/xds/xds_credentials.cc; sourceTree = ""; }; - 6A6426894FF97110F947FFF60F1AE9BB /* insecure_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = insecure_credentials.h; path = src/core/lib/security/credentials/insecure/insecure_credentials.h; sourceTree = ""; }; - 6A6EF1E314E936D183FC23458DFE21DF /* orca.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = orca.upb.h; path = "src/core/ext/upb-generated/xds/service/orca/v3/orca.upb.h"; sourceTree = ""; }; - 6A72746CFA5F1C2D5C2FD1B721CD7247 /* prefilter.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = prefilter.cc; path = third_party/re2/re2/prefilter.cc; sourceTree = ""; }; - 6A728E41F7B469810932E44DF65807FF /* FIRGitHubAuthCredential.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRGitHubAuthCredential.m; path = FirebaseAuth/Sources/AuthProvider/GitHub/FIRGitHubAuthCredential.m; sourceTree = ""; }; - 6A87E9C209C3BD82B43A7A406C094F41 /* trace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = trace.h; path = src/core/lib/debug/trace.h; sourceTree = ""; }; - 6A94A930055EFFE97250821CA7E654BA /* thread_annotations.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = thread_annotations.h; path = absl/base/thread_annotations.h; sourceTree = ""; }; - 6A9E9BEBCA9BF3F3564A89520F9561FA /* resource_quota.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = resource_quota.cc; path = src/core/lib/resource_quota/resource_quota.cc; sourceTree = ""; }; - 6ABE979A579013EE5CBBA339B0992C57 /* bin_encoder.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = bin_encoder.cc; path = src/core/ext/transport/chttp2/transport/bin_encoder.cc; sourceTree = ""; }; - 6ACCBAA84DA46799CCB6C74A930FB5D0 /* demangle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = demangle.h; path = absl/debugging/internal/demangle.h; sourceTree = ""; }; - 6AD9E348E15D54BAC1AC120FF71600E6 /* pmbtoken.c */ = {isa = PBXFileReference; includeInIndex = 1; name = pmbtoken.c; path = src/crypto/trust_token/pmbtoken.c; sourceTree = ""; }; - 6ADFB8953096194E6130E5A39600DCE2 /* FIRAuthRequestConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthRequestConfiguration.h; path = FirebaseAuth/Sources/Backend/FIRAuthRequestConfiguration.h; sourceTree = ""; }; - 6ADFD13245789236FB1886911D21E92F /* orphanable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = orphanable.h; path = src/core/lib/gprpp/orphanable.h; sourceTree = ""; }; - 6AE2CE6497FF7D8488BA5D3125F0BB17 /* converters.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = converters.mm; path = Firestore/Source/API/converters.mm; sourceTree = ""; }; - 6AEEF1079C748B1A1D312DF8A4AC1AE0 /* executor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = executor.h; path = src/core/lib/event_engine/executor/executor.h; sourceTree = ""; }; - 6AF76257FF1A395CC8E9C356BF46F73B /* outlier_detection.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = outlier_detection.upb.h; path = "src/core/ext/upb-generated/envoy/config/cluster/v3/outlier_detection.upb.h"; sourceTree = ""; }; - 6AF76B41992473544AD1B8B7D23C31F9 /* alarm.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = alarm.cc; path = src/cpp/common/alarm.cc; sourceTree = ""; }; - 6B1FE7AE82209D6637D07571CA0F7EAB /* port_stdcxx.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = port_stdcxx.h; path = port/port_stdcxx.h; sourceTree = ""; }; - 6B229F9D273A132F29D455BC26A14F10 /* event_string.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = event_string.h; path = src/core/lib/surface/event_string.h; sourceTree = ""; }; - 6B3556C6520BE1382062DF1EDCAE22FA /* FIRComponentContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentContainer.h; path = FirebaseCore/Extension/FIRComponentContainer.h; sourceTree = ""; }; - 6B356D1E00F9DA871B4C69F9F0518B3E /* oauth2_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = oauth2_credentials.cc; path = src/core/lib/security/credentials/oauth2/oauth2_credentials.cc; sourceTree = ""; }; - 6B3B45B67C989FAAE41DD5FDCDA593E9 /* FIRAuthProtoFinalizeMFAPhoneRequestInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthProtoFinalizeMFAPhoneRequestInfo.h; path = FirebaseAuth/Sources/Backend/RPC/Proto/Phone/FIRAuthProtoFinalizeMFAPhoneRequestInfo.h; sourceTree = ""; }; - 6B4BB44852657DDEC0CE80E093C32473 /* grpc_root_certificates_generated.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = grpc_root_certificates_generated.cc; path = Firestore/core/src/remote/grpc_root_certificates_generated.cc; sourceTree = ""; }; - 6B99E72B942642C3141EA4555B2D804C /* raw_hash_set.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = raw_hash_set.h; path = absl/container/internal/raw_hash_set.h; sourceTree = ""; }; - 6B9D2CCA84E9768DD64ED2302D0DB06F /* single_set_ptr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = single_set_ptr.h; path = src/core/lib/gprpp/single_set_ptr.h; sourceTree = ""; }; - 6BAAF94F7474841BC5D09A557640A7EA /* status_payload_printer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status_payload_printer.h; path = absl/status/status_payload_printer.h; sourceTree = ""; }; - 6BACFDF66245BCEB464CF653D7B4CD95 /* versioning.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = versioning.upb.c; path = "src/core/ext/upb-generated/xds/annotations/v3/versioning.upb.c"; sourceTree = ""; }; - 6BB08DEE40295FB1B35B53590B045040 /* alts_tsi_handshaker_private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_tsi_handshaker_private.h; path = src/core/tsi/alts/handshaker/alts_tsi_handshaker_private.h; sourceTree = ""; }; - 6BBF3EF9AE9CB9587CE4EFEAFDEAC08B /* common.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = common.upb.h; path = "src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/common.upb.h"; sourceTree = ""; }; - 6BD1FAD72ABB4C8649C089B5DF34FD63 /* message_compress.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = message_compress.cc; path = src/core/lib/compression/message_compress.cc; sourceTree = ""; }; - 6BE3AB8DD0F3F0A6E3DA66BA882C62EC /* route.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = route.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/route/v3/route.upbdefs.c"; sourceTree = ""; }; - 6BF6B0CC722E832FB4616822FC4E1468 /* channel_stack_builder.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = channel_stack_builder.cc; path = src/core/lib/channel/channel_stack_builder.cc; sourceTree = ""; }; - 6BFBBCCF5C1949980FA94EB9E01DBEA9 /* FIRStartMFASignInResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRStartMFASignInResponse.m; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/SignIn/FIRStartMFASignInResponse.m; sourceTree = ""; }; - 6BFDDAE329D6311F9FEF092B8FBD50F5 /* abseil.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = abseil.debug.xcconfig; sourceTree = ""; }; - 6BFFAAE4A296EC09D01ED94046773B6A /* PromisesObjC-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "PromisesObjC-Info.plist"; sourceTree = ""; }; - 6C4C0ECBE2BECCDE38CFE8DA04D838C4 /* endpoint_components.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = endpoint_components.upb.c; path = "src/core/ext/upb-generated/envoy/config/endpoint/v3/endpoint_components.upb.c"; sourceTree = ""; }; - 6C63ACCCFCD0CCC9EBD16D6129AABEC7 /* float_conversion.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = float_conversion.cc; path = absl/strings/internal/str_format/float_conversion.cc; sourceTree = ""; }; - 6C6D13BBFEE108524A320463E20DE7C5 /* authorization_policy_provider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = authorization_policy_provider.h; path = src/core/lib/security/authorization/authorization_policy_provider.h; sourceTree = ""; }; - 6C8C6EBF64643A2187A66C46997FF6D5 /* hpack_constants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hpack_constants.h; path = src/core/ext/transport/chttp2/transport/hpack_constants.h; sourceTree = ""; }; - 6C9021F6FC9BE900E7CD3C475C510E5D /* rbac.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rbac.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/rbac/v3/rbac.upbdefs.c"; sourceTree = ""; }; - 6C996D1632B933D118AAED87CCB1967E /* time.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = time.cc; path = src/core/lib/gprpp/time.cc; sourceTree = ""; }; - 6C9B8D4D905A6C0BBB20FB6A1F4DDA97 /* zipkin.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = zipkin.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/trace/v3/zipkin.upbdefs.h"; sourceTree = ""; }; - 6CB7FD367506BBFE8EC1550725D493D5 /* symbolize_unimplemented.inc */ = {isa = PBXFileReference; includeInIndex = 1; name = symbolize_unimplemented.inc; path = absl/debugging/symbolize_unimplemented.inc; sourceTree = ""; }; - 6CD1D59E8BA58964FE2EEF693368181B /* metrics_service.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = metrics_service.upb.h; path = "src/core/ext/upb-generated/envoy/config/metrics/v3/metrics_service.upb.h"; sourceTree = ""; }; - 6D0176963172D4448F8F3BEF74E31304 /* grpclb_balancer_addresses.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpclb_balancer_addresses.h; path = src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_balancer_addresses.h; sourceTree = ""; }; - 6D1721044615940636635073A9994CE8 /* matcher.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = matcher.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/common/matcher/v3/matcher.upbdefs.c"; sourceTree = ""; }; - 6D2A23B7B598404E487E7294704E0A9F /* health.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = health.upb.c; path = "src/core/ext/upb-generated/src/proto/grpc/health/v1/health.upb.c"; sourceTree = ""; }; - 6D3102995018AB50A9C3FE3706120CA9 /* xxhash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xxhash.h; path = third_party/xxhash/xxhash.h; sourceTree = ""; }; - 6D3F2916FC95DE50EEDDDBCAAA3CCFEB /* service_type.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = service_type.h; path = include/grpcpp/impl/service_type.h; sourceTree = ""; }; - 6D43760E05D0526ED2A8B72CDE6A350B /* _ObjC_HeartbeatsPayload.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = _ObjC_HeartbeatsPayload.swift; path = FirebaseCore/Internal/Sources/HeartbeatLogging/_ObjC_HeartbeatsPayload.swift; sourceTree = ""; }; - 6D5212585C96DE98714922B74EF543B4 /* FirebaseCore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseCore.h; path = FirebaseCore/Sources/Public/FirebaseCore/FirebaseCore.h; sourceTree = ""; }; - 6D7333B2081D82C8BA9F5E1CF0A69AA3 /* FBLPromise+Race.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Race.m"; path = "Sources/FBLPromises/FBLPromise+Race.m"; sourceTree = ""; }; - 6D818AF319C7D09EE62BDB0A3E28678F /* regex.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = regex.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/matcher/v3/regex.upbdefs.h"; sourceTree = ""; }; - 6DA096DAFCC73206B78CF59627AA8E8B /* hash.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = hash.cc; path = util/hash.cc; sourceTree = ""; }; - 6DB28D8C225072B71D9F816C4BB2FFDC /* FIRComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponent.h; path = FirebaseCore/Extension/FIRComponent.h; sourceTree = ""; }; - 6DC173CD0D05A7E57916E74D9C2A6343 /* local_subchannel_pool.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = local_subchannel_pool.cc; path = src/core/ext/filters/client_channel/local_subchannel_pool.cc; sourceTree = ""; }; - 6DD3829D0B6F243C9BE2C6414DD5B1BD /* tls_credentials_options.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = tls_credentials_options.cc; path = src/cpp/common/tls_credentials_options.cc; sourceTree = ""; }; - 6DD9CC91AA2D137BF0D2348999AD1415 /* snapshots_in_sync_listener_registration.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = snapshots_in_sync_listener_registration.cc; path = Firestore/core/src/api/snapshots_in_sync_listener_registration.cc; sourceTree = ""; }; - 6DE60ECB1E0C0B43FC3B8E7D5CEFD46F /* outlier_detection.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = outlier_detection.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/cluster/v3/outlier_detection.upbdefs.c"; sourceTree = ""; }; - 6DFB44E9E14BC8C47F5C2DC9E1F521B6 /* pem_x509.c */ = {isa = PBXFileReference; includeInIndex = 1; name = pem_x509.c; path = src/crypto/pem/pem_x509.c; sourceTree = ""; }; - 6E0D3D2183C0DA16A02F8A13CB1B92F6 /* xds_resolver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_resolver.h; path = src/core/ext/filters/client_channel/resolver/xds/xds_resolver.h; sourceTree = ""; }; - 6E16A03CF7448FBAA9F0083B7C8370D8 /* decode_fast.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = decode_fast.h; path = third_party/upb/upb/decode_fast.h; sourceTree = ""; }; - 6E199E8664953B806DA63229D4B47818 /* any.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = any.h; path = absl/types/any.h; sourceTree = ""; }; - 6E26E47F3ED40EB9CB3E91909DC6B72A /* target.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = target.cc; path = Firestore/core/src/core/target.cc; sourceTree = ""; }; - 6E27283994C5D70B1CBC78AF005A2F17 /* secure_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = secure_credentials.cc; path = src/cpp/client/secure_credentials.cc; sourceTree = ""; }; - 6E336DC2534E1E69B7828F6012B874C6 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.0.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; }; - 6E4341521875D24C9C5F296031E65450 /* FIRTOTPSecret.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRTOTPSecret.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRTOTPSecret.h; sourceTree = ""; }; - 6E4DC187A3C6E1D7B9A0397F0F399C30 /* ec_key.c */ = {isa = PBXFileReference; includeInIndex = 1; name = ec_key.c; path = src/crypto/fipsmodule/ec/ec_key.c; sourceTree = ""; }; - 6E557669055631E55F1D205C3D0DF3AC /* FIRHeartbeatLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRHeartbeatLogger.h; path = FirebaseCore/Extension/FIRHeartbeatLogger.h; sourceTree = ""; }; - 6E6E291A9AA5427621512378D4A61DF6 /* alts_grpc_integrity_only_record_protocol.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = alts_grpc_integrity_only_record_protocol.cc; path = src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_integrity_only_record_protocol.cc; sourceTree = ""; }; - 6E8A62DEE58FE2266D3CA59FA37D734E /* server_context.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_context.h; path = include/grpcpp/impl/codegen/server_context.h; sourceTree = ""; }; - 6E94E96F0B0F15A8E137A78E024317CC /* FIRWithdrawMFARequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRWithdrawMFARequest.m; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/Unenroll/FIRWithdrawMFARequest.m; sourceTree = ""; }; - 6EA53921F2D293A9BD32DC585AC8B753 /* FIRLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLogger.h; path = FirebaseCore/Extension/FIRLogger.h; sourceTree = ""; }; - 6EC70AB7D346B3E51DA578EC9B36C817 /* FIRResetPasswordRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRResetPasswordRequest.m; path = FirebaseAuth/Sources/Backend/RPC/FIRResetPasswordRequest.m; sourceTree = ""; }; - 6EC846317B709186F9758E972A6C9FDF /* grpc_connection.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = grpc_connection.cc; path = Firestore/core/src/remote/grpc_connection.cc; sourceTree = ""; }; - 6ECB6B52CCFEFDCADCE4BC72790204C6 /* spinlock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = spinlock.h; path = absl/base/internal/spinlock.h; sourceTree = ""; }; - 6EE547D31092B02089AAC11D9648A6B8 /* array.c */ = {isa = PBXFileReference; includeInIndex = 1; name = array.c; path = third_party/upb/upb/array.c; sourceTree = ""; }; - 6EF89D92821E1E6ED51825B51B320284 /* a_strnid.c */ = {isa = PBXFileReference; includeInIndex = 1; name = a_strnid.c; path = src/crypto/asn1/a_strnid.c; sourceTree = ""; }; - 6EF9A7564CA1555B504ED72735CE94AC /* tcp_connect_handshaker.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = tcp_connect_handshaker.cc; path = src/core/lib/transport/tcp_connect_handshaker.cc; sourceTree = ""; }; - 6EFDBF5DA1A166873F6C081E2010E6BB /* stat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stat.h; path = src/core/lib/gprpp/stat.h; sourceTree = ""; }; - 6EFEED697261126865B276A933C46AEC /* credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = credentials.cc; path = src/core/lib/security/credentials/credentials.cc; sourceTree = ""; }; - 6F08DA410B010FD5EF9F4635DAA7C3E3 /* versioning.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = versioning.upbdefs.h; path = "src/core/ext/upbdefs-generated/udpa/annotations/versioning.upbdefs.h"; sourceTree = ""; }; - 6F25EB5B636A25FE646304BB73DCCEDF /* poller.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = poller.h; path = src/core/lib/event_engine/poller.h; sourceTree = ""; }; - 6F26CD13BAEDACE19DE844F05CD88E89 /* checked.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = checked.upb.h; path = "src/core/ext/upb-generated/google/api/expr/v1alpha1/checked.upb.h"; sourceTree = ""; }; - 6F2B5796739CF1E7FBB02EE5E0690939 /* asn1_gen.c */ = {isa = PBXFileReference; includeInIndex = 1; name = asn1_gen.c; path = src/crypto/x509/asn1_gen.c; sourceTree = ""; }; - 6F36378327BF7E38E03BA0C4668B5D9B /* FIRComponentType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentType.h; path = FirebaseCore/Extension/FIRComponentType.h; sourceTree = ""; }; - 6F78BA2CAEA88F2C95083F594C34C93A /* route.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = route.upb.h; path = "src/core/ext/upb-generated/envoy/config/route/v3/route.upb.h"; sourceTree = ""; }; - 6F81FF239BF2881CBED9B53AF5145E5F /* pollset_windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pollset_windows.h; path = src/core/lib/iomgr/pollset_windows.h; sourceTree = ""; }; - 6F854111D4B5B60E7F3AB38CF52F8906 /* leveldb-library.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "leveldb-library.debug.xcconfig"; sourceTree = ""; }; - 6F8CB18879EC98AE843656870383C5D8 /* FIRDependency.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDependency.h; path = FirebaseCore/Extension/FIRDependency.h; sourceTree = ""; }; - 6F9D5565D9E7D0602C4B952F6902ED55 /* async_unary_call.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = async_unary_call.h; path = include/grpcpp/support/async_unary_call.h; sourceTree = ""; }; - 6F9F39A2395BB25D92BACA14424B978C /* exponential_distribution.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = exponential_distribution.h; path = absl/random/exponential_distribution.h; sourceTree = ""; }; - 6FA47BDDF869028EF54071F0C5696B47 /* xds_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_credentials.h; path = src/core/lib/security/credentials/xds/xds_credentials.h; sourceTree = ""; }; - 6FAC080419F83AC07DAE2537628EDB12 /* client_interceptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = client_interceptor.h; path = include/grpcpp/impl/codegen/client_interceptor.h; sourceTree = ""; }; - 6FC58F6072465A6829CCA8C8E8FF0F10 /* resolved_address.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolved_address.h; path = src/core/lib/iomgr/resolved_address.h; sourceTree = ""; }; - 6FCE3F16CF48113A9FAA51D9302C4AF0 /* Security.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Security.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.0.sdk/System/Library/Frameworks/Security.framework; sourceTree = DEVELOPER_DIR; }; - 6FE6838E46BFD0D4DE02F6D2FCBAA9D8 /* FIRTimestamp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRTimestamp.h; path = Firestore/Source/Public/FirebaseFirestore/FIRTimestamp.h; sourceTree = ""; }; - 6FF48038BF819D625A509E5DAD027800 /* FIRAuthTokenResult.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthTokenResult.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRAuthTokenResult.h; sourceTree = ""; }; - 700B85841AE8D2D021EA9C1E8DD86E97 /* FIRVerifyAssertionRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRVerifyAssertionRequest.h; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyAssertionRequest.h; sourceTree = ""; }; - 701ED1E54D3281E8E45BDDB3CD61B06F /* ssl_session_openssl.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = ssl_session_openssl.cc; path = src/core/tsi/ssl/session_cache/ssl_session_openssl.cc; sourceTree = ""; }; - 702960BEF13540BFC2B118960A714A34 /* transport_security_common.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = transport_security_common.upb.h; path = "src/core/ext/upb-generated/src/proto/grpc/gcp/transport_security_common.upb.h"; sourceTree = ""; }; - 704E4963623394BFDD9FE2AD3C0748B0 /* socket_option.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = socket_option.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/socket_option.upb.h"; sourceTree = ""; }; - 704E8748DDB35FAF66471C49C504C5DF /* hpack_encoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hpack_encoder.h; path = src/core/ext/transport/chttp2/transport/hpack_encoder.h; sourceTree = ""; }; - 705A9FCD35B183BE3D5CB9A74D96614B /* inproc_transport.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = inproc_transport.cc; path = src/core/ext/transport/inproc/inproc_transport.cc; sourceTree = ""; }; - 705AFF135185C9A6F901F184A2232449 /* xray.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xray.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/trace/v3/xray.upbdefs.h"; sourceTree = ""; }; - 707B6DD39E3C74F72905379366173522 /* memory_bundle_cache.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = memory_bundle_cache.cc; path = Firestore/core/src/local/memory_bundle_cache.cc; sourceTree = ""; }; - 7082B127535C072E0A4D2E35E8F507B3 /* gethostname.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = gethostname.h; path = src/core/lib/iomgr/gethostname.h; sourceTree = ""; }; - 7086B792686202D9BD88A862ACDD3DD0 /* xds_listener.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = xds_listener.cc; path = src/core/ext/xds/xds_listener.cc; sourceTree = ""; }; - 708A1BBEBC5941DF207B0F0AEC54915C /* firebase_metadata_provider_apple.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = firebase_metadata_provider_apple.mm; path = Firestore/core/src/remote/firebase_metadata_provider_apple.mm; sourceTree = ""; }; - 7097EDB2F7F476C7B6DCAE79217FD1B5 /* common.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = common.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/common.upbdefs.c"; sourceTree = ""; }; - 70B51A6956F26BA4629CFA56B549B088 /* datadog.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = datadog.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/trace/v3/datadog.upbdefs.c"; sourceTree = ""; }; - 70CFE7FE871E740984C67E7A9A4292A7 /* cds.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = cds.cc; path = src/core/ext/filters/client_channel/lb_policy/xds/cds.cc; sourceTree = ""; }; - 70D5EA727A8D7BA42C15BA41689F03B4 /* socket_option.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = socket_option.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/socket_option.upbdefs.h"; sourceTree = ""; }; - 70D7AA536DB260202B825C476BA152E2 /* cycleclock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cycleclock.h; path = absl/base/internal/cycleclock.h; sourceTree = ""; }; - 70E75CFB34BB17695D4A4C128671B513 /* resource_name.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource_name.upb.h; path = "src/core/ext/upb-generated/xds/core/v3/resource_name.upb.h"; sourceTree = ""; }; - 70F33EABDE05FFEA3C2E977415873D1A /* tsi_error.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tsi_error.h; path = src/core/lib/security/transport/tsi_error.h; sourceTree = ""; }; - 70F9723A8FED976CF0866ADF9BD27168 /* lightstep.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lightstep.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/trace/v3/lightstep.upbdefs.h"; sourceTree = ""; }; - 7122537F48940CE5086D0A86C5880E03 /* fake_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fake_credentials.h; path = src/core/lib/security/credentials/fake/fake_credentials.h; sourceTree = ""; }; - 71510BBCBAA823517D5993F358795D45 /* subchannel_pool_interface.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = subchannel_pool_interface.cc; path = src/core/ext/filters/client_channel/subchannel_pool_interface.cc; sourceTree = ""; }; - 7160177A88ED22AABA4724ACEB368EB8 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/hrss/internal.h; sourceTree = ""; }; - 7169945F5E485F3262B22D54B2E3A341 /* tcp_server_utils_posix_common.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = tcp_server_utils_posix_common.cc; path = src/core/lib/iomgr/tcp_server_utils_posix_common.cc; sourceTree = ""; }; - 717036DF4B82F7C432B925261402AD15 /* handle_containers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = handle_containers.h; path = src/core/lib/event_engine/handle_containers.h; sourceTree = ""; }; - 7179690FA4971C56199906B50CBB8647 /* document_change.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = document_change.cc; path = Firestore/core/src/api/document_change.cc; sourceTree = ""; }; - 71945B90F81F84D5200AB10AAE155E89 /* tcp_client_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tcp_client_posix.h; path = src/core/lib/iomgr/tcp_client_posix.h; sourceTree = ""; }; - 71CBA075A30CC6A9B5F327E0ED9EB95F /* filter.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = filter.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/cluster/v3/filter.upbdefs.h"; sourceTree = ""; }; - 71D4822EF1AB4BA6BDC5D95395236A78 /* channel_stack_builder_impl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_stack_builder_impl.h; path = src/core/lib/channel/channel_stack_builder_impl.h; sourceTree = ""; }; - 71DAFD579FAC7192183F625354D13925 /* metadata_batch.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = metadata_batch.cc; path = src/core/lib/transport/metadata_batch.cc; sourceTree = ""; }; - 71EAFA07B9DE319EDA1B6FC829613507 /* httpcli_ssl_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = httpcli_ssl_credentials.h; path = src/core/lib/http/httpcli_ssl_credentials.h; sourceTree = ""; }; - 71F44072C383AE765E4AC606419FE99C /* polling_resolver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = polling_resolver.h; path = src/core/ext/filters/client_channel/resolver/polling_resolver.h; sourceTree = ""; }; - 71F8D8801DF0CED87D136EBDCF27594D /* xds_transport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_transport.h; path = src/core/ext/xds/xds_transport.h; sourceTree = ""; }; - 720D29BAF8E0927620853047DC8314BC /* atm_gcc_atomic.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = atm_gcc_atomic.h; path = include/grpc/impl/codegen/atm_gcc_atomic.h; sourceTree = ""; }; - 721ED1F77BB887CC1D81E681A9931E5B /* random.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = random.h; path = util/random.h; sourceTree = ""; }; - 722220320CCC5D15E0B999E405B1E9AB /* context.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = context.h; path = src/core/lib/promise/context.h; sourceTree = ""; }; - 723F2246A09846A5CEF722162EAC2A3D /* tls_spiffe_validator_config.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tls_spiffe_validator_config.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upbdefs.h"; sourceTree = ""; }; - 725E6F4CF9E7CBF17245C63A497D04A2 /* init_dump.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = init_dump.upb.h; path = "src/core/ext/upb-generated/envoy/admin/v3/init_dump.upb.h"; sourceTree = ""; }; - 726E97FBB8766A83600F9B855C766B9B /* mutation.nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = mutation.nanopb.cc; path = Firestore/Protos/nanopb/firestore/local/mutation.nanopb.cc; sourceTree = ""; }; - 72758FDD9AB22A2F07D4E30497668C1A /* sync_stream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sync_stream.h; path = include/grpcpp/impl/codegen/sync_stream.h; sourceTree = ""; }; - 72B105D68A9B7B9500A15B3B8CF48D5B /* xds_client.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = xds_client.cc; path = src/core/ext/xds/xds_client.cc; sourceTree = ""; }; - 72B799D7CF081A4F0F17D35FF74CADD0 /* binder_android.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = binder_android.h; path = src/core/ext/transport/binder/wire_format/binder_android.h; sourceTree = ""; }; - 72CB22716DADC17704FD9F4EA1EAFF02 /* aggregate_field.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = aggregate_field.cc; path = Firestore/core/src/model/aggregate_field.cc; sourceTree = ""; }; - 72D0BC9CDAD0C64C7C70EF38E66A8E54 /* duration.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = duration.upb.h; path = "src/core/ext/upb-generated/google/protobuf/duration.upb.h"; sourceTree = ""; }; - 72DA0ABB75ADE5F14CEAD7713867A0A8 /* server.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server.h; path = src/core/lib/surface/server.h; sourceTree = ""; }; - 72F7E21BE89BC99807A36CCB4EA90755 /* extension.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = extension.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/extension.upb.h"; sourceTree = ""; }; - 73276BA2E2BB80FC5390223933E3BF08 /* byte_string.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = byte_string.cc; path = Firestore/core/src/nanopb/byte_string.cc; sourceTree = ""; }; - 733E790616C1A048CAA297626C8D4143 /* per_thread_sem.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = per_thread_sem.cc; path = absl/synchronization/internal/per_thread_sem.cc; sourceTree = ""; }; - 7359680098E536BB7359CC7B1E667E05 /* create_channel_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = create_channel_posix.cc; path = src/cpp/client/create_channel_posix.cc; sourceTree = ""; }; - 7359B7BA7C6FF0EBED5697581C1F038A /* service.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = service.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/trace/v3/service.upbdefs.h"; sourceTree = ""; }; - 7360766508120E8E8155A5906310D595 /* blowfish.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = blowfish.h; path = src/include/openssl/blowfish.h; sourceTree = ""; }; - 7367A46F3574E5BC0ACD2772358A2752 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/fipsmodule/tls/internal.h; sourceTree = ""; }; - 736D6E938C03CF1EE3FE765EFB8EEAE8 /* PromisesObjC.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = PromisesObjC.modulemap; sourceTree = ""; }; - 73754E1FF526269575ADF5D491D5B8D6 /* poly1305.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = poly1305.h; path = src/include/openssl/poly1305.h; sourceTree = ""; }; - 738776B6AB209E4658F5EE8069597D8E /* ripemd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ripemd.h; path = src/include/openssl/ripemd.h; sourceTree = ""; }; - 73904E35E3272E4B4F32DEF5EF36419F /* udp_listener_config.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = udp_listener_config.upb.h; path = "src/core/ext/upb-generated/envoy/config/listener/v3/udp_listener_config.upb.h"; sourceTree = ""; }; - 73B6E3E6C51398A0AE3903EA6638EC19 /* blake2.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = blake2.h; path = src/include/openssl/blake2.h; sourceTree = ""; }; - 73C5929AACA54CDDB5CB307EEBA725F4 /* hash_to_curve.c */ = {isa = PBXFileReference; includeInIndex = 1; name = hash_to_curve.c; path = src/crypto/ec_extra/hash_to_curve.c; sourceTree = ""; }; - 73C9FA249A5F6F6BC7427B9F84A0E7EF /* FBLPromise+Wrap.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Wrap.m"; path = "Sources/FBLPromises/FBLPromise+Wrap.m"; sourceTree = ""; }; - 73D3366BA1D2F7363402A959D9CC795E /* tmpfile_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = tmpfile_windows.cc; path = src/core/lib/gpr/tmpfile_windows.cc; sourceTree = ""; }; + 3A2475209BEE7612101900020629C625 /* Pods-iosApp-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-iosApp-dummy.m"; sourceTree = ""; }; + 42DE4C0106600A5B6D599285368F3270 /* Pods-iosApp-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-iosApp-umbrella.h"; sourceTree = ""; }; + 482384ADFE4EF692B16FACB8C2021970 /* Pods-iosApp.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-iosApp.modulemap"; sourceTree = ""; }; + 73010CC983E3809BECEE5348DA1BB8C6 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.0.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; }; 73D4D08B8C9FAD17B10E8E5C0EB49A76 /* shared.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = shared.framework; path = build/cocoapods/framework/shared.framework; sourceTree = ""; }; - 73E0ACE81F5F02D8DB09D22EC59D48A5 /* posix_engine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = posix_engine.h; path = src/core/lib/event_engine/posix_engine/posix_engine.h; sourceTree = ""; }; - 73E5C713B3C2D3069B6716F90414CEBB /* tls_security_connector.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = tls_security_connector.cc; path = src/core/lib/security/security_connector/tls/tls_security_connector.cc; sourceTree = ""; }; - 73F166B6F976475F5A9FA66433F398EA /* compile.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = compile.cc; path = third_party/re2/re2/compile.cc; sourceTree = ""; }; - 74229C80A51CEA8CCD70BE0FA15B3856 /* memory_quota.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = memory_quota.h; path = src/core/lib/resource_quota/memory_quota.h; sourceTree = ""; }; - 742B356C761207A4316CE78B54794B5F /* channel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel.h; path = src/core/lib/surface/channel.h; sourceTree = ""; }; - 7431FBBE1490F4C247C92516BD41EB6F /* credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = credentials.h; path = src/core/lib/security/credentials/credentials.h; sourceTree = ""; }; - 7433A6EBCF055C177AA2350778A8D066 /* FIRResetPasswordRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRResetPasswordRequest.h; path = FirebaseAuth/Sources/Backend/RPC/FIRResetPasswordRequest.h; sourceTree = ""; }; - 743688AFD27011B2BB26EB443359FF18 /* asn1_lib.c */ = {isa = PBXFileReference; includeInIndex = 1; name = asn1_lib.c; path = src/crypto/asn1/asn1_lib.c; sourceTree = ""; }; - 743A4AB186D2DB3138FD5A6741AE1E10 /* StorageFactory.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = StorageFactory.swift; path = FirebaseCore/Internal/Sources/HeartbeatLogging/StorageFactory.swift; sourceTree = ""; }; - 743F46C3D5B26AA01734985901489905 /* a_sign.c */ = {isa = PBXFileReference; includeInIndex = 1; name = a_sign.c; path = src/crypto/x509/a_sign.c; sourceTree = ""; }; - 7442ED3A651A4EC5B77AEECECC312F09 /* tasn_new.c */ = {isa = PBXFileReference; includeInIndex = 1; name = tasn_new.c; path = src/crypto/asn1/tasn_new.c; sourceTree = ""; }; - 746B021D9784A2252490A4C64CC51995 /* http_status.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_status.upb.h; path = "src/core/ext/upb-generated/envoy/type/v3/http_status.upb.h"; sourceTree = ""; }; - 74734BCA91DCF3DF9B34EE0F71364EB8 /* resource.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = resource.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/annotations/resource.upbdefs.c"; sourceTree = ""; }; - 748448D516E73F7481AD9DC0D9EA1CB9 /* ev_apple.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = ev_apple.cc; path = src/core/lib/iomgr/ev_apple.cc; sourceTree = ""; }; - 7486561260BC6EF2495B7F1101256252 /* bad_optional_access.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bad_optional_access.h; path = absl/types/bad_optional_access.h; sourceTree = ""; }; - 7499623D6B9D5CC76C42FED7F38DF643 /* rbac.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rbac.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/extensions/filters/http/rbac/v3/rbac.upbdefs.c"; sourceTree = ""; }; - 749F0A1D30E33E0E339F5E0FAE846D63 /* engine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = engine.h; path = src/include/openssl/engine.h; sourceTree = ""; }; - 74A7D590E09F3AE855E4BCB46D832A02 /* health_check.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = health_check.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/health_check.upbdefs.h"; sourceTree = ""; }; - 74AE65ED474C08AC123856FE11F55035 /* channel_args.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = channel_args.cc; path = src/core/lib/channel/channel_args.cc; sourceTree = ""; }; - 74C949B60CD86DEA88A6E37B0EC70FD6 /* mem.c */ = {isa = PBXFileReference; includeInIndex = 1; name = mem.c; path = src/crypto/mem.c; sourceTree = ""; }; - 74D7F480294415E5454C2A8DB654303B /* channel_args_preconditioning.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_args_preconditioning.h; path = src/core/lib/channel/channel_args_preconditioning.h; sourceTree = ""; }; - 74DE2F57D7262CB92985AD1FF806B49B /* migrate.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = migrate.upbdefs.h; path = "src/core/ext/upbdefs-generated/udpa/annotations/migrate.upbdefs.h"; sourceTree = ""; }; - 74EFCA2DF419196BC78BC76A2B6E0B2B /* version_cc.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = version_cc.cc; path = src/cpp/common/version_cc.cc; sourceTree = ""; }; - 74F2EF95FDEF519CE85D84228040B69B /* status.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.upbdefs.h; path = "src/core/ext/upbdefs-generated/xds/annotations/v3/status.upbdefs.h"; sourceTree = ""; }; - 7502A837CC53F38AAD8556DFB716330F /* matchers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = matchers.h; path = src/core/lib/security/authorization/matchers.h; sourceTree = ""; }; - 751AD17722D4C9100D4429537720B298 /* http_uri.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = http_uri.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/http_uri.upbdefs.c"; sourceTree = ""; }; - 7524712DFC385C720AF25C19ACF9EE9A /* udp_listener_config.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = udp_listener_config.upb.h; path = "src/core/ext/upb-generated/envoy/config/listener/v3/udp_listener_config.upb.h"; sourceTree = ""; }; - 752AA4AF3911C891B9834E4887BEFB66 /* obj.c */ = {isa = PBXFileReference; includeInIndex = 1; name = obj.c; path = src/crypto/obj/obj.c; sourceTree = ""; }; - 752C8AF4AA3C1291EB8C64DCA636B5AA /* frame_data.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = frame_data.cc; path = src/core/ext/transport/chttp2/transport/frame_data.cc; sourceTree = ""; }; - 7537AD5783E3C9459853A2C1F73D2EBA /* v3_ncons.c */ = {isa = PBXFileReference; includeInIndex = 1; name = v3_ncons.c; path = src/crypto/x509v3/v3_ncons.c; sourceTree = ""; }; - 754314632A7CFF878DBED6427474B473 /* quic_config.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = quic_config.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/listener/v3/quic_config.upbdefs.h"; sourceTree = ""; }; - 75606B314D67942B56C36F7DD4A70B06 /* resolver_factory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolver_factory.h; path = src/core/lib/resolver/resolver_factory.h; sourceTree = ""; }; - 7576F7EA725B4D9612A77492008ED5A9 /* FIRAuthAppCredentialManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthAppCredentialManager.h; path = FirebaseAuth/Sources/SystemService/FIRAuthAppCredentialManager.h; sourceTree = ""; }; - 758153589BA41E4E823046BB674A6DF6 /* FIRQuerySnapshot.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRQuerySnapshot.mm; path = Firestore/Source/API/FIRQuerySnapshot.mm; sourceTree = ""; }; - 759551F43C7E542874248022F236FC75 /* validation_errors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = validation_errors.h; path = src/core/lib/gprpp/validation_errors.h; sourceTree = ""; }; - 75C150A708F4577360F6C6890C990D81 /* FIRSecureTokenRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRSecureTokenRequest.h; path = FirebaseAuth/Sources/Backend/RPC/FIRSecureTokenRequest.h; sourceTree = ""; }; - 75C26F76DDF7736D5F71470DBDAD8BB4 /* dh.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dh.c; path = src/crypto/fipsmodule/dh/dh.c; sourceTree = ""; }; - 75C66052B609A65DD80D56D52385135D /* grpc_alts_credentials_options.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_alts_credentials_options.h; path = src/core/lib/security/credentials/alts/grpc_alts_credentials_options.h; sourceTree = ""; }; - 75DBC83E2BA2E6FC2EB705CE87497EFE /* write_batch_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = write_batch_internal.h; path = db/write_batch_internal.h; sourceTree = ""; }; - 75DD5BF750D5530177B5F59F481087EF /* port.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = port.h; path = src/core/lib/iomgr/port.h; sourceTree = ""; }; - 75DD5BF8D95AA27C2637D80816D3A30C /* substitution_format_string.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = substitution_format_string.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/substitution_format_string.upb.h"; sourceTree = ""; }; - 75DEE7F292D417CB70BD489E34DF47AB /* string_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = string_posix.cc; path = src/core/lib/gpr/string_posix.cc; sourceTree = ""; }; - 75E2B1D8DB83BF29F092B5E6F23D68E7 /* crc32c.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = crc32c.cc; path = util/crc32c.cc; sourceTree = ""; }; - 75E8174F5C6FC5ED028E68979B686EF8 /* memory_document_overlay_cache.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = memory_document_overlay_cache.cc; path = Firestore/core/src/local/memory_document_overlay_cache.cc; sourceTree = ""; }; - 762C8F07AACD976E8C989F77F571079A /* pollset.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pollset.h; path = src/core/lib/iomgr/pollset.h; sourceTree = ""; }; - 762F98456A81D63C7632832560CEEA87 /* casts.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = casts.h; path = absl/base/casts.h; sourceTree = ""; }; - 764C7A9F48833F600E3941686F37DA04 /* key_field_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = key_field_filter.cc; path = Firestore/core/src/core/key_field_filter.cc; sourceTree = ""; }; - 76525149F01A88CDEB67CC781DE077C6 /* sync_stream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sync_stream.h; path = include/grpcpp/support/sync_stream.h; sourceTree = ""; }; - 7668CEE5CBA5BCDE91A5DC73C912562E /* FIRPhoneMultiFactorAssertion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRPhoneMultiFactorAssertion.m; path = FirebaseAuth/Sources/MultiFactor/Phone/FIRPhoneMultiFactorAssertion.m; sourceTree = ""; }; - 76716AB00EB3EE58974817F831DCCFA6 /* trace_config.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = trace_config.upbdefs.c; path = "src/core/ext/upbdefs-generated/opencensus/proto/trace/v1/trace_config.upbdefs.c"; sourceTree = ""; }; - 7678CC800F699E19F1FC72CCA01979D3 /* mutex_stats.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mutex_stats.upb.h; path = "src/core/ext/upb-generated/envoy/admin/v3/mutex_stats.upb.h"; sourceTree = ""; }; - 769E14872A275CC5B96A858FD0E1683E /* randen_slow.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = randen_slow.h; path = absl/random/internal/randen_slow.h; sourceTree = ""; }; - 76A6549D7C1AD5DEEE265DD4DE21E0DA /* serializer.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = serializer.cc; path = Firestore/core/src/remote/serializer.cc; sourceTree = ""; }; - 76AD3B0135310ED70382F4F5D51541E9 /* leveldb-library.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "leveldb-library.release.xcconfig"; sourceTree = ""; }; - 76B70E6BBB8BA139078B677FB12B6838 /* msg.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = msg.h; path = third_party/upb/upb/msg.h; sourceTree = ""; }; - 76B91D5077AA64DFCFF64905FA48A626 /* time_averaged_stats.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = time_averaged_stats.h; path = src/core/lib/gprpp/time_averaged_stats.h; sourceTree = ""; }; - 76CDFB2232C2A0DB66E7A61B309A0923 /* protocol.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = protocol.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/protocol.upbdefs.h"; sourceTree = ""; }; - 76EAB1E72F583B1553C9C2A8347B5F8E /* basic_seq.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = basic_seq.h; path = src/core/lib/promise/detail/basic_seq.h; sourceTree = ""; }; - 76ED2E2CD50298210F7EC0A1152463D0 /* versioning.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = versioning.upb.c; path = "src/core/ext/upb-generated/udpa/annotations/versioning.upb.c"; sourceTree = ""; }; - 76FE6D3EF6BB0D862242967671862EF8 /* tasn_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = tasn_dec.c; path = src/crypto/asn1/tasn_dec.c; sourceTree = ""; }; - 7710D072640D96C2B7AA385F0A0D6BA0 /* mpscq.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mpscq.h; path = src/core/lib/gprpp/mpscq.h; sourceTree = ""; }; - 771458E14AAEAFC2454009D1AF1D09F5 /* common.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = common.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/tap/v3/common.upbdefs.h"; sourceTree = ""; }; - 7717906D59E1D412A3D887E11C4B0D04 /* alts_counter.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = alts_counter.cc; path = src/core/tsi/alts/frame_protector/alts_counter.cc; sourceTree = ""; }; - 77219182BFDEF6186E5BC5DB15F3CD6D /* xds_bootstrap_grpc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_bootstrap_grpc.h; path = src/core/ext/xds/xds_bootstrap_grpc.h; sourceTree = ""; }; - 7737457D1517E96773814F9AB4C5CE46 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/ssl/internal.h; sourceTree = ""; }; - 7747AD59ECF81529EF80AB023ABA2232 /* x_crl.c */ = {isa = PBXFileReference; includeInIndex = 1; name = x_crl.c; path = src/crypto/x509/x_crl.c; sourceTree = ""; }; - 77560720BEAB55E6B81274E02C204A03 /* http.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http.upb.h; path = "src/core/ext/upb-generated/google/api/http.upb.h"; sourceTree = ""; }; - 77620D97BB51073B47D1E79603217C51 /* orphanable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = orphanable.h; path = src/core/lib/gprpp/orphanable.h; sourceTree = ""; }; - 7769E0E7742F21A2C08C647ADAA55AE2 /* FBLPromise+Await.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Await.h"; path = "Sources/FBLPromises/include/FBLPromise+Await.h"; sourceTree = ""; }; - 776D2FB5E8842DB96ECEFA9532B7EF40 /* hashtablez_sampler.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = hashtablez_sampler.cc; path = absl/container/internal/hashtablez_sampler.cc; sourceTree = ""; }; - 779F52AEEB1E15C23BA30257920E1078 /* FirebaseFirestore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseFirestore.h; path = Firestore/Source/Public/FirebaseFirestore/FirebaseFirestore.h; sourceTree = ""; }; - 77A2A15AFFA01D245A379428F38CAEC5 /* call_tracer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = call_tracer.h; path = src/core/lib/channel/call_tracer.h; sourceTree = ""; }; - 77A51F4925ECF7FF164BD21B92E5706C /* msg.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = msg.h; path = third_party/upb/upb/msg.h; sourceTree = ""; }; - 77B5513277BC5822D463B69ADC95F8AB /* GULReachabilityChecker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULReachabilityChecker.m; path = GoogleUtilities/Reachability/GULReachabilityChecker.m; sourceTree = ""; }; - 77C985060699802A833C647F87F4FE4D /* transport_op_string.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = transport_op_string.cc; path = src/core/lib/transport/transport_op_string.cc; sourceTree = ""; }; - 77D42D6840037D4539C5FF947541197C /* insecure_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = insecure_credentials.h; path = src/core/lib/security/credentials/insecure/insecure_credentials.h; sourceTree = ""; }; - 77D8F136B6E55F05B32C578235C79550 /* overload.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = overload.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/overload/v3/overload.upbdefs.h"; sourceTree = ""; }; - 77F45682034E5E49781F6B95BA3D8A07 /* file_external_account_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = file_external_account_credentials.h; path = src/core/lib/security/credentials/external/file_external_account_credentials.h; sourceTree = ""; }; - 7800076DC8BACF12725A116059C93253 /* sysinfo.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = sysinfo.cc; path = absl/base/internal/sysinfo.cc; sourceTree = ""; }; - 781A9EE810CA2662BE472692A5214E8B /* typed_struct.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = typed_struct.upb.h; path = "src/core/ext/upb-generated/xds/type/v3/typed_struct.upb.h"; sourceTree = ""; }; - 7823A2D8143E73CC43D5EF94ACA5859C /* FSTFirestoreComponent.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FSTFirestoreComponent.mm; path = Firestore/Source/API/FSTFirestoreComponent.mm; sourceTree = ""; }; - 78580A8C6B7B33383D25F925E1BF9840 /* channel_arguments.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_arguments.h; path = include/grpcpp/support/channel_arguments.h; sourceTree = ""; }; - 7861E0AF527F94E380FBD0B0C77150D5 /* poll.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = poll.h; path = src/core/lib/promise/poll.h; sourceTree = ""; }; - 78805CDED39A1B75118094B972E9AC75 /* get_current_time_posix.inc */ = {isa = PBXFileReference; includeInIndex = 1; name = get_current_time_posix.inc; path = absl/time/internal/get_current_time_posix.inc; sourceTree = ""; }; - 78ADBBE8C5A875225F2DD88C3457836A /* FIRAuthKeychainServices.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthKeychainServices.h; path = FirebaseAuth/Sources/Storage/FIRAuthKeychainServices.h; sourceTree = ""; }; - 78C1B6A66357E854B9307DE2D5F87DC0 /* d1_srtp.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = d1_srtp.cc; path = src/ssl/d1_srtp.cc; sourceTree = ""; }; - 78C68CEA17B3453B0FEB58A7833EF0B9 /* FIRSetAccountInfoResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRSetAccountInfoResponse.m; path = FirebaseAuth/Sources/Backend/RPC/FIRSetAccountInfoResponse.m; sourceTree = ""; }; - 78D0500A48D763997049704814D5FC00 /* retry_throttle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = retry_throttle.h; path = src/core/ext/filters/client_channel/retry_throttle.h; sourceTree = ""; }; - 78E1723B3DD72C6BDAB63A2566D6BC6A /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/trust_token/internal.h; sourceTree = ""; }; - 78EC62E7F363C18CE7FB247C3A45D100 /* listeners.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = listeners.upb.h; path = "src/core/ext/upb-generated/envoy/admin/v3/listeners.upb.h"; sourceTree = ""; }; - 78F591500BE24B5FBAFEE4930FD4FBEB /* time.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = time.h; path = include/grpc/support/time.h; sourceTree = ""; }; - 78F7AEDE4094100DFD6C569F2EDE090E /* reflection.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = reflection.hpp; path = third_party/upb/upb/reflection.hpp; sourceTree = ""; }; - 78FA1A4D98C6CA4BDC32DDCEEE85BE88 /* grpc_streaming_reader.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = grpc_streaming_reader.cc; path = Firestore/core/src/remote/grpc_streaming_reader.cc; sourceTree = ""; }; - 796F416D6CCC7BC4CEC63082B6931C3B /* default_health_check_service.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = default_health_check_service.h; path = src/cpp/server/health/default_health_check_service.h; sourceTree = ""; }; - 796F9940703794CB3C627FF32271F786 /* ssl_key_logging.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = ssl_key_logging.cc; path = src/core/tsi/ssl/key_logging/ssl_key_logging.cc; sourceTree = ""; }; - 79709D5E1343CAC8CC88A7D66F06F15D /* FBLPromise+Reduce.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Reduce.m"; path = "Sources/FBLPromises/FBLPromise+Reduce.m"; sourceTree = ""; }; - 797BF28F287A56D71DAD6FF3C7497BD8 /* blocking_counter.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = blocking_counter.cc; path = absl/synchronization/blocking_counter.cc; sourceTree = ""; }; - 798C4B151D551436547AB74554CCF4DD /* md4.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = md4.h; path = src/include/openssl/md4.h; sourceTree = ""; }; - 799A987C7CFB3B3191D4E1C69EE0291F /* ssl_key_logging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ssl_key_logging.h; path = src/core/tsi/ssl/key_logging/ssl_key_logging.h; sourceTree = ""; }; - 79A0C919A26E9A21266195C5A67FE6DC /* semantic_version.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = semantic_version.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/v3/semantic_version.upbdefs.h"; sourceTree = ""; }; - 79B85590279D668EA9EAEFE801FC755D /* FIRVerifyPhoneNumberRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRVerifyPhoneNumberRequest.h; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyPhoneNumberRequest.h; sourceTree = ""; }; - 79C0C6E9286973AAD930A1477B7F9D90 /* cpu.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cpu.h; path = src/include/openssl/cpu.h; sourceTree = ""; }; - 79D93757864157DE03BF62355E41CD82 /* resource_locator.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource_locator.upbdefs.h; path = "src/core/ext/upbdefs-generated/xds/core/v3/resource_locator.upbdefs.h"; sourceTree = ""; }; - 79DB4ECA77C596009A7AFD5099BE9029 /* forkunsafe.c */ = {isa = PBXFileReference; includeInIndex = 1; name = forkunsafe.c; path = src/crypto/rand_extra/forkunsafe.c; sourceTree = ""; }; - 79F909ECC3E93E8902F6D36A05CD6BDC /* combiner.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = combiner.cc; path = src/core/lib/iomgr/combiner.cc; sourceTree = ""; }; - 7A06E548FF0CC1156FDC7971208ADEDF /* d1_pkt.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = d1_pkt.cc; path = src/ssl/d1_pkt.cc; sourceTree = ""; }; - 7A0C856042B3542D4548E0BC5B91F8AE /* ev_epoll1_linux.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ev_epoll1_linux.h; path = src/core/lib/iomgr/ev_epoll1_linux.h; sourceTree = ""; }; - 7A0E2510288A22D24D6A9DB28DA8ED2C /* call_op_set.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = call_op_set.h; path = include/grpcpp/impl/codegen/call_op_set.h; sourceTree = ""; }; - 7A24E51B36D5F92C8C4962F6A54F60C4 /* FIRSignUpNewUserRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRSignUpNewUserRequest.m; path = FirebaseAuth/Sources/Backend/RPC/FIRSignUpNewUserRequest.m; sourceTree = ""; }; - 7A46730BB1779DECB9DADF5F99C8043C /* http_uri.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_uri.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/http_uri.upbdefs.h"; sourceTree = ""; }; - 7A66EF6DCD556BE49D7DB10697036E72 /* server_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = server_posix.cc; path = src/cpp/server/server_posix.cc; sourceTree = ""; }; - 7A67F4ADED1D8EAE12E545FF2135B2CA /* decode_huff.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = decode_huff.h; path = src/core/ext/transport/chttp2/transport/decode_huff.h; sourceTree = ""; }; - 7A81ADAB7EA0CD77184B4A15DDCFC577 /* engine.c */ = {isa = PBXFileReference; includeInIndex = 1; name = engine.c; path = src/crypto/engine/engine.c; sourceTree = ""; }; - 7A975C29D1C091CE98CA0DD58F266FE1 /* grpclb_balancer_addresses.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpclb_balancer_addresses.h; path = src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_balancer_addresses.h; sourceTree = ""; }; - 7AA5BA9F40B8B6DB0E0AC7EE6DD0808F /* FIRAuthProtoStartMFAPhoneResponseInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthProtoStartMFAPhoneResponseInfo.h; path = FirebaseAuth/Sources/Backend/RPC/Proto/Phone/FIRAuthProtoStartMFAPhoneResponseInfo.h; sourceTree = ""; }; - 7AABB31E3ACDAB7BA8770E683BCCABC0 /* migrate.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = migrate.upb.h; path = "src/core/ext/upb-generated/xds/annotations/v3/migrate.upb.h"; sourceTree = ""; }; - 7AAD95C465D1F26E9A1F878C9315B462 /* chttp2_server.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = chttp2_server.cc; path = src/core/ext/transport/chttp2/server/chttp2_server.cc; sourceTree = ""; }; - 7ABC93F7C0B3634CDFE0F89B7FA3638D /* http_proxy.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = http_proxy.cc; path = src/core/ext/filters/client_channel/http_proxy.cc; sourceTree = ""; }; - 7ACA7464C4F5BABD1BF795C156500911 /* cord_rep_consume.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cord_rep_consume.h; path = absl/strings/internal/cord_rep_consume.h; sourceTree = ""; }; - 7ACB4CC0D456E56101CC348D2DCB3137 /* seed_material.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = seed_material.cc; path = absl/random/internal/seed_material.cc; sourceTree = ""; }; - 7ADD54AF90C2C87BE9129B46B64BDEC8 /* status.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.upb.h; path = "src/core/ext/upb-generated/xds/annotations/v3/status.upb.h"; sourceTree = ""; }; - 7AE4FC58BDCDAC4C52BDB5E4B758BA92 /* settings.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = settings.cc; path = Firestore/core/src/api/settings.cc; sourceTree = ""; }; - 7AE7BB22BD2F5FBF0546B86060C862AE /* dns_resolver_ares.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = dns_resolver_ares.cc; path = src/core/ext/filters/client_channel/resolver/dns/c_ares/dns_resolver_ares.cc; sourceTree = ""; }; - 7AEF9EA0ABC52D672DE5210707B2E3A6 /* xds_route_config.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = xds_route_config.cc; path = src/core/ext/xds/xds_route_config.cc; sourceTree = ""; }; - 7AFE56D22EBCF861D6AA052B22106714 /* user.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = user.cc; path = Firestore/core/src/credentials/user.cc; sourceTree = ""; }; - 7B0CB9BD9E8170799B5A8DC24922CC8B /* hash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hash.h; path = util/hash.h; sourceTree = ""; }; - 7B104D9BB962879A60523880A0C8E931 /* socket_factory_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = socket_factory_posix.h; path = src/core/lib/iomgr/socket_factory_posix.h; sourceTree = ""; }; - 7B2B6E19BDB6AEC69A93C29DE098EB15 /* cordz_info.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cordz_info.h; path = absl/strings/internal/cordz_info.h; sourceTree = ""; }; - 7B308FDBE7E1A97A5BE54BCDA7760DF8 /* self_check.c */ = {isa = PBXFileReference; includeInIndex = 1; name = self_check.c; path = src/crypto/fipsmodule/self_check/self_check.c; sourceTree = ""; }; - 7B31E0565925869ABE1D60B3655FA88B /* firestore.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = firestore.cc; path = Firestore/core/src/api/firestore.cc; sourceTree = ""; }; - 7B36E65F05DB381EA991BD16AB53BDA2 /* FIRFirestoreSettings.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRFirestoreSettings.h; path = Firestore/Source/Public/FirebaseFirestore/FIRFirestoreSettings.h; sourceTree = ""; }; - 7B426E867DCB007A2251FCC4D788D3D6 /* FIRFacebookAuthProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRFacebookAuthProvider.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRFacebookAuthProvider.h; sourceTree = ""; }; - 7B670716720AD7F64F3A11A1C46518BB /* http_inputs.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = http_inputs.upb.c; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/http_inputs.upb.c"; sourceTree = ""; }; - 7BB6274DCD40164FB9BE46A6BB87D3DD /* channel_argument_option.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_argument_option.h; path = include/grpcpp/impl/channel_argument_option.h; sourceTree = ""; }; - 7BB6A70CC87BD78FE8DC7FAEC4330FFB /* resolver.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = resolver.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/resolver.upbdefs.c"; sourceTree = ""; }; - 7BC78361E2418972309D5F09D5C14A3C /* FIRFirebaseUserAgent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRFirebaseUserAgent.h; path = FirebaseCore/Sources/FIRFirebaseUserAgent.h; sourceTree = ""; }; - 7BD30968630904054326F045A4E67DAB /* http_server_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_server_filter.h; path = src/core/ext/filters/http/server/http_server_filter.h; sourceTree = ""; }; - 7C19515CD9496842698B468836F3C687 /* api_trace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = api_trace.h; path = src/core/lib/surface/api_trace.h; sourceTree = ""; }; - 7C3A25BC9926F00613EF11CE053327CF /* filtered_re2.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = filtered_re2.h; path = third_party/re2/re2/filtered_re2.h; sourceTree = ""; }; - 7C3E7C45B42358ECC7EA4E438B591E0C /* aggregate_alias.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = aggregate_alias.cc; path = Firestore/core/src/model/aggregate_alias.cc; sourceTree = ""; }; - 7C4C48F5ECDAB450F34CAE2753C8EB7C /* byte_buffer_reader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = byte_buffer_reader.h; path = include/grpc/byte_buffer_reader.h; sourceTree = ""; }; - 7C4EEEF6CCC9EFF0049FB44830635214 /* time_averaged_stats.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = time_averaged_stats.cc; path = src/core/lib/gprpp/time_averaged_stats.cc; sourceTree = ""; }; - 7C6B1B0D746462EF9C3B17F1935779CC /* race.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = race.h; path = src/core/lib/promise/race.h; sourceTree = ""; }; - 7C6C8277D37F0DE15584B4195822F9EB /* x_exten.c */ = {isa = PBXFileReference; includeInIndex = 1; name = x_exten.c; path = src/crypto/x509/x_exten.c; sourceTree = ""; }; - 7CAAD37DF86F020FD9324625F96C3917 /* status_win.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = status_win.cc; path = Firestore/core/src/util/status_win.cc; sourceTree = ""; }; - 7CCBFD5732A9BE2A05441D7EA6A71F6E /* resource.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = resource.upb.c; path = "src/core/ext/upb-generated/xds/core/v3/resource.upb.c"; sourceTree = ""; }; - 7CE573937799F08AB8B9EE9F30455699 /* xds_resource_type.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_resource_type.h; path = src/core/ext/xds/xds_resource_type.h; sourceTree = ""; }; - 7CF9C3C087CFA7A8AD1B20EC33C89758 /* resource.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource.upb.h; path = "src/core/ext/upb-generated/envoy/annotations/resource.upb.h"; sourceTree = ""; }; - 7CFE2BA094AD9AE8F183EBAD632EB33F /* GULMutableDictionary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULMutableDictionary.h; path = GoogleUtilities/Network/Public/GoogleUtilities/GULMutableDictionary.h; sourceTree = ""; }; - 7D005FBDFE35091B437E2B7B95CE9A3A /* ratelimit_unit.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ratelimit_unit.upb.h; path = "src/core/ext/upb-generated/envoy/type/v3/ratelimit_unit.upb.h"; sourceTree = ""; }; - 7D04202FC32AAD86A4CF0BAA7BB993EB /* memtable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = memtable.h; path = db/memtable.h; sourceTree = ""; }; - 7D12BE4FBE6EAB93D2DE1C808BB61360 /* tls.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = tls.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/tls.upbdefs.c"; sourceTree = ""; }; - 7D42CE31A98293DA4D63D88E8DD47FC6 /* sync.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = sync.cc; path = src/core/lib/gpr/sync.cc; sourceTree = ""; }; - 7D48FED36BE16E0456D8B6718B78A529 /* sparse_set.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sparse_set.h; path = third_party/re2/re2/sparse_set.h; sourceTree = ""; }; - 7D51E10E873AE8F8D9C3E343E01F34F7 /* server_context.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_context.h; path = include/grpcpp/server_context.h; sourceTree = ""; }; - 7D5B6E3AA3455C88892C51CD0863D1E5 /* resolver.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = resolver.upb.c; path = "src/core/ext/upb-generated/envoy/config/core/v3/resolver.upb.c"; sourceTree = ""; }; - 7D61E4E9469260047E68EA523CEB4102 /* iocp_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = iocp_windows.cc; path = src/core/lib/iomgr/iocp_windows.cc; sourceTree = ""; }; - 7D6F6587E2B9773CD8F2E3860F8BE665 /* time_zone_info.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = time_zone_info.h; path = absl/time/internal/cctz/src/time_zone_info.h; sourceTree = ""; }; - 7D898CE712703E831FE8B73B3A0292B9 /* FIRCollectionReference.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCollectionReference.h; path = Firestore/Source/Public/FirebaseFirestore/FIRCollectionReference.h; sourceTree = ""; }; - 7D91AA0C81DD626A9C53FFB68485EAAA /* endpoint_pair_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = endpoint_pair_posix.cc; path = src/core/lib/iomgr/endpoint_pair_posix.cc; sourceTree = ""; }; - 7D92486790536239236C8CF54739A4A1 /* stats.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = stats.cc; path = src/core/lib/debug/stats.cc; sourceTree = ""; }; - 7D9A59BA61CFEA7001F07F6E846522FE /* collection_reference.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = collection_reference.cc; path = Firestore/core/src/api/collection_reference.cc; sourceTree = ""; }; - 7DA007BA7B0B8B194EA631107E77EE06 /* address_is_readable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = address_is_readable.h; path = absl/debugging/internal/address_is_readable.h; sourceTree = ""; }; - 7DDA02EA73C9DD8A6C2C4AC85423BA63 /* gethostname_sysconf.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = gethostname_sysconf.cc; path = src/core/lib/iomgr/gethostname_sysconf.cc; sourceTree = ""; }; - 7DE5B1BD6CCA627B9C1E442A02607ED3 /* alts_record_protocol_crypter_common.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = alts_record_protocol_crypter_common.cc; path = src/core/tsi/alts/frame_protector/alts_record_protocol_crypter_common.cc; sourceTree = ""; }; - 7DFD1FD2827DBEFDD11DB028326CEBAD /* iomgr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = iomgr.h; path = src/core/lib/iomgr/iomgr.h; sourceTree = ""; }; - 7E04463F8CC2A231D9041C1A32BFAA60 /* version_edit.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = version_edit.cc; path = db/version_edit.cc; sourceTree = ""; }; - 7E04F44490213FD76138C26843F14332 /* windows_engine.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = windows_engine.cc; path = src/core/lib/event_engine/windows/windows_engine.cc; sourceTree = ""; }; - 7E0DADFE076F051FF1855CF11B91B5E1 /* FIRQuery.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRQuery.h; path = Firestore/Source/Public/FirebaseFirestore/FIRQuery.h; sourceTree = ""; }; - 7E13CF13E4A1EBE968FB72C6DA1CFCFE /* alts_zero_copy_grpc_protector.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = alts_zero_copy_grpc_protector.cc; path = src/core/tsi/alts/zero_copy_frame_protector/alts_zero_copy_grpc_protector.cc; sourceTree = ""; }; - 7E1C95B0EF6F3631D1B7E6FDDEB3FF69 /* logic_utils.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = logic_utils.cc; path = Firestore/core/src/util/logic_utils.cc; sourceTree = ""; }; - 7E31331647941860AE98099C796A3A07 /* getrandom_fillin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = getrandom_fillin.h; path = src/crypto/fipsmodule/rand/getrandom_fillin.h; sourceTree = ""; }; - 7E32A6C0F786FFCFE5FE3EAF320D288D /* match.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = match.h; path = absl/strings/match.h; sourceTree = ""; }; - 7E39E757FD0BFAB8F3CA056C8E641BE4 /* jacobi.c */ = {isa = PBXFileReference; includeInIndex = 1; name = jacobi.c; path = src/crypto/fipsmodule/bn/jacobi.c; sourceTree = ""; }; - 7E44BC60564F2559251179498E12EAA0 /* annotations.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = annotations.upb.h; path = "src/core/ext/upb-generated/google/api/annotations.upb.h"; sourceTree = ""; }; - 7E4EAD0BD8FB6F74E445170ED4877F23 /* tcp_client.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = tcp_client.cc; path = src/core/lib/iomgr/tcp_client.cc; sourceTree = ""; }; - 7E535D616BFB308C5B02F22AD0EE1B2A /* mutex_stats.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mutex_stats.upb.h; path = "src/core/ext/upb-generated/envoy/admin/v3/mutex_stats.upb.h"; sourceTree = ""; }; - 7E653BFDE8DE075AA70ACDF346590386 /* map.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = map.h; path = third_party/upb/upb/map.h; sourceTree = ""; }; - 7E6B745239A77C69FAAE1E10D51FE138 /* lrs.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lrs.upb.h; path = "src/core/ext/upb-generated/envoy/service/load_stats/v3/lrs.upb.h"; sourceTree = ""; }; - 7E790E8D4079407D8A687C10752C12FF /* scoped_route.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = scoped_route.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/route/v3/scoped_route.upbdefs.h"; sourceTree = ""; }; - 7E9624EA43F21CC24239E900ED7689D8 /* FIRFinalizeMFASignInRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRFinalizeMFASignInRequest.m; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/SignIn/FIRFinalizeMFASignInRequest.m; sourceTree = ""; }; - 7EAEA332AD600D2E333B9191954B32ED /* FBLPromisePrivate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLPromisePrivate.h; path = Sources/FBLPromises/include/FBLPromisePrivate.h; sourceTree = ""; }; - 7EBBF1669A85B83534B046B5B8950F30 /* ssl_privkey.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = ssl_privkey.cc; path = src/ssl/ssl_privkey.cc; sourceTree = ""; }; - 7EC1FA7B92F243F3F92D0FD6893AF9EE /* channel_stack_builder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_stack_builder.h; path = src/core/lib/channel/channel_stack_builder.h; sourceTree = ""; }; - 7EC3E788B98B48709CD46214BEF89B27 /* api_listener.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = api_listener.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/listener/v3/api_listener.upbdefs.h"; sourceTree = ""; }; - 7EC6A4C501219900D2D7CB0ADD4ACC2B /* bitset.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bitset.h; path = src/core/lib/gprpp/bitset.h; sourceTree = ""; }; - 7EDE1BD86074D7CA9C51E550793862B8 /* loop.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = loop.h; path = src/core/lib/promise/loop.h; sourceTree = ""; }; - 7EE0654A2D4205A029F1A28C61017E50 /* server_callback.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_callback.h; path = include/grpcpp/support/server_callback.h; sourceTree = ""; }; - 7EE33608D2C44C8E4F5F0D8A53C896E7 /* a_utf8.c */ = {isa = PBXFileReference; includeInIndex = 1; name = a_utf8.c; path = src/crypto/asn1/a_utf8.c; sourceTree = ""; }; - 7EE5557F04C9C2B2802C3F67E065CC1D /* grpc_server_authz_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_server_authz_filter.h; path = src/core/lib/security/authorization/grpc_server_authz_filter.h; sourceTree = ""; }; - 7EE6FA028BB605D92790816C975472EA /* load_report.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = load_report.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/load_report.upbdefs.h"; sourceTree = ""; }; - 7EF3F6E397FCEB3E72052EA27B3F13FC /* table_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = table_internal.h; path = third_party/upb/upb/table_internal.h; sourceTree = ""; }; - 7F0B8B2A95D9E2132274009ADCAEDDF1 /* examine_stack.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = examine_stack.cc; path = src/core/lib/gprpp/examine_stack.cc; sourceTree = ""; }; - 7F13F276ABA51A14E301231E801422F5 /* route_components.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = route_components.upb.c; path = "src/core/ext/upb-generated/envoy/config/route/v3/route_components.upb.c"; sourceTree = ""; }; - 7F15E1B830E7FD883854BD8E644F068D /* status_util.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status_util.h; path = src/core/lib/channel/status_util.h; sourceTree = ""; }; - 7F260F31E641E952A5E954B4FE17B822 /* status_errno.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = status_errno.cc; path = Firestore/core/src/util/status_errno.cc; sourceTree = ""; }; - 7F373B40B843EC14251BE74C7E298E1D /* http_uri.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_uri.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/http_uri.upbdefs.h"; sourceTree = ""; }; - 7F3DE96C86DDACCFC4EA1E1D0E1FDB57 /* FIRDocumentChange.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRDocumentChange.mm; path = Firestore/Source/API/FIRDocumentChange.mm; sourceTree = ""; }; - 7F4F623D37630E1C91747D87B48A88E5 /* db_iter.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = db_iter.cc; path = db/db_iter.cc; sourceTree = ""; }; - 7F600549E4C3CAEA911C297F7263C803 /* byte_buffer_reader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = byte_buffer_reader.h; path = include/grpc/impl/codegen/byte_buffer_reader.h; sourceTree = ""; }; - 7F68B66FA26669911A340D622679C840 /* rls_config.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rls_config.upbdefs.h; path = "src/core/ext/upbdefs-generated/src/proto/grpc/lookup/v1/rls_config.upbdefs.h"; sourceTree = ""; }; - 7F8EEEB03170AF5301709D5C852CD4B6 /* token_bucket.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = token_bucket.upb.c; path = "src/core/ext/upb-generated/envoy/type/v3/token_bucket.upb.c"; sourceTree = ""; }; - 7F8F68011599A37679C69A6BC10FB9E8 /* prefilter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = prefilter.h; path = third_party/re2/re2/prefilter.h; sourceTree = ""; }; - 7F92C856A59D62760DE32F1288F77A1F /* client_channel_channelz.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = client_channel_channelz.h; path = src/core/ext/filters/client_channel/client_channel_channelz.h; sourceTree = ""; }; - 7F989746341F0BEE30833BA07281D08A /* log_linux.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = log_linux.cc; path = src/core/lib/gpr/log_linux.cc; sourceTree = ""; }; - 7FA4AF3280CD0C83C3079000FD578F65 /* load_bundle_task.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = load_bundle_task.cc; path = Firestore/core/src/api/load_bundle_task.cc; sourceTree = ""; }; - 7FD49E5A4AAE8B9CAB8BFF4FBC86B3A6 /* hpack_encoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hpack_encoder.h; path = src/core/ext/transport/chttp2/transport/hpack_encoder.h; sourceTree = ""; }; - 7FDDA46BD60DD27D9F313950C23BF62C /* low_level_hash.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = low_level_hash.cc; path = absl/hash/internal/low_level_hash.cc; sourceTree = ""; }; - 7FFBB2575934A84CD4407EAC5962C6CA /* xds_transport_grpc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_transport_grpc.h; path = src/core/ext/xds/xds_transport_grpc.h; sourceTree = ""; }; - 7FFF8F8B755CAC2D34862950D37F0D3F /* GoogleUtilities-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "GoogleUtilities-Info.plist"; sourceTree = ""; }; - 80385C8C2256402D3B2A4EAB15E588F6 /* mini_table.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mini_table.h; path = third_party/upb/upb/mini_table.h; sourceTree = ""; }; - 80503B25F026ABE1D34036BB6F82FD89 /* metrics_service.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = metrics_service.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/metrics/v3/metrics_service.upbdefs.h"; sourceTree = ""; }; - 806BAF4EE90D0D2B91CCAE4DC1B5A6D7 /* frame_data.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = frame_data.h; path = src/core/ext/transport/chttp2/transport/frame_data.h; sourceTree = ""; }; - 806FFFE5B67D1D312258AB06EF0F64CC /* arena.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = arena.h; path = third_party/upb/upb/arena.h; sourceTree = ""; }; - 807951AC5231970558C0691BD7C44F49 /* string.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = string.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/type/matcher/v3/string.upbdefs.c"; sourceTree = ""; }; - 808DADD1163D99D62CD2040A0951D7BA /* nanopb-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "nanopb-Info.plist"; sourceTree = ""; }; - 80AAAF09ABB2AAA0D3DFFDBB21E4F4AF /* prefetch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = prefetch.h; path = absl/base/internal/prefetch.h; sourceTree = ""; }; - 80ABAE17CFDAFA8A6FC6E016036E6549 /* tls_certificate_provider.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = tls_certificate_provider.cc; path = src/cpp/common/tls_certificate_provider.cc; sourceTree = ""; }; - 80AF1F0D0C509D9CF4E8B525F2373ACA /* FIRAuthKeychainServices.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthKeychainServices.m; path = FirebaseAuth/Sources/Storage/FIRAuthKeychainServices.m; sourceTree = ""; }; - 80DB711C83A796318C346A1EF369475C /* FIRMultiFactorSession.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRMultiFactorSession.m; path = FirebaseAuth/Sources/MultiFactor/FIRMultiFactorSession.m; sourceTree = ""; }; - 80F70BF806CE44CA998F1BA1F64C86AB /* clusters.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = clusters.upb.h; path = "src/core/ext/upb-generated/envoy/admin/v3/clusters.upb.h"; sourceTree = ""; }; - 80F8D7ED95FA6EBB82179E594C725F28 /* number.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = number.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/type/matcher/v3/number.upbdefs.c"; sourceTree = ""; }; - 80FB8905D1EECA2DC4B6D1AF4BC3FF26 /* FSTUserDataWriter.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FSTUserDataWriter.mm; path = Firestore/Source/API/FSTUserDataWriter.mm; sourceTree = ""; }; - 80FBEBD6406D2618EF107128B920DCE3 /* FirebaseCoreInternal.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseCoreInternal.release.xcconfig; sourceTree = ""; }; - 80FC628D1A20AB51A574B199CA15C5F9 /* p224-64.c */ = {isa = PBXFileReference; includeInIndex = 1; name = "p224-64.c"; path = "src/crypto/fipsmodule/ec/p224-64.c"; sourceTree = ""; }; - 8118F123AD46EE0C21B3868128CDA121 /* http.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http.upb.h; path = "src/core/ext/upb-generated/envoy/type/v3/http.upb.h"; sourceTree = ""; }; - 81254AEBF64CAAEABF9CE39E14A1F6E8 /* FIRComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponent.h; path = FirebaseCore/Extension/FIRComponent.h; sourceTree = ""; }; - 8125D65435B3BCEA337C9905727030BE /* backoff.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = backoff.h; path = src/core/lib/backoff/backoff.h; sourceTree = ""; }; - 8136A3EE099FED7E6FC4222022DB099B /* FIRVerifyClientResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRVerifyClientResponse.h; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyClientResponse.h; sourceTree = ""; }; - 81418C93A311F0492F62A8F88C3BD66B /* FirebaseAppCheckInterop */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = FirebaseAppCheckInterop; path = FirebaseAppCheckInterop.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 815D417A78A5084D6A23C2F7423B0AC6 /* tasn_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = tasn_enc.c; path = src/crypto/asn1/tasn_enc.c; sourceTree = ""; }; - 816E641178492EC88C56FE354C504DD9 /* FIRSnapshotMetadata.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRSnapshotMetadata.mm; path = Firestore/Source/API/FIRSnapshotMetadata.mm; sourceTree = ""; }; - 817B3FB5ECC867B28B733CB0B1D4D3E2 /* FIRDeleteAccountRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRDeleteAccountRequest.m; path = FirebaseAuth/Sources/Backend/RPC/FIRDeleteAccountRequest.m; sourceTree = ""; }; - 818209FEDE4C40891B8F42B00FE690E0 /* key_field_not_in_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = key_field_not_in_filter.cc; path = Firestore/core/src/core/key_field_not_in_filter.cc; sourceTree = ""; }; - 8191DCA630090C33832EA084A1B77A9C /* deprecation.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = deprecation.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/annotations/deprecation.upbdefs.c"; sourceTree = ""; }; - 8194AA320AB8FAD421BB90AC70767FFD /* conf.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = conf.h; path = src/include/openssl/conf.h; sourceTree = ""; }; - 81AA2138E20060E7B193DCE068D5CBB1 /* compression_types.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = compression_types.h; path = include/grpc/impl/codegen/compression_types.h; sourceTree = ""; }; - 81AC9E6107EE9351C13FAC2DF6C9D7A6 /* rbac.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rbac.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/extensions/filters/http/rbac/v3/rbac.upbdefs.h"; sourceTree = ""; }; - 81CEF159C4EE4631B5FC8EA7CCE1983F /* create_channel_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = create_channel_posix.h; path = include/grpcpp/create_channel_posix.h; sourceTree = ""; }; - 81D16BCC8091077027780C7A49CD622A /* certificate_provider_registry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = certificate_provider_registry.h; path = src/core/lib/security/certificate_provider/certificate_provider_registry.h; sourceTree = ""; }; - 81DEB8B9EB08A87AC92E5FA190E87955 /* dynamic_ot.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dynamic_ot.upb.c; path = "src/core/ext/upb-generated/envoy/config/trace/v3/dynamic_ot.upb.c"; sourceTree = ""; }; - 81E1E4F3DB7DE84F6A63B034EC3416B5 /* FIRIdentityToolkitRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRIdentityToolkitRequest.m; path = FirebaseAuth/Sources/Backend/FIRIdentityToolkitRequest.m; sourceTree = ""; }; - 81EF8E3FD3C08D9097FE26B2804BB630 /* base.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = base.upb.c; path = "src/core/ext/upb-generated/envoy/config/core/v3/base.upb.c"; sourceTree = ""; }; - 81F07F542622C34DE7B68B3D00354D73 /* windows_logger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = windows_logger.h; path = util/windows_logger.h; sourceTree = ""; }; - 81FF50584EEE39E0E1601504C2917C96 /* timer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timer.h; path = src/core/lib/event_engine/posix_engine/timer.h; sourceTree = ""; }; - 820CE478CBF058B954A8D46AC8DB3BD9 /* timer_heap.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = timer_heap.cc; path = src/core/lib/iomgr/timer_heap.cc; sourceTree = ""; }; - 821137577DAEA4C7075A7C045529E49A /* pb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = pb.h; sourceTree = ""; }; - 821CD787103545B9C94AF52FE2B14308 /* alts_crypter.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = alts_crypter.cc; path = src/core/tsi/alts/frame_protector/alts_crypter.cc; sourceTree = ""; }; - 8221C0F94BE4C238CF5AEAEB4694E512 /* rpc_method.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rpc_method.h; path = include/grpcpp/impl/rpc_method.h; sourceTree = ""; }; - 822D5882A79A56C527C5E67CB90A73AF /* value.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = value.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/type/matcher/v3/value.upbdefs.c"; sourceTree = ""; }; - 825D8B270ADAEB8E8B610CE88F6D0DFB /* memory.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = memory.upb.h; path = "src/core/ext/upb-generated/envoy/admin/v3/memory.upb.h"; sourceTree = ""; }; - 826C40E83E360394F067C1A71672DCFB /* memory_mutation_queue.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = memory_mutation_queue.cc; path = Firestore/core/src/local/memory_mutation_queue.cc; sourceTree = ""; }; - 82ABCC9E75A060497AF35665C90ED606 /* scheduling_mode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = scheduling_mode.h; path = absl/base/internal/scheduling_mode.h; sourceTree = ""; }; - 82C9B6412B8932479735E94CC934DDCB /* token_bucket.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = token_bucket.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/v3/token_bucket.upbdefs.h"; sourceTree = ""; }; - 82D13C1CD8A7FD8B0769017004CC7D6E /* cpp_impl_of.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cpp_impl_of.h; path = src/core/lib/gprpp/cpp_impl_of.h; sourceTree = ""; }; - 82E6DAC2E4D7C06209EDB8C15F9A54CF /* statusor.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = statusor.cc; path = absl/status/statusor.cc; sourceTree = ""; }; - 82F246AFBED00DBB7EED0B26694D490F /* udp_socket_config.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = udp_socket_config.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/udp_socket_config.upb.h"; sourceTree = ""; }; - 83068067410F14D3A6489802C77D7CDA /* ads.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = ads.upb.c; path = "src/core/ext/upb-generated/envoy/service/discovery/v3/ads.upb.c"; sourceTree = ""; }; - 831031F7036CCD0A97E949AD5CEACC34 /* platform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = platform.h; path = absl/random/internal/platform.h; sourceTree = ""; }; - 8320552248AB2DDEE0499159C89D335F /* FirebaseCoreInternal-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "FirebaseCoreInternal-Info.plist"; sourceTree = ""; }; - 833C815FB9F330DD0CCD40F832505A7F /* lightstep.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lightstep.upb.h; path = "src/core/ext/upb-generated/envoy/config/trace/v3/lightstep.upb.h"; sourceTree = ""; }; - 833D776E22F65AF548485F069A406C39 /* ndk_binder.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = ndk_binder.cc; path = src/core/ext/transport/binder/utils/ndk_binder.cc; sourceTree = ""; }; - 834C045E06AE607E28692F51AFBE2F2F /* ev_poll_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ev_poll_posix.h; path = src/core/lib/iomgr/ev_poll_posix.h; sourceTree = ""; }; - 8354E6BBB5B8A3E785119E033C2760AD /* iomgr_fwd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = iomgr_fwd.h; path = src/core/lib/iomgr/iomgr_fwd.h; sourceTree = ""; }; - 8368D024F6289CD4C6ED674FE54117EB /* proxy_protocol.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = proxy_protocol.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/proxy_protocol.upbdefs.h"; sourceTree = ""; }; - 837DBE4C996FF2B821EDF138B5E9D19F /* hpack_parser_table.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hpack_parser_table.h; path = src/core/ext/transport/chttp2/transport/hpack_parser_table.h; sourceTree = ""; }; - 8392A2E20DFDD535C4CFBC81337C46F3 /* buffer_list.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = buffer_list.cc; path = src/core/lib/iomgr/buffer_list.cc; sourceTree = ""; }; - 839DD14D9ACEC67FBD86E1F203C200C2 /* ratelimit_unit.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ratelimit_unit.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/v3/ratelimit_unit.upbdefs.h"; sourceTree = ""; }; - 83A73567740F89D06423328B8E1997D6 /* secure_server_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = secure_server_credentials.cc; path = src/cpp/server/secure_server_credentials.cc; sourceTree = ""; }; - 83BCBD8913368A4D7D627ABC388471BD /* init_dump.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = init_dump.upb.h; path = "src/core/ext/upb-generated/envoy/admin/v3/init_dump.upb.h"; sourceTree = ""; }; - 83C49915B4E2E3A662A1BF4ED2CDEE28 /* client_channel.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = client_channel.cc; path = src/core/ext/filters/client_channel/client_channel.cc; sourceTree = ""; }; - 83CBE129F5D534768D4E8452DFA15CD6 /* frame_settings.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = frame_settings.h; path = src/core/ext/transport/chttp2/transport/frame_settings.h; sourceTree = ""; }; - 83DC017B516EF1CE4D3544B110C618C6 /* FIRSignInWithGameCenterResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRSignInWithGameCenterResponse.h; path = FirebaseAuth/Sources/Backend/RPC/FIRSignInWithGameCenterResponse.h; sourceTree = ""; }; - 83DD8EC8753EDE10EFE3C0A163FA0164 /* internal_errqueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal_errqueue.h; path = src/core/lib/iomgr/internal_errqueue.h; sourceTree = ""; }; - 83E7DD1707FE6C7B1F53FD828397DEDE /* time_zone_fixed.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = time_zone_fixed.cc; path = absl/time/internal/cctz/src/time_zone_fixed.cc; sourceTree = ""; }; - 83F2745B6782C6056C4F2234EEE0690D /* db_impl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = db_impl.h; path = db/db_impl.h; sourceTree = ""; }; - 83F728CDE206600531C8D2129D28BD4F /* channel_args_endpoint_config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_args_endpoint_config.h; path = src/core/lib/event_engine/channel_args_endpoint_config.h; sourceTree = ""; }; - 8427E458E2FFA55DF78F4A63F9C0B73D /* low_level_hash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = low_level_hash.h; path = absl/hash/internal/low_level_hash.h; sourceTree = ""; }; - 844AB3682B0B824BC3FBF06C48AE2E57 /* slice.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = slice.h; path = include/grpcpp/impl/codegen/slice.h; sourceTree = ""; }; - 8465EF2068ABF85475AE2C2B2E95FBCA /* throw_delegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = throw_delegate.h; path = absl/base/internal/throw_delegate.h; sourceTree = ""; }; - 848B821801DA3575DC6745DFCF758650 /* metadata_batch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = metadata_batch.h; path = src/core/lib/transport/metadata_batch.h; sourceTree = ""; }; - 8492334018510257F1E8DCB21D698D58 /* FIRAuthRPCRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthRPCRequest.h; path = FirebaseAuth/Sources/Backend/FIRAuthRPCRequest.h; sourceTree = ""; }; - 849ED0992F3C7C43F16F8B249FB47A74 /* local_security_connector.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = local_security_connector.cc; path = src/core/lib/security/security_connector/local/local_security_connector.cc; sourceTree = ""; }; - 84A4F3F91B2C9D52ACC491186DE3BA54 /* custom_tag.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = custom_tag.upb.h; path = "src/core/ext/upb-generated/envoy/type/tracing/v3/custom_tag.upb.h"; sourceTree = ""; }; - 84A9C03A9C314381842226B672C30D2C /* random.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = random.h; path = absl/random/random.h; sourceTree = ""; }; - 84AD84E8D9A75BF251E8D08E2DDBBA1C /* work_serializer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = work_serializer.h; path = src/core/lib/gprpp/work_serializer.h; sourceTree = ""; }; - 84B3B8485E6D720F6C7280236233C2EA /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/pool/internal.h; sourceTree = ""; }; - 84C46E8FCB9D83D31ED409DDA687FBA6 /* array.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = array.h; path = third_party/upb/upb/array.h; sourceTree = ""; }; - 84C80F7E574416EBB12F83AB21D66BE6 /* unicode.c */ = {isa = PBXFileReference; includeInIndex = 1; name = unicode.c; path = src/crypto/bytestring/unicode.c; sourceTree = ""; }; - 84DBC34CB824C9FDB85E6A78932C4484 /* text_encode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = text_encode.h; path = third_party/upb/upb/text_encode.h; sourceTree = ""; }; - 84DCC47D2A287317E3B7281F2A4C8983 /* FIRFinalizeMFASignInResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRFinalizeMFASignInResponse.m; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/SignIn/FIRFinalizeMFASignInResponse.m; sourceTree = ""; }; - 84E1EDE793D455A175F566985BD39333 /* placeholder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = placeholder.m; path = RecaptchaEnterprise/RecaptchaInterop/placeholder.m; sourceTree = ""; }; - 84FA9BC8A082FDD586774F74A33D2EE6 /* file_watcher_certificate_provider_factory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = file_watcher_certificate_provider_factory.h; path = src/core/ext/xds/file_watcher_certificate_provider_factory.h; sourceTree = ""; }; - 84FDBF0688626CD2DE06E87491D25C98 /* channel_creds_registry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_creds_registry.h; path = src/core/lib/security/credentials/channel_creds_registry.h; sourceTree = ""; }; - 8504118FFBFFA549777E183BE8E53AD9 /* nanopb.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = nanopb.release.xcconfig; sourceTree = ""; }; - 8508FD92179D0458B3F09BE8065DADDE /* FIRCreateAuthURIResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCreateAuthURIResponse.h; path = FirebaseAuth/Sources/Backend/RPC/FIRCreateAuthURIResponse.h; sourceTree = ""; }; - 8519B5F22D8B6E937D18D8467520D5C7 /* status.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = status.cc; path = util/status.cc; sourceTree = ""; }; - 85274F47BB234FC78CDFF31266B0A43B /* charconv.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = charconv.cc; path = absl/strings/charconv.cc; sourceTree = ""; }; - 85643CD824BEC180F5284881B578EC58 /* FIRAuthRPCResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthRPCResponse.h; path = FirebaseAuth/Sources/Backend/FIRAuthRPCResponse.h; sourceTree = ""; }; - 85847520DD5BC143BD0B6E0F3170A705 /* xds_http_fault_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = xds_http_fault_filter.cc; path = src/core/ext/xds/xds_http_fault_filter.cc; sourceTree = ""; }; - 858854339B254E98CE39BB4BCDB511AE /* cmac.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cmac.c; path = src/crypto/cmac/cmac.c; sourceTree = ""; }; - 858A462A922E3B82A20CA6FAD2D03618 /* race.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = race.h; path = src/core/lib/promise/race.h; sourceTree = ""; }; - 859BB94E68D3ECA7149DE29BA6B59C5D /* uniform_int_distribution.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = uniform_int_distribution.h; path = absl/random/uniform_int_distribution.h; sourceTree = ""; }; - 85C6556189D5572177565DD94F6659A3 /* type_check.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = type_check.h; path = src/include/openssl/type_check.h; sourceTree = ""; }; - 85C872B9D5139BA1DF0ED9F149B13434 /* global_config_env.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = global_config_env.h; path = src/core/lib/gprpp/global_config_env.h; sourceTree = ""; }; - 85DFFF7A0CE9899F31F4CC4E802D8695 /* resolve_address_windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolve_address_windows.h; path = src/core/lib/iomgr/resolve_address_windows.h; sourceTree = ""; }; - 85F9CBCAE10FA908E60594BBCC8AC8BA /* GTMSessionFetcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GTMSessionFetcher.m; path = Sources/Core/GTMSessionFetcher.m; sourceTree = ""; }; - 86041FC67937CCFD550726ACF722A663 /* range.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = range.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/v3/range.upbdefs.h"; sourceTree = ""; }; - 86243431F0B72F796DEEFDF6B79C37F2 /* jwt_verifier.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = jwt_verifier.cc; path = src/core/lib/security/credentials/jwt/jwt_verifier.cc; sourceTree = ""; }; - 8666497C2AD25B79CB7C9A3751F90311 /* promise.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = promise.h; path = src/core/lib/promise/promise.h; sourceTree = ""; }; - 8673121A5CD578B8E93FD17F72E46DE8 /* google_c2p_resolver.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = google_c2p_resolver.cc; path = src/core/ext/filters/client_channel/resolver/google_c2p/google_c2p_resolver.cc; sourceTree = ""; }; - 86889066EC0EFD4D6845ABF42DA762F6 /* route.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = route.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/route/v3/route.upbdefs.h"; sourceTree = ""; }; - 86A1397821FBF023FD9862770A13C2D8 /* encode.c */ = {isa = PBXFileReference; includeInIndex = 1; name = encode.c; path = third_party/upb/upb/encode.c; sourceTree = ""; }; - 86B9C5C3A5119EC1E5888212FE0D38E6 /* dtls_record.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = dtls_record.cc; path = src/ssl/dtls_record.cc; sourceTree = ""; }; - 86C110E4B87D4A8172FDE17B03F863C0 /* atm.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = atm.h; path = include/grpc/impl/codegen/atm.h; sourceTree = ""; }; - 86C3FE000E429114CF2087D59A39C587 /* flat_hash_map.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = flat_hash_map.h; path = absl/container/flat_hash_map.h; sourceTree = ""; }; - 86D3BC6CAB304C97FBCEFBD958CB7DB9 /* tmpfile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tmpfile.h; path = src/core/lib/gpr/tmpfile.h; sourceTree = ""; }; - 86DC1D98A5477E0CD9A2A00A6C585F55 /* http_client_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_client_filter.h; path = src/core/ext/filters/http/client/http_client_filter.h; sourceTree = ""; }; - 86E7CB4E12E01A21640549092E27EDAD /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/fipsmodule/rsa/internal.h; sourceTree = ""; }; - 86E7F2F92FEDBF61B8FB23DA53631F8A /* listener.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = listener.upb.c; path = "src/core/ext/upb-generated/envoy/config/listener/v3/listener.upb.c"; sourceTree = ""; }; - 86EECCDC7950DF55E642EB7707D1B0F3 /* thd_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = thd_posix.cc; path = src/core/lib/gprpp/thd_posix.cc; sourceTree = ""; }; - 871D792CEFAB5610D9FE2D3B61840E7A /* dh.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dh.h; path = src/include/openssl/dh.h; sourceTree = ""; }; - 872098F8965B338F6DB9DFBD7998B2BD /* cookie.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cookie.upb.h; path = "src/core/ext/upb-generated/envoy/type/http/v3/cookie.upb.h"; sourceTree = ""; }; - 8725E03DD151AC9A99D518784B08CA85 /* FirebaseCoreInternal-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FirebaseCoreInternal-umbrella.h"; sourceTree = ""; }; - 872831EAA9A59AC69B0D7E2F29E40137 /* block.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = block.cc; path = table/block.cc; sourceTree = ""; }; - 8736B2B7B6E3C11BB6F2BDA957A865A4 /* div.c */ = {isa = PBXFileReference; includeInIndex = 1; name = div.c; path = src/crypto/fipsmodule/bn/div.c; sourceTree = ""; }; - 87615091377A4FEF2DCFBB241F00A526 /* aes_gcm.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = aes_gcm.cc; path = src/core/tsi/alts/crypt/aes_gcm.cc; sourceTree = ""; }; - 8768E293985FFDB7ECC6DE7F772D8920 /* e_tls.c */ = {isa = PBXFileReference; includeInIndex = 1; name = e_tls.c; path = src/crypto/cipher_extra/e_tls.c; sourceTree = ""; }; - 876D75DD5BE64CB8902BF123031456E4 /* FirebaseAuth-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "FirebaseAuth-Info.plist"; sourceTree = ""; }; - 8780BBF38EEF34E9C83B2DE0D262ECC0 /* channel_args_preconditioning.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = channel_args_preconditioning.cc; path = src/core/lib/channel/channel_args_preconditioning.cc; sourceTree = ""; }; - 878ECAC366B38262533620EA19B646DA /* FIRSecureTokenService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRSecureTokenService.h; path = FirebaseAuth/Sources/SystemService/FIRSecureTokenService.h; sourceTree = ""; }; - 87AE9EFF3CD25BE35F438224784E372D /* FBLPromise+Testing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Testing.h"; path = "Sources/FBLPromises/include/FBLPromise+Testing.h"; sourceTree = ""; }; - 87AEB60D43C2547DBCCA459222582EA4 /* frame_handler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = frame_handler.h; path = src/core/tsi/alts/frame_protector/frame_handler.h; sourceTree = ""; }; - 87B93940D10F0576FE285EEFCCEE374E /* matcher.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = matcher.upb.h; path = "src/core/ext/upb-generated/xds/type/matcher/v3/matcher.upb.h"; sourceTree = ""; }; - 87BCADE734EFA9986098AE5E3B9AEA40 /* histogram.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = histogram.h; path = util/histogram.h; sourceTree = ""; }; - 87E1C791227E9E7062B1B73382E79D90 /* per_thread_tls.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = per_thread_tls.h; path = absl/base/internal/per_thread_tls.h; sourceTree = ""; }; - 87F44ED0BCEE0839EE70046C16633179 /* mutable_document.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = mutable_document.cc; path = Firestore/core/src/model/mutable_document.cc; sourceTree = ""; }; - 87F5C780991D7B4F360D28A1B70C6306 /* f_string.c */ = {isa = PBXFileReference; includeInIndex = 1; name = f_string.c; path = src/crypto/asn1/f_string.c; sourceTree = ""; }; - 87F7D3AE37F85569FCC718DD21ADCF14 /* FIRSetAccountInfoRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRSetAccountInfoRequest.h; path = FirebaseAuth/Sources/Backend/RPC/FIRSetAccountInfoRequest.h; sourceTree = ""; }; - 8804887D943121340330F2566D6637A9 /* trace.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = trace.upb.h; path = "src/core/ext/upb-generated/envoy/config/trace/v3/trace.upb.h"; sourceTree = ""; }; - 8811C842AD76140DDB7EEEF636AE8492 /* grpc_types.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_types.h; path = include/grpc/impl/codegen/grpc_types.h; sourceTree = ""; }; - 8824A6B84FA98AC5943EF5B1ADC853C0 /* str_join.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = str_join.h; path = absl/strings/str_join.h; sourceTree = ""; }; - 8825C89C732232E79B8C1A07F147CF94 /* resolve_address.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = resolve_address.cc; path = src/core/lib/iomgr/resolve_address.cc; sourceTree = ""; }; - 882FA820A914F9DB47B274DBD324DB86 /* wakeup_fd_pipe.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = wakeup_fd_pipe.h; path = src/core/lib/iomgr/wakeup_fd_pipe.h; sourceTree = ""; }; - 88414E1C0DFD595D44CEF5FF5C6E38FA /* FBLPromise+Always.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Always.m"; path = "Sources/FBLPromises/FBLPromise+Always.m"; sourceTree = ""; }; - 8846655D53EF79DF7810F861DB129C2E /* binder_transport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = binder_transport.h; path = src/core/ext/transport/binder/transport/binder_transport.h; sourceTree = ""; }; - 884F56D1FE18C88E04CE0C60DDC068D4 /* reflection.c */ = {isa = PBXFileReference; includeInIndex = 1; name = reflection.c; path = third_party/upb/upb/reflection.c; sourceTree = ""; }; - 8850A003D8F4009F4D78335C8103498F /* raw_logging.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = raw_logging.cc; path = absl/base/internal/raw_logging.cc; sourceTree = ""; }; - 88689FC16461B95CAEEAE8D66E3305B3 /* channelz.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channelz.h; path = src/core/lib/channel/channelz.h; sourceTree = ""; }; - 8879FF114F646378D6353C355300E510 /* circuit_breaker.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = circuit_breaker.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/cluster/v3/circuit_breaker.upbdefs.h"; sourceTree = ""; }; - 88907C487E988862F14CEA3593405F88 /* channel_args_endpoint_config.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = channel_args_endpoint_config.cc; path = src/core/lib/event_engine/channel_args_endpoint_config.cc; sourceTree = ""; }; - 889289290E4C2097E30A53E9751D3313 /* transport_security.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = transport_security.h; path = src/core/tsi/transport_security.h; sourceTree = ""; }; - 889D49C30222A0127ADFF219895821BD /* sensitive.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sensitive.upb.h; path = "src/core/ext/upb-generated/xds/annotations/v3/sensitive.upb.h"; sourceTree = ""; }; - 88B5488822B64F8AD43C855ED4079A3A /* FIRAuthWebUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthWebUtils.m; path = FirebaseAuth/Sources/Utilities/FIRAuthWebUtils.m; sourceTree = ""; }; - 88C79FDE92BEAF68B5D7A55F4F976B56 /* target_index_matcher.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = target_index_matcher.cc; path = Firestore/core/src/model/target_index_matcher.cc; sourceTree = ""; }; - 88D392182C0832BCEA0334B0DCD6F074 /* zipf_distribution.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = zipf_distribution.h; path = absl/random/zipf_distribution.h; sourceTree = ""; }; - 88D557EEB312146E3D810D761D5A19BE /* timestamp_internal.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = timestamp_internal.cc; path = Firestore/core/src/timestamp_internal.cc; sourceTree = ""; }; - 88DBF16A12144E5220E91AB339862D16 /* call_hook.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = call_hook.h; path = include/grpcpp/impl/call_hook.h; sourceTree = ""; }; - 88E28CC52CED0E3F92A4CD567F6479C9 /* duration.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = duration.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/protobuf/duration.upbdefs.h"; sourceTree = ""; }; - 88E3D434F82A78109CF36FE993070682 /* str_split.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = str_split.h; path = absl/strings/str_split.h; sourceTree = ""; }; - 88F25EC73453F84A6B3389AF26D36F5E /* alts_tsi_handshaker_private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_tsi_handshaker_private.h; path = src/core/tsi/alts/handshaker/alts_tsi_handshaker_private.h; sourceTree = ""; }; - 88F476F024A5374395E5DD65C0114F80 /* xds_certificate_provider.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = xds_certificate_provider.cc; path = src/core/ext/xds/xds_certificate_provider.cc; sourceTree = ""; }; - 88FABD19D80280E84C32E5864F3C4CE3 /* cord_rep_ring_reader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cord_rep_ring_reader.h; path = absl/strings/internal/cord_rep_ring_reader.h; sourceTree = ""; }; - 8903038F2FAA6BA24AACB58C6F64F414 /* router.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = router.upb.c; path = "src/core/ext/upb-generated/envoy/extensions/filters/http/router/v3/router.upb.c"; sourceTree = ""; }; - 890A94859AE094DAC6FF2DBDFC7E89FC /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/fipsmodule/md5/internal.h; sourceTree = ""; }; - 8914F223550732A95C8DA4544F638645 /* pollset_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = pollset_windows.cc; path = src/core/lib/iomgr/pollset_windows.cc; sourceTree = ""; }; - 89203C3CD2244463E5C9ECAE8998DBB4 /* xds_bootstrap_grpc.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = xds_bootstrap_grpc.cc; path = src/core/ext/xds/xds_bootstrap_grpc.cc; sourceTree = ""; }; - 8925B06C32C81CBDA5A5468F78CE70B4 /* thread_pool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = thread_pool.h; path = src/core/lib/event_engine/thread_pool.h; sourceTree = ""; }; - 892905525499B31B482FD8B4B4BF4A87 /* lrs.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lrs.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/service/load_stats/v3/lrs.upbdefs.c"; sourceTree = ""; }; - 892B3166A4777892545AD11693713149 /* upb.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = upb.hpp; path = third_party/upb/upb/upb.hpp; sourceTree = ""; }; - 893054A5C15F075FA41B57FDD5921EBF /* log_writer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = log_writer.h; path = db/log_writer.h; sourceTree = ""; }; - 8930948D9D5CF1ED27D395B1EDA92DC9 /* wnaf.c */ = {isa = PBXFileReference; includeInIndex = 1; name = wnaf.c; path = src/crypto/fipsmodule/ec/wnaf.c; sourceTree = ""; }; - 8948A061C9D6A81FB38E75438617295E /* string_format.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = string_format.cc; path = Firestore/core/src/util/string_format.cc; sourceTree = ""; }; - 89512A5FF8D45D6221769BD69F26E3BA /* FIRGetRecaptchaConfigRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRGetRecaptchaConfigRequest.m; path = FirebaseAuth/Sources/Backend/RPC/FIRGetRecaptchaConfigRequest.m; sourceTree = ""; }; - 897042239EB3DCA0DEDBB17D1D5F3FDD /* lb_policy_registry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lb_policy_registry.h; path = src/core/lib/load_balancing/lb_policy_registry.h; sourceTree = ""; }; - 89826072CF30C191F47DDAEC9B1FC533 /* FIRLoadBundleTask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLoadBundleTask.h; path = Firestore/Source/Public/FirebaseFirestore/FIRLoadBundleTask.h; sourceTree = ""; }; - 898A5CF6E3669F81B49981290EDBC7DD /* vdso_support.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = vdso_support.cc; path = absl/debugging/internal/vdso_support.cc; sourceTree = ""; }; - 898DFFAAFAA23F5B36BA6539F4296190 /* FIREmailAuthProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIREmailAuthProvider.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIREmailAuthProvider.h; sourceTree = ""; }; - 89A37B88DCA67A4FC56437D76A3C606D /* version_edit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = version_edit.h; path = db/version_edit.h; sourceTree = ""; }; - 89AB0D470DCAA47CE66441AEAFAA9726 /* timer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timer.h; path = src/core/lib/iomgr/timer.h; sourceTree = ""; }; - 89B128B508C0308A2AF66EF3B994E941 /* security.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = security.upbdefs.c; path = "src/core/ext/upbdefs-generated/xds/annotations/v3/security.upbdefs.c"; sourceTree = ""; }; - 89B80AD4F97A8246289BA11ADA12F794 /* t_req.c */ = {isa = PBXFileReference; includeInIndex = 1; name = t_req.c; path = src/crypto/x509/t_req.c; sourceTree = ""; }; - 89C6E2A45246954CE4696C02BBAE9E1E /* authority.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = authority.upb.h; path = "src/core/ext/upb-generated/xds/core/v3/authority.upb.h"; sourceTree = ""; }; - 89CE7E704B22BFEBF30F6FD8D911D5B8 /* quic_config.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = quic_config.upb.h; path = "src/core/ext/upb-generated/envoy/config/listener/v3/quic_config.upb.h"; sourceTree = ""; }; - 89D0043EF749D56A94B5117B1D4E74D2 /* annotations.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = annotations.upbdefs.c; path = "src/core/ext/upbdefs-generated/google/api/annotations.upbdefs.c"; sourceTree = ""; }; - 89EC5C7C3F96252D5A3A3E9C5B53ED87 /* crypto.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = crypto.h; path = src/include/openssl/crypto.h; sourceTree = ""; }; - 8A05B002E1C2350C88136402F7C62FA2 /* load_report.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = load_report.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/load_report.upbdefs.h"; sourceTree = ""; }; - 8A11E59ED9F68DCAFB41BDF0E50DBEF2 /* fake_resolver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fake_resolver.h; path = src/core/ext/filters/client_channel/resolver/fake/fake_resolver.h; sourceTree = ""; }; - 8A19B8C20DA4CA4B9B522E9C73E7E500 /* time_cc.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = time_cc.cc; path = src/cpp/util/time_cc.cc; sourceTree = ""; }; - 8A312DABDC0469C0664D6E045F608BF1 /* timestamp.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timestamp.upb.h; path = "src/core/ext/upb-generated/google/protobuf/timestamp.upb.h"; sourceTree = ""; }; - 8A5B9F81F54EDA54277587E30E47A190 /* connection_id_generator.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = connection_id_generator.cc; path = src/core/ext/transport/binder/client/connection_id_generator.cc; sourceTree = ""; }; - 8ADCF644F09FEC6F68206AE1AAC85531 /* FIREmailLinkSignInResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIREmailLinkSignInResponse.h; path = FirebaseAuth/Sources/Backend/RPC/FIREmailLinkSignInResponse.h; sourceTree = ""; }; - 8AF126228940DFBB0169093B1627DC10 /* subchannel_pool_interface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = subchannel_pool_interface.h; path = src/core/ext/filters/client_channel/subchannel_pool_interface.h; sourceTree = ""; }; - 8B0AF2E3FEADD3DC27BB0248F5B45490 /* filter.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filter.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/cluster/v3/filter.upbdefs.c"; sourceTree = ""; }; - 8B1D8FB1EDBCEA242BE829963D723BA4 /* ring_hash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ring_hash.h; path = src/core/ext/filters/client_channel/lb_policy/ring_hash/ring_hash.h; sourceTree = ""; }; - 8B2AAF91ECA5991AA1FE684962D3C2FD /* annotations.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = annotations.upb.h; path = "src/core/ext/upb-generated/google/api/annotations.upb.h"; sourceTree = ""; }; - 8B32620FBE5F15F4A3207A59D552A389 /* GULHeartbeatDateStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULHeartbeatDateStorage.m; path = GoogleUtilities/Environment/GULHeartbeatDateStorage.m; sourceTree = ""; }; - 8B41C54125BEA274B0E44A102ECDED77 /* promise_like.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = promise_like.h; path = src/core/lib/promise/detail/promise_like.h; sourceTree = ""; }; - 8B44C84EFE8AB0477BD0F27F99FA89A1 /* FIRVerifyClientRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRVerifyClientRequest.m; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyClientRequest.m; sourceTree = ""; }; - 8B524AABE529FB8A2D151B05321336E0 /* Pods-iosApp.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-iosApp.modulemap"; sourceTree = ""; }; - 8B54997B7F36D5D83DB63714ED3A7DEC /* channel_stack_builder_impl.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = channel_stack_builder_impl.cc; path = src/core/lib/channel/channel_stack_builder_impl.cc; sourceTree = ""; }; - 8B5D7F37145C59A36E04A33B8FC194EB /* api_trace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = api_trace.h; path = src/core/lib/surface/api_trace.h; sourceTree = ""; }; - 8B61857C03E965B84A0EAF37EE8B6D95 /* FIRFieldPath.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRFieldPath.h; path = Firestore/Source/Public/FirebaseFirestore/FIRFieldPath.h; sourceTree = ""; }; - 8B69B44ED2929E2569D2F2EB8BCD760D /* sensitive.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sensitive.upbdefs.h; path = "src/core/ext/upbdefs-generated/xds/annotations/v3/sensitive.upbdefs.h"; sourceTree = ""; }; - 8B6FBDD9F6D43BA31DFDE175F64970CD /* FIRAuthBackend+MultiFactor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FIRAuthBackend+MultiFactor.h"; path = "FirebaseAuth/Sources/Backend/FIRAuthBackend+MultiFactor.h"; sourceTree = ""; }; - 8B7AD78760F690032AD25D0A94C25C1D /* csds.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = csds.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/service/status/v3/csds.upbdefs.c"; sourceTree = ""; }; - 8B98D303E753456A60A4B7F70B4839A8 /* slice_refcount.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = slice_refcount.cc; path = src/core/lib/slice/slice_refcount.cc; sourceTree = ""; }; - 8BA441E380A71E80E9C27DC42C69A28E /* service_type.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = service_type.h; path = include/grpcpp/impl/codegen/service_type.h; sourceTree = ""; }; - 8BA5D96DA846DC697F71DCD755AE2F68 /* wrappers.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = wrappers.upb.c; path = "src/core/ext/upb-generated/google/protobuf/wrappers.upb.c"; sourceTree = ""; }; - 8BA9D1BCE1A72B46CF4B8526ABA1E33A /* duration.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = duration.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/protobuf/duration.upbdefs.h"; sourceTree = ""; }; - 8BC80525CCF79271C5C8B1A58A3CD6E9 /* chunked_vector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = chunked_vector.h; path = src/core/lib/gprpp/chunked_vector.h; sourceTree = ""; }; - 8BCDBD85F63ACCA4D6B97297946CA543 /* tcp_client_cfstream.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = tcp_client_cfstream.cc; path = src/core/lib/iomgr/tcp_client_cfstream.cc; sourceTree = ""; }; - 8BDED2E05255D0B70B2C68CD14A72749 /* FIRRevokeTokenResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRRevokeTokenResponse.h; path = FirebaseAuth/Sources/Backend/RPC/FIRRevokeTokenResponse.h; sourceTree = ""; }; - 8BE1B22595B00D49F90DDCB06D605521 /* pb_common.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = pb_common.h; sourceTree = ""; }; - 8BE75FF40E37F53EEAB7334875B89C78 /* FIRAuthProtoFinalizeMFATOTPEnrollmentResponseInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthProtoFinalizeMFATOTPEnrollmentResponseInfo.h; path = FirebaseAuth/Sources/Backend/RPC/Proto/TOTP/FIRAuthProtoFinalizeMFATOTPEnrollmentResponseInfo.h; sourceTree = ""; }; - 8BEC4E31F6DD4BEDABEB2E60E92DD19F /* frame_handler.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = frame_handler.cc; path = src/core/tsi/alts/frame_protector/frame_handler.cc; sourceTree = ""; }; - 8BF12259FE5936B21FF6A2969EF1AD9D /* xds_routing.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = xds_routing.cc; path = src/core/ext/xds/xds_routing.cc; sourceTree = ""; }; - 8C0FA5E304669C11EC0A8B1EF7993130 /* common.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = common.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/common.upbdefs.h"; sourceTree = ""; }; - 8C15C272B5C4DAAA2BE416AB48275ADC /* cert.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cert.upb.h; path = "src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/cert.upb.h"; sourceTree = ""; }; - 8C195AE2A264D3FC94B4721E8D6FC997 /* db_impl.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = db_impl.cc; path = db/db_impl.cc; sourceTree = ""; }; - 8C203B763C0F64BD90C662D7489CF35F /* checked.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = checked.upb.c; path = "src/core/ext/upb-generated/google/api/expr/v1alpha1/checked.upb.c"; sourceTree = ""; }; - 8C2D8E60B8DD73E74E64BA02300F6645 /* FIRSignUpNewUserResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRSignUpNewUserResponse.m; path = FirebaseAuth/Sources/Backend/RPC/FIRSignUpNewUserResponse.m; sourceTree = ""; }; - 8C424CD3ACB65E2A762CFAB11BDC4839 /* rsa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rsa.c; path = src/crypto/fipsmodule/rsa/rsa.c; sourceTree = ""; }; - 8C4402D5341D22672D9FDE780779B8D3 /* errno_saver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = errno_saver.h; path = absl/base/internal/errno_saver.h; sourceTree = ""; }; - 8C4A149D171AFA29986FD92EAAF3CE09 /* port.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = port.h; path = src/core/lib/iomgr/port.h; sourceTree = ""; }; - 8C6A1F7BA835D53098452869706572F8 /* channel_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = channel_filter.cc; path = src/cpp/common/channel_filter.cc; sourceTree = ""; }; - 8C6E2882C5D5BB6473DF3DF853B9B124 /* xds_certificate_provider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_certificate_provider.h; path = src/core/ext/xds/xds_certificate_provider.h; sourceTree = ""; }; - 8C7ADE38C5F3FBC0BDA9F33871BC3944 /* stack.c */ = {isa = PBXFileReference; includeInIndex = 1; name = stack.c; path = src/crypto/stack/stack.c; sourceTree = ""; }; - 8C7CF3978703F93475652EFF78FFBC7E /* http.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = http.upbdefs.c; path = "src/core/ext/upbdefs-generated/google/api/http.upbdefs.c"; sourceTree = ""; }; - 8C824D77D7F37525D1AA5EBB985A046C /* table.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = table.h; path = include/leveldb/table.h; sourceTree = ""; }; - 8C9331B71B158937C138EDF9DCFF23B7 /* subchannel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = subchannel.h; path = src/core/ext/filters/client_channel/subchannel.h; sourceTree = ""; }; - 8CBF6F5274998BF4495F5A8B0E1A43E7 /* http_tracer.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_tracer.upb.h; path = "src/core/ext/upb-generated/envoy/config/trace/v3/http_tracer.upb.h"; sourceTree = ""; }; - 8CC456FFC90777410195C72C499AEE17 /* cord_rep_ring.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cord_rep_ring.h; path = absl/strings/internal/cord_rep_ring.h; sourceTree = ""; }; - 8CCC207B78A0EBB69AFCE7A0D14056AE /* time_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = time_posix.cc; path = src/core/lib/gpr/time_posix.cc; sourceTree = ""; }; - 8CCC6FC79534ACC5FA7387B4371CDCD5 /* grpclb.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = grpclb.cc; path = src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.cc; sourceTree = ""; }; - 8CEEC39FCEB85AFEEC26A5CF82BDF1AA /* FIRFieldValue.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRFieldValue.mm; path = Firestore/Source/API/FIRFieldValue.mm; sourceTree = ""; }; - 8CEEECA7FE44E7D147F2000D3B5B8659 /* overload.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = overload.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/overload/v3/overload.upbdefs.c"; sourceTree = ""; }; - 8D0CA8486581ADBC2362788F8FBD96DC /* string.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = string.upb.h; path = "src/core/ext/upb-generated/xds/type/matcher/v3/string.upb.h"; sourceTree = ""; }; - 8D0FDD6996E0E4699B1071F1F2F9FEAB /* hash_policy.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hash_policy.upb.h; path = "src/core/ext/upb-generated/envoy/type/v3/hash_policy.upb.h"; sourceTree = ""; }; - 8D236A13FFE1293FC6738E2D0BF6423A /* time_precise.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = time_precise.cc; path = src/core/lib/gpr/time_precise.cc; sourceTree = ""; }; - 8D2578513CB6EEA16F28F9B0B4F36BD4 /* FBLPromise+Then.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Then.h"; path = "Sources/FBLPromises/include/FBLPromise+Then.h"; sourceTree = ""; }; - 8D37120699B40C0605266C112A938644 /* string.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = string.upbdefs.h; path = "src/core/ext/upbdefs-generated/xds/type/matcher/v3/string.upbdefs.h"; sourceTree = ""; }; - 8D3FF9734DC721CEC53FCD4ED190B6EB /* hash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hash.h; path = absl/hash/internal/hash.h; sourceTree = ""; }; - 8D549777CD84CBAB4CF0DDAF063CA817 /* huffsyms.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = huffsyms.h; path = src/core/ext/transport/chttp2/transport/huffsyms.h; sourceTree = ""; }; - 8D5EEAD7A7FB191398B526CD7C02E8E0 /* FIRSendVerificationCodeResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRSendVerificationCodeResponse.m; path = FirebaseAuth/Sources/Backend/RPC/FIRSendVerificationCodeResponse.m; sourceTree = ""; }; - 8D7B7D076E7DA0BDF61753E63EBB3B19 /* FIRFirestore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRFirestore.h; path = Firestore/Source/Public/FirebaseFirestore/FIRFirestore.h; sourceTree = ""; }; - 8D8108D8B644676C6E928A1C252614F1 /* vdso_support.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = vdso_support.h; path = absl/debugging/internal/vdso_support.h; sourceTree = ""; }; - 8D853E2C84D43EB18E0BD10DC7CC36B7 /* format.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = format.cc; path = table/format.cc; sourceTree = ""; }; - 8D8A5D8E67487EB8DE4178EE03B73D03 /* fault.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = fault.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/extensions/filters/http/fault/v3/fault.upbdefs.c"; sourceTree = ""; }; - 8D8B0177CF77D9CFF615706D581C270D /* elf_mem_image.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = elf_mem_image.h; path = absl/debugging/internal/elf_mem_image.h; sourceTree = ""; }; - 8DAE34F466CDFDC3CED464B2D788E082 /* notification.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = notification.h; path = src/core/lib/gprpp/notification.h; sourceTree = ""; }; - 8DCD8FDB6C0B0A668BDEB79033E83308 /* scoped_route.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = scoped_route.upb.h; path = "src/core/ext/upb-generated/envoy/config/route/v3/scoped_route.upb.h"; sourceTree = ""; }; - 8DEA50C2D4B505B88A4D348FBE5FE455 /* chacha.c */ = {isa = PBXFileReference; includeInIndex = 1; name = chacha.c; path = src/crypto/chacha/chacha.c; sourceTree = ""; }; - 8E01E7F74394EC112630BFF4E89E8EAC /* http_tracer.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_tracer.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/trace/v3/http_tracer.upbdefs.h"; sourceTree = ""; }; - 8E0FFB05D22DEBF5FDE438AF01DBBF61 /* randen_detect.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = randen_detect.h; path = absl/random/internal/randen_detect.h; sourceTree = ""; }; - 8E37A08848FB168A3CD446827638ED03 /* nameser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = nameser.h; path = src/core/lib/iomgr/nameser.h; sourceTree = ""; }; - 8E4A432438E0A11F90BE2B08951B2885 /* status.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.h; path = include/grpc/impl/codegen/status.h; sourceTree = ""; }; - 8E54B0D90ECFBECE0B81E12C5F4C62E5 /* filesystem_common.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = filesystem_common.cc; path = Firestore/core/src/util/filesystem_common.cc; sourceTree = ""; }; - 8E589F26721EC7A5AB17EEDA47AB0017 /* channel_interface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_interface.h; path = include/grpcpp/impl/codegen/channel_interface.h; sourceTree = ""; }; - 8E5A4A62A40CCF7F553E607246FCEC7E /* RecaptchaInterop-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RecaptchaInterop-dummy.m"; sourceTree = ""; }; - 8E89AEDF61E0BE66CD6E77AD4034898C /* time_zone_impl.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = time_zone_impl.cc; path = absl/time/internal/cctz/src/time_zone_impl.cc; sourceTree = ""; }; - 8EC2D6D1BF6239E1204779E205989C09 /* rls_config.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rls_config.upb.c; path = "src/core/ext/upb-generated/src/proto/grpc/lookup/v1/rls_config.upb.c"; sourceTree = ""; }; - 8EF141D491924B08F34E88D960B9A6F9 /* v3_lib.c */ = {isa = PBXFileReference; includeInIndex = 1; name = v3_lib.c; path = src/crypto/x509v3/v3_lib.c; sourceTree = ""; }; - 8EF8A35991D4E6CE200CA75EB9FEF6D1 /* rune.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = rune.cc; path = third_party/re2/util/rune.cc; sourceTree = ""; }; - 8EF9D8F91A4CF04751CDC0FBFA869B5E /* empty.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = empty.upbdefs.c; path = "src/core/ext/upbdefs-generated/google/protobuf/empty.upbdefs.c"; sourceTree = ""; }; - 8F10B917EC9D6D257321E20940C1C50C /* lb_policy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lb_policy.h; path = src/core/lib/load_balancing/lb_policy.h; sourceTree = ""; }; - 8F126583FC51D8C29967B9C0614883CD /* def.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = def.hpp; path = third_party/upb/upb/def.hpp; sourceTree = ""; }; - 8F1852BA1E97745C409E9B029D50E8FA /* table_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = table_internal.h; path = third_party/upb/upb/table_internal.h; sourceTree = ""; }; - 8F31210DF8106DF7B1674A5387208CCB /* status.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.h; path = include/leveldb/status.h; sourceTree = ""; }; - 8F331CD633F22585B4462B041D7C6F9F /* GULMutableDictionary.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULMutableDictionary.m; path = GoogleUtilities/Network/GULMutableDictionary.m; sourceTree = ""; }; - 8F4C1DA0086D63908548B978FF04C4C7 /* local_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = local_credentials.h; path = src/core/lib/security/credentials/local/local_credentials.h; sourceTree = ""; }; - 8F4EE9F5A1D5223ABF5B9850905E82F1 /* jwt_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = jwt_credentials.h; path = src/core/lib/security/credentials/jwt/jwt_credentials.h; sourceTree = ""; }; - 8F90F898FEA07264FFECC3A869FEFCF9 /* tcp_client_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = tcp_client_posix.cc; path = src/core/lib/iomgr/tcp_client_posix.cc; sourceTree = ""; }; - 8F9143CDE90519AB42C652F71A040D17 /* accesslog.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = accesslog.upb.h; path = "src/core/ext/upb-generated/envoy/config/accesslog/v3/accesslog.upb.h"; sourceTree = ""; }; - 8F9676DFBB10CF6E003DE27398F7901B /* alts_security_connector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_security_connector.h; path = src/core/lib/security/security_connector/alts/alts_security_connector.h; sourceTree = ""; }; - 8FAADD74A4CEAAF0041BBE766FF7D54D /* byte_buffer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = byte_buffer.h; path = include/grpc/impl/codegen/byte_buffer.h; sourceTree = ""; }; - 8FAB184EDFF10B625D62C6DD4F6E019F /* tls_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tls_utils.h; path = src/core/lib/security/credentials/tls/tls_utils.h; sourceTree = ""; }; - 8FAEE300B6D0508E05E10360A13251C5 /* cord_rep_btree.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cord_rep_btree.h; path = absl/strings/internal/cord_rep_btree.h; sourceTree = ""; }; - 8FDF86A9CE9EDBD7959EFAA5E87473F0 /* socket_mutator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = socket_mutator.h; path = src/core/lib/iomgr/socket_mutator.h; sourceTree = ""; }; - 8FE410580CDA5934CFB1CEA886F1F482 /* poller.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = poller.h; path = src/core/lib/event_engine/poller.h; sourceTree = ""; }; - 900319D93BC6A070EFF660C655506A07 /* client_channel_channelz.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = client_channel_channelz.cc; path = src/core/ext/filters/client_channel/client_channel_channelz.cc; sourceTree = ""; }; - 9004A695FBA223A06055F99A886D4754 /* construct_destruct.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = construct_destruct.h; path = src/core/lib/gprpp/construct_destruct.h; sourceTree = ""; }; - 901859CA44FE775E9DA45F0D436FE4C5 /* FIRHeartbeatLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRHeartbeatLogger.h; path = FirebaseCore/Extension/FIRHeartbeatLogger.h; sourceTree = ""; }; - 90267A3BFA5ED8C2FBC84DAA31F9BA9B /* iostream_state_saver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = iostream_state_saver.h; path = absl/random/internal/iostream_state_saver.h; sourceTree = ""; }; - 90325FF1BB2B0D56DA50309AADB0D377 /* GTMSessionFetcherService+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "GTMSessionFetcherService+Internal.h"; path = "Sources/Core/GTMSessionFetcherService+Internal.h"; sourceTree = ""; }; - 903C51085931C5089DC145495DC79220 /* transaction_runner.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = transaction_runner.cc; path = Firestore/core/src/core/transaction_runner.cc; sourceTree = ""; }; - 903D130B9FF62FD794FDD89A3321E9A7 /* pair.c */ = {isa = PBXFileReference; includeInIndex = 1; name = pair.c; path = src/crypto/bio/pair.c; sourceTree = ""; }; - 9055BD3085E59795884A5FB6A4090F38 /* channel_stack.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_stack.h; path = src/core/lib/channel/channel_stack.h; sourceTree = ""; }; - 905A183262F24CC6250AD6680E587C01 /* stacktrace_x86-inl.inc */ = {isa = PBXFileReference; includeInIndex = 1; name = "stacktrace_x86-inl.inc"; path = "absl/debugging/internal/stacktrace_x86-inl.inc"; sourceTree = ""; }; - 905E96D25B25A1A69E7E76F35599D465 /* event_string.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = event_string.cc; path = src/core/lib/surface/event_string.cc; sourceTree = ""; }; - 9069C6857E78A10833895731C135A115 /* certificate_provider_store.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = certificate_provider_store.h; path = src/core/ext/xds/certificate_provider_store.h; sourceTree = ""; }; - 909904BD4BB698B790BCE64649DD0143 /* authorization_policy_provider_vtable.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = authorization_policy_provider_vtable.cc; path = src/core/lib/security/authorization/authorization_policy_provider_vtable.cc; sourceTree = ""; }; - 909BD7402DFE6D0D50EF17F47E6FD290 /* intra_activity_waiter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = intra_activity_waiter.h; path = src/core/lib/promise/intra_activity_waiter.h; sourceTree = ""; }; - 909DDA92FEAD88E6369056CC5E1D4B25 /* httpbody.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = httpbody.upb.h; path = "src/core/ext/upb-generated/google/api/httpbody.upb.h"; sourceTree = ""; }; - 90A9A0B9284FC7D550BE12E42A26CCFA /* FIRGetAccountInfoResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRGetAccountInfoResponse.h; path = FirebaseAuth/Sources/Backend/RPC/FIRGetAccountInfoResponse.h; sourceTree = ""; }; - 90B11AE02C7594A58A7EB5C514183147 /* error_cfstream.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = error_cfstream.cc; path = src/core/lib/iomgr/error_cfstream.cc; sourceTree = ""; }; - 90D7736E94865F980E6231AEC7072DAB /* stacktrace_powerpc-inl.inc */ = {isa = PBXFileReference; includeInIndex = 1; name = "stacktrace_powerpc-inl.inc"; path = "absl/debugging/internal/stacktrace_powerpc-inl.inc"; sourceTree = ""; }; - 90D87CCF06818BEA988476B14CE8EEEB /* any_invocable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = any_invocable.h; path = absl/functional/internal/any_invocable.h; sourceTree = ""; }; - 910C67E60889CC19B7C747B9B9025E07 /* timer_manager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timer_manager.h; path = src/core/lib/iomgr/timer_manager.h; sourceTree = ""; }; - 910CBFE27A1F44E18B1DE0FEE7213E80 /* FIRAuthGlobalWorkQueue.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthGlobalWorkQueue.m; path = FirebaseAuth/Sources/Auth/FIRAuthGlobalWorkQueue.m; sourceTree = ""; }; - 910FAB6E3C21C0E2C2674AC3C15DA542 /* FBLPromise+Retry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Retry.h"; path = "Sources/FBLPromises/include/FBLPromise+Retry.h"; sourceTree = ""; }; - 911EA92095E7913F4BCF5650897CFD52 /* channel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel.h; path = include/grpcpp/channel.h; sourceTree = ""; }; - 913F64102EF1A9950DC5DFE664C3DDCB /* channel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel.h; path = src/core/lib/surface/channel.h; sourceTree = ""; }; - 913FF0432CFB90217E21CD9369D28FBA /* stream.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = stream.cc; path = Firestore/core/src/remote/stream.cc; sourceTree = ""; }; - 91413E3AE1E69BB40C5DD5A94334F345 /* cpu-arm-linux.c */ = {isa = PBXFileReference; includeInIndex = 1; name = "cpu-arm-linux.c"; path = "src/crypto/cpu-arm-linux.c"; sourceTree = ""; }; - 915CBB4C8E3DF85B5720CB4944C7FB30 /* bin_encoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bin_encoder.h; path = src/core/ext/transport/chttp2/transport/bin_encoder.h; sourceTree = ""; }; - 91831D44DBD7E8C63116361B4F889A01 /* rls_config.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rls_config.upbdefs.h; path = "src/core/ext/upbdefs-generated/src/proto/grpc/lookup/v1/rls_config.upbdefs.h"; sourceTree = ""; }; - 9191D05A0B38957452ECFA760D80CFFB /* http_inputs.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_inputs.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/matcher/v3/http_inputs.upbdefs.h"; sourceTree = ""; }; - 91AB5FE31E12C9E1DB94E0F5CCDEA183 /* byte_stream_cpp.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = byte_stream_cpp.cc; path = Firestore/core/src/util/byte_stream_cpp.cc; sourceTree = ""; }; - 91BF4E6074A0720B29BEE759CEF640AF /* sync_custom.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sync_custom.h; path = include/grpc/support/sync_custom.h; sourceTree = ""; }; - 91C87991687926E42F3A2F6676B593F3 /* call_test_only.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = call_test_only.h; path = src/core/lib/surface/call_test_only.h; sourceTree = ""; }; - 91D12EFBB72810CBC71639806DD67C7D /* buffer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = buffer.h; path = src/include/openssl/buffer.h; sourceTree = ""; }; - 91DB6135A2522289145F86EBC4D64FE9 /* alts_tsi_handshaker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_tsi_handshaker.h; path = src/core/tsi/alts/handshaker/alts_tsi_handshaker.h; sourceTree = ""; }; - 91E3672ED1271A622E2943C1B6A4BF92 /* authority.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = authority.upb.c; path = "src/core/ext/upb-generated/xds/core/v3/authority.upb.c"; sourceTree = ""; }; - 91EA8C3BA5D0333B7E2F3976816531AD /* create_channel_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = create_channel_internal.h; path = src/cpp/client/create_channel_internal.h; sourceTree = ""; }; - 91F6FAAB32BA5853A6EEA61402B30223 /* status.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = status.upb.c; path = "src/core/ext/upb-generated/google/rpc/status.upb.c"; sourceTree = ""; }; - 92000153CD73F7FC2DBAB4AB708269F3 /* FirebaseFirestore */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = FirebaseFirestore; path = FirebaseFirestore.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 9205C24B2F9D4090414E476A661067F8 /* rls.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rls.upb.h; path = "src/core/ext/upb-generated/src/proto/grpc/lookup/v1/rls.upb.h"; sourceTree = ""; }; - 920D344E6B620528C55CE7EE8270B3B2 /* FIRTOTPMultiFactorInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRTOTPMultiFactorInfo.h; path = FirebaseAuth/Sources/MultiFactor/TOTP/FIRTOTPMultiFactorInfo.h; sourceTree = ""; }; - 921C872891295C9EB31BF8C5D51C590E /* unique_type_name.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = unique_type_name.h; path = src/core/lib/gprpp/unique_type_name.h; sourceTree = ""; }; - 921D6F5945B42258494ABDFE97F57662 /* number.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = number.upb.c; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/number.upb.c"; sourceTree = ""; }; - 9234626C2196E30A0F3884645936B11A /* options.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = options.cc; path = util/options.cc; sourceTree = ""; }; - 923841783C0151DC50C1AED63E4909B0 /* err_data.c */ = {isa = PBXFileReference; includeInIndex = 1; path = err_data.c; sourceTree = ""; }; - 923FEDDF9CA3B1A0D9779708ABEAA628 /* gRPC-Core-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "gRPC-Core-dummy.m"; sourceTree = ""; }; - 92479FC78EF86A6D60DDD788A64916DA /* stats.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stats.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/metrics/v3/stats.upbdefs.h"; sourceTree = ""; }; - 926F0100CFEC69D4A60131931842E39C /* FIRUser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRUser.m; path = FirebaseAuth/Sources/User/FIRUser.m; sourceTree = ""; }; - 927E1197D70B241B45BEB7573DC0F4F7 /* matchers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = matchers.h; path = src/core/lib/matchers/matchers.h; sourceTree = ""; }; - 92A8C8886534F99480F5CEC565823CC3 /* security_handshaker.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = security_handshaker.cc; path = src/core/lib/security/transport/security_handshaker.cc; sourceTree = ""; }; - 92C5FEE6A4D726E49B64835A36B09969 /* stats.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stats.upb.h; path = "src/core/ext/upb-generated/envoy/config/metrics/v3/stats.upb.h"; sourceTree = ""; }; - 92DA656D05D7F7EA7AAF5DB9CFBE8A20 /* http.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http.upb.h; path = "src/core/ext/upb-generated/envoy/type/v3/http.upb.h"; sourceTree = ""; }; - 92EA783791A6255700D99F0EF89822CD /* alpn.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alpn.h; path = src/core/ext/transport/chttp2/alpn/alpn.h; sourceTree = ""; }; - 92EFDE241CA0F3E7F3732BE4A273C996 /* lightstep.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lightstep.upb.c; path = "src/core/ext/upb-generated/envoy/config/trace/v3/lightstep.upb.c"; sourceTree = ""; }; - 92F5AA7799549934A3FCF5022D40D663 /* channel_init.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_init.h; path = src/core/lib/surface/channel_init.h; sourceTree = ""; }; - 930826F5EDF72BECBF317C99036E1AEB /* http_filters_plugin.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = http_filters_plugin.cc; path = src/core/ext/filters/http/http_filters_plugin.cc; sourceTree = ""; }; - 9312C96DC21ACDBA4B7BC1892CB6EA04 /* jwt_verifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = jwt_verifier.h; path = src/core/lib/security/credentials/jwt/jwt_verifier.h; sourceTree = ""; }; - 931F00845085134A7761CDFFAA1F1C49 /* byte_buffer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = byte_buffer.h; path = include/grpcpp/impl/codegen/byte_buffer.h; sourceTree = ""; }; - 932587BFC6F2FC4B233E9F033C0D54BA /* memory_remote_document_cache.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = memory_remote_document_cache.cc; path = Firestore/core/src/local/memory_remote_document_cache.cc; sourceTree = ""; }; - 9327E2DFDF1E55E93E51E2EB2D5BEB30 /* local_subchannel_pool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = local_subchannel_pool.h; path = src/core/ext/filters/client_channel/local_subchannel_pool.h; sourceTree = ""; }; - 932ACBE39D4B9A034968C27E1B6D6437 /* string_util.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = string_util.cc; path = Firestore/core/src/util/string_util.cc; sourceTree = ""; }; - 932B8FCC5C539EC567D98AD4AC3F00F2 /* hash_policy.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hash_policy.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/v3/hash_policy.upbdefs.h"; sourceTree = ""; }; - 936CA9C5F7CD89CA3CE009BEE806660C /* secure_channel_arguments.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = secure_channel_arguments.cc; path = src/cpp/common/secure_channel_arguments.cc; sourceTree = ""; }; - 936DB1A15FD757DC8F8CF3F445A4A2C6 /* FIRMultiFactorSession.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRMultiFactorSession.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRMultiFactorSession.h; sourceTree = ""; }; - 936DEAE0DDAA100CB54678057411E09E /* resource_quota.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource_quota.h; path = src/core/lib/resource_quota/resource_quota.h; sourceTree = ""; }; - 9385F78A37B9C335B33102338D5522DF /* init_internally.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = init_internally.cc; path = src/core/lib/surface/init_internally.cc; sourceTree = ""; }; - 93A3A82C9DE223357DB39430C200D2B7 /* load_report.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = load_report.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/load_report.upbdefs.c"; sourceTree = ""; }; - 93AE143FC736025CB9937AD2B30B1AA4 /* p256_64.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = p256_64.h; path = src/third_party/fiat/p256_64.h; sourceTree = ""; }; - 93BC0C8A2928C262C2EA37A096C25783 /* default_event_engine_factory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = default_event_engine_factory.h; path = src/core/lib/event_engine/default_event_engine_factory.h; sourceTree = ""; }; - 93D0A2031131711A048901AB90D5BB18 /* ecdh.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ecdh.h; path = src/include/openssl/ecdh.h; sourceTree = ""; }; - 93DA2AAFB02711A35946504164108AA9 /* pem_all.c */ = {isa = PBXFileReference; includeInIndex = 1; name = pem_all.c; path = src/crypto/pem/pem_all.c; sourceTree = ""; }; - 93DF81CE698F227F3F1626A1A431B36C /* xds_cluster_specifier_plugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_cluster_specifier_plugin.h; path = src/core/ext/xds/xds_cluster_specifier_plugin.h; sourceTree = ""; }; - 93E1D2292491007E908DD9F0596831C0 /* set.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = set.cc; path = third_party/re2/re2/set.cc; sourceTree = ""; }; - 93EA384982455290DC53F3B566C8941F /* status.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.h; path = include/grpcpp/support/status.h; sourceTree = ""; }; - 93FD06B4F774E91B657616EB576AE8B7 /* resolve_address_impl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolve_address_impl.h; path = src/core/lib/iomgr/resolve_address_impl.h; sourceTree = ""; }; - 9402DC9EEBC82A8B50F21346EFE3825B /* cleanup.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cleanup.h; path = absl/cleanup/internal/cleanup.h; sourceTree = ""; }; - 9417A4697062445A2054B51CE12F0187 /* call_combiner.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = call_combiner.h; path = src/core/lib/iomgr/call_combiner.h; sourceTree = ""; }; - 94267E25916F43D7425266CDAD5D8DA5 /* ec_montgomery.c */ = {isa = PBXFileReference; includeInIndex = 1; name = ec_montgomery.c; path = src/crypto/fipsmodule/ec/ec_montgomery.c; sourceTree = ""; }; - 9432E5FE27C1CE4C2665EFA503DA413C /* overload.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = overload.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/overload/v3/overload.upbdefs.h"; sourceTree = ""; }; - 94346C8CBF02031E36C76E7552E5D9F9 /* config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = config.h; path = include/grpcpp/support/config.h; sourceTree = ""; }; - 943EFF12BFBE542E8A189B61FD224298 /* FIRAppCheckInterop.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAppCheckInterop.h; path = FirebaseAppCheck/Interop/FIRAppCheckInterop.h; sourceTree = ""; }; - 94429DD60C08A900494A34C3D055A24B /* ascii.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = ascii.cc; path = absl/strings/ascii.cc; sourceTree = ""; }; - 9455EA5BF28CDB45748C1C0D8E6A2325 /* alts_grpc_record_protocol_common.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_grpc_record_protocol_common.h; path = src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_record_protocol_common.h; sourceTree = ""; }; - 9483CF2D3633D4A65FDCE72C29D9A3F4 /* client_interceptor.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = client_interceptor.cc; path = src/cpp/client/client_interceptor.cc; sourceTree = ""; }; - 94BD6B76CE97E7FE1C34B8D46A71A2B3 /* socket_utils_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = socket_utils_posix.h; path = src/core/lib/iomgr/socket_utils_posix.h; sourceTree = ""; }; - 94CC9A71D59DD942E500FF67B096A19A /* time.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = time.h; path = include/grpcpp/impl/codegen/time.h; sourceTree = ""; }; - 94DA34A697B449807BA291012F7C7B98 /* socket.c */ = {isa = PBXFileReference; includeInIndex = 1; name = socket.c; path = src/crypto/bio/socket.c; sourceTree = ""; }; - 95044DAE92E09B759F3B7AB2241FC7C0 /* lockfree_event.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = lockfree_event.cc; path = src/core/lib/iomgr/lockfree_event.cc; sourceTree = ""; }; - 950AA27C19BE01503CAA741334CFD596 /* fault.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fault.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/extensions/filters/http/fault/v3/fault.upbdefs.h"; sourceTree = ""; }; - 951C01D89D181CE3D71436E82A8CF70A /* sorted_pack.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sorted_pack.h; path = src/core/lib/gprpp/sorted_pack.h; sourceTree = ""; }; - 952BED7892FA7334C72EC7D1A48BC9FE /* trace.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = trace.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/trace/v3/trace.upbdefs.c"; sourceTree = ""; }; - 95314A6C43AD6ABE31AD7AAD5A9B912D /* PromisesObjC-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "PromisesObjC-dummy.m"; sourceTree = ""; }; - 95407501728C6F7F67AEFF1908758714 /* optional.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = optional.h; path = absl/types/internal/optional.h; sourceTree = ""; }; - 954DE2846E6D97CCB538E7A20E709212 /* sleep.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sleep.h; path = src/core/lib/promise/sleep.h; sourceTree = ""; }; - 955582FAC5286853B8BA2A661AA785BD /* grpc_library.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_library.h; path = include/grpcpp/impl/codegen/grpc_library.h; sourceTree = ""; }; - 956ABE74F2FC842119D1060E62492769 /* filter_block.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = filter_block.h; path = table/filter_block.h; sourceTree = ""; }; - 9571507A0A70212CB01CAE5B0A5B4279 /* FIRPhoneMultiFactorAssertion+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FIRPhoneMultiFactorAssertion+Internal.h"; path = "FirebaseAuth/Sources/MultiFactor/Phone/FIRPhoneMultiFactorAssertion+Internal.h"; sourceTree = ""; }; - 9571519B462BAFB1775DF31A4958FA56 /* connected_channel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = connected_channel.h; path = src/core/lib/channel/connected_channel.h; sourceTree = ""; }; - 9579AEA0C639344D1ACAE061089FB993 /* dtls_method.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = dtls_method.cc; path = src/ssl/dtls_method.cc; sourceTree = ""; }; - 95894B9A45619EDEB8D4467EAD2637D7 /* lhash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lhash.h; path = src/include/openssl/lhash.h; sourceTree = ""; }; - 9596DC3803256B1C985B60FB241492B8 /* address_filtering.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = address_filtering.h; path = src/core/ext/filters/client_channel/lb_policy/address_filtering.h; sourceTree = ""; }; 95B09EA82E7AF9ACCCCAF3E55C859116 /* shared.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = shared.debug.xcconfig; sourceTree = ""; }; - 95C7B5D771DFECB2F5186F09262613D7 /* NSURLSession+GULPromises.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSURLSession+GULPromises.m"; path = "GoogleUtilities/Environment/URLSessionPromiseWrapper/NSURLSession+GULPromises.m"; sourceTree = ""; }; - 95D1B5F8323CAC1E42ED70309D6EFBBA /* builtins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = builtins.h; path = src/core/lib/surface/builtins.h; sourceTree = ""; }; - 95D9606B4E6C7D614CB6934E51455D3E /* mutexlock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mutexlock.h; path = util/mutexlock.h; sourceTree = ""; }; - 95DB8C6DF9549EA9E92877446D9C0538 /* aws_request_signer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = aws_request_signer.h; path = src/core/lib/security/credentials/external/aws_request_signer.h; sourceTree = ""; }; - 95F96AEF02E8EAA91FD76A1233916660 /* FIRAuth.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuth.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRAuth.h; sourceTree = ""; }; - 960F307D5647AF6EBCA155E81F152B41 /* query.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = query.cc; path = Firestore/core/src/core/query.cc; sourceTree = ""; }; - 96246B575B396E4724AE5E9533113307 /* secure_create_auth_context.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = secure_create_auth_context.cc; path = src/cpp/common/secure_create_auth_context.cc; sourceTree = ""; }; - 96376842707628BA781C9D941D12F7C9 /* versioning.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = versioning.upbdefs.h; path = "src/core/ext/upbdefs-generated/xds/annotations/v3/versioning.upbdefs.h"; sourceTree = ""; }; - 965F190E7DB563FDC560EF52BA7A9626 /* extension_registry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = extension_registry.h; path = third_party/upb/upb/extension_registry.h; sourceTree = ""; }; - 96734CF1A7E306BD829CE1305ACC65EE /* load_balancer.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = load_balancer.upb.c; path = "src/core/ext/upb-generated/src/proto/grpc/lb/v1/load_balancer.upb.c"; sourceTree = ""; }; - 968F64F3ECDA4A9A35FAE4632FFEBF25 /* global_config_custom.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = global_config_custom.h; path = src/core/lib/gprpp/global_config_custom.h; sourceTree = ""; }; - 96BF7048883594722E611DF3F44CD639 /* leveldb_opener.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = leveldb_opener.cc; path = Firestore/core/src/local/leveldb_opener.cc; sourceTree = ""; }; - 96E82519BC47272FA3E2117D8958D8AA /* uniform_helper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = uniform_helper.h; path = absl/random/internal/uniform_helper.h; sourceTree = ""; }; - 96F7410A43D66245ED3AC75BA0DCC039 /* metadata.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = metadata.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/type/metadata/v3/metadata.upbdefs.c"; sourceTree = ""; }; - 9700E39B5C094BD84430EAB572665FDD /* init_internally.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = init_internally.h; path = src/core/lib/surface/init_internally.h; sourceTree = ""; }; - 9725ACBD4D543CB07FE0A3B3D941A259 /* workaround_list.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = workaround_list.h; path = include/grpc/support/workaround_list.h; sourceTree = ""; }; - 973D09FA8B84178D1BDEF9F4850AEDC6 /* port_undef.inc */ = {isa = PBXFileReference; includeInIndex = 1; name = port_undef.inc; path = third_party/upb/upb/port_undef.inc; sourceTree = ""; }; - 9744F2DE66F986F22E33B09468BE5DC6 /* v3_conf.c */ = {isa = PBXFileReference; includeInIndex = 1; name = v3_conf.c; path = src/crypto/x509v3/v3_conf.c; sourceTree = ""; }; - 9769E01143F79CE7C4CBBFAEBE44E840 /* GULNetworkURLSession.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetworkURLSession.h; path = GoogleUtilities/Network/Public/GoogleUtilities/GULNetworkURLSession.h; sourceTree = ""; }; - 978548C282C4A24205D1B88481C226FE /* cord_internal.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = cord_internal.cc; path = absl/strings/internal/cord_internal.cc; sourceTree = ""; }; - 9797A96F857C9361C90DF148B16B4AD1 /* executor_std.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = executor_std.cc; path = Firestore/core/src/util/executor_std.cc; sourceTree = ""; }; - 97989B741B4F436258246282CB32B5EB /* completion_queue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = completion_queue.h; path = src/core/lib/surface/completion_queue.h; sourceTree = ""; }; - 97A8B6A71D866E223B119390FC306B89 /* connector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = connector.h; path = src/core/ext/filters/client_channel/connector.h; sourceTree = ""; }; - 97AB33F99060C2497419B3756D1A6289 /* config_dump.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = config_dump.upb.h; path = "src/core/ext/upb-generated/envoy/admin/v3/config_dump.upb.h"; sourceTree = ""; }; - 97CE042FF191783F04C7E53A2EEF0734 /* filename.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = filename.h; path = db/filename.h; sourceTree = ""; }; - 97F7A58F73913EB9EF5E859ADC1CD9E6 /* fork_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = fork_posix.cc; path = src/core/lib/iomgr/fork_posix.cc; sourceTree = ""; }; - 9844CFB6549D86371E9AC75D558DBEF4 /* subchannel.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = subchannel.cc; path = src/core/ext/filters/client_channel/subchannel.cc; sourceTree = ""; }; - 9844E3A37FFD6175761AEBA2983074A8 /* tcp_server.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tcp_server.h; path = src/core/lib/iomgr/tcp_server.h; sourceTree = ""; }; - 986662053D5F252238E4520FE5B38F18 /* cookie.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cookie.upb.h; path = "src/core/ext/upb-generated/envoy/type/http/v3/cookie.upb.h"; sourceTree = ""; }; - 986C60D7547AB68B422D13509F8EDFAD /* ssl_cert.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = ssl_cert.cc; path = src/ssl/ssl_cert.cc; sourceTree = ""; }; - 98866ABCB9191514A9F591B7FAC0E62B /* syntax.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = syntax.upb.h; path = "src/core/ext/upb-generated/google/api/expr/v1alpha1/syntax.upb.h"; sourceTree = ""; }; - 9886F834E9287949F012ADCE4839B747 /* secret.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = secret.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/secret.upbdefs.c"; sourceTree = ""; }; - 9886F8D6793EB5A6D90E5F56681689F4 /* v3_pcons.c */ = {isa = PBXFileReference; includeInIndex = 1; name = v3_pcons.c; path = src/crypto/x509v3/v3_pcons.c; sourceTree = ""; }; - 98911173E6D763FC2A1AE50A476ED439 /* base.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = base.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/base.upb.h"; sourceTree = ""; }; - 9897E439A4F232003B40FF1A7F7FDCD7 /* FIRActionCodeSettings.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRActionCodeSettings.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRActionCodeSettings.h; sourceTree = ""; }; - 98A01535827CB8E74775B0CD2FC958EA /* coding.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = coding.cc; path = util/coding.cc; sourceTree = ""; }; - 98A708F22C6CBB16326AF5FB550C6F8E /* thread_annotations.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = thread_annotations.h; path = absl/base/internal/thread_annotations.h; sourceTree = ""; }; - 98D1A3FB47EA8E1409E66473005A7D97 /* mpscq.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = mpscq.cc; path = src/core/lib/gprpp/mpscq.cc; sourceTree = ""; }; - 98E8D00800CB8F924243803E45430FB0 /* csds.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = csds.upb.c; path = "src/core/ext/upb-generated/envoy/service/status/v3/csds.upb.c"; sourceTree = ""; }; - 98F3546FA89C5563049C8DDFD3987A8E /* FBLPromise+Any.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Any.h"; path = "Sources/FBLPromises/include/FBLPromise+Any.h"; sourceTree = ""; }; - 98F54189A112D65896EC9C81D3733FE1 /* GTMSessionFetcher-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "GTMSessionFetcher-dummy.m"; sourceTree = ""; }; - 98F9361D778A28D472065DFD8ACF3731 /* FIRAuthWebUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthWebUtils.h; path = FirebaseAuth/Sources/Utilities/FIRAuthWebUtils.h; sourceTree = ""; }; - 9908DE44E9BAE5A0BAB5FF183534CCB8 /* server_callback.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = server_callback.cc; path = src/cpp/server/server_callback.cc; sourceTree = ""; }; - 991FFDEDE586C37A4A55FCF5CCEAF8C8 /* create_thread_identity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = create_thread_identity.h; path = absl/synchronization/internal/create_thread_identity.h; sourceTree = ""; }; - 992B4677FF496F401658CD092A222CB5 /* FIRDocumentSnapshot.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDocumentSnapshot.h; path = Firestore/Source/Public/FirebaseFirestore/FIRDocumentSnapshot.h; sourceTree = ""; }; - 993AA317356A486F0CA104D0DE838092 /* ssl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ssl.h; path = src/include/openssl/ssl.h; sourceTree = ""; }; - 993B7D504BEA09B730554F884D0A6336 /* useful.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = useful.h; path = src/core/lib/gpr/useful.h; sourceTree = ""; }; - 9946FA6DBF345A619B4D1E082F06617F /* convert.c */ = {isa = PBXFileReference; includeInIndex = 1; name = convert.c; path = src/crypto/bn_extra/convert.c; sourceTree = ""; }; - 994B774AD45D41B56696B1B164B3CD04 /* GoogleUtilities.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleUtilities.release.xcconfig; sourceTree = ""; }; - 994D8465EFBE52A42629F2A93DBF103A /* strutil.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = strutil.cc; path = third_party/re2/util/strutil.cc; sourceTree = ""; }; - 994D9786F3C51FFA8FC76A3450E9A03D /* overload.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = overload.upb.h; path = "src/core/ext/upb-generated/envoy/config/overload/v3/overload.upb.h"; sourceTree = ""; }; - 99639769715E316E6AB5B4AB6F710F13 /* writing.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = writing.cc; path = src/core/ext/transport/chttp2/transport/writing.cc; sourceTree = ""; }; - 9969F035A2907BA0E98792F1005BFA12 /* time_zone_fixed.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = time_zone_fixed.h; path = absl/time/internal/cctz/src/time_zone_fixed.h; sourceTree = ""; }; - 9972702880C9B730E47750CA3AACB066 /* rsa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rsa.h; path = src/include/openssl/rsa.h; sourceTree = ""; }; - 997F156319E448AC0DC82F7CE2DF5C4A /* FIRPhoneMultiFactorAssertion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRPhoneMultiFactorAssertion.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRPhoneMultiFactorAssertion.h; sourceTree = ""; }; - 99839EB82CFF9B836FB3D2EDFE379660 /* FIRVerifyCustomTokenResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRVerifyCustomTokenResponse.h; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyCustomTokenResponse.h; sourceTree = ""; }; - 999FEB2A052AEC4F668AD8008125AF3E /* target.nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = target.nanopb.cc; path = Firestore/Protos/nanopb/firestore/local/target.nanopb.cc; sourceTree = ""; }; - 99ADED98F966D8D3F351A5CBE0D4E23B /* tchar.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tchar.h; path = src/core/lib/gprpp/tchar.h; sourceTree = ""; }; - 99BE4C357917C5B87268B42A58D656DF /* empty.nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = empty.nanopb.cc; path = Firestore/Protos/nanopb/google/protobuf/empty.nanopb.cc; sourceTree = ""; }; - 99CF4CDA14EC4A7168828C7E2F70B482 /* parse_address.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = parse_address.h; path = src/core/lib/address_utils/parse_address.h; sourceTree = ""; }; - 9A0296B223ED1027E8E6CA1CA2B617AF /* validation_errors.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = validation_errors.cc; path = src/core/lib/gprpp/validation_errors.cc; sourceTree = ""; }; - 9A0AA813EE7C101BAF26F320C0C28892 /* http_uri.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_uri.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/http_uri.upb.h"; sourceTree = ""; }; - 9A3A0801808A9907CA9F3F2380A44003 /* escaping.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = escaping.cc; path = absl/strings/internal/escaping.cc; sourceTree = ""; }; - 9A3A71594F0896A8AAE0979EEF764104 /* stat_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = stat_windows.cc; path = src/core/lib/gprpp/stat_windows.cc; sourceTree = ""; }; - 9A408115164A172F3148FAFFAF54D060 /* uri_parser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = uri_parser.h; path = src/core/lib/uri/uri_parser.h; sourceTree = ""; }; - 9A4407D02E6FB6572E5689E2E7EF98CA /* context.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = context.h; path = src/core/lib/promise/context.h; sourceTree = ""; }; - 9A5457333A11081E18FA2A1C758D89A5 /* BoringSSL-GRPC.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "BoringSSL-GRPC.release.xcconfig"; sourceTree = ""; }; - 9A66A991AFDA73024CA4A83E8C419108 /* FBLPromise.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBLPromise.m; path = Sources/FBLPromises/FBLPromise.m; sourceTree = ""; }; - 9A89AC2EAC9A7D029B95EFF11FDACC7B /* tcp_server.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tcp_server.h; path = src/core/lib/iomgr/tcp_server.h; sourceTree = ""; }; - 9A8BC20F54E5F3266ECE7402547E83D3 /* resource_name.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource_name.upbdefs.h; path = "src/core/ext/upbdefs-generated/xds/core/v3/resource_name.upbdefs.h"; sourceTree = ""; }; - 9ABD1D68CD476691F884623FED2BDA1F /* collection_entry.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = collection_entry.upb.c; path = "src/core/ext/upb-generated/xds/core/v3/collection_entry.upb.c"; sourceTree = ""; }; - 9AC103B972DC6DFD9CD206F2CB580ABE /* tcp_client_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = tcp_client_windows.cc; path = src/core/lib/iomgr/tcp_client_windows.cc; sourceTree = ""; }; - 9AC3EA20738D61B8660CF5C30D1438A2 /* channel_stack_type.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_stack_type.h; path = src/core/lib/surface/channel_stack_type.h; sourceTree = ""; }; - 9ADBA98D7CD5EF4000C9201DC41DD158 /* FBLPromise+Catch.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Catch.m"; path = "Sources/FBLPromises/FBLPromise+Catch.m"; sourceTree = ""; }; - 9ADC4838B72C90F19E552A45DE8F0C47 /* log.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = log.h; path = include/grpc/impl/codegen/log.h; sourceTree = ""; }; - 9AEB08A55A2FF9FF722C548609176A1B /* metadata.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = metadata.upb.h; path = "src/core/ext/upb-generated/envoy/type/metadata/v3/metadata.upb.h"; sourceTree = ""; }; - 9AF6B6A69AEB02ED1527DB0973FA6046 /* struct.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = struct.upb.h; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/struct.upb.h"; sourceTree = ""; }; - 9B0E87FC3B4CF8970CBF01049EE4322E /* seed_sequences.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = seed_sequences.cc; path = absl/random/seed_sequences.cc; sourceTree = ""; }; - 9B3EBFC9319A4B2839C203FB73ACBEC6 /* memory_allocator_impl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = memory_allocator_impl.h; path = include/grpc/event_engine/internal/memory_allocator_impl.h; sourceTree = ""; }; - 9B460F58BA04917250F264D5CB0014EA /* upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = upb.h; path = third_party/upb/upb/upb.h; sourceTree = ""; }; - 9B4B4F12B31CE2C7C9A7154CBEA736EC /* FIRAuthAppCredentialManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthAppCredentialManager.m; path = FirebaseAuth/Sources/SystemService/FIRAuthAppCredentialManager.m; sourceTree = ""; }; - 9B6426BB091FEC3121191B22CFD06518 /* zipkin.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = zipkin.upb.h; path = "src/core/ext/upb-generated/envoy/config/trace/v3/zipkin.upb.h"; sourceTree = ""; }; - 9B6B3DFABB9200904671006CFD46EECB /* time_util.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = time_util.cc; path = src/core/lib/gprpp/time_util.cc; sourceTree = ""; }; - 9B6EC0E30B096DC802D2AAE2C55019DF /* GULAppDelegateSwizzler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULAppDelegateSwizzler.h; path = GoogleUtilities/AppDelegateSwizzler/Public/GoogleUtilities/GULAppDelegateSwizzler.h; sourceTree = ""; }; - 9B7858D3BD36CC64D85AD7CE4C16E99C /* call_push_pull.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = call_push_pull.h; path = src/core/lib/promise/call_push_pull.h; sourceTree = ""; }; - 9B8CC21FB77A353ECC437199BB317363 /* clusters.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = clusters.upb.c; path = "src/core/ext/upb-generated/envoy/admin/v3/clusters.upb.c"; sourceTree = ""; }; - 9B8E826CF5D4334FE67B0A8FF20E59A3 /* path_transformation.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = path_transformation.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/type/http/v3/path_transformation.upbdefs.c"; sourceTree = ""; }; - 9B902B5BE988BB8142472BFF9824BC4E /* alts_grpc_integrity_only_record_protocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_grpc_integrity_only_record_protocol.h; path = src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_integrity_only_record_protocol.h; sourceTree = ""; }; - 9B946F1663177E7C03CACF9020496875 /* FIRGetProjectConfigResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRGetProjectConfigResponse.m; path = FirebaseAuth/Sources/Backend/RPC/FIRGetProjectConfigResponse.m; sourceTree = ""; }; - 9B96D8CF164402BC55B7E1DD9CB7E797 /* grpc_if_nametoindex_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = grpc_if_nametoindex_posix.cc; path = src/core/lib/iomgr/grpc_if_nametoindex_posix.cc; sourceTree = ""; }; - 9BAB1D78A738E6B11192431A9C1C1EB4 /* inlined_vector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = inlined_vector.h; path = absl/container/internal/inlined_vector.h; sourceTree = ""; }; - 9BAF57328174C52BC50DA3334EFEB052 /* strip.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = strip.h; path = absl/strings/strip.h; sourceTree = ""; }; - 9BB0B8B698D4C35D4F9A07EF70910170 /* Pods-iosApp-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-iosApp-acknowledgements.plist"; sourceTree = ""; }; - 9BBEA7919718605CA84548EAB738BD30 /* FIRResetPasswordResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRResetPasswordResponse.m; path = FirebaseAuth/Sources/Backend/RPC/FIRResetPasswordResponse.m; sourceTree = ""; }; - 9BC8E2C28C2B3D831E81B3F03B2D2B79 /* server_config_selector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_config_selector.h; path = src/core/ext/filters/server_config_selector/server_config_selector.h; sourceTree = ""; }; - 9BCBFBBF41D802F84C56B6ACA5974035 /* RecaptchaInterop.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RecaptchaInterop.release.xcconfig; sourceTree = ""; }; - 9BD1478584A22F961A1BF76E5599F273 /* x509name.c */ = {isa = PBXFileReference; includeInIndex = 1; name = x509name.c; path = src/crypto/x509/x509name.c; sourceTree = ""; }; - 9BE306249FBC7E0D62A0DFC3DB552E79 /* nfa.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = nfa.cc; path = third_party/re2/re2/nfa.cc; sourceTree = ""; }; - 9BF4F99F51D9A856CF7C7A082BC0411E /* empty.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = empty.upb.h; path = "src/core/ext/upb-generated/google/protobuf/empty.upb.h"; sourceTree = ""; }; - 9C06CF13668131D55179FE7481870EA8 /* salted_seed_seq.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = salted_seed_seq.h; path = absl/random/internal/salted_seed_seq.h; sourceTree = ""; }; - 9C0FAA708D3C1C36DC535530C3EDA4CA /* FBLPromise+Reduce.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Reduce.h"; path = "Sources/FBLPromises/include/FBLPromise+Reduce.h"; sourceTree = ""; }; - 9C1845A415116CF020FD93791AEDD185 /* unix_sockets_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = unix_sockets_posix.h; path = src/core/lib/iomgr/unix_sockets_posix.h; sourceTree = ""; }; - 9C1AFCB9A8411B20F1D6034A95257D48 /* hpack_constants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hpack_constants.h; path = src/core/ext/transport/chttp2/transport/hpack_constants.h; sourceTree = ""; }; - 9C1FCF44CE02049DA4E05BE98238F4CA /* tls_spiffe_validator_config.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = tls_spiffe_validator_config.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upbdefs.c"; sourceTree = ""; }; - 9C427FD5018B3CFA0ABE2C1747E25B59 /* port_platform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = port_platform.h; path = include/grpc/support/port_platform.h; sourceTree = ""; }; - 9C5B1C7F06A60345842A6C954ADCB41E /* bytes.c */ = {isa = PBXFileReference; includeInIndex = 1; name = bytes.c; path = src/crypto/fipsmodule/bn/bytes.c; sourceTree = ""; }; - 9C61D580F166A5661820CB428886BA2E /* certs.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = certs.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/admin/v3/certs.upbdefs.c"; sourceTree = ""; }; - 9C71CA419C025097B9A9DC1ED54FD1A2 /* FIRLocalCacheSettings.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLocalCacheSettings.h; path = Firestore/Source/Public/FirebaseFirestore/FIRLocalCacheSettings.h; sourceTree = ""; }; - 9C7AF2791725107CFB962B4EB8EFD66D /* FBLPromiseError.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBLPromiseError.m; path = Sources/FBLPromises/FBLPromiseError.m; sourceTree = ""; }; - 9C7C87B5D0A6752AFA2642F1BCA967A3 /* gRPC-C++-gRPCCertificates-Cpp */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = "gRPC-C++-gRPCCertificates-Cpp"; path = "gRPCCertificates-Cpp.bundle"; sourceTree = BUILT_PRODUCTS_DIR; }; - 9C8AEB3336DAA85F1BE33A4478950EDF /* json_object_loader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = json_object_loader.h; path = src/core/lib/json/json_object_loader.h; sourceTree = ""; }; - 9C8ECD963DF15A6C0CA692C541B1CA56 /* hpack_encoder_table.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hpack_encoder_table.h; path = src/core/ext/transport/chttp2/transport/hpack_encoder_table.h; sourceTree = ""; }; - 9CA6047AD07D89A43FE08622059BA7DE /* global_config_env.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = global_config_env.h; path = src/core/lib/gprpp/global_config_env.h; sourceTree = ""; }; - 9CB12FAFC8CD35E09D681B64D0A5E2B9 /* service_config_impl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = service_config_impl.h; path = src/core/lib/service_config/service_config_impl.h; sourceTree = ""; }; - 9CC234F2439530D3E6ED871B8D6BB974 /* asn1_compat.c */ = {isa = PBXFileReference; includeInIndex = 1; name = asn1_compat.c; path = src/crypto/bytestring/asn1_compat.c; sourceTree = ""; }; - 9CC6C38CA5AC54E5BB752E1201DAB65B /* stringpiece.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stringpiece.h; path = third_party/re2/re2/stringpiece.h; sourceTree = ""; }; - 9CD77B11F6F6E0D6D6FDD5D323643BBA /* oauth2_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = oauth2_credentials.h; path = src/core/lib/security/credentials/oauth2/oauth2_credentials.h; sourceTree = ""; }; - 9CE01FD2AB1C984419523D3E9A4BD8FC /* FIRAuthURLPresenter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthURLPresenter.h; path = FirebaseAuth/Sources/Utilities/FIRAuthURLPresenter.h; sourceTree = ""; }; - 9CE7982D4FAE4829DC26AE3BF3E24C8F /* block_annotate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = block_annotate.h; path = src/core/lib/iomgr/block_annotate.h; sourceTree = ""; }; - 9CE9D1ED01E586499FA49574DFC0A04F /* socket_option.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = socket_option.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/socket_option.upbdefs.h"; sourceTree = ""; }; - 9CF06E83F78E512F1380511B03AAD8FF /* value.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = value.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/matcher/v3/value.upbdefs.h"; sourceTree = ""; }; - 9CF3F3A2EE81EBB23EC4234A586D0D88 /* slice_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = slice_internal.h; path = src/core/lib/slice/slice_internal.h; sourceTree = ""; }; - 9CF9051508690AE1C422D1DBC7745672 /* thread.c */ = {isa = PBXFileReference; includeInIndex = 1; name = thread.c; path = src/crypto/thread.c; sourceTree = ""; }; - 9D0541BC23ABED005277B5EB1233DFB7 /* tls_cbc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = tls_cbc.c; path = src/crypto/cipher_extra/tls_cbc.c; sourceTree = ""; }; - 9D063408EDD751B2BBB099FF9994FD82 /* FIRAuthWebViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthWebViewController.m; path = FirebaseAuth/Sources/Utilities/FIRAuthWebViewController.m; sourceTree = ""; }; - 9D0B3950112F97C7DCD91A31D55CB2AF /* nanopb.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = nanopb.debug.xcconfig; sourceTree = ""; }; - 9D0E86CEBDDB31540D17980B39256929 /* sync.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sync.h; path = src/core/lib/gprpp/sync.h; sourceTree = ""; }; - 9D2A7B1D09398165CBDD927370EC0B9B /* dynamic_ot.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dynamic_ot.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/trace/v3/dynamic_ot.upbdefs.h"; sourceTree = ""; }; - 9D2EE1A9D111899F125AB479E38DBAF3 /* slice.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = slice.h; path = include/grpc/impl/codegen/slice.h; sourceTree = ""; }; - 9D36B227BF49390FFB4DC7950433A2E4 /* huffsyms.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = huffsyms.h; path = src/core/ext/transport/chttp2/transport/huffsyms.h; sourceTree = ""; }; - 9D63E56A12BA8266A2FE25DF52DD4602 /* FIRComponentContainerInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentContainerInternal.h; path = FirebaseCore/Sources/FIRComponentContainerInternal.h; sourceTree = ""; }; - 9D67DA9212FD03285EFB13587382309B /* safestack.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = safestack.h; path = src/include/openssl/safestack.h; sourceTree = ""; }; 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 9D9703BD3104524170BBF05CDE51B3C9 /* timestamp.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = timestamp.upb.c; path = "src/core/ext/upb-generated/google/protobuf/timestamp.upb.c"; sourceTree = ""; }; - 9DB099F422DEAE5C9819AC7ADB0AF1B7 /* beta_distribution.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = beta_distribution.h; path = absl/random/beta_distribution.h; sourceTree = ""; }; - 9DBC0EE54F9A78A83BA87BFA1B6FB680 /* certificate_provider_registry.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = certificate_provider_registry.cc; path = src/core/lib/security/certificate_provider/certificate_provider_registry.cc; sourceTree = ""; }; - 9DFB11D410DA0AB966F59CEC22756302 /* arena.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = arena.cc; path = util/arena.cc; sourceTree = ""; }; - 9E0D54AA93EC0E6C62683A9577A8968D /* secure_auth_context.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = secure_auth_context.h; path = src/cpp/common/secure_auth_context.h; sourceTree = ""; }; - 9E2B71EB42B8967FD5D1D75AB263CFEC /* GTMSessionFetcherLogging.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GTMSessionFetcherLogging.m; path = Sources/Core/GTMSessionFetcherLogging.m; sourceTree = ""; }; - 9E2BE82371FDAC1C2C07A492AED9D349 /* bio.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bio.h; path = src/include/openssl/bio.h; sourceTree = ""; }; - 9E38D381480C9705CE766A4C9C7B88F8 /* jwt_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = jwt_credentials.cc; path = src/core/lib/security/credentials/jwt/jwt_credentials.cc; sourceTree = ""; }; - 9E3C54000181AAAF157A7700F1E89832 /* xds_api.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_api.h; path = src/core/ext/xds/xds_api.h; sourceTree = ""; }; - 9E4D1687B7689DE0DD19655342E3A4FF /* p256.c */ = {isa = PBXFileReference; includeInIndex = 1; name = p256.c; path = src/crypto/fipsmodule/ec/p256.c; sourceTree = ""; }; - 9E9255E30DE5392E33A0227FBF7BA275 /* discrete_distribution.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = discrete_distribution.h; path = absl/random/discrete_distribution.h; sourceTree = ""; }; - 9E96C6230BA0F4DAEDBACA9DD7D0AC02 /* string_win.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = string_win.cc; path = Firestore/core/src/util/string_win.cc; sourceTree = ""; }; - 9EBA6C6F6531B08FE1BF37DA58FA2B07 /* voprf.c */ = {isa = PBXFileReference; includeInIndex = 1; name = voprf.c; path = src/crypto/trust_token/voprf.c; sourceTree = ""; }; - 9EBD4B00BE5B93E2EA9C17C913CD21DF /* FIRGetOOBConfirmationCodeResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRGetOOBConfirmationCodeResponse.h; path = FirebaseAuth/Sources/Backend/RPC/FIRGetOOBConfirmationCodeResponse.h; sourceTree = ""; }; - 9EECFBA7194D482B07A10FD2C85B03F3 /* service_config_impl.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = service_config_impl.cc; path = src/core/lib/service_config/service_config_impl.cc; sourceTree = ""; }; - 9EF465CAD0FADB19364000A1504383C1 /* http_uri.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_uri.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/http_uri.upb.h"; sourceTree = ""; }; - 9EFD21302FE8780F575F437E76D5E0E2 /* matcher.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = matcher.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/common/matcher/v3/matcher.upbdefs.h"; sourceTree = ""; }; - 9F1FFC8B10F4D7D4F37606E8959B3F29 /* Pods-iosApp-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-iosApp-acknowledgements.markdown"; sourceTree = ""; }; - 9F2011C6D64CD081085A14DC4892BCB9 /* client_channel_factory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = client_channel_factory.h; path = src/core/ext/filters/client_channel/client_channel_factory.h; sourceTree = ""; }; - 9F26FAACD22DD45E08C229F2DD119542 /* leveldb_migrations.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = leveldb_migrations.cc; path = Firestore/core/src/local/leveldb_migrations.cc; sourceTree = ""; }; - 9F2A81B2B523310E7DBF3120599D009C /* query_snapshot.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = query_snapshot.cc; path = Firestore/core/src/api/query_snapshot.cc; sourceTree = ""; }; - 9F47E17C62699EA95F99E7D628EDC292 /* civil_time.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = civil_time.h; path = absl/time/civil_time.h; sourceTree = ""; }; - 9F4D190F3C75B4879C3B3478C0264BB1 /* thread_manager.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = thread_manager.cc; path = src/cpp/thread_manager/thread_manager.cc; sourceTree = ""; }; - 9F6E7C8AEC0AFADFE3396C008AAFE8F3 /* t_crl.c */ = {isa = PBXFileReference; includeInIndex = 1; name = t_crl.c; path = src/crypto/x509/t_crl.c; sourceTree = ""; }; - 9F77F3D49820E70693FDAD683689EF79 /* deterministic.c */ = {isa = PBXFileReference; includeInIndex = 1; name = deterministic.c; path = src/crypto/rand_extra/deterministic.c; sourceTree = ""; }; - 9F80153F4F865D29F5D70B226F655659 /* polling_entity.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = polling_entity.cc; path = src/core/lib/iomgr/polling_entity.cc; sourceTree = ""; }; - 9F85FCE31E767636A1E88490BC7A2D91 /* FIRTOTPSecret.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRTOTPSecret.m; path = FirebaseAuth/Sources/MultiFactor/TOTP/FIRTOTPSecret.m; sourceTree = ""; }; - 9F923AAB675A69F20101C3E78FD75358 /* channel_trace.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = channel_trace.cc; path = src/core/lib/channel/channel_trace.cc; sourceTree = ""; }; - 9F9EB9FE0EA2544B6DE15E05DE47EF61 /* exception.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = exception.cc; path = Firestore/core/src/util/exception.cc; sourceTree = ""; }; - 9FA1B513CD394CDC8478B730059E1409 /* xds_http_rbac_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_http_rbac_filter.h; path = src/core/ext/xds/xds_http_rbac_filter.h; sourceTree = ""; }; - 9FAAC8CD2364E06678F632155ECDEC8F /* FirebaseAppCheckInterop.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseAppCheckInterop.debug.xcconfig; sourceTree = ""; }; - 9FACE661387F5F53E609A1427068B813 /* opencensus.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = opencensus.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/trace/v3/opencensus.upbdefs.h"; sourceTree = ""; }; - 9FE6450A7BBB0E0C5BFCBCA7ECD8838B /* optimization.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = optimization.h; path = absl/base/optimization.h; sourceTree = ""; }; - 9FECCB5AFF87D121F15BA01E683C7932 /* Pods-iosApp.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-iosApp.release.xcconfig"; sourceTree = ""; }; - 9FEF02FB555153E9A024D63E3B90F7EE /* xds_client_stats.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_client_stats.h; path = src/core/ext/xds/xds_client_stats.h; sourceTree = ""; }; - A00965BC296F5962B28F6BBFB378D9EA /* chttp2_connector.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = chttp2_connector.cc; path = src/core/ext/transport/chttp2/client/chttp2_connector.cc; sourceTree = ""; }; - A0441B0B6F0EE39BDE1C690CF87D53B9 /* rand_extra.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rand_extra.c; path = src/crypto/rand_extra/rand_extra.c; sourceTree = ""; }; - A09DE1080290FF60E871CD128A3781C8 /* ec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ec.h; path = src/include/openssl/ec.h; sourceTree = ""; }; - A0AE58AE062E9DC688231F1E586A8F04 /* tcp_connect_handshaker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tcp_connect_handshaker.h; path = src/core/lib/transport/tcp_connect_handshaker.h; sourceTree = ""; }; - A0CECF743559AED98CAE7D08D03A85BA /* cluster.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cluster.upb.h; path = "src/core/ext/upb-generated/envoy/extensions/clusters/aggregate/v3/cluster.upb.h"; sourceTree = ""; }; - A0D6F30A1027F876001E369F423D2CFB /* FBLPromise+Do.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Do.h"; path = "Sources/FBLPromises/include/FBLPromise+Do.h"; sourceTree = ""; }; - A0E28086AF387A070B6E22BC4E0C2A86 /* xray.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = xray.upb.c; path = "src/core/ext/upb-generated/envoy/config/trace/v3/xray.upb.c"; sourceTree = ""; }; - A0E95C733269FFF7CEFEAC57EE5F5AEA /* typed_struct.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = typed_struct.upbdefs.h; path = "src/core/ext/upbdefs-generated/xds/type/v3/typed_struct.upbdefs.h"; sourceTree = ""; }; - A106A8FB735171799A9E7BD055E14D43 /* flow_control.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = flow_control.h; path = src/core/ext/transport/chttp2/transport/flow_control.h; sourceTree = ""; }; - A10CFFEC42056D53EFA828DD8DDF9758 /* status_helper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status_helper.h; path = src/core/lib/gprpp/status_helper.h; sourceTree = ""; }; - A115D02F9E655A9AD1CAEA47F2ACC61D /* versioning.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = versioning.upbdefs.h; path = "src/core/ext/upbdefs-generated/xds/annotations/v3/versioning.upbdefs.h"; sourceTree = ""; }; - A123F5437BA27AE9E439579D89B314BF /* rsa_asn1.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rsa_asn1.c; path = src/crypto/rsa_extra/rsa_asn1.c; sourceTree = ""; }; - A12AAD1823E97BE3F6B22F8E8872C163 /* client_auth_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = client_auth_filter.cc; path = src/core/lib/security/transport/client_auth_filter.cc; sourceTree = ""; }; - A149C4194B8716206EBB246F45BFE527 /* dbformat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dbformat.h; path = db/dbformat.h; sourceTree = ""; }; - A163AB899B8CB35AACC0FC9241C1D2EF /* bn.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bn.h; path = src/include/openssl/bn.h; sourceTree = ""; }; - A1742B7852233B3BE66B19852EEA8C8D /* validate_service_config.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = validate_service_config.cc; path = src/cpp/common/validate_service_config.cc; sourceTree = ""; }; - A174B32346BC7E5E49B52038764DE210 /* tls.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tls.upb.h; path = "src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/tls.upb.h"; sourceTree = ""; }; - A186B0CB5F97B50221217601950819E9 /* substitution_format_string.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = substitution_format_string.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/substitution_format_string.upbdefs.h"; sourceTree = ""; }; - A18F1B5B4BADC40A887379C0B32ACF4E /* ssl_transport_security.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ssl_transport_security.h; path = src/core/tsi/ssl_transport_security.h; sourceTree = ""; }; - A19D659C5049DB8C9844CE6EBE35917D /* channelz.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = channelz.cc; path = src/core/lib/channel/channelz.cc; sourceTree = ""; }; - A1B2C3E8E92E1207FC1075E053AFE661 /* x_x509a.c */ = {isa = PBXFileReference; includeInIndex = 1; name = x_x509a.c; path = src/crypto/x509/x_x509a.c; sourceTree = ""; }; - A1BDFB7CCA66BEAC717CFC676AA12A76 /* opencensus.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = opencensus.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/trace/v3/opencensus.upbdefs.c"; sourceTree = ""; }; - A1C9941F0FF60759894CB9D6A9D0707F /* cluster.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cluster.upb.c; path = "src/core/ext/upb-generated/envoy/config/cluster/v3/cluster.upb.c"; sourceTree = ""; }; - A1DD04A14CE0817D4680052076AFB65C /* child_policy_handler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = child_policy_handler.h; path = src/core/ext/filters/client_channel/lb_policy/child_policy_handler.h; sourceTree = ""; }; - A20142CF651CE7EB218D259ACC1A0602 /* datadog.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = datadog.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/trace/v3/datadog.upbdefs.h"; sourceTree = ""; }; - A203B8D6A5A1FFEBE812166A65A5E954 /* FIRVerifyPhoneNumberResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRVerifyPhoneNumberResponse.h; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyPhoneNumberResponse.h; sourceTree = ""; }; - A205E0A9B9138F7FC515247064C77BBB /* status.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = status.upbdefs.c; path = "src/core/ext/upbdefs-generated/xds/annotations/v3/status.upbdefs.c"; sourceTree = ""; }; - A20727CD3FB217D605F611CA4A1CDC26 /* FIRFacebookAuthProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRFacebookAuthProvider.m; path = FirebaseAuth/Sources/AuthProvider/Facebook/FIRFacebookAuthProvider.m; sourceTree = ""; }; - A207A2984BAECC3DC2A18FD3F003D75F /* rbac.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rbac.upb.h; path = "src/core/ext/upb-generated/envoy/config/rbac/v3/rbac.upb.h"; sourceTree = ""; }; - A209EC5AAD973918D1087D9E92075C02 /* FIREmailLinkSignInResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIREmailLinkSignInResponse.m; path = FirebaseAuth/Sources/Backend/RPC/FIREmailLinkSignInResponse.m; sourceTree = ""; }; - A20FBD5D589AD4A3822ED6AFDF1FCF48 /* time_zone_if.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = time_zone_if.cc; path = absl/time/internal/cctz/src/time_zone_if.cc; sourceTree = ""; }; - A22F02E4D515A4A1F92DEA3928A1AF06 /* geo_point.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = geo_point.cc; path = Firestore/core/src/geo_point.cc; sourceTree = ""; }; - A232EE144505410341763F9EB7451C87 /* civil_time.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = civil_time.cc; path = absl/time/civil_time.cc; sourceTree = ""; }; - A2340583FE1D961F4BB2F5B02FC39D52 /* mpscq.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mpscq.h; path = src/core/lib/gprpp/mpscq.h; sourceTree = ""; }; - A23E527884BF816168F3DABC2E28F8C3 /* GULLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULLogger.h; path = GoogleUtilities/Logger/Public/GoogleUtilities/GULLogger.h; sourceTree = ""; }; - A242612D4189C9B85A2B2BD2803FB223 /* murmur_hash.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = murmur_hash.cc; path = src/core/lib/gpr/murmur_hash.cc; sourceTree = ""; }; - A27F4C00F2AD8F30F5DC0B8435E3B604 /* FBLPromise+Async.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Async.m"; path = "Sources/FBLPromises/FBLPromise+Async.m"; sourceTree = ""; }; - A2851D59348D115D65B81B680B1C5F91 /* FBLPromise+Recover.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Recover.m"; path = "Sources/FBLPromises/FBLPromise+Recover.m"; sourceTree = ""; }; - A2900DB0FAEF91A2665F824BF2CA8E05 /* bernoulli_distribution.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bernoulli_distribution.h; path = absl/random/bernoulli_distribution.h; sourceTree = ""; }; - A2DA81D2FC2D25A5355AB178D9492634 /* quic_config.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = quic_config.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/listener/v3/quic_config.upbdefs.c"; sourceTree = ""; }; - A2E4909DF886B5885126D6ED4C1EAFD4 /* cord_rep_consume.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = cord_rep_consume.cc; path = absl/strings/internal/cord_rep_consume.cc; sourceTree = ""; }; - A2FA0A77E1FA58E2684AEBD1111E43A4 /* generate_real.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = generate_real.h; path = absl/random/internal/generate_real.h; sourceTree = ""; }; - A2FBB82FC4992CA4C6AD9D537DDBB59A /* time_zone_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = time_zone_posix.h; path = absl/time/internal/cctz/src/time_zone_posix.h; sourceTree = ""; }; - A310544C60E5C221BF27C5CE95CC0CFE /* skywalking.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = skywalking.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/trace/v3/skywalking.upbdefs.h"; sourceTree = ""; }; - A31DE3B1E7A336F231F7F2247652A4DF /* fault.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fault.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/extensions/filters/http/fault/v3/fault.upbdefs.h"; sourceTree = ""; }; - A34626575DFDE7D52F83F0AA88A3A41C /* connectivity_state.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = connectivity_state.h; path = include/grpc/impl/codegen/connectivity_state.h; sourceTree = ""; }; - A34E7F79675E30FBA8CF8367DD807154 /* grpc_service.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_service.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/grpc_service.upbdefs.h"; sourceTree = ""; }; - A37408BF6A75E1D7E40AD112CEEEE18A /* json_encode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = json_encode.h; path = third_party/upb/upb/json_encode.h; sourceTree = ""; }; - A37DF15936EC92D785824A9FA60C8B5F /* filesystem_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = filesystem_posix.cc; path = Firestore/core/src/util/filesystem_posix.cc; sourceTree = ""; }; - A381CF726D852B08A76346FD749508EF /* http_connection_manager.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = http_connection_manager.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upbdefs.c"; sourceTree = ""; }; - A39167BE79E4645A7CD3691B989E9D33 /* cord_rep_crc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cord_rep_crc.h; path = absl/strings/internal/cord_rep_crc.h; sourceTree = ""; }; - A395E66AD536C7C62165F35507EBFB9E /* alts_handshaker_client.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = alts_handshaker_client.cc; path = src/core/tsi/alts/handshaker/alts_handshaker_client.cc; sourceTree = ""; }; - A3A3BB5145813C69CE03F98D951F5089 /* channel_cc.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = channel_cc.cc; path = src/cpp/client/channel_cc.cc; sourceTree = ""; }; - A3A80F6F4EE1F4A421CF8B3930795462 /* GTMSessionUploadFetcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GTMSessionUploadFetcher.h; path = Sources/Core/Public/GTMSessionFetcher/GTMSessionUploadFetcher.h; sourceTree = ""; }; - A3A88764CFC4556A1D53FD8A112B5570 /* cpu_linux.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = cpu_linux.cc; path = src/core/lib/gpr/cpu_linux.cc; sourceTree = ""; }; - A3B1EE468A2818746D586FEAEA120196 /* p256-x86_64.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "p256-x86_64.h"; path = "src/crypto/fipsmodule/ec/p256-x86_64.h"; sourceTree = ""; }; - A3B6B704338E1D9AB7E752CFB91F4C63 /* inline_variable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = inline_variable.h; path = absl/base/internal/inline_variable.h; sourceTree = ""; }; - A3BFC0CD40E63CA07E47AE82C4A39765 /* remote_objc_bridge.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = remote_objc_bridge.cc; path = Firestore/core/src/remote/remote_objc_bridge.cc; sourceTree = ""; }; - A3E2892652A28BEE5C340BA46DA11B2B /* config_dump_shared.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = config_dump_shared.upb.c; path = "src/core/ext/upb-generated/envoy/admin/v3/config_dump_shared.upb.c"; sourceTree = ""; }; - A3E3233D995B2BC8E7817318911B7B70 /* status.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.upb.h; path = "src/core/ext/upb-generated/udpa/annotations/status.upb.h"; sourceTree = ""; }; - A426100975DC820276715A027B9F351A /* FIRWithdrawMFAResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRWithdrawMFAResponse.h; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/Unenroll/FIRWithdrawMFAResponse.h; sourceTree = ""; }; - A42C86430500DABACD590D16FE79A2E6 /* low_level_alloc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = low_level_alloc.h; path = absl/base/internal/low_level_alloc.h; sourceTree = ""; }; - A443B97D8CDBA2CEB758E38AB2A0E487 /* event_service_config.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = event_service_config.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/event_service_config.upb.h"; sourceTree = ""; }; - A45272F65493ACA4073FD05BED34A1D4 /* randen_slow.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = randen_slow.cc; path = absl/random/internal/randen_slow.cc; sourceTree = ""; }; - A46870EAB67F7D85FB92B5A0E7562035 /* cpu-aarch64-win.c */ = {isa = PBXFileReference; includeInIndex = 1; name = "cpu-aarch64-win.c"; path = "src/crypto/cpu-aarch64-win.c"; sourceTree = ""; }; - A46F18014AAD3371E655B03883FDC642 /* transport_security_common_api.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = transport_security_common_api.h; path = src/core/tsi/alts/handshaker/transport_security_common_api.h; sourceTree = ""; }; - A476216E2694E77BEC254D311D426525 /* common.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = common.upb.c; path = "src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/common.upb.c"; sourceTree = ""; }; - A488D54FFBC330077FBF21FD836C7E39 /* a_d2i_fp.c */ = {isa = PBXFileReference; includeInIndex = 1; name = a_d2i_fp.c; path = src/crypto/asn1/a_d2i_fp.c; sourceTree = ""; }; - A4A905EAF87BE710848B15EDA8DAA6C5 /* FIRAuthBackend+MultiFactor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FIRAuthBackend+MultiFactor.m"; path = "FirebaseAuth/Sources/Backend/FIRAuthBackend+MultiFactor.m"; sourceTree = ""; }; - A4AB1593199644D04FC1A71CCB56EE85 /* server_interceptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_interceptor.h; path = include/grpcpp/impl/codegen/server_interceptor.h; sourceTree = ""; }; - A4B20B3F09227B3FED1D0B403D986DD5 /* field_path.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = field_path.cc; path = Firestore/core/src/model/field_path.cc; sourceTree = ""; }; - A4B884E0F6477324A11CAD093CC5E691 /* backoff.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = backoff.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/backoff.upb.h"; sourceTree = ""; }; - A4B887E6EEB312E5EABD675FE5A73689 /* time_support.c */ = {isa = PBXFileReference; includeInIndex = 1; name = time_support.c; path = src/crypto/asn1/time_support.c; sourceTree = ""; }; - A4BA6300457AF16415E6C78C3FD82B33 /* grpc_if_nametoindex.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_if_nametoindex.h; path = src/core/lib/iomgr/grpc_if_nametoindex.h; sourceTree = ""; }; - A4C7429DFE1506B391E737C59B229CBB /* cache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cache.h; path = include/leveldb/cache.h; sourceTree = ""; }; - A4C7F687737E0863C1664AC8F6B58258 /* metrics_service.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = metrics_service.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/metrics/v3/metrics_service.upbdefs.h"; sourceTree = ""; }; - A4CB92C65C9CE37A9A610F84EC988284 /* benchmark.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = benchmark.h; path = third_party/re2/util/benchmark.h; sourceTree = ""; }; - A4CC2A4E07ED5C589FB43C94977A3B06 /* outlier_detection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = outlier_detection.h; path = src/core/ext/filters/client_channel/lb_policy/outlier_detection/outlier_detection.h; sourceTree = ""; }; - A4CDF50E87B24FE0CBD4882020F45498 /* byte_buffer_cc.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = byte_buffer_cc.cc; path = src/cpp/util/byte_buffer_cc.cc; sourceTree = ""; }; - A4D6807DD3206F07A821CFCDDA6E7C46 /* client_authority_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = client_authority_filter.cc; path = src/core/ext/filters/http/client_authority_filter.cc; sourceTree = ""; }; - A4DE606B4FF60CEDC3C63BB99C4AE170 /* dynamic_thread_pool.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = dynamic_thread_pool.cc; path = src/cpp/server/dynamic_thread_pool.cc; sourceTree = ""; }; - A4E0F0C61DAC9CA7ADFFE5630F048666 /* FIRAppCheckTokenResultInterop.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAppCheckTokenResultInterop.h; path = FirebaseAppCheck/Interop/FIRAppCheckTokenResultInterop.h; sourceTree = ""; }; - A4E8417897D5A65D9CC998A8B44A461A /* file_external_account_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = file_external_account_credentials.cc; path = src/core/lib/security/credentials/external/file_external_account_credentials.cc; sourceTree = ""; }; - A4F14108F3DADF1F966739BDA996AE37 /* handshake.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = handshake.cc; path = src/ssl/handshake.cc; sourceTree = ""; }; - A501483E8B822A0B814FC13801F2C284 /* struct.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = struct.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/protobuf/struct.upbdefs.h"; sourceTree = ""; }; - A52FF711E18DE84D139272E768DC85AC /* hard_assert.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = hard_assert.cc; path = Firestore/core/src/util/hard_assert.cc; sourceTree = ""; }; - A544F460FF19D87AC447EE1C89A3858E /* FIRPhoneAuthCredential.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRPhoneAuthCredential.m; path = FirebaseAuth/Sources/AuthProvider/Phone/FIRPhoneAuthCredential.m; sourceTree = ""; }; - A550F95AAE9F531FC223DD3E232C20A1 /* wrappers.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = wrappers.upbdefs.c; path = "src/core/ext/upbdefs-generated/google/protobuf/wrappers.upbdefs.c"; sourceTree = ""; }; - A587C3C43E5633BE986D1736285F319C /* ssl_cipher.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = ssl_cipher.cc; path = src/ssl/ssl_cipher.cc; sourceTree = ""; }; - A588888A7CBD9E880A3787089F49BAFD /* scoped_route.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = scoped_route.upb.c; path = "src/core/ext/upb-generated/envoy/config/route/v3/scoped_route.upb.c"; sourceTree = ""; }; - A590B23F87299401E5D446F0B1E26DB3 /* channel_stack_builder_impl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_stack_builder_impl.h; path = src/core/lib/channel/channel_stack_builder_impl.h; sourceTree = ""; }; - A5A3C58614D496B0EDC360F5E203068D /* FIRMultiFactor+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FIRMultiFactor+Internal.h"; path = "FirebaseAuth/Sources/MultiFactor/FIRMultiFactor+Internal.h"; sourceTree = ""; }; - A5AAD1B37ECC49505758A64FDF845AA2 /* slice_refcount.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = slice_refcount.h; path = src/core/lib/slice/slice_refcount.h; sourceTree = ""; }; - A5C816D318C5D37C3F05B39D62C3794A /* ev_apple.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ev_apple.h; path = src/core/lib/iomgr/ev_apple.h; sourceTree = ""; }; - A5D04B395D420B5F4AC1334B57B5702B /* string_apple.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = string_apple.cc; path = Firestore/core/src/util/string_apple.cc; sourceTree = ""; }; - A5D25A97771ACA3EF86878E4A7E37A9F /* hash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hash.h; path = absl/hash/hash.h; sourceTree = ""; }; - A5DAFD3CFE50769E757F5D667AF4FA5A /* s3_both.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = s3_both.cc; path = src/ssl/s3_both.cc; sourceTree = ""; }; - A5EE704383DA9A5204931F226D0887FA /* polling_entity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = polling_entity.h; path = src/core/lib/iomgr/polling_entity.h; sourceTree = ""; }; - A600817231945A583370FABE0FC9D9BF /* socket_notifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = socket_notifier.h; path = src/core/lib/event_engine/socket_notifier.h; sourceTree = ""; }; - A611E9F99015DD53907500A2E3D508C0 /* endpoint_components.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endpoint_components.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/endpoint_components.upbdefs.h"; sourceTree = ""; }; - A6196876EC6F4D791C83ACB255423247 /* ssl_transport_security.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = ssl_transport_security.cc; path = src/core/tsi/ssl_transport_security.cc; sourceTree = ""; }; - A61A1B7A9F51719F32DADBB779BD9FF3 /* digest_extra.c */ = {isa = PBXFileReference; includeInIndex = 1; name = digest_extra.c; path = src/crypto/digest_extra/digest_extra.c; sourceTree = ""; }; - A61DC8CB33FFB763430DF47BFD79C9BA /* FIRAdditionalUserInfo_Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAdditionalUserInfo_Internal.h; path = FirebaseAuth/Sources/User/FIRAdditionalUserInfo_Internal.h; sourceTree = ""; }; - A642B9AD423A215C5CA785F2D238C99F /* iocp_windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = iocp_windows.h; path = src/core/lib/iomgr/iocp_windows.h; sourceTree = ""; }; - A662F9880184B8E8543950427DF18DAD /* identity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = identity.h; path = absl/base/internal/identity.h; sourceTree = ""; }; - A66317ED8A2DB02175C05C9907EBD7A6 /* common.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = common.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/tap/v3/common.upbdefs.c"; sourceTree = ""; }; - A66FB766538D394BF0D9C396A335AB64 /* check_gcp_environment_no_op.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = check_gcp_environment_no_op.cc; path = src/core/lib/security/credentials/alts/check_gcp_environment_no_op.cc; sourceTree = ""; }; - A68ACCE8471118CDE72D1AC14F1BCD0D /* FIRAuthAppCredential.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthAppCredential.h; path = FirebaseAuth/Sources/SystemService/FIRAuthAppCredential.h; sourceTree = ""; }; - A6938644DD75457C14B5B6E9512FBD54 /* http_client_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = http_client_filter.cc; path = src/core/ext/filters/http/client/http_client_filter.cc; sourceTree = ""; }; - A6ADDDBA64189266B0E7E571BFFCFA0E /* authorization_policy_provider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = authorization_policy_provider.h; path = src/core/lib/security/authorization/authorization_policy_provider.h; sourceTree = ""; }; - A6AE9C55E3DA473D56A4C2144013731A /* grpc_tls_credentials_options.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_tls_credentials_options.h; path = src/core/lib/security/credentials/tls/grpc_tls_credentials_options.h; sourceTree = ""; }; - A6B67B5FA8091DDB641099C405597FFF /* secret.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = secret.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/secret.upbdefs.h"; sourceTree = ""; }; - A6BC67CC6919CFE6542F8FD649405150 /* router.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = router.upb.h; path = "src/core/ext/upb-generated/envoy/extensions/filters/http/router/v3/router.upb.h"; sourceTree = ""; }; - A6BC8DBB3746C8D11AF8FC08B11F99BD /* wire_writer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = wire_writer.h; path = src/core/ext/transport/binder/wire_format/wire_writer.h; sourceTree = ""; }; - A6BE8BF1FD8433F227C364FFAD4BB0FB /* fork.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fork.h; path = src/core/lib/gprpp/fork.h; sourceTree = ""; }; - A6C366CA67F3B366939079830CB8BB7B /* grpc_method_list.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = grpc_method_list.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/grpc_method_list.upbdefs.c"; sourceTree = ""; }; - A6D4F9E4F86E576A29E4646C9CF2EE9C /* init_dump.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = init_dump.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/admin/v3/init_dump.upbdefs.h"; sourceTree = ""; }; - A6E52397D0320FBBA9C5C2F477CFDE34 /* stream_map.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = stream_map.cc; path = src/core/ext/transport/chttp2/transport/stream_map.cc; sourceTree = ""; }; - A7045899A59CF82A8E1173B7BDDA8019 /* FIRFinalizeMFASignInRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRFinalizeMFASignInRequest.h; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/SignIn/FIRFinalizeMFASignInRequest.h; sourceTree = ""; }; - A70AC419A37C643C06499E6E11CD83FB /* csds.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = csds.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/service/status/v3/csds.upbdefs.h"; sourceTree = ""; }; - A72DD36EAAF8B821F3802132B4314307 /* ext_dat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ext_dat.h; path = src/crypto/x509v3/ext_dat.h; sourceTree = ""; }; - A72E0E9E243C57737901FE4ACF35D259 /* skywalking.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = skywalking.upb.h; path = "src/core/ext/upb-generated/envoy/config/trace/v3/skywalking.upb.h"; sourceTree = ""; }; - A75CB53763125AFA6FD0C4E65630A69D /* filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = filter.cc; path = Firestore/core/src/core/filter.cc; sourceTree = ""; }; - A785FC692ECB00E4071B90DDBF6DBEDC /* debug_location.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = debug_location.h; path = src/core/lib/gprpp/debug_location.h; sourceTree = ""; }; - A7921AFE336345CA7A451D685B145835 /* FBLPromise+Delay.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Delay.h"; path = "Sources/FBLPromises/include/FBLPromise+Delay.h"; sourceTree = ""; }; - A7956C890CA8D02BDBF18721515796DF /* unaligned_access.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = unaligned_access.h; path = absl/base/internal/unaligned_access.h; sourceTree = ""; }; - A79AAE49FF4B97318D57FAE267F533E7 /* async_generic_service.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = async_generic_service.h; path = include/grpcpp/generic/async_generic_service.h; sourceTree = ""; }; - A7A23B7ABD1D59F3882FBE7ED91812A8 /* propagation_bits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = propagation_bits.h; path = include/grpc/impl/codegen/propagation_bits.h; sourceTree = ""; }; - A7A27F20AA6A790B3928D35C17CF6A55 /* promise.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = promise.h; path = src/core/lib/promise/promise.h; sourceTree = ""; }; - A7A414A53DBA93BAFFAD52C8AB702783 /* base.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = base.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/base.upbdefs.h"; sourceTree = ""; }; - A7ADF0D346BC8E8E730B566CE5CBAC90 /* query_listener.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = query_listener.cc; path = Firestore/core/src/core/query_listener.cc; sourceTree = ""; }; - A7B503E57EA992EA2106B77A44C36332 /* port_def.inc */ = {isa = PBXFileReference; includeInIndex = 1; name = port_def.inc; path = third_party/upb/upb/port_def.inc; sourceTree = ""; }; - A7C76F815BA1ACCF51948FA141EE6306 /* p256-x86_64-table.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "p256-x86_64-table.h"; path = "src/crypto/fipsmodule/ec/p256-x86_64-table.h"; sourceTree = ""; }; - A7C7926ABCF4E74D14D82CD40AFBA279 /* document_key_reference.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = document_key_reference.cc; path = Firestore/core/src/local/document_key_reference.cc; sourceTree = ""; }; - A7E87EB86AC3EA8C6BFD1B2659FC508E /* cord_rep_btree_navigator.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = cord_rep_btree_navigator.cc; path = absl/strings/internal/cord_rep_btree_navigator.cc; sourceTree = ""; }; - A7FDC40B27C34AEE930A9E902411346C /* channelz_registry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channelz_registry.h; path = src/core/lib/channel/channelz_registry.h; sourceTree = ""; }; - A8238DCC349BED4246297BA768DD248D /* clusters.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = clusters.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/admin/v3/clusters.upbdefs.h"; sourceTree = ""; }; - A83557986C46459181FF25BCD04D1EAC /* randen.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = randen.cc; path = absl/random/internal/randen.cc; sourceTree = ""; }; - A83744DCEBD753A2CAB7F3D09FE8EB0A /* common.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = common.upb.h; path = "src/core/ext/upb-generated/envoy/config/tap/v3/common.upb.h"; sourceTree = ""; }; - A83BFE0718D50FCFB1CD02FE8B2EA6A5 /* distribution_caller.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = distribution_caller.h; path = absl/random/internal/distribution_caller.h; sourceTree = ""; }; - A85E78AB97547B75BCEE618583AD6E4E /* aead.c */ = {isa = PBXFileReference; includeInIndex = 1; name = aead.c; path = src/crypto/fipsmodule/cipher/aead.c; sourceTree = ""; }; - A861397642F26D9B3A2B8A8734D25B2F /* client_load_reporting_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = client_load_reporting_filter.h; path = src/core/ext/filters/client_channel/lb_policy/grpclb/client_load_reporting_filter.h; sourceTree = ""; }; - A868DF2F2526BF120A5AB8D1ACA795B2 /* tls_spiffe_validator_config.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = tls_spiffe_validator_config.upb.c; path = "src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upb.c"; sourceTree = ""; }; - A872AE21ECB2A584308F52D65B485D25 /* a_digest.c */ = {isa = PBXFileReference; includeInIndex = 1; name = a_digest.c; path = src/crypto/x509/a_digest.c; sourceTree = ""; }; - A877D7812A8A5AD96E22FC18E041E923 /* snapshot_metadata.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = snapshot_metadata.cc; path = Firestore/core/src/api/snapshot_metadata.cc; sourceTree = ""; }; - A88434D3635635EA4C0C18CB712F73F2 /* ev_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = ev_posix.cc; path = src/core/lib/iomgr/ev_posix.cc; sourceTree = ""; }; - A88FD0B189A0AE3A785602FB06B880EE /* sync_engine.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = sync_engine.cc; path = Firestore/core/src/core/sync_engine.cc; sourceTree = ""; }; - A890C3B891667F310EF5CD9C87790FA1 /* FIRStartMFASignInResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRStartMFASignInResponse.h; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/SignIn/FIRStartMFASignInResponse.h; sourceTree = ""; }; - A89BBF14588035900CC1C96427D7C9CE /* stack.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stack.h; path = src/include/openssl/stack.h; sourceTree = ""; }; - A8B9AAA6BB6FE63B57970ED7E057B10A /* lru_garbage_collector.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = lru_garbage_collector.cc; path = Firestore/core/src/local/lru_garbage_collector.cc; sourceTree = ""; }; - A8C4B1712BE80B5A9D88261EE2DCB11E /* http_server_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_server_filter.h; path = src/core/ext/filters/http/server/http_server_filter.h; sourceTree = ""; }; - A8C56ACE961659F41F913171D22DCA6E /* RecaptchaInterop-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "RecaptchaInterop-Info.plist"; sourceTree = ""; }; - A8C7ED750C0FC6E3364CBF754A504CBF /* gcd_extra.c */ = {isa = PBXFileReference; includeInIndex = 1; name = gcd_extra.c; path = src/crypto/fipsmodule/bn/gcd_extra.c; sourceTree = ""; }; - A8CE24F6E2CE893BDB9D00AECBEF5F21 /* authorization_policy_provider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = authorization_policy_provider.h; path = include/grpcpp/security/authorization_policy_provider.h; sourceTree = ""; }; - A8D0DD280B143554F2857DC8936CCEB5 /* validate_metadata.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = validate_metadata.h; path = src/core/lib/surface/validate_metadata.h; sourceTree = ""; }; - A8D2EBDBC6DB283DC7EDE9455670FED6 /* security.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = security.upbdefs.h; path = "src/core/ext/upbdefs-generated/xds/annotations/v3/security.upbdefs.h"; sourceTree = ""; }; - A8E438A2D1EC2135495CEE14C1854BAA /* global_config_custom.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = global_config_custom.h; path = src/core/lib/gprpp/global_config_custom.h; sourceTree = ""; }; - A9081E636F55C0408610B17204A26495 /* firebase_app_check_credentials_provider_apple.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = firebase_app_check_credentials_provider_apple.mm; path = Firestore/core/src/credentials/firebase_app_check_credentials_provider_apple.mm; sourceTree = ""; }; - A90CD0E35EB42BC9F1C27E7052F7765A /* alts_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_credentials.h; path = src/core/lib/security/credentials/alts/alts_credentials.h; sourceTree = ""; }; - A918E8AED381B836B71CD875DDC0BC7E /* discovery.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = discovery.upb.c; path = "src/core/ext/upb-generated/envoy/service/discovery/v3/discovery.upb.c"; sourceTree = ""; }; - A92A4185253E91A5A3AB0084AC4C601D /* authority.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = authority.upbdefs.c; path = "src/core/ext/upbdefs-generated/xds/core/v3/authority.upbdefs.c"; sourceTree = ""; }; - A92B31043C7B1DAC7957E5068CE99A7A /* socket_mutator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = socket_mutator.h; path = src/core/lib/iomgr/socket_mutator.h; sourceTree = ""; }; - A92B78475FEC0A38FF26D0B1326DDA4B /* boringssl_prefix_symbols.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = boringssl_prefix_symbols.h; path = src/include/openssl/boringssl_prefix_symbols.h; sourceTree = ""; }; - A93317B5FC473C4C08B66C151A1349FA /* call_finalization.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = call_finalization.h; path = src/core/lib/channel/call_finalization.h; sourceTree = ""; }; - A942CC33E482BF6965F3962A0833FAA3 /* cord_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cord_internal.h; path = absl/strings/internal/cord_internal.h; sourceTree = ""; }; - A95749CF760FA5CC0AAF95B5249DB9F6 /* handshaker_registry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = handshaker_registry.h; path = src/core/lib/transport/handshaker_registry.h; sourceTree = ""; }; - A9594DA8778FFE481253A96661820EEC /* cmp.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cmp.c; path = src/crypto/fipsmodule/bn/cmp.c; sourceTree = ""; }; - A960A43C491A4200759DE4D6A2355A8B /* v3_akeya.c */ = {isa = PBXFileReference; includeInIndex = 1; name = v3_akeya.c; path = src/crypto/x509v3/v3_akeya.c; sourceTree = ""; }; - A9634BE1AA404E2B168CEAD0A5503CF9 /* zipkin.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = zipkin.upb.h; path = "src/core/ext/upb-generated/envoy/config/trace/v3/zipkin.upb.h"; sourceTree = ""; }; - A9C17134E8217124BEC73B1E02F85930 /* x509_def.c */ = {isa = PBXFileReference; includeInIndex = 1; name = x509_def.c; path = src/crypto/x509/x509_def.c; sourceTree = ""; }; - A9E23F975C14BCCBF33D6F98C8545911 /* bootstrap.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = bootstrap.upb.c; path = "src/core/ext/upb-generated/envoy/config/bootstrap/v3/bootstrap.upb.c"; sourceTree = ""; }; - AA05F56DBB63581A22057AACB9767BF1 /* http_inputs.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_inputs.upb.h; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/http_inputs.upb.h"; sourceTree = ""; }; - AA49DD5B4B2C5FBA17F0B9BB89C1C4AC /* hashtablez_sampler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hashtablez_sampler.h; path = absl/container/internal/hashtablez_sampler.h; sourceTree = ""; }; - AA5B1D1D0A643DB8CEB80159391843CB /* alts_record_protocol_crypter_common.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_record_protocol_crypter_common.h; path = src/core/tsi/alts/frame_protector/alts_record_protocol_crypter_common.h; sourceTree = ""; }; - AA65A4B87E769EF917B30DB35A891ECC /* curve25519_64.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = curve25519_64.h; path = src/third_party/fiat/curve25519_64.h; sourceTree = ""; }; - AA6C548C2BAB51D70A6A45A8D0C335C0 /* p256_32.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = p256_32.h; path = src/third_party/fiat/p256_32.h; sourceTree = ""; }; - AA84801997A087F882A2A27535485628 /* regex.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = regex.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/type/matcher/v3/regex.upbdefs.c"; sourceTree = ""; }; - AA8B78D00C90CDF4189F04D9F26BD698 /* grpc_root_certificate_finder_generated.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = grpc_root_certificate_finder_generated.cc; path = Firestore/core/src/remote/grpc_root_certificate_finder_generated.cc; sourceTree = ""; }; - AA8CEB25D40CE457BDB3403F185F30D2 /* reflection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = reflection.h; path = third_party/upb/upb/reflection.h; sourceTree = ""; }; - AA8EA63598435068637EB92513E25E03 /* sockaddr_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sockaddr_posix.h; path = src/core/lib/iomgr/sockaddr_posix.h; sourceTree = ""; }; - AAAEEF1B5CD11C792D2412F5AA972250 /* FIRAuthStoredUserManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthStoredUserManager.m; path = FirebaseAuth/Sources/SystemService/FIRAuthStoredUserManager.m; sourceTree = ""; }; - AAC0C904D9E314F597F12DC559C01017 /* context_params.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = context_params.upb.c; path = "src/core/ext/upb-generated/xds/core/v3/context_params.upb.c"; sourceTree = ""; }; - AAC56110EE299D0D2FA70F9F057ECA58 /* ssl_session_boringssl.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = ssl_session_boringssl.cc; path = src/core/tsi/ssl/session_cache/ssl_session_boringssl.cc; sourceTree = ""; }; - AACA6C35EF1C0FE17FA11109E6C36055 /* raw_hash_set.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = raw_hash_set.cc; path = absl/container/internal/raw_hash_set.cc; sourceTree = ""; }; - AAE2393B71DBAF6E4370F754FAC3C3AC /* frame_window_update.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = frame_window_update.h; path = src/core/ext/transport/chttp2/transport/frame_window_update.h; sourceTree = ""; }; - AAE83E33C1AAF30615809B215BFFC870 /* v3_utl.c */ = {isa = PBXFileReference; includeInIndex = 1; name = v3_utl.c; path = src/crypto/x509v3/v3_utl.c; sourceTree = ""; }; - AAF2A787394A072E8F8444BEDEEB7AC2 /* secure_auth_context.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = secure_auth_context.cc; path = src/cpp/common/secure_auth_context.cc; sourceTree = ""; }; - AB0542540352019915F6C28BB23262D4 /* ref_counted_ptr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ref_counted_ptr.h; path = src/core/lib/gprpp/ref_counted_ptr.h; sourceTree = ""; }; - AB0A1508E260C87F9964408175904AE3 /* metadata.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = metadata.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/metadata/v3/metadata.upbdefs.h"; sourceTree = ""; }; - AB0F3869830E90DBB369E5D6A2A2A7E3 /* outlier_detection.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = outlier_detection.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/cluster/v3/outlier_detection.upbdefs.h"; sourceTree = ""; }; - AB2410985D9366A0D9F891EE87AA247A /* FirebaseAuth.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseAuth.debug.xcconfig; sourceTree = ""; }; - AB2850FB9853861A0558E11F6C64924A /* error.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = error.h; path = src/core/lib/iomgr/error.h; sourceTree = ""; }; - AB36978DA8D2CD6347A9AE6C1EE0D3AE /* gRPC-Core.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "gRPC-Core.release.xcconfig"; sourceTree = ""; }; - AB48DAC69BE4905C847040BC118C4997 /* pcy_tree.c */ = {isa = PBXFileReference; includeInIndex = 1; name = pcy_tree.c; path = src/crypto/x509v3/pcy_tree.c; sourceTree = ""; }; - AB4AE245EC81A7D129C46D9AE9B81DF6 /* handoff.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = handoff.cc; path = src/ssl/handoff.cc; sourceTree = ""; }; - AB55889357BD0B51C471DCF129DE7491 /* gpr_types.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = gpr_types.h; path = include/grpc/impl/codegen/gpr_types.h; sourceTree = ""; }; - AB76D999C9ABCA718FC360F0332E0F9C /* port.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = port.h; path = absl/base/port.h; sourceTree = ""; }; - AB78583279404F5C88D307D00A646E9B /* v3_skey.c */ = {isa = PBXFileReference; includeInIndex = 1; name = v3_skey.c; path = src/crypto/x509v3/v3_skey.c; sourceTree = ""; }; - AB94A709C35A711A9889E89C75561F6B /* intercepted_channel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = intercepted_channel.h; path = include/grpcpp/impl/codegen/intercepted_channel.h; sourceTree = ""; }; - AB99B1D72A6245C3C5255A73316847B5 /* text_encode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = text_encode.h; path = third_party/upb/upb/text_encode.h; sourceTree = ""; }; - ABC3F3E547423CFA297D0DDCC6814B75 /* add.c */ = {isa = PBXFileReference; includeInIndex = 1; name = add.c; path = src/crypto/fipsmodule/bn/add.c; sourceTree = ""; }; - ABCC6D488CD6F5465384E1CAD633446A /* pem_oth.c */ = {isa = PBXFileReference; includeInIndex = 1; name = pem_oth.c; path = src/crypto/pem/pem_oth.c; sourceTree = ""; }; - AC002DDC2BA7320479D7D25EE5B0BCC9 /* connectivity_monitor_apple.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = connectivity_monitor_apple.mm; path = Firestore/core/src/remote/connectivity_monitor_apple.mm; sourceTree = ""; }; - AC0CD3651DEF80AFDD5CA8E923B2F7DA /* config_source.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = config_source.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/config_source.upb.h"; sourceTree = ""; }; - AC1B666B0C9BB3B3CC5A3C2EA4879727 /* generic_stub.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = generic_stub.h; path = include/grpcpp/generic/generic_stub.h; sourceTree = ""; }; - AC3504771F4D31B13FEC676FAD30D6FA /* transaction.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = transaction.cc; path = src/core/ext/transport/binder/wire_format/transaction.cc; sourceTree = ""; }; - AC40AB2ADE36E501E757D387E042971E /* ratelimit_strategy.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ratelimit_strategy.upb.h; path = "src/core/ext/upb-generated/envoy/type/v3/ratelimit_strategy.upb.h"; sourceTree = ""; }; - AC46BE2233BA5C2F7CBF991ED9D80B7D /* client_channel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = client_channel.h; path = src/core/ext/filters/client_channel/client_channel.h; sourceTree = ""; }; - AC4D8475979B94731553CF3718F2032C /* util.c */ = {isa = PBXFileReference; includeInIndex = 1; name = util.c; path = src/crypto/fipsmodule/ec/util.c; sourceTree = ""; }; - AC62B81E56FEA11182C8E0F2AB7A0E0C /* accesslog.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = accesslog.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/accesslog/v3/accesslog.upbdefs.c"; sourceTree = ""; }; - AC8AC73E3AFD7B618E391654E911B0E8 /* xds_routing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_routing.h; path = src/core/ext/xds/xds_routing.h; sourceTree = ""; }; - AC8B515E9882F2F80A27025C3F996B38 /* security_handshaker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = security_handshaker.h; path = src/core/lib/security/transport/security_handshaker.h; sourceTree = ""; }; - ACBD2765C696BE0C99C66D5005CD44E4 /* syntax.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = syntax.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/syntax.upbdefs.h"; sourceTree = ""; }; - ACCE9A697FB604396DD134232516E1D3 /* FIRVerifyPhoneNumberResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRVerifyPhoneNumberResponse.m; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyPhoneNumberResponse.m; sourceTree = ""; }; - ACD7B53A86A9AED4476EEF2050FD6B2A /* time_zone_libc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = time_zone_libc.h; path = absl/time/internal/cctz/src/time_zone_libc.h; sourceTree = ""; }; - ACD9F36B8B89E40BA619C3548BE1D1DE /* FirebaseCore-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FirebaseCore-dummy.m"; sourceTree = ""; }; - ACE59FE17C53B0BB7B2A2B6E304E64EF /* http_connection_manager.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = http_connection_manager.upb.c; path = "src/core/ext/upb-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb.c"; sourceTree = ""; }; - ACEC5209B4668F4A4CB6982AC0CE49A6 /* str_split.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = str_split.cc; path = absl/strings/str_split.cc; sourceTree = ""; }; - ACFC142DFC406C2332224C832F68BB8A /* duration.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = duration.upb.h; path = "src/core/ext/upb-generated/google/protobuf/duration.upb.h"; sourceTree = ""; }; - ACFF85EC359F9CD76D234DBD92933B9C /* variant.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = variant.h; path = absl/types/variant.h; sourceTree = ""; }; - AD066F04F8319E8B9845548928A99F15 /* context_params.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = context_params.upb.h; path = "src/core/ext/upb-generated/xds/core/v3/context_params.upb.h"; sourceTree = ""; }; - AD102AEB5C4E3A23B73D64E4B4E8889D /* decode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = decode.h; path = third_party/upb/upb/decode.h; sourceTree = ""; }; - AD1DFC597DB1D5020134118190C806FC /* slice_refcount.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = slice_refcount.h; path = src/core/lib/slice/slice_refcount.h; sourceTree = ""; }; - AD20F6FD78E5B375E7410117E248CD3F /* sparse_array.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sparse_array.h; path = third_party/re2/re2/sparse_array.h; sourceTree = ""; }; - AD2E12207946547B6E6B68790692F2B9 /* secure_endpoint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = secure_endpoint.h; path = src/core/lib/security/transport/secure_endpoint.h; sourceTree = ""; }; - AD59B65829EA51515373573B12B1F26E /* external_connection_acceptor_impl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = external_connection_acceptor_impl.h; path = src/cpp/server/external_connection_acceptor_impl.h; sourceTree = ""; }; - AD7290A378677F09E776020533165350 /* dh_asn1.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dh_asn1.c; path = src/crypto/dh_extra/dh_asn1.c; sourceTree = ""; }; - AD878EE3680847148D33B693B1B39065 /* unix_sockets_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = unix_sockets_posix.h; path = src/core/lib/iomgr/unix_sockets_posix.h; sourceTree = ""; }; - AD8BD74603E3D6BCEC62D93F5D7C5653 /* client_channel_channelz.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = client_channel_channelz.h; path = src/core/ext/filters/client_channel/client_channel_channelz.h; sourceTree = ""; }; - AD8C51E04512E3704FB6C134C9E96456 /* sockaddr_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sockaddr_utils.h; path = src/core/lib/address_utils/sockaddr_utils.h; sourceTree = ""; }; - AD8CB2CD900CA1D9BC0BFDF9A44CD056 /* xds_client_grpc.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = xds_client_grpc.cc; path = src/core/ext/xds/xds_client_grpc.cc; sourceTree = ""; }; - ADC5DD8780F4BBC1010477374CE03C3B /* format_request.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = format_request.cc; path = src/core/lib/http/format_request.cc; sourceTree = ""; }; - ADC7D617245F4925E8E802FE2851624B /* certificate_provider_factory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = certificate_provider_factory.h; path = src/core/lib/security/certificate_provider/certificate_provider_factory.h; sourceTree = ""; }; - ADCD8DFE593A8790EF8DF76D7659EFE8 /* security.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = security.upb.h; path = "src/core/ext/upb-generated/xds/annotations/v3/security.upb.h"; sourceTree = ""; }; - ADD4969D6D815F70337DC182DD83FCDF /* env.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = env.cc; path = util/env.cc; sourceTree = ""; }; - ADE3576C2771B9A21FDAAFCDAE113061 /* randen_round_keys.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = randen_round_keys.cc; path = absl/random/internal/randen_round_keys.cc; sourceTree = ""; }; - ADE80FD2EF1876AB92683AA3B4B05A69 /* metadata_array.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = metadata_array.cc; path = src/core/lib/surface/metadata_array.cc; sourceTree = ""; }; - ADFA82BF47AEB5DDFF8952C8640319DC /* frame_goaway.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = frame_goaway.cc; path = src/core/ext/transport/chttp2/transport/frame_goaway.cc; sourceTree = ""; }; - AE1AEDA0D286A91F35AFB762DB76FEF4 /* status_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status_internal.h; path = absl/status/internal/status_internal.h; sourceTree = ""; }; - AE2278CE659340040C067C139F57861A /* byte_buffer.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = byte_buffer.cc; path = src/core/lib/surface/byte_buffer.cc; sourceTree = ""; }; - AE268BBE40AA9437AC68B760DA236531 /* in_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = in_filter.cc; path = Firestore/core/src/core/in_filter.cc; sourceTree = ""; }; - AE382D3C3EA64FFB32C2078EAC2FAB18 /* thread_annotations.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = thread_annotations.h; path = port/thread_annotations.h; sourceTree = ""; }; - AE44FC55DB50C233E621EE8C33D2EBAA /* x_info.c */ = {isa = PBXFileReference; includeInIndex = 1; name = x_info.c; path = src/crypto/x509/x_info.c; sourceTree = ""; }; - AE4E1FD8D0B3217DF4D3446EFC25D5B9 /* md4.c */ = {isa = PBXFileReference; includeInIndex = 1; name = md4.c; path = src/crypto/fipsmodule/md4/md4.c; sourceTree = ""; }; - AE703F476C16C469B372C72422DE1C3B /* retry_service_config.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = retry_service_config.cc; path = src/core/ext/filters/client_channel/retry_service_config.cc; sourceTree = ""; }; - AE84CF73D366FB2E5DB175CDC0CBC947 /* alts_grpc_record_protocol_common.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = alts_grpc_record_protocol_common.cc; path = src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_record_protocol_common.cc; sourceTree = ""; }; - AE8C374CFD33BAB906F085E13C66FEC1 /* extension.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = extension.upb.h; path = "src/core/ext/upb-generated/xds/core/v3/extension.upb.h"; sourceTree = ""; }; - AEAC7A743D481BAE51F0D1CAACC0B82F /* utility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = utility.h; path = absl/utility/utility.h; sourceTree = ""; }; - AED0B8E01D505F3709886D52684EE68F /* config_dump_shared.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = config_dump_shared.upb.h; path = "src/core/ext/upb-generated/envoy/admin/v3/config_dump_shared.upb.h"; sourceTree = ""; }; - AEFC4A41773CD797AAF9560EDAF6A676 /* firestore.nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = firestore.nanopb.cc; path = Firestore/Protos/nanopb/google/firestore/v1/firestore.nanopb.cc; sourceTree = ""; }; - AF10B33C822A9966AA391F128E3E64CA /* flow_control.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = flow_control.h; path = src/core/ext/transport/chttp2/transport/flow_control.h; sourceTree = ""; }; - AF1F20D24A49CB3A1A6F9B6A5741B837 /* sha1.c */ = {isa = PBXFileReference; includeInIndex = 1; name = sha1.c; path = src/crypto/fipsmodule/sha/sha1.c; sourceTree = ""; }; - AF382EF6840FA526675A7CABD667963A /* compression_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = compression_internal.h; path = src/core/lib/compression/compression_internal.h; sourceTree = ""; }; - AF43D43FFC187F3FC76FBE4C62ECBD62 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/fipsmodule/ec/internal.h; sourceTree = ""; }; - AF4BCB4559B0D03F46ED51304095FE0C /* create_channel_binder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = create_channel_binder.h; path = include/grpcpp/create_channel_binder.h; sourceTree = ""; }; - AF55C01887CED688C392979A7DD55F79 /* resource_name.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource_name.upbdefs.h; path = "src/core/ext/upbdefs-generated/xds/core/v3/resource_name.upbdefs.h"; sourceTree = ""; }; - AF78A9D368188EE23CFE66BE0203AE23 /* google_default_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = google_default_credentials.cc; path = src/core/lib/security/credentials/google_default/google_default_credentials.cc; sourceTree = ""; }; - AF89B3E7236AD3C2B8071DCD77C0DB0A /* struct.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = struct.upbdefs.c; path = "src/core/ext/upbdefs-generated/google/protobuf/struct.upbdefs.c"; sourceTree = ""; }; - AF8D1B8F7ED5D0D45A63EFDFB00C336D /* fault.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fault.upb.h; path = "src/core/ext/upb-generated/envoy/extensions/filters/http/fault/v3/fault.upb.h"; sourceTree = ""; }; - AF92C376592500644AC18868B1DD51BA /* sorted_container.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = sorted_container.cc; path = Firestore/core/src/immutable/sorted_container.cc; sourceTree = ""; }; - AF985D02CF09C7920F7314E5B49A40AD /* bundle_loader.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = bundle_loader.cc; path = Firestore/core/src/bundle/bundle_loader.cc; sourceTree = ""; }; - AFA7295FED81E112DF84B8F099FFDF80 /* metrics.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = metrics.upb.c; path = "src/core/ext/upb-generated/envoy/admin/v3/metrics.upb.c"; sourceTree = ""; }; - AFB7197165C2DFB1FBB0863F43B633FF /* frame_ping.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = frame_ping.h; path = src/core/ext/transport/chttp2/transport/frame_ping.h; sourceTree = ""; }; - AFC43F118AA2CD9ACEF0DB3854781958 /* exponential_biased.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = exponential_biased.h; path = absl/profiling/internal/exponential_biased.h; sourceTree = ""; }; - AFC4B77FF9B690427B234AB4B10D3C36 /* p_ed25519.c */ = {isa = PBXFileReference; includeInIndex = 1; name = p_ed25519.c; path = src/crypto/evp/p_ed25519.c; sourceTree = ""; }; - AFDF165D1B7F5B1692B5114842AAD1F1 /* handshaker.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = handshaker.upb.h; path = "src/core/ext/upb-generated/src/proto/grpc/gcp/handshaker.upb.h"; sourceTree = ""; }; - AFE270BCDA8048CA5B20BEC5BCA4B081 /* b64.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = b64.h; path = src/core/lib/slice/b64.h; sourceTree = ""; }; - AFF59EFE45D095EC84DBF7E430E571FC /* global_subchannel_pool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = global_subchannel_pool.h; path = src/core/ext/filters/client_channel/global_subchannel_pool.h; sourceTree = ""; }; - B015B36B6E74E1AC594DF87003DF37FB /* spinlock_wait.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = spinlock_wait.cc; path = absl/base/internal/spinlock_wait.cc; sourceTree = ""; }; - B02291C92D476CBBA912F9FB5B5A1CCC /* charconv_parse.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = charconv_parse.cc; path = absl/strings/internal/charconv_parse.cc; sourceTree = ""; }; - B02CAC738AA3AA440CC9D3147CCAFF94 /* tls_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = tls_credentials.cc; path = src/core/lib/security/credentials/tls/tls_credentials.cc; sourceTree = ""; }; - B033259C1AF5F2E0237DC97DB4094FAD /* gethostname_host_name_max.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = gethostname_host_name_max.cc; path = src/core/lib/iomgr/gethostname_host_name_max.cc; sourceTree = ""; }; - B03CB1DB20B18AA82985C8183F6E1764 /* cast.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cast.h; path = src/include/openssl/cast.h; sourceTree = ""; }; - B04568BC7474E6043F7190D4D6941401 /* pem_pk8.c */ = {isa = PBXFileReference; includeInIndex = 1; name = pem_pk8.c; path = src/crypto/pem/pem_pk8.c; sourceTree = ""; }; - B049DE461AA1CC94A072979096BE57C9 /* grpc_method_list.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_method_list.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/grpc_method_list.upbdefs.h"; sourceTree = ""; }; - B04E871C896FF4C4D8656751B122BED1 /* slice.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = slice.h; path = include/grpc/event_engine/slice.h; sourceTree = ""; }; - B064133769A571103DA974108857368F /* by_file.c */ = {isa = PBXFileReference; includeInIndex = 1; name = by_file.c; path = src/crypto/x509/by_file.c; sourceTree = ""; }; - B06C015E686DA5993ED96EFA687A3058 /* connected_channel.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = connected_channel.cc; path = src/core/lib/channel/connected_channel.cc; sourceTree = ""; }; - B06D149729259497190264A5BEFF6EEF /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/x509v3/internal.h; sourceTree = ""; }; - B0952C805B8A58C13E829BFD6B54AE7C /* mini_table.c */ = {isa = PBXFileReference; includeInIndex = 1; name = mini_table.c; path = third_party/upb/upb/mini_table.c; sourceTree = ""; }; + A43877303056397968EC90C7AAFE17E8 /* Pods-iosApp-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-iosApp-acknowledgements.markdown"; sourceTree = ""; }; + A79C2AA5C063914B2D1BD80187FDF6DE /* Pods-iosApp.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-iosApp.debug.xcconfig"; sourceTree = ""; }; B097DD7534E741D5C41838011D755842 /* Pods-iosApp */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = "Pods-iosApp"; path = Pods_iosApp.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - B099AE4E74E91C11F6415CA454B0665A /* GTMSessionFetcher.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GTMSessionFetcher.debug.xcconfig; sourceTree = ""; }; - B0AA96ED24026283CB89DC532E0E5D93 /* http_connect_handshaker.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = http_connect_handshaker.cc; path = src/core/lib/transport/http_connect_handshaker.cc; sourceTree = ""; }; - B0AB7E0CF44DF1735E4AA2A3F1065C3E /* FirebaseAppCheckInterop-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FirebaseAppCheckInterop-prefix.pch"; sourceTree = ""; }; - B0B311825D9BA02B9A506BCC2BBD5CB0 /* http_proxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_proxy.h; path = src/core/ext/filters/client_channel/http_proxy.h; sourceTree = ""; }; - B0B57116F683E8299C3929CE4BC5D5DA /* FIRFirestore.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRFirestore.mm; path = Firestore/Source/API/FIRFirestore.mm; sourceTree = ""; }; - B0B59AFDC6C12D9FA86D8AA989D3C521 /* zone_info_source.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = zone_info_source.h; path = absl/time/internal/cctz/include/cctz/zone_info_source.h; sourceTree = ""; }; - B0B663A73EA230116BB0CC33BEB1E461 /* endian.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endian.h; path = absl/base/internal/endian.h; sourceTree = ""; }; - B0BCFE845AA727C770F15FC39C6CE3AE /* ssl_security_connector.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = ssl_security_connector.cc; path = src/core/lib/security/security_connector/ssl/ssl_security_connector.cc; sourceTree = ""; }; - B0C19F84BBB23A1A7EC659C47BCA9E70 /* percent_encoding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = percent_encoding.h; path = src/core/lib/slice/percent_encoding.h; sourceTree = ""; }; - B0C24668DBC4DFB82149DF483748390A /* write_batch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = write_batch.h; path = include/leveldb/write_batch.h; sourceTree = ""; }; - B0D66B5C0FD6D8CAE0035E3F9AC0733E /* cert.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cert.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/cert.upbdefs.h"; sourceTree = ""; }; - B0D6BEFD9528010EECB07970CB425B0E /* status_conversion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status_conversion.h; path = src/core/lib/transport/status_conversion.h; sourceTree = ""; }; - B0ED0EE91BA1BA420CC0961AA534F83A /* roots.pem */ = {isa = PBXFileReference; includeInIndex = 1; name = roots.pem; path = etc/roots.pem; sourceTree = ""; }; - B102CC0816B9EAFE622314E6D2387DAF /* GULNetworkConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetworkConstants.h; path = GoogleUtilities/Network/Public/GoogleUtilities/GULNetworkConstants.h; sourceTree = ""; }; - B107EEC70CAE13297AA0F42B5110BFCA /* map.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = map.h; path = third_party/upb/upb/map.h; sourceTree = ""; }; - B10C8DDDF1F26579129C69F16CD8DE3B /* gethostname.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = gethostname.h; path = src/core/lib/iomgr/gethostname.h; sourceTree = ""; }; - B10D00B747D229DC2D8763AAECD49087 /* ssl_utils_config.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = ssl_utils_config.cc; path = src/core/lib/security/security_connector/ssl_utils_config.cc; sourceTree = ""; }; - B11A1CF3CCE7F3FC0135B12A8E7AB678 /* matcher.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = matcher.upb.h; path = "src/core/ext/upb-generated/xds/type/matcher/v3/matcher.upb.h"; sourceTree = ""; }; - B11A83C87147CB82010BA8B14A17A16C /* pkcs7.c */ = {isa = PBXFileReference; includeInIndex = 1; name = pkcs7.c; path = src/crypto/pkcs7/pkcs7.c; sourceTree = ""; }; - B121D70EF92B043A1A1584C579548A52 /* pid_controller.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pid_controller.h; path = src/core/lib/transport/pid_controller.h; sourceTree = ""; }; - B1242E93600EBBBD8A2FBA00530A9563 /* ev_apple.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ev_apple.h; path = src/core/lib/iomgr/ev_apple.h; sourceTree = ""; }; - B125F20B87F5BEE037AE4C8889A59085 /* load_balancer.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = load_balancer.upb.h; path = "src/core/ext/upb-generated/src/proto/grpc/lb/v1/load_balancer.upb.h"; sourceTree = ""; }; - B12CC9F0DBEFB367E64D68D3999E92AA /* config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = config.h; path = src/core/lib/experiments/config.h; sourceTree = ""; }; - B15B9D94519D0FCDA83D340CD3D8F013 /* tls1.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tls1.h; path = src/include/openssl/tls1.h; sourceTree = ""; }; - B182E15385357E2354E5B9F66470561E /* alts_iovec_record_protocol.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = alts_iovec_record_protocol.cc; path = src/core/tsi/alts/zero_copy_frame_protector/alts_iovec_record_protocol.cc; sourceTree = ""; }; - B1924A8540B5948CCCD6505E51B7E327 /* ads.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ads.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/service/discovery/v3/ads.upbdefs.h"; sourceTree = ""; }; - B195581CEE5385F0283433CB07519DAD /* status_code_enum.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status_code_enum.h; path = include/grpcpp/support/status_code_enum.h; sourceTree = ""; }; - B1A0FBFBAFCD557B8C8791CCFE1AADD2 /* resolve_address.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolve_address.h; path = src/core/lib/iomgr/resolve_address.h; sourceTree = ""; }; - B1B3C1C43E24BAFDC291F8871C0BD7DE /* pb_decode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = pb_decode.h; sourceTree = ""; }; - B1C19B402B6BD2FE38CAB50FEF085788 /* status_util.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status_util.h; path = src/core/lib/channel/status_util.h; sourceTree = ""; }; - B1C628BACBB47F27BADBCEC465ABE673 /* query_engine.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = query_engine.cc; path = Firestore/core/src/local/query_engine.cc; sourceTree = ""; }; - B1DC38359A4C4E210408DCA124BECC3F /* FIRMultiFactorConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRMultiFactorConstants.m; path = FirebaseAuth/Sources/MultiFactor/FIRMultiFactorConstants.m; sourceTree = ""; }; - B1E543C471699BD3025F2FF21E660917 /* exponential_backoff.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = exponential_backoff.cc; path = Firestore/core/src/remote/exponential_backoff.cc; sourceTree = ""; }; - B21F0873261681EBC41B6280DB0B20B3 /* FirebaseFirestore.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseFirestore.debug.xcconfig; sourceTree = ""; }; - B224191A057319667DF0E6A1CBD7D0A3 /* atomic_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = atomic_utils.h; path = src/core/lib/gprpp/atomic_utils.h; sourceTree = ""; }; - B22782F5571A7AC385645B89CD12B642 /* FIRFederatedAuthProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRFederatedAuthProvider.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRFederatedAuthProvider.h; sourceTree = ""; }; - B22BFDD81F3A9D4E11BF7C59BF13F94B /* authorization_engine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = authorization_engine.h; path = src/core/lib/security/authorization/authorization_engine.h; sourceTree = ""; }; - B231D2929E392D3F03B896A4B35EA36D /* vsnprintf_compat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = vsnprintf_compat.h; path = third_party/upb/upb/internal/vsnprintf_compat.h; sourceTree = ""; }; - B23AAD761EF0D909CE2A8A5E5454A766 /* objects.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = objects.h; path = src/include/openssl/objects.h; sourceTree = ""; }; - B26605088B2A2B0A83100A0FEC3A79C1 /* digest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = digest.h; path = src/include/openssl/digest.h; sourceTree = ""; }; - B289C64090D6632B6C6BB85E9A040BC5 /* cordz_functions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cordz_functions.h; path = absl/strings/internal/cordz_functions.h; sourceTree = ""; }; - B28A6E10C0B793A03D24AC91C9F9C108 /* hpack_parser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hpack_parser.h; path = src/core/ext/transport/chttp2/transport/hpack_parser.h; sourceTree = ""; }; - B28FBAF2D85D461314A6D7B1558FE22D /* prefilter_tree.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = prefilter_tree.cc; path = third_party/re2/re2/prefilter_tree.cc; sourceTree = ""; }; - B2BA2C9E068D68F333C7EF077F295F39 /* FIRGeoPoint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRGeoPoint.h; path = Firestore/Source/Public/FirebaseFirestore/FIRGeoPoint.h; sourceTree = ""; }; - B2CB95538112C6205BCF43043A0D96ED /* alpn.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = alpn.cc; path = src/core/ext/transport/chttp2/alpn/alpn.cc; sourceTree = ""; }; - B2CDFF6C746D1B8C9DC1FED9D101EACE /* local_subchannel_pool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = local_subchannel_pool.h; path = src/core/ext/filters/client_channel/local_subchannel_pool.h; sourceTree = ""; }; - B2DC7787F065075B8A2E11EA70C1C60B /* avl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = avl.h; path = src/core/lib/avl/avl.h; sourceTree = ""; }; - B2E7ED6487BCC2D9D79700D17624973A /* unix_sockets_posix_noop.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = unix_sockets_posix_noop.cc; path = src/core/lib/iomgr/unix_sockets_posix_noop.cc; sourceTree = ""; }; - B2E865DE3AFE2C120A9B6CC307EE7E3D /* iocp_windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = iocp_windows.h; path = src/core/lib/iomgr/iocp_windows.h; sourceTree = ""; }; - B2EC5A53D980C125D4F0C459966566EA /* x_sig.c */ = {isa = PBXFileReference; includeInIndex = 1; name = x_sig.c; path = src/crypto/x509/x_sig.c; sourceTree = ""; }; - B2F955487CA513935758ED59C953D3B9 /* local_security_connector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = local_security_connector.h; path = src/core/lib/security/security_connector/local/local_security_connector.h; sourceTree = ""; }; - B300D937FD1D0D25C2525CBA31D19B92 /* a_octet.c */ = {isa = PBXFileReference; includeInIndex = 1; name = a_octet.c; path = src/crypto/asn1/a_octet.c; sourceTree = ""; }; - B304F7BD214B7464DA74D25E193436D5 /* tls_certificate_verifier.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = tls_certificate_verifier.cc; path = src/cpp/common/tls_certificate_verifier.cc; sourceTree = ""; }; - B30762529350C4D96A5AE1F90DBD9F1E /* skywalking.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = skywalking.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/trace/v3/skywalking.upbdefs.h"; sourceTree = ""; }; - B308F0294D589DF651EB712562FF1C15 /* security_policy_setting.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = security_policy_setting.h; path = src/core/ext/transport/binder/client/security_policy_setting.h; sourceTree = ""; }; - B3138F21581DC0670575757E42970322 /* value.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = value.upb.h; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/value.upb.h"; sourceTree = ""; }; - B318C72EE26D0DBC3DF56E3D702483A4 /* FIRAuthUserDefaults.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthUserDefaults.m; path = FirebaseAuth/Sources/Storage/FIRAuthUserDefaults.m; sourceTree = ""; }; - B319FEB429B242CF30FA994BD31775DD /* http.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/api/http.upbdefs.h"; sourceTree = ""; }; - B34D44E636CBAAD3043C612FCAB740C0 /* any.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = any.upb.h; path = "src/core/ext/upb-generated/google/protobuf/any.upb.h"; sourceTree = ""; }; - B35637FBB9E159D0CE8786B3B384B9B5 /* FirebaseCoreInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseCoreInternal.h; path = FirebaseCore/Extension/FirebaseCoreInternal.h; sourceTree = ""; }; - B35983469D31AEDCD7C27AAB48A6D5E3 /* frame_ping.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = frame_ping.h; path = src/core/ext/transport/chttp2/transport/frame_ping.h; sourceTree = ""; }; - B367AE0FD2DF019465999B0AB60B270A /* hpack_parser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hpack_parser.h; path = src/core/ext/transport/chttp2/transport/hpack_parser.h; sourceTree = ""; }; - B36D2E737E5B7CEE488D15BBBCF092D3 /* resource.nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = resource.nanopb.cc; path = Firestore/Protos/nanopb/google/api/resource.nanopb.cc; sourceTree = ""; }; - B3825847244B114C7033F46305CC36B3 /* FIRComponentContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentContainer.h; path = FirebaseCore/Extension/FIRComponentContainer.h; sourceTree = ""; }; - B38A8CF708F3933C660CFE758F59FED8 /* two_level_iterator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = two_level_iterator.h; path = table/two_level_iterator.h; sourceTree = ""; }; - B394F632311E2F073055B60834F021DA /* route.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = route.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/route/v3/route.upbdefs.h"; sourceTree = ""; }; - B395450B5E121A8BA726F4DB019F913A /* address.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = address.upb.c; path = "src/core/ext/upb-generated/envoy/config/core/v3/address.upb.c"; sourceTree = ""; }; - B397DF1B74E9DE8F5852314A71D66EAB /* field_transform.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = field_transform.cc; path = Firestore/core/src/model/field_transform.cc; sourceTree = ""; }; - B3BC3AF4DA87EC855ED2FEE65B83F57D /* validate.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = validate.upb.c; path = "src/core/ext/upb-generated/validate/validate.upb.c"; sourceTree = ""; }; - B3FC3D27A98630B220769C0809334C8A /* FIREmailAuthProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIREmailAuthProvider.m; path = FirebaseAuth/Sources/AuthProvider/Email/FIREmailAuthProvider.m; sourceTree = ""; }; - B414BCDF82778AF6AEDCFD8241619875 /* channel_create_impl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_create_impl.h; path = src/core/ext/transport/binder/client/channel_create_impl.h; sourceTree = ""; }; - B41760AA119EB2FA9E13CC57A0B06D0B /* trace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = trace.h; path = src/core/lib/resource_quota/trace.h; sourceTree = ""; }; - B42B8DBF43B5A3C26DFCADF175BD42A0 /* rls_config.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rls_config.upbdefs.c; path = "src/core/ext/upbdefs-generated/src/proto/grpc/lookup/v1/rls_config.upbdefs.c"; sourceTree = ""; }; - B42D3C0B1482F30DD407F98E931ABA41 /* string_view.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = string_view.h; path = absl/strings/string_view.h; sourceTree = ""; }; - B43874C6CBB50E7134FBEC24BABFE14F /* GoogleUtilities */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = GoogleUtilities; path = GoogleUtilities.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - B4443DE8B664B517115A57B3EEDCA162 /* cipher.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cipher.c; path = src/crypto/fipsmodule/cipher/cipher.c; sourceTree = ""; }; - B44DB9059811AD461CD3758CCF10A274 /* core_configuration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = core_configuration.h; path = src/core/lib/config/core_configuration.h; sourceTree = ""; }; - B4506DB31A7BECF90EFC74D9C93C44AC /* trace.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = trace.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/trace/v3/trace.upbdefs.h"; sourceTree = ""; }; - B451B4E67EE6BF7C0840828CC0B131EF /* transport_security_interface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = transport_security_interface.h; path = src/core/tsi/transport_security_interface.h; sourceTree = ""; }; - B4644D5212C8676DF04A9B175EBF659D /* fault.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fault.upb.h; path = "src/core/ext/upb-generated/envoy/extensions/filters/common/fault/v3/fault.upb.h"; sourceTree = ""; }; - B46483763E2857622D651C0D31200976 /* a_strex.c */ = {isa = PBXFileReference; includeInIndex = 1; name = a_strex.c; path = src/crypto/asn1/a_strex.c; sourceTree = ""; }; - B471867C535B02FA55D87E260F6480F8 /* gRPC-Core */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = "gRPC-Core"; path = grpc.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - B478908D138FC80D3F1A294EBDA76D04 /* FBLPromise+Validate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Validate.m"; path = "Sources/FBLPromises/FBLPromise+Validate.m"; sourceTree = ""; }; - B478E5287CE2DF7E3CC1F33E266C74B5 /* decode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = decode.h; path = third_party/upb/upb/internal/decode.h; sourceTree = ""; }; - B47C2D69E0434365A4BE655BCC7F355F /* overload.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = overload.h; path = src/core/lib/gprpp/overload.h; sourceTree = ""; }; - B4A4E676048BADE896E89881963D4DB6 /* FIRAppCheckInterop.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAppCheckInterop.h; path = FirebaseAppCheck/Interop/FIRAppCheckInterop.h; sourceTree = ""; }; - B4AAF92ED2FBB09D0C466100C56B3CB5 /* FIRLocalCacheSettings.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRLocalCacheSettings.mm; path = Firestore/Source/API/FIRLocalCacheSettings.mm; sourceTree = ""; }; - B4B31727210C12554FD9BF0C287C30E1 /* timer_manager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timer_manager.h; path = src/core/lib/event_engine/posix_engine/timer_manager.h; sourceTree = ""; }; - B4BD71324832E53F4E39287E93D70953 /* xds_cluster.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_cluster.h; path = src/core/ext/xds/xds_cluster.h; sourceTree = ""; }; - B4C04ADE81EC4AC94E52FFE68769FC29 /* opentelemetry.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = opentelemetry.upb.h; path = "src/core/ext/upb-generated/envoy/config/trace/v3/opentelemetry.upb.h"; sourceTree = ""; }; - B4D028EBBF368C157F36818D8289A054 /* number.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = number.upb.h; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/number.upb.h"; sourceTree = ""; }; - B4D171BD9D1D0A833C72E50075FDFBE7 /* tcp_client.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tcp_client.h; path = src/core/lib/iomgr/tcp_client.h; sourceTree = ""; }; - B4D3883CF738697B611F2B0E8F1D1CB3 /* trace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = trace.h; path = src/core/lib/event_engine/trace.h; sourceTree = ""; }; - B50709D7BFD8B79913FC9ADDF0C80491 /* call_creds_util.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = call_creds_util.h; path = src/core/lib/security/credentials/call_creds_util.h; sourceTree = ""; }; - B50F571D4C6B41233971217B9CF0E454 /* escaping.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = escaping.h; path = absl/strings/internal/escaping.h; sourceTree = ""; }; - B51D4BC7B2A5193A66A3D2D8584FDB2D /* status_helper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status_helper.h; path = src/core/lib/gprpp/status_helper.h; sourceTree = ""; }; - B52C2F45E2557F39C51976497B8EAAAA /* symbolize.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = symbolize.h; path = absl/debugging/symbolize.h; sourceTree = ""; }; - B545C4772B765F5A4A136D3ED4BDCB4C /* call_log_batch.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = call_log_batch.cc; path = src/core/lib/surface/call_log_batch.cc; sourceTree = ""; }; - B55E618971BCAC5BD107FA2401098156 /* handle_containers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = handle_containers.h; path = src/core/lib/event_engine/handle_containers.h; sourceTree = ""; }; - B560252D576C493BEB4E15246E57F509 /* array_contains_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = array_contains_filter.cc; path = Firestore/core/src/core/array_contains_filter.cc; sourceTree = ""; }; - B56B5D1506B37C17CF57B56E7684516E /* listener.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = listener.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/listener/v3/listener.upbdefs.h"; sourceTree = ""; }; - B590C877CCD070677A526E14A553AB66 /* arena.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = arena.h; path = util/arena.h; sourceTree = ""; }; - B5AEE86292B51CFD21969FB61AAE8E47 /* server_address.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_address.h; path = src/core/lib/resolver/server_address.h; sourceTree = ""; }; - B5B313452E889490C09C09C639540230 /* fault_injection_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fault_injection_filter.h; path = src/core/ext/filters/fault_injection/fault_injection_filter.h; sourceTree = ""; }; - B5B9A4DBF9C375779C98F1F46154BBBE /* pcg_engine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pcg_engine.h; path = absl/random/internal/pcg_engine.h; sourceTree = ""; }; - B5DD57387FF143CE625134B9CFEAB0D8 /* accesslog.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = accesslog.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/accesslog/v3/accesslog.upbdefs.h"; sourceTree = ""; }; - B5E71F87BD6147B0ACDFF286973E25B0 /* xxhash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xxhash.h; path = third_party/xxhash/xxhash.h; sourceTree = ""; }; - B5F3CEF3D9DF7B89BDC5284F3B38959D /* percent_encoding.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = percent_encoding.cc; path = src/core/lib/slice/percent_encoding.cc; sourceTree = ""; }; - B5FD1CC94C881524E960128E42768BC7 /* ssl_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ssl_credentials.h; path = src/core/lib/security/credentials/ssl/ssl_credentials.h; sourceTree = ""; }; - B60FE234DAC8C841A1D7B482A81C468A /* pretty_function.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pretty_function.h; path = absl/base/internal/pretty_function.h; sourceTree = ""; }; - B61959DBB0F6AA639E23D8205FB46A4E /* deprecation.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = deprecation.upb.h; path = "src/core/ext/upb-generated/envoy/annotations/deprecation.upb.h"; sourceTree = ""; }; - B62695BA6D668CE8F7D173FA3BB9E3BC /* text_encode.c */ = {isa = PBXFileReference; includeInIndex = 1; name = text_encode.c; path = third_party/upb/upb/text_encode.c; sourceTree = ""; }; - B62755F71D0CE6A48F9F7F4D18DFB853 /* resolver_result_parsing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolver_result_parsing.h; path = src/core/ext/filters/client_channel/resolver_result_parsing.h; sourceTree = ""; }; - B6372AE661A63346B4DA4591FA1537F5 /* string.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = string.upb.c; path = "src/core/ext/upb-generated/xds/type/matcher/v3/string.upb.c"; sourceTree = ""; }; - B64911E21E17884C2A0DE1DAE27AECFE /* tls.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tls.h; path = src/core/lib/gpr/tls.h; sourceTree = ""; }; - B66552DADF9C8B268C364F7009B26532 /* container_memory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = container_memory.h; path = absl/container/internal/container_memory.h; sourceTree = ""; }; - B6742CB0E2D474E4D9925C9714D1E17B /* view_snapshot.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = view_snapshot.cc; path = Firestore/core/src/core/view_snapshot.cc; sourceTree = ""; }; - B69D17F3254FA6BC4751F424967D265C /* transport_stream_receiver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = transport_stream_receiver.h; path = src/core/ext/transport/binder/utils/transport_stream_receiver.h; sourceTree = ""; }; - B6A734E7B3D25E06D6A4451C43895EBB /* load_system_roots_supported.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = load_system_roots_supported.h; path = src/core/lib/security/security_connector/load_system_roots_supported.h; sourceTree = ""; }; - B6D9D636FF397C68E6B0CF8DEF9245C0 /* listener.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = listener.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/listener/v3/listener.upbdefs.h"; sourceTree = ""; }; - B6E08BC63095ED074431E520176CAC4F /* udp_listener_config.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = udp_listener_config.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/listener/v3/udp_listener_config.upbdefs.h"; sourceTree = ""; }; - B6EC01A4C798811DD73CDE4FB1F74608 /* idle_filter_state.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = idle_filter_state.h; path = src/core/ext/filters/channel_idle/idle_filter_state.h; sourceTree = ""; }; - B6F763F8E761D51991DC18A7BEB3D6C0 /* FIRRevokeTokenResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRRevokeTokenResponse.m; path = FirebaseAuth/Sources/Backend/RPC/FIRRevokeTokenResponse.m; sourceTree = ""; }; - B6F98A11D0D1736ED71C4CAA74521BF1 /* core_configuration.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = core_configuration.cc; path = src/core/lib/config/core_configuration.cc; sourceTree = ""; }; - B71AFCFCF16FCD25AEA7F4DF265E25BB /* server_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_credentials.h; path = include/grpcpp/security/server_credentials.h; sourceTree = ""; }; - B71CF98D12C01499736E4252929498F4 /* token_bucket.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = token_bucket.upb.h; path = "src/core/ext/upb-generated/envoy/type/v3/token_bucket.upb.h"; sourceTree = ""; }; - B736A889F53EC91A2B35712B25CCEAD1 /* google_default_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = google_default_credentials.h; path = src/core/lib/security/credentials/google_default/google_default_credentials.h; sourceTree = ""; }; - B741B5E1D0A54476A498636D5106EC42 /* packed_table.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = packed_table.h; path = src/core/lib/gprpp/packed_table.h; sourceTree = ""; }; - B75C68CCD29462B5E35C590BF1D8639C /* FIRListenerRegistration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRListenerRegistration.h; path = Firestore/Source/Public/FirebaseFirestore/FIRListenerRegistration.h; sourceTree = ""; }; - B75E4169D83E141C565BBCBCBD9FEBC6 /* xds_common_types.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_common_types.h; path = src/core/ext/xds/xds_common_types.h; sourceTree = ""; }; - B78ACF9146E8E7F22C08EEB71D12C8E8 /* b64.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = b64.h; path = src/core/lib/slice/b64.h; sourceTree = ""; }; - B79406B18FCC00F1BE74F82B2B71486E /* cordz_handle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cordz_handle.h; path = absl/strings/internal/cordz_handle.h; sourceTree = ""; }; - B79AAE9737B55DD1BB069A1BCA08F25E /* subchannel_stream_client.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = subchannel_stream_client.cc; path = src/core/ext/filters/client_channel/subchannel_stream_client.cc; sourceTree = ""; }; - B7A88B8FFED3DA53D95C81D25144E26A /* FIRGetProjectConfigRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRGetProjectConfigRequest.h; path = FirebaseAuth/Sources/Backend/RPC/FIRGetProjectConfigRequest.h; sourceTree = ""; }; - B7A9179431821478CB4A742561805B54 /* cpu-intel.c */ = {isa = PBXFileReference; includeInIndex = 1; name = "cpu-intel.c"; path = "src/crypto/cpu-intel.c"; sourceTree = ""; }; - B7BA602B8ABA36FB78E050D701AFA340 /* chttp2_connector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = chttp2_connector.h; path = src/core/ext/transport/chttp2/client/chttp2_connector.h; sourceTree = ""; }; - B7C3000EA46587728528978ACF048E10 /* pollset_set.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pollset_set.h; path = src/core/lib/iomgr/pollset_set.h; sourceTree = ""; }; - B7F3FBB87D3642FC90C44EC28BAB7E2B /* xds_http_rbac_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = xds_http_rbac_filter.cc; path = src/core/ext/xds/xds_http_rbac_filter.cc; sourceTree = ""; }; - B82B61B5B5BB3849530D7B7106749DE6 /* FIRDependency.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDependency.h; path = FirebaseCore/Extension/FIRDependency.h; sourceTree = ""; }; - B840396FE97FBC4BCAD0FA85500E8DD5 /* inproc_transport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = inproc_transport.h; path = src/core/ext/transport/inproc/inproc_transport.h; sourceTree = ""; }; - B845BB5213F2A9ED12CDE34590DA2ABB /* distributions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = distributions.h; path = absl/random/distributions.h; sourceTree = ""; }; - B84ACEE18054587361CB4101FD8E5E28 /* context_list.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = context_list.h; path = src/core/ext/transport/chttp2/transport/context_list.h; sourceTree = ""; }; - B8576BC91BBDBB64B820D587C0C2CB69 /* transport_security_common.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = transport_security_common.upb.h; path = "src/core/ext/upb-generated/src/proto/grpc/gcp/transport_security_common.upb.h"; sourceTree = ""; }; - B866F69741C9FF4A74D0A64591F03CB6 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/bio/internal.h; sourceTree = ""; }; - B86A23F50D4471684FAADB1BE1B6BC95 /* call.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = call.cc; path = src/core/lib/surface/call.cc; sourceTree = ""; }; - B86CC9FC010BE5341AE85E8D9917285F /* prime.c */ = {isa = PBXFileReference; includeInIndex = 1; name = prime.c; path = src/crypto/fipsmodule/bn/prime.c; sourceTree = ""; }; - B884A4CF7DCEF7FE0EE94E6A9BC01211 /* byte_buffer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = byte_buffer.h; path = include/grpcpp/support/byte_buffer.h; sourceTree = ""; }; - B89FF6A5B7AA3C70DCBFF568B92DFABA /* parser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = parser.h; path = src/core/lib/http/parser.h; sourceTree = ""; }; - B8A7DF3B1DFB1D310EDDB11F03A20D59 /* atm_gcc_sync.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = atm_gcc_sync.h; path = include/grpc/impl/codegen/atm_gcc_sync.h; sourceTree = ""; }; - B8B7536160184D4222E33FD694B18C03 /* ring_hash.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = ring_hash.upb.c; path = "src/core/ext/upb-generated/envoy/extensions/load_balancing_policies/ring_hash/v3/ring_hash.upb.c"; sourceTree = ""; }; - B8B866A0F33B2456B473B88B799B2E76 /* win_socket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = win_socket.h; path = src/core/lib/event_engine/windows/win_socket.h; sourceTree = ""; }; - B8C2F93CF0342E109E495F55C29543EE /* sensitive.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = sensitive.upb.c; path = "src/core/ext/upb-generated/udpa/annotations/sensitive.upb.c"; sourceTree = ""; }; - B8D0BA64E81CF9C79EB253E44F5E39CD /* iam_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = iam_credentials.h; path = src/core/lib/security/credentials/iam/iam_credentials.h; sourceTree = ""; }; - B8D4E74E7B09B3F7B88716B6D21DF50C /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.0.sdk/System/Library/Frameworks/UIKit.framework; sourceTree = DEVELOPER_DIR; }; - B8DF32DF83D1D095D3DADF7C0541353D /* mini_table.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mini_table.h; path = third_party/upb/upb/mini_table.h; sourceTree = ""; }; - B8E642D6A332C826846139E0C783BFD7 /* resolver_result_parsing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolver_result_parsing.h; path = src/core/ext/filters/client_channel/resolver_result_parsing.h; sourceTree = ""; }; - B8EE3D497F7B26DF214B74A9248F59BC /* PromisesObjC.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = PromisesObjC.debug.xcconfig; sourceTree = ""; }; - B8FE3A01E76719B1D14F6C0CDC3EFC42 /* FIRGitHubAuthProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRGitHubAuthProvider.m; path = FirebaseAuth/Sources/AuthProvider/GitHub/FIRGitHubAuthProvider.m; sourceTree = ""; }; - B903D4DEFC7342FE0063E6E284FFC0A8 /* prefilter_tree.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = prefilter_tree.h; path = third_party/re2/re2/prefilter_tree.h; sourceTree = ""; }; - B92B339C719AD7AA78B972D6543CB4C0 /* client_unary_call.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = client_unary_call.h; path = include/grpcpp/impl/codegen/client_unary_call.h; sourceTree = ""; }; - B938F873E032713E035927F1F65B7A4B /* bin_decoder.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = bin_decoder.cc; path = src/core/ext/transport/chttp2/transport/bin_decoder.cc; sourceTree = ""; }; - B944562E9BF9745B4B33DC7322BEF315 /* util.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = util.h; path = third_party/re2/util/util.h; sourceTree = ""; }; - B976E5F7DD90B10B7D0169C21B5E33AF /* memory_quota.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = memory_quota.cc; path = src/core/lib/resource_quota/memory_quota.cc; sourceTree = ""; }; - B9AA54733A43D1423F46810E3F2B9D47 /* executor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = executor.h; path = src/core/lib/iomgr/executor.h; sourceTree = ""; }; - B9AAC40E39BD0FB9F2EB6A3B9867D754 /* tcp_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = tcp_posix.cc; path = src/core/lib/iomgr/tcp_posix.cc; sourceTree = ""; }; - B9B0ACBBDF67217FDD7447DDAEB5D847 /* FIRAuthOperationType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthOperationType.h; path = FirebaseAuth/Sources/Auth/FIRAuthOperationType.h; sourceTree = ""; }; - B9B3DFBB12D28F9317CF324A89657824 /* backend_metric_data.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = backend_metric_data.h; path = src/core/ext/filters/client_channel/lb_policy/backend_metric_data.h; sourceTree = ""; }; - B9C1D0132E95573FF582F483DAF2B64A /* randen_traits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = randen_traits.h; path = absl/random/internal/randen_traits.h; sourceTree = ""; }; - B9CEAD2D3F762055E985F204DA523806 /* FBLPromise+Await.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Await.m"; path = "Sources/FBLPromises/FBLPromise+Await.m"; sourceTree = ""; }; - B9D937566AA9967FC5C4F7EF4E86D684 /* str_cat.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = str_cat.cc; path = absl/strings/str_cat.cc; sourceTree = ""; }; - BA0E0886274B5593711AB4FF4BE3FA1E /* time_zone_libc.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = time_zone_libc.cc; path = absl/time/internal/cctz/src/time_zone_libc.cc; sourceTree = ""; }; - BA255B3C833C4C12426FB784CBE2F7E4 /* matcher.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = matcher.upb.h; path = "src/core/ext/upb-generated/envoy/config/common/matcher/v3/matcher.upb.h"; sourceTree = ""; }; - BA267A7BFC223E4B4292E586D9BF4306 /* transport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = transport.h; path = src/core/lib/transport/transport.h; sourceTree = ""; }; - BA2E64DD32858C304968AD7F988A66F1 /* low_level_alloc.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = low_level_alloc.cc; path = absl/base/internal/low_level_alloc.cc; sourceTree = ""; }; - BA326A30BDB0EED84429E3F711D2C5FA /* blinding.c */ = {isa = PBXFileReference; includeInIndex = 1; name = blinding.c; path = src/crypto/fipsmodule/rsa/blinding.c; sourceTree = ""; }; - BA402AD6E721076A6D162778796B8465 /* accesslog.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = accesslog.upb.h; path = "src/core/ext/upb-generated/envoy/config/accesslog/v3/accesslog.upb.h"; sourceTree = ""; }; - BA4DB91A6D868983A1E3BEF6678933C7 /* tsan_mutex_interface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tsan_mutex_interface.h; path = absl/base/internal/tsan_mutex_interface.h; sourceTree = ""; }; - BA5CD05E3208B39C9E786F4AABE2A978 /* global_config_generic.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = global_config_generic.h; path = src/core/lib/gprpp/global_config_generic.h; sourceTree = ""; }; - BA6B248A78ACF0D788AC72CE2FC38E52 /* authority.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = authority.upbdefs.h; path = "src/core/ext/upbdefs-generated/xds/core/v3/authority.upbdefs.h"; sourceTree = ""; }; - BA784F5B6D197C423C72E88568D5C783 /* FIRVerifyAssertionResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRVerifyAssertionResponse.h; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyAssertionResponse.h; sourceTree = ""; }; - BA7EADCF4E0861466B2E0F7DD9C6EFB1 /* json_decode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = json_decode.h; path = third_party/upb/upb/json_decode.h; sourceTree = ""; }; - BA9B9EDCF29D7FD22271CB4ED3E858A4 /* transport_security_common_api.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = transport_security_common_api.h; path = src/core/tsi/alts/handshaker/transport_security_common_api.h; sourceTree = ""; }; - BAA174C2F975F9193DFC8A9F2A8F4E91 /* discovery.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = discovery.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/service/discovery/v3/discovery.upbdefs.c"; sourceTree = ""; }; - BAA8919C86221AA163397E164C7E7443 /* cluster.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cluster.upb.h; path = "src/core/ext/upb-generated/envoy/extensions/clusters/aggregate/v3/cluster.upb.h"; sourceTree = ""; }; - BADA9DD4147C58B4A1DFE6C39F5533C8 /* deprecation.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = deprecation.upb.h; path = "src/core/ext/upb-generated/envoy/annotations/deprecation.upb.h"; sourceTree = ""; }; - BADB32D388C4921A668EDC5E1DA0AD17 /* stream_map.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stream_map.h; path = src/core/ext/transport/chttp2/transport/stream_map.h; sourceTree = ""; }; - BAE032884A1B3DFC7B5C8EA43753BE97 /* asn1_mac.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = asn1_mac.h; path = src/include/openssl/asn1_mac.h; sourceTree = ""; }; - BAE09CAC8D64864773B942C42AECA757 /* chttp2_server.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = chttp2_server.h; path = src/core/ext/transport/chttp2/server/chttp2_server.h; sourceTree = ""; }; - BAE85648440381407F11E50159CB1701 /* syntax.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = syntax.upbdefs.c; path = "src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/syntax.upbdefs.c"; sourceTree = ""; }; - BAF074B56B4629C90FDC262746997573 /* a_bool.c */ = {isa = PBXFileReference; includeInIndex = 1; name = a_bool.c; path = src/crypto/asn1/a_bool.c; sourceTree = ""; }; - BB2052E02E093AFF6A14E94C2C94D238 /* evp.c */ = {isa = PBXFileReference; includeInIndex = 1; name = evp.c; path = src/crypto/evp/evp.c; sourceTree = ""; }; - BB29A937E17D63490AFE0FC9C83EADFD /* slice.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = slice.h; path = include/grpcpp/support/slice.h; sourceTree = ""; }; - BB3BC1656D86F62EAE3407693EFA7E82 /* bundle_reader.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = bundle_reader.cc; path = Firestore/core/src/bundle/bundle_reader.cc; sourceTree = ""; }; - BB62C2AA60E865911D2E87B2236182A8 /* pem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pem.h; path = src/include/openssl/pem.h; sourceTree = ""; }; - BB68A991482989B8EF2B042FD66AD8B8 /* handshake_client.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = handshake_client.cc; path = src/ssl/handshake_client.cc; sourceTree = ""; }; - BB836C78230D297E1EF595D20E41D8F6 /* combiner.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = combiner.h; path = src/core/lib/iomgr/combiner.h; sourceTree = ""; }; - BB84EF334CC943D709C94E8C14AC38BE /* server_info.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = server_info.upb.c; path = "src/core/ext/upb-generated/envoy/admin/v3/server_info.upb.c"; sourceTree = ""; }; - BBB564522CC822792C9BE1624B9E443F /* cbs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cbs.c; path = src/crypto/bytestring/cbs.c; sourceTree = ""; }; - BBC2242A329A3AA67E982773975AA260 /* grpc_ares_ev_driver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_ares_ev_driver.h; path = src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver.h; sourceTree = ""; }; - BBC953EDDD752A7AE8E97DFABA5D24CC /* clock.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = clock.cc; path = absl/time/clock.cc; sourceTree = ""; }; - BBCF11F07F1DAF832E2C1D292C30BD07 /* cord_rep_flat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cord_rep_flat.h; path = absl/strings/internal/cord_rep_flat.h; sourceTree = ""; }; - BBD7798AB013C053F2E76491C5B6EFAC /* socket_option.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = socket_option.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/socket_option.upbdefs.c"; sourceTree = ""; }; - BBE328C0669C8E4A2B9DFC4F77E17208 /* address_filtering.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = address_filtering.h; path = src/core/ext/filters/client_channel/lb_policy/address_filtering.h; sourceTree = ""; }; - BBE3B451B22C221428555FAED52DB364 /* const_init.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = const_init.h; path = absl/base/const_init.h; sourceTree = ""; }; - BBF9D82CB030E0580E8E813B97B78C07 /* seq.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = seq.h; path = src/core/lib/promise/seq.h; sourceTree = ""; }; - BC00455AC6C581B961898488144CC358 /* aes.c */ = {isa = PBXFileReference; includeInIndex = 1; name = aes.c; path = src/crypto/fipsmodule/aes/aes.c; sourceTree = ""; }; - BC00C7B22917C65D4D4682491B942623 /* value_util.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = value_util.cc; path = Firestore/core/src/model/value_util.cc; sourceTree = ""; }; - BC14AEF0D7D423FC9ED8E1D589C5C138 /* FIRDocumentReference.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDocumentReference.h; path = Firestore/Source/Public/FirebaseFirestore/FIRDocumentReference.h; sourceTree = ""; }; - BC3E14459BB674764720659EAF8730A7 /* charconv_bigint.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = charconv_bigint.cc; path = absl/strings/internal/charconv_bigint.cc; sourceTree = ""; }; - BC418F8E2293195379625D8BC133675A /* tsi_error.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = tsi_error.cc; path = src/core/lib/security/transport/tsi_error.cc; sourceTree = ""; }; - BC4204713C26DB397A8AAC24089CC49B /* hpack_encoder_table.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hpack_encoder_table.h; path = src/core/ext/transport/chttp2/transport/hpack_encoder_table.h; sourceTree = ""; }; - BC57ECE84E3252A14E6F994ACB1C3BEE /* string.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = string.upb.h; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/string.upb.h"; sourceTree = ""; }; - BC610BD798B675B7AB8EFA4A20EDFFBB /* client_load_reporting_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = client_load_reporting_filter.h; path = src/core/ext/filters/client_channel/lb_policy/grpclb/client_load_reporting_filter.h; sourceTree = ""; }; - BC6242DCEEE9250B3CD0FAE74A883E4B /* FIRWithdrawMFAResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRWithdrawMFAResponse.m; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/Unenroll/FIRWithdrawMFAResponse.m; sourceTree = ""; }; - BC74598F4111AE48A9AB5653030849C1 /* testharness.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = testharness.cc; path = util/testharness.cc; sourceTree = ""; }; - BC77B6B14B47437A609BBC2D60EECC9F /* extension.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = extension.upbdefs.c; path = "src/core/ext/upbdefs-generated/xds/core/v3/extension.upbdefs.c"; sourceTree = ""; }; - BC80F0361AFA3C19CEF023D39AD2EA4E /* bad_any_cast.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bad_any_cast.h; path = absl/types/bad_any_cast.h; sourceTree = ""; }; - BC86C4E961F3098D19E20F9CEEC62726 /* FIRVerifyCustomTokenResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRVerifyCustomTokenResponse.m; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyCustomTokenResponse.m; sourceTree = ""; }; - BCB2453630C2CDCE3881352FF5C4EB70 /* server_info.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_info.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/admin/v3/server_info.upbdefs.h"; sourceTree = ""; }; - BCB7F97E99D02AE62A5727541E7EADD4 /* matcher.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = matcher.upb.c; path = "src/core/ext/upb-generated/envoy/config/common/matcher/v3/matcher.upb.c"; sourceTree = ""; }; - BCB895D2E1B07A296B7F094F5358AE7E /* dumpfile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dumpfile.h; path = include/leveldb/dumpfile.h; sourceTree = ""; }; - BCF2BA1E65E730CC4EC7F816C7BA89E5 /* asn1_par.c */ = {isa = PBXFileReference; includeInIndex = 1; name = asn1_par.c; path = src/crypto/asn1/asn1_par.c; sourceTree = ""; }; - BD2AAC335F72A9B51F02B1C9722C5E80 /* grpc_alts_credentials_options.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_alts_credentials_options.h; path = src/core/lib/security/credentials/alts/grpc_alts_credentials_options.h; sourceTree = ""; }; - BD35F216869620278824FD395E69F878 /* global_subchannel_pool.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = global_subchannel_pool.cc; path = src/core/ext/filters/client_channel/global_subchannel_pool.cc; sourceTree = ""; }; - BD37EA425FB318D08A49809858FC559E /* write.nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = write.nanopb.cc; path = Firestore/Protos/nanopb/google/firestore/v1/write.nanopb.cc; sourceTree = ""; }; - BD3B5A3389E890060AA5312DAFC38BD9 /* FIRAnalyticsConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAnalyticsConfiguration.h; path = FirebaseCore/Sources/FIRAnalyticsConfiguration.h; sourceTree = ""; }; - BD477BAF6842763B38752AB3BB2E3BD0 /* status.nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = status.nanopb.cc; path = Firestore/Protos/nanopb/google/rpc/status.nanopb.cc; sourceTree = ""; }; - BD6D4268B2596D2A7512F128602E4628 /* scalar.c */ = {isa = PBXFileReference; includeInIndex = 1; name = scalar.c; path = src/crypto/fipsmodule/ec/scalar.c; sourceTree = ""; }; - BD74A7D724DB1A5B3C5C74F294A3BA8A /* memory_quota.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = memory_quota.h; path = src/core/lib/resource_quota/memory_quota.h; sourceTree = ""; }; - BD7DE0A7F2233E31D3BEFCB227B715FF /* notification.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = notification.h; path = src/core/lib/gprpp/notification.h; sourceTree = ""; }; - BD8433D8437001217A32070E30079FA5 /* slice_api.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = slice_api.cc; path = src/core/lib/slice/slice_api.cc; sourceTree = ""; }; - BD96873BC8C577FB6326156990E0FB40 /* handshake_server.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = handshake_server.cc; path = src/ssl/handshake_server.cc; sourceTree = ""; }; - BD9BAC017C5EF0EA3195A89371FB1D71 /* binder_server.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = binder_server.h; path = src/core/ext/transport/binder/server/binder_server.h; sourceTree = ""; }; - BDA5E4E514C83B4080FD1C9F615C1286 /* promise_like.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = promise_like.h; path = src/core/lib/promise/detail/promise_like.h; sourceTree = ""; }; - BDAA16E71EF33BB62C9C1B92818B8823 /* socket_utils_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = socket_utils_windows.cc; path = src/core/lib/iomgr/socket_utils_windows.cc; sourceTree = ""; }; - BDC41B78FC9E2C366BA662F26F7CE207 /* thread_quota.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = thread_quota.cc; path = src/core/lib/resource_quota/thread_quota.cc; sourceTree = ""; }; - BDC4760CD0AFFCB86CD0AC1F1989C9C2 /* client_callback.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = client_callback.cc; path = src/cpp/client/client_callback.cc; sourceTree = ""; }; - BDC5DC5233CF25321EF143D3B0B425DA /* socket_utils_linux.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = socket_utils_linux.cc; path = src/core/lib/iomgr/socket_utils_linux.cc; sourceTree = ""; }; - BDC629D461FB5C7939453610137521B1 /* channel_idle_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_idle_filter.h; path = src/core/ext/filters/channel_idle/channel_idle_filter.h; sourceTree = ""; }; - BDDAC0502DBE8CFEA24C7558FE15AB41 /* x509_obj.c */ = {isa = PBXFileReference; includeInIndex = 1; name = x509_obj.c; path = src/crypto/x509/x509_obj.c; sourceTree = ""; }; - BDE6A265F1436E19B308BD9AFE66F4F9 /* alloc.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = alloc.cc; path = src/core/lib/gpr/alloc.cc; sourceTree = ""; }; - BDEBB779B477D84368ABA56B12C63F83 /* FIRApp.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRApp.m; path = FirebaseCore/Sources/FIRApp.m; sourceTree = ""; }; - BDF943B7A09E38058DA9A9B22C24FE6E /* xds_channel_stack_modifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_channel_stack_modifier.h; path = src/core/ext/xds/xds_channel_stack_modifier.h; sourceTree = ""; }; - BDFC0385DCCBC982A4EA400406D8904B /* validate.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = validate.upb.h; path = "src/core/ext/upb-generated/validate/validate.upb.h"; sourceTree = ""; }; - BE065CCB87EB67D32B7E424DA5A1C1D9 /* frame_handler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = frame_handler.h; path = src/core/tsi/alts/frame_protector/frame_handler.h; sourceTree = ""; }; - BE09BEA995DAF5B5208088E2154007A9 /* time_zone_info.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = time_zone_info.cc; path = absl/time/internal/cctz/src/time_zone_info.cc; sourceTree = ""; }; - BE09DCA32BE3F5B9ADE90E9C36CC20ED /* auth_context.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = auth_context.h; path = include/grpcpp/impl/codegen/security/auth_context.h; sourceTree = ""; }; - BE37B600E887DE98849A0423696B923A /* proxy_protocol.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = proxy_protocol.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/proxy_protocol.upbdefs.c"; sourceTree = ""; }; - BE4D7C6247B2EBA18B5410010E24010B /* hkdf.c */ = {isa = PBXFileReference; includeInIndex = 1; name = hkdf.c; path = src/crypto/hkdf/hkdf.c; sourceTree = ""; }; - BE5DADEED590E905C77F9CB5591C2EDB /* GULNSData+zlib.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "GULNSData+zlib.m"; path = "GoogleUtilities/NSData+zlib/GULNSData+zlib.m"; sourceTree = ""; }; - BE62B0F7FF80B367DE2B224425E3AFB3 /* bootstrap.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bootstrap.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/bootstrap/v3/bootstrap.upbdefs.h"; sourceTree = ""; }; - BE6F32D7B91C009D5CF7524E41EA06D1 /* versioning.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = versioning.upb.h; path = "src/core/ext/upb-generated/udpa/annotations/versioning.upb.h"; sourceTree = ""; }; - BE71F7C8A227DF317F9DC7B155FC4EB8 /* abseil.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = abseil.release.xcconfig; sourceTree = ""; }; - BE8B2513C819015AFEE44E7F0481AB14 /* fast_uniform_bits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fast_uniform_bits.h; path = absl/random/internal/fast_uniform_bits.h; sourceTree = ""; }; - BE8C945DBA46D34EF5AFC2B374FF9F14 /* FIRPhoneMultiFactorGenerator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRPhoneMultiFactorGenerator.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRPhoneMultiFactorGenerator.h; sourceTree = ""; }; - BE965D2D14C3172682E5E75EB4D38CE5 /* ec_asn1.c */ = {isa = PBXFileReference; includeInIndex = 1; name = ec_asn1.c; path = src/crypto/ec_extra/ec_asn1.c; sourceTree = ""; }; - BE976FF31E3EFC8F3A9A35234659F126 /* no_destruct.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = no_destruct.h; path = src/core/lib/gprpp/no_destruct.h; sourceTree = ""; }; - BEA2E868C6692EBB946FE99F0966AE3D /* ssl_key_share.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = ssl_key_share.cc; path = src/ssl/ssl_key_share.cc; sourceTree = ""; }; - BED92A62A7DF41D186AB73F10586207F /* collection_entry.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = collection_entry.upbdefs.c; path = "src/core/ext/upbdefs-generated/xds/core/v3/collection_entry.upbdefs.c"; sourceTree = ""; }; - BEDE7997DC0355C0BF3627BB525685C7 /* FIRGameCenterAuthCredential.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRGameCenterAuthCredential.m; path = FirebaseAuth/Sources/AuthProvider/GameCenter/FIRGameCenterAuthCredential.m; sourceTree = ""; }; - BEECC412575A1BCD57C035E6E7DE6000 /* retry_throttle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = retry_throttle.h; path = src/core/ext/filters/client_channel/retry_throttle.h; sourceTree = ""; }; - BEF81379C1125C914DABE47F631A3E5B /* tsi_error.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tsi_error.h; path = src/core/lib/security/transport/tsi_error.h; sourceTree = ""; }; - BEF813D74DFC4C59AFA9BA042DD9ACEE /* xds_endpoint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_endpoint.h; path = src/core/ext/xds/xds_endpoint.h; sourceTree = ""; }; - BF0703816100982D11C66479B5F34F9E /* pollset_set.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pollset_set.h; path = src/core/lib/iomgr/pollset_set.h; sourceTree = ""; }; - BF0CEB606C8C1E4923B757CE76460C9C /* server_interceptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_interceptor.h; path = include/grpcpp/support/server_interceptor.h; sourceTree = ""; }; - BF2160B131D602AF866AEC110F349653 /* FIRAuthCredential_Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthCredential_Internal.h; path = FirebaseAuth/Sources/AuthProvider/FIRAuthCredential_Internal.h; sourceTree = ""; }; - BF39081BFC86B77152F09043DC09C722 /* grpc_ares_ev_driver_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = grpc_ares_ev_driver_posix.cc; path = src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_posix.cc; sourceTree = ""; }; - BF39A4D7D856EC041F3F67DA51C09C14 /* x509_v3.c */ = {isa = PBXFileReference; includeInIndex = 1; name = x509_v3.c; path = src/crypto/x509/x509_v3.c; sourceTree = ""; }; - BF3A0595CAF1A22256145E688D7A5A81 /* windows.c */ = {isa = PBXFileReference; includeInIndex = 1; name = windows.c; path = src/crypto/rand_extra/windows.c; sourceTree = ""; }; - BF43040B37F96134C4166D7CCA8CCD29 /* regex.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = regex.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/matcher/v3/regex.upbdefs.h"; sourceTree = ""; }; - BF56CB2B89C7D4D258DEC7DB187293AC /* xds_bootstrap_grpc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_bootstrap_grpc.h; path = src/core/ext/xds/xds_bootstrap_grpc.h; sourceTree = ""; }; - BF65F024458FD5B168F862AB8F2A3C2A /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/fipsmodule/digest/internal.h; sourceTree = ""; }; - BF67D8E88F34C35D3AF370D64825472F /* timestamp.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timestamp.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/protobuf/timestamp.upbdefs.h"; sourceTree = ""; }; - BF7E64E37EB0214F5E36BA43158B0E28 /* byte_buffer_reader.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = byte_buffer_reader.cc; path = src/core/lib/surface/byte_buffer_reader.cc; sourceTree = ""; }; - BF86619C004700FB0949C3F9EDA23A9E /* lb_policy.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = lb_policy.cc; path = src/core/lib/load_balancing/lb_policy.cc; sourceTree = ""; }; - BF96B57ADE05E8909F823BDF6868B3E3 /* abseil */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = abseil; path = absl.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - BF98892018C0C9B2BB824EBE3597AB07 /* testing_hooks.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = testing_hooks.cc; path = Firestore/core/src/util/testing_hooks.cc; sourceTree = ""; }; - BFA4D4FEA64AC05FFD81C8C8E6339054 /* certificate_provider_store.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = certificate_provider_store.cc; path = src/core/ext/xds/certificate_provider_store.cc; sourceTree = ""; }; - BFAFC543BE8D9C2794C361304FD30B83 /* string_view.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = string_view.cc; path = absl/strings/string_view.cc; sourceTree = ""; }; - BFB367A192FF65F971BBD18084894380 /* exponential_biased.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = exponential_biased.cc; path = absl/profiling/internal/exponential_biased.cc; sourceTree = ""; }; - BFD950FC833DB822B1DC3B5B7C4D70D9 /* e_os2.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = e_os2.h; path = src/include/openssl/e_os2.h; sourceTree = ""; }; - BFDAF4BC61A6DB8169F75C58AF273549 /* basic_seq.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = basic_seq.h; path = src/core/lib/promise/detail/basic_seq.h; sourceTree = ""; }; - BFE36402D3D7351454461BF466848B03 /* status.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = status.upbdefs.c; path = "src/core/ext/upbdefs-generated/udpa/annotations/status.upbdefs.c"; sourceTree = ""; }; - BFE7591AA4338D3FCE2C27204AA3F325 /* hash_policy.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = hash_policy.upb.c; path = "src/core/ext/upb-generated/envoy/type/v3/hash_policy.upb.c"; sourceTree = ""; }; - BFF3FEF0F9834F6A5FE6625E4D2117EE /* dynamic_filters.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = dynamic_filters.cc; path = src/core/ext/filters/client_channel/dynamic_filters.cc; sourceTree = ""; }; - BFFED9C1285C281437A5AA43F8E82956 /* polling_entity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = polling_entity.h; path = src/core/lib/iomgr/polling_entity.h; sourceTree = ""; }; - C011F9D37C3D96DDF9A2FEB5226A2400 /* completion_queue_tag.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = completion_queue_tag.h; path = include/grpcpp/impl/codegen/completion_queue_tag.h; sourceTree = ""; }; - C01E3EA51C64E66B87F386DB9AC715AD /* field_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = field_filter.cc; path = Firestore/core/src/core/field_filter.cc; sourceTree = ""; }; - C0242C4A3C1FEF4E6FBC2B09A181701C /* resolve_address_impl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolve_address_impl.h; path = src/core/lib/iomgr/resolve_address_impl.h; sourceTree = ""; }; - C04788BE4509F2E027AC85E22D13D838 /* pcy_map.c */ = {isa = PBXFileReference; includeInIndex = 1; name = pcy_map.c; path = src/crypto/x509v3/pcy_map.c; sourceTree = ""; }; - C04C4C41919DDFD8256619CA343CF213 /* string.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = string.upb.h; path = "src/core/ext/upb-generated/xds/type/matcher/v3/string.upb.h"; sourceTree = ""; }; - C04D3699CAACD78C0AE091952ED4AAFC /* ratelimit_strategy.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = ratelimit_strategy.upb.c; path = "src/core/ext/upb-generated/envoy/type/v3/ratelimit_strategy.upb.c"; sourceTree = ""; }; - C058B5A0A026F7AB7BB0210D1F40CE47 /* rbac.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rbac.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/extensions/filters/http/rbac/v3/rbac.upbdefs.h"; sourceTree = ""; }; - C05F1CE99780C4ADE06E6ACFF7272D17 /* FIRAuthProtoFinalizeMFATOTPEnrollmentResponseInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthProtoFinalizeMFATOTPEnrollmentResponseInfo.m; path = FirebaseAuth/Sources/Backend/RPC/Proto/TOTP/FIRAuthProtoFinalizeMFATOTPEnrollmentResponseInfo.m; sourceTree = ""; }; - C063A75FF1E196AB119FC3FE30E8C0B9 /* FIRAppCheckInterop.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAppCheckInterop.h; path = FirebaseAppCheck/Interop/FIRAppCheckInterop.h; sourceTree = ""; }; - C07580054B2150B2EA47F849C6ACF105 /* server_config_selector_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_config_selector_filter.h; path = src/core/ext/filters/server_config_selector/server_config_selector_filter.h; sourceTree = ""; }; - C086BE95C999C4502FFD2A48512E8A58 /* channel_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_filter.h; path = src/cpp/common/channel_filter.h; sourceTree = ""; }; - C097AF0E10E8516C84BA2F55FC1C9FE1 /* remote_store.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = remote_store.cc; path = Firestore/core/src/remote/remote_store.cc; sourceTree = ""; }; - C09C8AB3F05E0E0527A4D3A038E7C528 /* log_reader.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = log_reader.cc; path = db/log_reader.cc; sourceTree = ""; }; - C09D10EF6C83D49AF260DC5F7313A8E6 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/chacha/internal.h; sourceTree = ""; }; - C0A33027B3F1E55AC798F3F33CF023EB /* comparison.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = comparison.cc; path = Firestore/core/src/util/comparison.cc; sourceTree = ""; }; - C0C8C8913539CDA263F4AF2FDFC7ECC9 /* x86_64-gcc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = "x86_64-gcc.c"; path = "src/crypto/fipsmodule/bn/asm/x86_64-gcc.c"; sourceTree = ""; }; - C0D79936BA25E779C2F4E378A8DA5B8E /* http.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/v3/http.upbdefs.h"; sourceTree = ""; }; - C0EC9DF644B5922F61467B4FEBF04CB2 /* FIRTOTPSecret+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FIRTOTPSecret+Internal.h"; path = "FirebaseAuth/Sources/MultiFactor/TOTP/FIRTOTPSecret+Internal.h"; sourceTree = ""; }; - C0F27C18CD6D20D0AD0F3DA5CCF9C4B6 /* xds_client_grpc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_client_grpc.h; path = src/core/ext/xds/xds_client_grpc.h; sourceTree = ""; }; - C0F6B89DA174E7E4CB2F566D9E817690 /* leveldb_util.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = leveldb_util.cc; path = Firestore/core/src/local/leveldb_util.cc; sourceTree = ""; }; - C10A2E942E2B7E29E898CCE3B7F2A8A0 /* pcy_node.c */ = {isa = PBXFileReference; includeInIndex = 1; name = pcy_node.c; path = src/crypto/x509v3/pcy_node.c; sourceTree = ""; }; - C11215E6720095E129DC3BFCBC99FD34 /* config_dump.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = config_dump.upb.h; path = "src/core/ext/upb-generated/envoy/admin/v3/config_dump.upb.h"; sourceTree = ""; }; - C11C481C8C910821E3B96E1B3284787F /* path_transformation.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = path_transformation.upb.h; path = "src/core/ext/upb-generated/envoy/type/http/v3/path_transformation.upb.h"; sourceTree = ""; }; - C13C90FDC55076EE7DCDF8671941AEAD /* route_components.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = route_components.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/route/v3/route_components.upbdefs.h"; sourceTree = ""; }; - C15445F7FD481BFCFC514C9C64D98039 /* completion_queue_factory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = completion_queue_factory.h; path = src/core/lib/surface/completion_queue_factory.h; sourceTree = ""; }; - C1574DE6547C8374619C026FE8A0661E /* security.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = security.upbdefs.h; path = "src/core/ext/upbdefs-generated/udpa/annotations/security.upbdefs.h"; sourceTree = ""; }; - C16B783CCDF675B2068FC1A52AB09D53 /* ring_hash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ring_hash.h; path = src/core/ext/filters/client_channel/lb_policy/ring_hash/ring_hash.h; sourceTree = ""; }; - C16BA8733C7B297294E7CE39AE15BA5C /* certificate_provider_registry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = certificate_provider_registry.h; path = src/core/lib/security/certificate_provider/certificate_provider_registry.h; sourceTree = ""; }; - C1767C24E8B45DA6D9E61647C9E391C8 /* log_severity.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = log_severity.cc; path = absl/base/log_severity.cc; sourceTree = ""; }; - C18E5DC69D465D64F2FB51DD2D29CECC /* message_decompress_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = message_decompress_filter.cc; path = src/core/ext/filters/http/message_compress/message_decompress_filter.cc; sourceTree = ""; }; - C199707CA3E6C5223516663CCC5CB9C4 /* FIROAuthCredential.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIROAuthCredential.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIROAuthCredential.h; sourceTree = ""; }; - C1998E0D8085221AD87F89B614C10E52 /* GTMSessionFetcher */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = GTMSessionFetcher; path = GTMSessionFetcher.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - C1998EA49015D214A15F9E797456C0EA /* v3_ia5.c */ = {isa = PBXFileReference; includeInIndex = 1; name = v3_ia5.c; path = src/crypto/x509v3/v3_ia5.c; sourceTree = ""; }; - C1AB4BF0B36F02B935C393D7B59C8C18 /* FIRAuthAPNSToken.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthAPNSToken.h; path = FirebaseAuth/Sources/SystemService/FIRAuthAPNSToken.h; sourceTree = ""; }; - C1AD48A333E26FFA1823649866494797 /* grpc_authorization_engine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_authorization_engine.h; path = src/core/lib/security/authorization/grpc_authorization_engine.h; sourceTree = ""; }; - C1C3B6962E58BCD82356E5A8027EB1C0 /* timer_manager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timer_manager.h; path = src/core/lib/iomgr/timer_manager.h; sourceTree = ""; }; - C1C68EA808C262306A82C99029E9F0D4 /* spinlock_posix.inc */ = {isa = PBXFileReference; includeInIndex = 1; name = spinlock_posix.inc; path = absl/base/internal/spinlock_posix.inc; sourceTree = ""; }; - C1C87356DFC6FE99B19F02CA41C7B4F1 /* validate_service_config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = validate_service_config.h; path = include/grpcpp/support/validate_service_config.h; sourceTree = ""; }; - C1CA4D9AB57BCCF6939312976EB4046F /* udp_socket_config.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = udp_socket_config.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/udp_socket_config.upbdefs.h"; sourceTree = ""; }; - C1CB54704B19B21DEA50476AA628E855 /* xds_channel_stack_modifier.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = xds_channel_stack_modifier.cc; path = src/core/ext/xds/xds_channel_stack_modifier.cc; sourceTree = ""; }; - C1DD1ED98A7670A43287C0E1FF3B26B0 /* FIRGetAccountInfoResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRGetAccountInfoResponse.m; path = FirebaseAuth/Sources/Backend/RPC/FIRGetAccountInfoResponse.m; sourceTree = ""; }; - C1E64045A9C855533FA67EA5CBB232D8 /* d1_both.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = d1_both.cc; path = src/ssl/d1_both.cc; sourceTree = ""; }; - C1E687ABF0173DBAE8C68A949D8C922C /* json_encode.c */ = {isa = PBXFileReference; includeInIndex = 1; name = json_encode.c; path = third_party/upb/upb/json_encode.c; sourceTree = ""; }; - C1F8550FF099F093E51C3BDF4A0F798F /* json_util.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = json_util.h; path = src/core/lib/json/json_util.h; sourceTree = ""; }; - C206BEAFD5AD221042F3C051C0E1D74A /* grpc_tls_certificate_distributor.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = grpc_tls_certificate_distributor.cc; path = src/core/lib/security/credentials/tls/grpc_tls_certificate_distributor.cc; sourceTree = ""; }; - C207DCB9D9FEA47F6BD9C6471154160F /* resolve_address_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = resolve_address_windows.cc; path = src/core/lib/iomgr/resolve_address_windows.cc; sourceTree = ""; }; - C21A7FEE31E6587E7339326CDF570EE9 /* simplify.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = simplify.cc; path = third_party/re2/re2/simplify.cc; sourceTree = ""; }; - C221188F3FCEDF04418B4B3FF0C31AED /* timeout_encoding.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = timeout_encoding.cc; path = src/core/lib/transport/timeout_encoding.cc; sourceTree = ""; }; - C2275F8533F3E3E0BBA39909FD04563C /* health_check_service.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = health_check_service.cc; path = src/cpp/server/health/health_check_service.cc; sourceTree = ""; }; - C237891B803AA0E37133C7C6F0325D49 /* sync_generic.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sync_generic.h; path = include/grpc/support/sync_generic.h; sourceTree = ""; }; - C2412C2A3DE452FC48580DA2AE379834 /* dynamic_annotations.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dynamic_annotations.h; path = src/core/lib/iomgr/dynamic_annotations.h; sourceTree = ""; }; - C242FF702C027D94383C1DBC3CBADA06 /* check_gcp_environment.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = check_gcp_environment.h; path = src/core/lib/security/credentials/alts/check_gcp_environment.h; sourceTree = ""; }; - C24B3975446E3A9F4D166590847B0850 /* FIRAuth_Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuth_Internal.h; path = FirebaseAuth/Sources/Auth/FIRAuth_Internal.h; sourceTree = ""; }; - C25341CAA6390E004835751AB08740E9 /* p5_pbev2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = p5_pbev2.c; path = src/crypto/pkcs8/p5_pbev2.c; sourceTree = ""; }; - C25CCB73644B884EEB1B796F9FAC6DAD /* compressed_tuple.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = compressed_tuple.h; path = absl/container/internal/compressed_tuple.h; sourceTree = ""; }; - C26E11DE48D80F2D0875985199E220BD /* FIRAggregateQuery.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRAggregateQuery.mm; path = Firestore/Source/API/FIRAggregateQuery.mm; sourceTree = ""; }; - C27A0FA65DBBEF2D25B48F71304500DF /* unscaledcycleclock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = unscaledcycleclock.h; path = absl/base/internal/unscaledcycleclock.h; sourceTree = ""; }; - C286E783FECE8F5DEC16378728E217D8 /* xds_cluster.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_cluster.h; path = src/core/ext/xds/xds_cluster.h; sourceTree = ""; }; - C28C366BC02EC0B45971B167642AA847 /* tmpfile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tmpfile.h; path = src/core/lib/gpr/tmpfile.h; sourceTree = ""; }; - C2996EAF4B42FE90D8D845220A93C79B /* status.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.upb.h; path = "src/core/ext/upb-generated/google/rpc/status.upb.h"; sourceTree = ""; }; - C2A5EF6AF2FE70B8E669CF19490766EF /* message_compress_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = message_compress_filter.cc; path = src/core/ext/filters/http/message_compress/message_compress_filter.cc; sourceTree = ""; }; - C2AC0189DAAE21C15FC49FC9A749F448 /* alts_grpc_record_protocol_common.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_grpc_record_protocol_common.h; path = src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_record_protocol_common.h; sourceTree = ""; }; - C2B47C6868ED732C81F48D2478E8CE4D /* typed_struct.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = typed_struct.upb.c; path = "src/core/ext/upb-generated/xds/type/v3/typed_struct.upb.c"; sourceTree = ""; }; - C2D90BC2D1C5C01FA1A368369697A75E /* auth_token.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = auth_token.cc; path = Firestore/core/src/credentials/auth_token.cc; sourceTree = ""; }; - C2E088B258034C4DDF834BD794150DC7 /* transport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = transport.h; path = src/core/lib/transport/transport.h; sourceTree = ""; }; - C2EE68D496B77A1EA9DFF0475B27D8AF /* single_set_ptr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = single_set_ptr.h; path = src/core/lib/gprpp/single_set_ptr.h; sourceTree = ""; }; - C2F7791B7CDFEC5662CD6A4FAEAC3055 /* timestamp.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timestamp.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/protobuf/timestamp.upbdefs.h"; sourceTree = ""; }; - C3089F3773483F41D2BB1B33487C8617 /* onepass.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = onepass.cc; path = third_party/re2/re2/onepass.cc; sourceTree = ""; }; - C327170635042EAE8899B0354ECF3B98 /* ev_epoll1_linux.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = ev_epoll1_linux.cc; path = src/core/lib/iomgr/ev_epoll1_linux.cc; sourceTree = ""; }; - C3305968FF0543665BC614A27723F5BC /* tls.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tls.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/tls.upbdefs.h"; sourceTree = ""; }; - C33649CF93677841818A64DDB69DA564 /* FIRVersion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRVersion.m; path = FirebaseCore/Sources/FIRVersion.m; sourceTree = ""; }; - C33EA0BB9E10F7B3CE0BC2F228ECC601 /* tls_utils.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = tls_utils.cc; path = src/core/lib/security/credentials/tls/tls_utils.cc; sourceTree = ""; }; - C346FB307EAB43E4890CD3B08C48FEBB /* windows_engine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = windows_engine.h; path = src/core/lib/event_engine/windows/windows_engine.h; sourceTree = ""; }; - C34E9FE3035CB20012464087AEC1D846 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/fipsmodule/modes/internal.h; sourceTree = ""; }; - C36E642798AFAFA1CCFCE10AF5268803 /* xds_cluster_specifier_plugin.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = xds_cluster_specifier_plugin.cc; path = src/core/ext/xds/xds_cluster_specifier_plugin.cc; sourceTree = ""; }; - C3762F9BDD426D3B4E59E305CE021E54 /* sync.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sync.h; path = src/core/lib/gprpp/sync.h; sourceTree = ""; }; - C379DB924E9B7F657B9327E91B8EACFA /* transport_security_common_api.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = transport_security_common_api.cc; path = src/core/tsi/alts/handshaker/transport_security_common_api.cc; sourceTree = ""; }; - C3811525CD5F5C9EE56F2049CC74EDF3 /* orca.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = orca.upb.c; path = "src/core/ext/upb-generated/xds/service/orca/v3/orca.upb.c"; sourceTree = ""; }; - C3C0682247F0D93AEDD5C4713F8BD1EB /* aws_external_account_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = aws_external_account_credentials.h; path = src/core/lib/security/credentials/external/aws_external_account_credentials.h; sourceTree = ""; }; - C3C1F931030FEF6569EF2178FD514048 /* FIRCreateAuthURIRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCreateAuthURIRequest.m; path = FirebaseAuth/Sources/Backend/RPC/FIRCreateAuthURIRequest.m; sourceTree = ""; }; - C3C2BE33AAF01FCCA0A4154693B2D576 /* csds.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = csds.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/service/status/v3/csds.upbdefs.h"; sourceTree = ""; }; - C3F10130BC25289B0938A7B8A9E3042C /* lrs.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lrs.upb.h; path = "src/core/ext/upb-generated/envoy/service/load_stats/v3/lrs.upb.h"; sourceTree = ""; }; - C4103AE6B7B3E375603532FB4A073D9E /* load_report.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = load_report.upb.c; path = "src/core/ext/upb-generated/envoy/config/endpoint/v3/load_report.upb.c"; sourceTree = ""; }; - C422C7895336F0FEC0037B4ABAC6E2F1 /* time_zone.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = time_zone.h; path = absl/time/internal/cctz/include/cctz/time_zone.h; sourceTree = ""; }; - C423E40113C2313E3E064E1040D13D49 /* trace_config.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = trace_config.upb.h; path = "src/core/ext/upb-generated/opencensus/proto/trace/v1/trace_config.upb.h"; sourceTree = ""; }; - C427A5024BD0C5565DFC74DC86D2E541 /* call_finalization.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = call_finalization.h; path = src/core/lib/channel/call_finalization.h; sourceTree = ""; }; - C45DF6B1C0ACD716FC0B0ECE837BCDB2 /* slice_buffer.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = slice_buffer.cc; path = src/core/lib/slice/slice_buffer.cc; sourceTree = ""; }; - C4608D907C436B88354273B77031B0DD /* binder_constants.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = binder_constants.cc; path = src/core/ext/transport/binder/wire_format/binder_constants.cc; sourceTree = ""; }; - C4620C7ECB575EA763239802001C9A35 /* semantic_version.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = semantic_version.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/v3/semantic_version.upbdefs.h"; sourceTree = ""; }; - C47A59563F05D4A639ED3413322CA0F9 /* node.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = node.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/type/matcher/v3/node.upbdefs.c"; sourceTree = ""; }; - C4A22F9579FDF7C8133D8EBA78901FCA /* aes_nohw.c */ = {isa = PBXFileReference; includeInIndex = 1; name = aes_nohw.c; path = src/crypto/fipsmodule/aes/aes_nohw.c; sourceTree = ""; }; - C4A9BBC3A38CA89D1C601DE6552ADF9A /* json_object_loader.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = json_object_loader.cc; path = src/core/lib/json/json_object_loader.cc; sourceTree = ""; }; - C4B2DA00F24CA3A88B31D4F26F3F8B40 /* delocate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = delocate.h; path = src/crypto/fipsmodule/delocate.h; sourceTree = ""; }; - C4B4A58CB040C347FEF879F701E95C52 /* FIRRevokeTokenRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRRevokeTokenRequest.h; path = FirebaseAuth/Sources/Backend/RPC/FIRRevokeTokenRequest.h; sourceTree = ""; }; - C4BA7595DA4FA489AD222F889BC902BE /* FIRFinalizeMFAEnrollmentResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRFinalizeMFAEnrollmentResponse.h; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/Enroll/FIRFinalizeMFAEnrollmentResponse.h; sourceTree = ""; }; - C4C5361D6EF2CC01580637D355F0CF60 /* leveldb_key.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = leveldb_key.cc; path = Firestore/core/src/local/leveldb_key.cc; sourceTree = ""; }; - C4DC48646BC2BEBE1373ED3FCCB4589D /* host_port.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = host_port.h; path = src/core/lib/gprpp/host_port.h; sourceTree = ""; }; - C4E2498C9156BE25F8F834426FBB2BB6 /* reference_set.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = reference_set.cc; path = Firestore/core/src/local/reference_set.cc; sourceTree = ""; }; - C4E34597B14DB579FD699639D72696C4 /* stl_type_traits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stl_type_traits.h; path = absl/strings/internal/stl_type_traits.h; sourceTree = ""; }; - C4EF6394E86DE3695DB3CEEDE1C1C3BF /* RecaptchaInterop.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RecaptchaInterop.debug.xcconfig; sourceTree = ""; }; - C4F7C55FB495334E5FD1560D585965EE /* mem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mem.h; path = src/include/openssl/mem.h; sourceTree = ""; }; - C508BED4A2017ED4D125467788FDB416 /* service_config_parser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = service_config_parser.h; path = src/core/lib/service_config/service_config_parser.h; sourceTree = ""; }; - C512AB1E093E5AD78494F964236C3508 /* syntax.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = syntax.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/syntax.upbdefs.h"; sourceTree = ""; }; - C522BEB0135F072ACE442D7AA634259C /* xds_transport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_transport.h; path = src/core/ext/xds/xds_transport.h; sourceTree = ""; }; - C5250BCB1D6CA849E4B4A8DA094B318A /* comparator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = comparator.h; path = include/leveldb/comparator.h; sourceTree = ""; }; - C52E852B752BF8243E306C8280D84A4E /* context_list.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = context_list.h; path = src/core/ext/transport/chttp2/transport/context_list.h; sourceTree = ""; }; - C545213BD9D3D9C0BDE9169575E2A2BE /* status_apple.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = status_apple.mm; path = Firestore/core/src/util/status_apple.mm; sourceTree = ""; }; - C54B31C65C62A69D34235FE09EA45BA2 /* GTMSessionFetcher-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "GTMSessionFetcher-Info.plist"; sourceTree = ""; }; - C5516F0D86CC1D1C8C1E509C8E19EFCB /* fake_security_connector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fake_security_connector.h; path = src/core/lib/security/security_connector/fake/fake_security_connector.h; sourceTree = ""; }; - C5627730ACDDD35AAFACC86E6DE8BE53 /* bundle.nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = bundle.nanopb.cc; path = Firestore/Protos/nanopb/firestore/bundle.nanopb.cc; sourceTree = ""; }; - C56A4EF2680A1388E08E912698C3D039 /* init.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = init.h; path = src/core/lib/surface/init.h; sourceTree = ""; }; - C56CAD6FEF4D5B0C413772E8CAED7FD5 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/x509/internal.h; sourceTree = ""; }; - C5895A4042C8187B7199258368A2D678 /* exec_ctx.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = exec_ctx.h; path = src/core/lib/iomgr/exec_ctx.h; sourceTree = ""; }; - C5E9743D4AEF90449ABE247424A8F86F /* migrate.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = migrate.upb.h; path = "src/core/ext/upb-generated/udpa/annotations/migrate.upb.h"; sourceTree = ""; }; - C5F799B9DCED0C015FF843BCDFB0F4A9 /* substitute.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = substitute.cc; path = absl/strings/substitute.cc; sourceTree = ""; }; - C61602970D93DC8CBF79F71EC6F565D0 /* a_type.c */ = {isa = PBXFileReference; includeInIndex = 1; name = a_type.c; path = src/crypto/asn1/a_type.c; sourceTree = ""; }; - C62D3AF9E3D949AE6EAA8C4C0F45419A /* FIRSetAccountInfoResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRSetAccountInfoResponse.h; path = FirebaseAuth/Sources/Backend/RPC/FIRSetAccountInfoResponse.h; sourceTree = ""; }; - C64C3CBC9FDC946919B982478C692E19 /* xds_client.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_client.h; path = src/core/ext/xds/xds_client.h; sourceTree = ""; }; - C6723A11E9B669C82AF46A31D55C16B6 /* def.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = def.h; path = third_party/upb/upb/def.h; sourceTree = ""; }; - C67523D886858CF1F62B1E0818D39362 /* err.c */ = {isa = PBXFileReference; includeInIndex = 1; name = err.c; path = src/crypto/err/err.c; sourceTree = ""; }; - C6950B776810277517D10A3C46CDFF59 /* NSURLSession+GULPromises.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSURLSession+GULPromises.h"; path = "GoogleUtilities/Environment/Public/GoogleUtilities/NSURLSession+GULPromises.h"; sourceTree = ""; }; - C696EDE0BDCE8052D82F55490A08DB80 /* packed_table.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = packed_table.h; path = src/core/lib/gprpp/packed_table.h; sourceTree = ""; }; - C6ACCEC076904379AE523C1A509EDC5E /* GTMSessionFetcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GTMSessionFetcher.h; path = Sources/Core/Public/GTMSessionFetcher/GTMSessionFetcher.h; sourceTree = ""; }; - C6BB651F60B4112E1C9DC2EB8FC9970F /* subchannel_stream_client.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = subchannel_stream_client.h; path = src/core/ext/filters/client_channel/subchannel_stream_client.h; sourceTree = ""; }; - C6E7CE05D326BD285F2B606DC1B36262 /* FSTUserDataReader.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FSTUserDataReader.mm; path = Firestore/Source/API/FSTUserDataReader.mm; sourceTree = ""; }; - C6F57F507A6E16FB3791725C5CBECBE9 /* lb_policy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lb_policy.h; path = src/core/lib/load_balancing/lb_policy.h; sourceTree = ""; }; - C70DE610B652B0BC84B7971098EA83C3 /* path_transformation.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = path_transformation.upb.h; path = "src/core/ext/upb-generated/envoy/type/http/v3/path_transformation.upb.h"; sourceTree = ""; }; - C72B2F53338FCD2B2F781156976E1AD9 /* log_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = log_posix.cc; path = src/core/lib/gpr/log_posix.cc; sourceTree = ""; }; - C7460E8D305448ABCFBAA5EEAA48214D /* atomic_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = atomic_utils.h; path = src/core/lib/gprpp/atomic_utils.h; sourceTree = ""; }; - C774AE36A045DF2B7CCDF735B23EE88A /* parser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = parser.h; path = src/core/lib/http/parser.h; sourceTree = ""; }; - C7A1031A9D5DE7BBD40592CE991B393A /* GULAppEnvironmentUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULAppEnvironmentUtil.h; path = GoogleUtilities/Environment/Public/GoogleUtilities/GULAppEnvironmentUtil.h; sourceTree = ""; }; - C7A8029F35D8B8CC23D0DB3F3BD041D7 /* chttp2_server.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = chttp2_server.h; path = src/core/ext/transport/chttp2/server/chttp2_server.h; sourceTree = ""; }; - C7AA36B9C1434E68861FE9865E1C6E67 /* call_creds_util.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = call_creds_util.h; path = src/core/lib/security/credentials/call_creds_util.h; sourceTree = ""; }; - C7CA61CFA9CC4EFA297770FB89E14C65 /* lame_client.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lame_client.h; path = src/core/lib/surface/lame_client.h; sourceTree = ""; }; - C7D3798235C443F1B456AC14F8E7E019 /* simple.c */ = {isa = PBXFileReference; includeInIndex = 1; name = simple.c; path = src/crypto/fipsmodule/ec/simple.c; sourceTree = ""; }; - C7DBB5B1AAAB9AA6646DB95114D9EBB4 /* manual_constructor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = manual_constructor.h; path = src/core/lib/gprpp/manual_constructor.h; sourceTree = ""; }; - C7E6AE563516302E113B94128B9B58E9 /* dualstack_socket_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = dualstack_socket_posix.cc; path = src/core/lib/iomgr/dualstack_socket_posix.cc; sourceTree = ""; }; - C809735D523CCC344C53D51C8A4B73D5 /* cbb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cbb.c; path = src/crypto/bytestring/cbb.c; sourceTree = ""; }; - C818A66C7A3D8CE6DD10FE531E143F08 /* FIRAuthProtoFinalizeMFATOTPEnrollmentRequestInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthProtoFinalizeMFATOTPEnrollmentRequestInfo.h; path = FirebaseAuth/Sources/Backend/RPC/Proto/TOTP/FIRAuthProtoFinalizeMFATOTPEnrollmentRequestInfo.h; sourceTree = ""; }; - C818BD8463F1EFE1920ACF20C9F11B58 /* fault_injection_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = fault_injection_filter.cc; path = src/core/ext/filters/fault_injection/fault_injection_filter.cc; sourceTree = ""; }; - C825D1178B5DEA48C2971D88DEB6EBA5 /* resource.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource.upb.h; path = "src/core/ext/upb-generated/xds/core/v3/resource.upb.h"; sourceTree = ""; }; - C844A8FD3CDB89A0FCE10DA129B9DF42 /* rbac_policy.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = rbac_policy.cc; path = src/core/lib/security/authorization/rbac_policy.cc; sourceTree = ""; }; - C85064BC2B3396D92B62D9636C070D98 /* p_rsa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = p_rsa.c; path = src/crypto/evp/p_rsa.c; sourceTree = ""; }; - C852CAB06B011F79FEB2ED5206841923 /* FIRFieldValue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRFieldValue.h; path = Firestore/Source/Public/FirebaseFirestore/FIRFieldValue.h; sourceTree = ""; }; - C8622210E6CD5A198731B7CFC1989CA1 /* grpc_ares_wrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_ares_wrapper.h; path = src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.h; sourceTree = ""; }; - C87994181FC0239F0402A13AE7CBDCF2 /* dual_ref_counted.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dual_ref_counted.h; path = src/core/lib/gprpp/dual_ref_counted.h; sourceTree = ""; }; - C88256EE4AFFAF39DCD9D66E645FCAB9 /* hash_policy.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = hash_policy.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/type/v3/hash_policy.upbdefs.c"; sourceTree = ""; }; - C8A5F5D46C0B1ED71FB2F7D21C5FE0B1 /* client_unary_call.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = client_unary_call.h; path = include/grpcpp/impl/client_unary_call.h; sourceTree = ""; }; - C8A61EB9E8ABF4F52BAB3A399E68166F /* security_connector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = security_connector.h; path = src/core/lib/security/security_connector/security_connector.h; sourceTree = ""; }; - C8B06FF63F378553777F9A839CEA45B7 /* ssl_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = ssl_credentials.cc; path = src/core/lib/security/credentials/ssl/ssl_credentials.cc; sourceTree = ""; }; - C8BC44CB7401C1106A0665B42B2C4253 /* FIRAuthProtoMFAEnrollment.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthProtoMFAEnrollment.m; path = FirebaseAuth/Sources/Backend/RPC/Proto/FIRAuthProtoMFAEnrollment.m; sourceTree = ""; }; - C8C8E84DF4E034EC32168C987E896B2B /* FIRStartMFASignInRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRStartMFASignInRequest.m; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/SignIn/FIRStartMFASignInRequest.m; sourceTree = ""; }; - C8CCB78438FA15049C9F2CF805649C9D /* cert.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cert.upb.c; path = "src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/cert.upb.c"; sourceTree = ""; }; - C8D5AA504C413C950D1B594F15E196E8 /* message_size_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = message_size_filter.h; path = src/core/ext/filters/message_size/message_size_filter.h; sourceTree = ""; }; - C8D9A2D6A506686C45F877A6343A902D /* FIRPhoneMultiFactorInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRPhoneMultiFactorInfo.m; path = FirebaseAuth/Sources/MultiFactor/Phone/FIRPhoneMultiFactorInfo.m; sourceTree = ""; }; - C8E66DBA6E2278EDB22B1572897EA96B /* GULSceneDelegateSwizzler_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULSceneDelegateSwizzler_Private.h; path = GoogleUtilities/AppDelegateSwizzler/Internal/GULSceneDelegateSwizzler_Private.h; sourceTree = ""; }; - C8EF21AE6BD70BA1C29767FB9060DD93 /* error_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = error_utils.h; path = src/core/lib/transport/error_utils.h; sourceTree = ""; }; - C8F6F1676B155616E9903F57670EA87E /* path_transformation.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = path_transformation.upb.c; path = "src/core/ext/upb-generated/envoy/type/http/v3/path_transformation.upb.c"; sourceTree = ""; }; - C8F9BD48AED4FF4EC42CDE0F45E6C48E /* checked.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = checked.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/checked.upbdefs.h"; sourceTree = ""; }; - C901CE59BC9613758F7DE662246F93FE /* inproc_plugin.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = inproc_plugin.cc; path = src/core/ext/transport/inproc/inproc_plugin.cc; sourceTree = ""; }; - C906C0D8C324DF20573A0BDB06754FEB /* pool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pool.h; path = src/include/openssl/pool.h; sourceTree = ""; }; - C913BAEE461360A3FE8E176E51029E39 /* create_thread_identity.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = create_thread_identity.cc; path = absl/synchronization/internal/create_thread_identity.cc; sourceTree = ""; }; - C930590AC06A73A0B3686C8EC790DC70 /* atm_windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = atm_windows.h; path = include/grpc/impl/codegen/atm_windows.h; sourceTree = ""; }; - C931BBD1054EB919B3359D742C0417E6 /* composite_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = composite_credentials.h; path = src/core/lib/security/credentials/composite/composite_credentials.h; sourceTree = ""; }; - C953FFD2316336751F5A9712665291CA /* call.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = call.h; path = src/core/lib/surface/call.h; sourceTree = ""; }; - C954E279229A719F98B3AF78ED6E2450 /* FIRAppInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAppInternal.h; path = FirebaseCore/Extension/FIRAppInternal.h; sourceTree = ""; }; - C95516337BF933091D542718E81FFFB8 /* server_callback.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_callback.h; path = include/grpcpp/impl/codegen/server_callback.h; sourceTree = ""; }; - C964136FA450E29CD17FC316B6B81186 /* tls13_enc.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = tls13_enc.cc; path = src/ssl/tls13_enc.cc; sourceTree = ""; }; - C96646CB9B40FAC85FA17B6098767FAD /* string.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = string.upb.c; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/string.upb.c"; sourceTree = ""; }; - C972D099DEF49A095E205A442C94CDD2 /* rand.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rand.c; path = src/crypto/fipsmodule/rand/rand.c; sourceTree = ""; }; - C975940CAC996D4AE1A4B2987D6558AD /* FIRSignUpNewUserResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRSignUpNewUserResponse.h; path = FirebaseAuth/Sources/Backend/RPC/FIRSignUpNewUserResponse.h; sourceTree = ""; }; - C97BE2BF7776F29BA3B3C3B70B0CD309 /* dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = dummy.m; path = FirebaseAppCheck/Interop/dummy.m; sourceTree = ""; }; - C98549136003E3F3C8FF4AEC08999405 /* endpoint_components.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = endpoint_components.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/endpoint_components.upbdefs.c"; sourceTree = ""; }; - C9888343E3C5CD7CD0C3AEBA508A84EB /* index.nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = index.nanopb.cc; path = Firestore/Protos/nanopb/google/firestore/admin/index.nanopb.cc; sourceTree = ""; }; - C9B2D37DC583BA2BA268D79A288D4831 /* server_builder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_builder.h; path = include/grpcpp/server_builder.h; sourceTree = ""; }; - C9C29D0F085F85528A81E6A3BBD8D797 /* child_policy_handler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = child_policy_handler.h; path = src/core/ext/filters/client_channel/lb_policy/child_policy_handler.h; sourceTree = ""; }; - C9CC380E5CD27BAA280EC6FFD46E817A /* router.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = router.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/extensions/filters/http/router/v3/router.upbdefs.h"; sourceTree = ""; }; - C9DF9AE9FE3593ADAB199CA826A3FCFF /* grpclb_balancer_addresses.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = grpclb_balancer_addresses.cc; path = src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_balancer_addresses.cc; sourceTree = ""; }; - C9E87053B8E17890D2B05773C206F439 /* FirebaseAppCheckInterop.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = FirebaseAppCheckInterop.modulemap; sourceTree = ""; }; - C9F1394FADFD9EE76F7E79149B926BB1 /* port_platform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = port_platform.h; path = include/grpc/impl/codegen/port_platform.h; sourceTree = ""; }; - CA0795DE4A8B195D345BD674EDD26A0B /* resource.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/annotations/resource.upbdefs.h"; sourceTree = ""; }; - CA0C5ACC7B0E8DD16F85D1D9727C871A /* hexdump.c */ = {isa = PBXFileReference; includeInIndex = 1; name = hexdump.c; path = src/crypto/bio/hexdump.c; sourceTree = ""; }; - CA571D814A2DB230278A56265823500E /* pollset.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pollset.h; path = src/core/lib/iomgr/pollset.h; sourceTree = ""; }; - CA5FFAB144207DF2E74DC466FFCF6FB7 /* config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = config.h; path = src/core/lib/experiments/config.h; sourceTree = ""; }; - CA6CC875C1875CF542F5EC00EC7C49B1 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/fipsmodule/ecdsa/internal.h; sourceTree = ""; }; - CA6DEE1A50B012C48D139A8060A8433F /* bloom_filter.nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = bloom_filter.nanopb.cc; path = Firestore/Protos/nanopb/google/firestore/v1/bloom_filter.nanopb.cc; sourceTree = ""; }; - CA87D9E3C19C35A07A6EAB8A3590CE09 /* span.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = span.h; path = absl/types/internal/span.h; sourceTree = ""; }; - CA9B3C16655D25FD94294CC82D35C6F8 /* fake_security_connector.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = fake_security_connector.cc; path = src/core/lib/security/security_connector/fake/fake_security_connector.cc; sourceTree = ""; }; - CAAB597C2F2442CCB905EA6D18241F9B /* document_overlay_cache.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = document_overlay_cache.cc; path = Firestore/core/src/local/document_overlay_cache.cc; sourceTree = ""; }; - CAB0F8A65AE5476329220A0184EC3515 /* frame_rst_stream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = frame_rst_stream.h; path = src/core/ext/transport/chttp2/transport/frame_rst_stream.h; sourceTree = ""; }; - CAB640F1935634B68B44B68F6BF39779 /* cfb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cfb.c; path = src/crypto/fipsmodule/modes/cfb.c; sourceTree = ""; }; - CACB4D0CEDBFA71645DC849CC383745D /* win_socket.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = win_socket.cc; path = src/core/lib/event_engine/windows/win_socket.cc; sourceTree = ""; }; - CADB821EEF7B32DC74157BCDEF6A9342 /* ssl_session.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ssl_session.h; path = src/core/tsi/ssl/session_cache/ssl_session.h; sourceTree = ""; }; - CAE79D362F367389D47EEB66B9BA5638 /* default_event_engine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = default_event_engine.h; path = src/core/lib/event_engine/default_event_engine.h; sourceTree = ""; }; - CAF8524A716D611F8A5581F107F52FBD /* subchannel_pool_interface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = subchannel_pool_interface.h; path = src/core/ext/filters/client_channel/subchannel_pool_interface.h; sourceTree = ""; }; - CB0C2546AE5093FECEB80DC579DBB87A /* FIRAuthProtoStartMFAPhoneRequestInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthProtoStartMFAPhoneRequestInfo.h; path = FirebaseAuth/Sources/Backend/RPC/Proto/Phone/FIRAuthProtoStartMFAPhoneRequestInfo.h; sourceTree = ""; }; - CB19AE531B13D29E7491B996C5203D33 /* aggregation_result.nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = aggregation_result.nanopb.cc; path = Firestore/Protos/nanopb/google/firestore/v1/aggregation_result.nanopb.cc; sourceTree = ""; }; - CB2A80BD022534D8DFA89BBE3FF013BD /* tls.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tls.h; path = src/core/lib/gpr/tls.h; sourceTree = ""; }; - CB4B811E1AC9778827BD8B2BD4C89243 /* http_server_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = http_server_filter.cc; path = src/core/ext/filters/http/server/http_server_filter.cc; sourceTree = ""; }; - CB4F32F184CF0D27310BF47688F7BACE /* mimics_pcre.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = mimics_pcre.cc; path = third_party/re2/re2/mimics_pcre.cc; sourceTree = ""; }; - CB53C71435615D531DFE8D54283F4242 /* leveldb_mutation_queue.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = leveldb_mutation_queue.cc; path = Firestore/core/src/local/leveldb_mutation_queue.cc; sourceTree = ""; }; - CB541BDCA4A37E80246FEC9AF33FAF09 /* call.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = call.h; path = include/grpcpp/impl/call.h; sourceTree = ""; }; - CB5597A033BDBA48CA4EB0A5C59F88CD /* fastmath.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fastmath.h; path = absl/random/internal/fastmath.h; sourceTree = ""; }; - CB5D0091CA8CB95E45FA1736CBB3231C /* census.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = census.h; path = include/grpc/census.h; sourceTree = ""; }; - CB6B0D80AB9EB7751551756893200FBD /* transport_security_grpc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = transport_security_grpc.h; path = src/core/tsi/transport_security_grpc.h; sourceTree = ""; }; - CB6D2A218F89B0DA61D3FFD1B0104124 /* status.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.upbdefs.h; path = "src/core/ext/upbdefs-generated/xds/annotations/v3/status.upbdefs.h"; sourceTree = ""; }; - CB7301C31E71B9CF229EED538E1EF5BF /* skiplist.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = skiplist.h; path = db/skiplist.h; sourceTree = ""; }; - CB82D039C82F66FEB29B564F988C0B10 /* connectivity_monitor.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = connectivity_monitor.cc; path = Firestore/core/src/remote/connectivity_monitor.cc; sourceTree = ""; }; - CB83D76D56579BBBADD73EC1BEE7CC69 /* evp_asn1.c */ = {isa = PBXFileReference; includeInIndex = 1; name = evp_asn1.c; path = src/crypto/evp/evp_asn1.c; sourceTree = ""; }; - CBA1CC04E7A5513BC868E42A02EA993B /* message_compress.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = message_compress.h; path = src/core/lib/compression/message_compress.h; sourceTree = ""; }; - CBAFF506D7DE87F1BD5EF87F77653E61 /* error_cfstream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = error_cfstream.h; path = src/core/lib/iomgr/error_cfstream.h; sourceTree = ""; }; - CBC31EEA38EDE4AA625C923A3F2EA18D /* wire_reader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = wire_reader.h; path = src/core/ext/transport/binder/wire_format/wire_reader.h; sourceTree = ""; }; - CBF7DB1368D4171C4C5394EEC861BDA4 /* fault.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = fault.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/extensions/filters/common/fault/v3/fault.upbdefs.c"; sourceTree = ""; }; - CC5346AB4C544CA23E5DF78E30C5D807 /* udp_listener_config.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = udp_listener_config.upb.c; path = "src/core/ext/upb-generated/envoy/config/listener/v3/udp_listener_config.upb.c"; sourceTree = ""; }; - CC72A9402C9409D8ECDCCABA84960771 /* service.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = service.upb.h; path = "src/core/ext/upb-generated/envoy/config/trace/v3/service.upb.h"; sourceTree = ""; }; - CC90D2B2F21BA630BFBDC9EF4507A7B5 /* tls_certificate_provider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tls_certificate_provider.h; path = include/grpcpp/security/tls_certificate_provider.h; sourceTree = ""; }; - CC9CD830A4043A1DFE20CA5F84D46357 /* FIRFinalizeMFAEnrollmentResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRFinalizeMFAEnrollmentResponse.m; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/Enroll/FIRFinalizeMFAEnrollmentResponse.m; sourceTree = ""; }; - CCB2958F6F7D8A67E45E8BFB64E8FED9 /* context_params.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = context_params.upbdefs.h; path = "src/core/ext/upbdefs-generated/xds/core/v3/context_params.upbdefs.h"; sourceTree = ""; }; - CCBA53384179788957D9FEDAAD78A656 /* quic_config.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = quic_config.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/listener/v3/quic_config.upbdefs.h"; sourceTree = ""; }; - CCBED0E7B64E2480AF72F56A4A4DA665 /* extension.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = extension.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/extension.upb.h"; sourceTree = ""; }; - CCC58D8BC16C091215A5A467E37379FF /* pollset_set_windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pollset_set_windows.h; path = src/core/lib/iomgr/pollset_set_windows.h; sourceTree = ""; }; - CCDB0181164357A278EFF369D70EA8AA /* number.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = number.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/matcher/v3/number.upbdefs.h"; sourceTree = ""; }; - CCF241C45EC44BAF57F498C01A697084 /* cordz_statistics.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cordz_statistics.h; path = absl/strings/internal/cordz_statistics.h; sourceTree = ""; }; - CD01D16CCC21FEE2500C91275CC8792B /* pem_pkey.c */ = {isa = PBXFileReference; includeInIndex = 1; name = pem_pkey.c; path = src/crypto/pem/pem_pkey.c; sourceTree = ""; }; - CD221A5EBFC7DB448FCE360B91865AA2 /* v3_pci.c */ = {isa = PBXFileReference; includeInIndex = 1; name = v3_pci.c; path = src/crypto/x509v3/v3_pci.c; sourceTree = ""; }; - CD39CECA9330EC8A739E013A746B76F6 /* async_stream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = async_stream.h; path = include/grpcpp/impl/codegen/async_stream.h; sourceTree = ""; }; - CD3FA117F44E65F131E37521CBBC654C /* ev_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = ev_windows.cc; path = src/core/lib/iomgr/ev_windows.cc; sourceTree = ""; }; - CD40F471A44CB4871795E41BED3CDE82 /* time.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = time.h; path = absl/time/time.h; sourceTree = ""; }; - CD41922F5C84A94E1008911B2759F293 /* init_dump.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = init_dump.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/admin/v3/init_dump.upbdefs.c"; sourceTree = ""; }; - CD48AC94385B20DFD0E96B95B8D64973 /* channelz_registry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channelz_registry.h; path = src/core/lib/channel/channelz_registry.h; sourceTree = ""; }; - CD56792D14D5AC2584C0293A29A2B898 /* upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = upb.h; path = third_party/upb/upb/internal/upb.h; sourceTree = ""; }; - CD64E9DF8BADDE0676DB065A2EC6360B /* log.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = log.h; path = include/grpc/support/log.h; sourceTree = ""; }; - CD718B396CE724621E23A00C19222697 /* FIRAuthProtoFinalizeMFATOTPSignInRequestInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthProtoFinalizeMFATOTPSignInRequestInfo.m; path = FirebaseAuth/Sources/Backend/RPC/Proto/TOTP/FIRAuthProtoFinalizeMFATOTPSignInRequestInfo.m; sourceTree = ""; }; - CD7EBF5FB7364063B984A7B4471F6301 /* metadata.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = metadata.upb.h; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/metadata.upb.h"; sourceTree = ""; }; - CD88BEFD5553ACC70C70722D7BF14851 /* resource.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource.upbdefs.h; path = "src/core/ext/upbdefs-generated/xds/core/v3/resource.upbdefs.h"; sourceTree = ""; }; - CD8AC6E77275190A6EAAD6352C9DEF39 /* def.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = def.h; path = third_party/upb/upb/def.h; sourceTree = ""; }; - CD9C761946A5C33D1D523AF0252C0F26 /* channel_init.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = channel_init.cc; path = src/core/lib/surface/channel_init.cc; sourceTree = ""; }; - CDB237D93D58DA037C3FA09CC826A6D7 /* server_builder.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = server_builder.cc; path = src/cpp/server/server_builder.cc; sourceTree = ""; }; - CDB52B5501BB8A154719A60F17DAB6C8 /* file_watcher_certificate_provider_factory.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = file_watcher_certificate_provider_factory.cc; path = src/core/ext/xds/file_watcher_certificate_provider_factory.cc; sourceTree = ""; }; - CDB9FAA98B5A5C2F27A7A31F9B36CB2E /* FIRAuthNotificationManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthNotificationManager.m; path = FirebaseAuth/Sources/SystemService/FIRAuthNotificationManager.m; sourceTree = ""; }; - CDBC4E3B11C8751DA88B42305922FA7E /* pkcs8_x509.c */ = {isa = PBXFileReference; includeInIndex = 1; name = pkcs8_x509.c; path = src/crypto/pkcs8/pkcs8_x509.c; sourceTree = ""; }; - CDBE03FFDC9817DB13EB9E39AF096473 /* sleep.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = sleep.cc; path = src/core/lib/promise/sleep.cc; sourceTree = ""; }; - CDC391759035FC76DDF36BFA4D915896 /* circuit_breaker.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = circuit_breaker.upb.h; path = "src/core/ext/upb-generated/envoy/config/cluster/v3/circuit_breaker.upb.h"; sourceTree = ""; }; - CDD188B4285D6A22E5D5B80A604D57A1 /* transaction.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = transaction.h; path = src/core/ext/transport/binder/wire_format/transaction.h; sourceTree = ""; }; - CDDD2D73791FB482AB9782B867AC2F70 /* ssl_security_connector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ssl_security_connector.h; path = src/core/lib/security/security_connector/ssl/ssl_security_connector.h; sourceTree = ""; }; - CE02D107B5C581A98AB1F9B66822C0B0 /* time_precise.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = time_precise.h; path = src/core/lib/gpr/time_precise.h; sourceTree = ""; }; - CE048244AF35E3A3497EEEA8A00C9E59 /* FIROAuthCredential.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIROAuthCredential.m; path = FirebaseAuth/Sources/AuthProvider/OAuth/FIROAuthCredential.m; sourceTree = ""; }; - CE191F7288D78851159F6BF80E9E9437 /* interceptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = interceptor.h; path = include/grpcpp/support/interceptor.h; sourceTree = ""; }; - CE27F3353CCDE20EEA1967F59A73B2AF /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/fipsmodule/sha/internal.h; sourceTree = ""; }; - CE305A8B0116439B17B573A38E0D4A8A /* FIRFinalizeMFAEnrollmentRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRFinalizeMFAEnrollmentRequest.h; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/Enroll/FIRFinalizeMFAEnrollmentRequest.h; sourceTree = ""; }; - CE67CB4080A540F6DCBDAFA4920D7D89 /* api_listener.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = api_listener.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/listener/v3/api_listener.upbdefs.h"; sourceTree = ""; }; - CE8A826F9315D91424D47C1D36A58B48 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/poly1305/internal.h; sourceTree = ""; }; - CE8D67FB0C068057B70161D489B5E496 /* health_check.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = health_check.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/health_check.upb.h"; sourceTree = ""; }; - CE90D8B6D6A4CC76FC090F64F7E6723E /* dsa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dsa.h; path = src/include/openssl/dsa.h; sourceTree = ""; }; - CE98F97EDE314F0ECE7A6CB802EA2D71 /* clusters.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = clusters.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/admin/v3/clusters.upbdefs.h"; sourceTree = ""; }; - CEA0B12F3C2E518D0293CDC130498C4D /* resource_quota.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource_quota.h; path = include/grpcpp/resource_quota.h; sourceTree = ""; }; - CEA3302FA04EED422385A71409FCB713 /* FIRAppInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAppInternal.h; path = FirebaseCore/Extension/FIRAppInternal.h; sourceTree = ""; }; - CEA4E8111655C0795A3AB6C9051E1847 /* FIRAuthStoredUserManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthStoredUserManager.h; path = FirebaseAuth/Sources/SystemService/FIRAuthStoredUserManager.h; sourceTree = ""; }; - CEA54DCA64DA56E09E3CAB28E6E91EAC /* FIRAuthBackend.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthBackend.m; path = FirebaseAuth/Sources/Backend/FIRAuthBackend.m; sourceTree = ""; }; - CEBEA58770D9B2070A1DD9E33285A678 /* cache.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = cache.cc; path = util/cache.cc; sourceTree = ""; }; - CEC19DD7ECBA45F9AFB4DABF183FF502 /* walker-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "walker-inl.h"; path = "third_party/re2/re2/walker-inl.h"; sourceTree = ""; }; - CEC41E1012CBECD8C9C57AC7C72A3A09 /* pollset_set.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = pollset_set.cc; path = src/core/lib/iomgr/pollset_set.cc; sourceTree = ""; }; - CEECDDEE06D52B6CF871DDC2EFE96A13 /* clock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = clock.h; path = absl/time/clock.h; sourceTree = ""; }; - CF1D048681D6B7F138DEA4D2D58696BB /* FIRComponentType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentType.h; path = FirebaseCore/Extension/FIRComponentType.h; sourceTree = ""; }; - CF28EDD4A8C16D5FA2A5334AFBC158D3 /* grpc_server_authz_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_server_authz_filter.h; path = src/core/lib/security/authorization/grpc_server_authz_filter.h; sourceTree = ""; }; - CF293A66E90E961F030B1B891B7AF548 /* cpu-aarch64-linux.c */ = {isa = PBXFileReference; includeInIndex = 1; name = "cpu-aarch64-linux.c"; path = "src/crypto/cpu-aarch64-linux.c"; sourceTree = ""; }; - CF4DCAFFFD0ACDD91AD15A08DA779387 /* FIRGoogleAuthProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRGoogleAuthProvider.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRGoogleAuthProvider.h; sourceTree = ""; }; - CF6CA45E7D0E6AB974B869D561CCA495 /* FIRHeartbeatLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRHeartbeatLogger.h; path = FirebaseCore/Extension/FIRHeartbeatLogger.h; sourceTree = ""; }; - CF7B83713A6C4159FCA5F77BE9DB26F8 /* document_snapshot.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = document_snapshot.cc; path = Firestore/core/src/api/document_snapshot.cc; sourceTree = ""; }; - CF853DA8F3F25FEA0C49B382492050AA /* HeartbeatsBundle.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HeartbeatsBundle.swift; path = FirebaseCore/Internal/Sources/HeartbeatLogging/HeartbeatsBundle.swift; sourceTree = ""; }; - CF8D0C569836EEB33BF1DE9A53489B2B /* security_connector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = security_connector.h; path = src/core/lib/security/security_connector/security_connector.h; sourceTree = ""; }; - CF96B649FDA7326D3EE30CC6AFE6D4C7 /* service.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = service.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/trace/v3/service.upbdefs.c"; sourceTree = ""; }; - CF9C125AF3CBC4F8F791D25DABDBD207 /* rbac_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rbac_filter.h; path = src/core/ext/filters/rbac/rbac_filter.h; sourceTree = ""; }; - CFA2DD62EB2EABA2EAA56173C1C2531E /* v3_pmaps.c */ = {isa = PBXFileReference; includeInIndex = 1; name = v3_pmaps.c; path = src/crypto/x509v3/v3_pmaps.c; sourceTree = ""; }; - CFBE020DB1A63E9237BB951E0C08C89C /* struct.nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = struct.nanopb.cc; path = Firestore/Protos/nanopb/google/protobuf/struct.nanopb.cc; sourceTree = ""; }; - D005F18DB7324E48E8BF8E13BF3F5D30 /* pid_controller.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = pid_controller.cc; path = src/core/lib/transport/pid_controller.cc; sourceTree = ""; }; - D00AB63BCC5186AF5981A764662C132B /* GULNetworkLoggerProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetworkLoggerProtocol.h; path = GoogleUtilities/Network/Public/GoogleUtilities/GULNetworkLoggerProtocol.h; sourceTree = ""; }; - D01EF5D6975F05F6DCCE20E325E16661 /* traits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = traits.h; path = absl/random/internal/traits.h; sourceTree = ""; }; - D0474E436BB01F4262DCC112C9A939B1 /* FIRStartMFAEnrollmentRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRStartMFAEnrollmentRequest.m; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/Enroll/FIRStartMFAEnrollmentRequest.m; sourceTree = ""; }; - D080E647D2209B72DE97459F80395894 /* status.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = status.cc; path = src/cpp/util/status.cc; sourceTree = ""; }; - D0892E758BF3D06403494F7B9B718A96 /* binder_security_policy.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = binder_security_policy.cc; path = src/core/ext/transport/binder/security_policy/binder_security_policy.cc; sourceTree = ""; }; - D097F292BB0365B72A3F3B17A0F346F2 /* external_account_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = external_account_credentials.h; path = src/core/lib/security/credentials/external/external_account_credentials.h; sourceTree = ""; }; - D099C72096815AFA6C4589ABEB1DD498 /* stacktrace.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = stacktrace.cc; path = absl/debugging/stacktrace.cc; sourceTree = ""; }; - D09A90F68983DFAB4F7132A6AD9C9CEE /* xds_server_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = xds_server_credentials.cc; path = src/cpp/server/xds_server_credentials.cc; sourceTree = ""; }; - D0B126EA435E296288D24FAA98699F54 /* memory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = memory.h; path = absl/memory/memory.h; sourceTree = ""; }; - D0B18B50725808F666D9681BE04B83EB /* unicode_casefold.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = unicode_casefold.cc; path = third_party/re2/re2/unicode_casefold.cc; sourceTree = ""; }; - D0D12080D00C45CAB5B22C55FC74A193 /* error.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = error.h; path = src/core/lib/iomgr/error.h; sourceTree = ""; }; - D0D4438B8D4B117D3A23F1DEF9F6F035 /* FIRAuthDispatcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthDispatcher.m; path = FirebaseAuth/Sources/Auth/FIRAuthDispatcher.m; sourceTree = ""; }; - D0F04CECD994320E3A01DFA9FC57870F /* transport_security.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = transport_security.cc; path = src/core/tsi/transport_security.cc; sourceTree = ""; }; - D0F1323D76B57E1FC8B9EB16C6FF9BA4 /* mul.c */ = {isa = PBXFileReference; includeInIndex = 1; name = mul.c; path = src/crypto/fipsmodule/bn/mul.c; sourceTree = ""; }; - D0F202E1075EA850F9C2E73F52B4FF5A /* pbkdf.c */ = {isa = PBXFileReference; includeInIndex = 1; name = pbkdf.c; path = src/crypto/evp/pbkdf.c; sourceTree = ""; }; - D0F264205FC248E97089541A953C9FCE /* cluster.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cluster.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/cluster/v3/cluster.upbdefs.h"; sourceTree = ""; }; - D0F754575AF15CF21659E990E5AC6ED2 /* composite_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = composite_credentials.h; path = src/core/lib/security/credentials/composite/composite_credentials.h; sourceTree = ""; }; - D0F8D4D499C602B89DFB3350574E3327 /* posix_logger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = posix_logger.h; path = util/posix_logger.h; sourceTree = ""; }; - D0FD096A4FEB1CF15B4404E807642F56 /* firestore_index_value_writer.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = firestore_index_value_writer.cc; path = Firestore/core/src/index/firestore_index_value_writer.cc; sourceTree = ""; }; - D103D4A583D94F3FBA8AC69437E520EB /* query_listener_registration.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = query_listener_registration.cc; path = Firestore/core/src/api/query_listener_registration.cc; sourceTree = ""; }; - D113D84DF0155F3528589F888FC9E10B /* wire_writer.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = wire_writer.cc; path = src/core/ext/transport/binder/wire_format/wire_writer.cc; sourceTree = ""; }; - D11AFC4F7281A4FB709BD97F8A6D5158 /* bootstrap.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bootstrap.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/bootstrap/v3/bootstrap.upbdefs.h"; sourceTree = ""; }; - D11EA877B7F2112C14CF9B28899F60D0 /* bio_ssl.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = bio_ssl.cc; path = src/ssl/bio_ssl.cc; sourceTree = ""; }; - D124BAB3F5939B75FF57C3B11057CD5B /* latlng.nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = latlng.nanopb.cc; path = Firestore/Protos/nanopb/google/type/latlng.nanopb.cc; sourceTree = ""; }; - D132D0176B8F6D4868648359B84E5179 /* dynamic_ot.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dynamic_ot.upb.h; path = "src/core/ext/upb-generated/envoy/config/trace/v3/dynamic_ot.upb.h"; sourceTree = ""; }; - D147789D5E91AB13312BF6DE031D3E06 /* matchers.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = matchers.cc; path = src/core/lib/security/authorization/matchers.cc; sourceTree = ""; }; - D14C93F06504E9FCD5A66106DCE2AE21 /* closure.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = closure.h; path = src/core/lib/iomgr/closure.h; sourceTree = ""; }; - D167F2B07F65CE6EB39B8FE5E37DE0C0 /* FIRFinalizeMFAEnrollmentRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRFinalizeMFAEnrollmentRequest.m; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/Enroll/FIRFinalizeMFAEnrollmentRequest.m; sourceTree = ""; }; - D179F32FF7F26EAEFFD2E911CD0D333C /* socket_utils_common_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = socket_utils_common_posix.cc; path = src/core/lib/iomgr/socket_utils_common_posix.cc; sourceTree = ""; }; - D1817AA542CBBC67BCE8442F9E5419AA /* FIRAuthRequestConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthRequestConfiguration.m; path = FirebaseAuth/Sources/Backend/FIRAuthRequestConfiguration.m; sourceTree = ""; }; - D1A24D009C195F553432878CBE64910F /* cert.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cert.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/cert.upbdefs.c"; sourceTree = ""; }; - D1AADD10EC8273DA4107128FC239E074 /* FIRDependency.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDependency.h; path = FirebaseCore/Extension/FIRDependency.h; sourceTree = ""; }; - D1B540F55F7DB2B9D510A0BB2A9F8E09 /* thd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = thd.h; path = src/core/lib/gprpp/thd.h; sourceTree = ""; }; - D1BD1ED880C77C1C655E02C22720BDC2 /* ratelimit_strategy.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = ratelimit_strategy.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/type/v3/ratelimit_strategy.upbdefs.c"; sourceTree = ""; }; - D1EB4D937CC7BD7F39667353D663C319 /* opentelemetry.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = opentelemetry.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/trace/v3/opentelemetry.upbdefs.h"; sourceTree = ""; }; - D233121D59236ACA301AB2AB209F9418 /* circuit_breaker.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = circuit_breaker.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/cluster/v3/circuit_breaker.upbdefs.c"; sourceTree = ""; }; - D2346A851A8D274E0726A3ACED92086D /* number.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = number.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/matcher/v3/number.upbdefs.h"; sourceTree = ""; }; - D241217DEE1757179523A5124F7785C3 /* sync.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sync.h; path = include/grpc/support/sync.h; sourceTree = ""; }; - D249E20BCC56D29F5AE8F55086892344 /* default_event_engine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = default_event_engine.h; path = src/core/lib/event_engine/default_event_engine.h; sourceTree = ""; }; - D250593A5ABB536D0C9ECAFA806BFD6F /* grpc_tls_credentials_options.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = grpc_tls_credentials_options.cc; path = src/core/lib/security/credentials/tls/grpc_tls_credentials_options.cc; sourceTree = ""; }; - D25E974A39FA21BF7767713F01E43EB0 /* retry_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = retry_filter.h; path = src/core/ext/filters/client_channel/retry_filter.h; sourceTree = ""; }; - D273FB4479BDEA012EA9F2E7BD156A02 /* grpc_util.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = grpc_util.cc; path = Firestore/core/src/remote/grpc_util.cc; sourceTree = ""; }; - D2A15356298BCB0D3A917E36B5EA7370 /* seed_gen_exception.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = seed_gen_exception.h; path = absl/random/seed_gen_exception.h; sourceTree = ""; }; - D2A73AEEDBF1782817A5B4787517F511 /* certs.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = certs.upb.h; path = "src/core/ext/upb-generated/envoy/admin/v3/certs.upb.h"; sourceTree = ""; }; - D2B77739ABE06062E09E9D909642D93B /* opensslv.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = opensslv.h; path = src/include/openssl/opensslv.h; sourceTree = ""; }; - D2C3FA94BA84138CE947ED5099F74E96 /* FIRAuthSettings.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthSettings.m; path = FirebaseAuth/Sources/Auth/FIRAuthSettings.m; sourceTree = ""; }; - D2D7040DC5A7FA0BEFF8B141CF2C6E70 /* alts_tsi_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_tsi_utils.h; path = src/core/tsi/alts/handshaker/alts_tsi_utils.h; sourceTree = ""; }; - D2E6D6AB981FCC021D7368A58683B79E /* strerror.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = strerror.h; path = absl/base/internal/strerror.h; sourceTree = ""; }; - D3033DEC2E0AD711A8E8838BD221B258 /* rc4.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rc4.c; path = src/crypto/rc4/rc4.c; sourceTree = ""; }; - D3062085B1798FAC16AF7C8453528058 /* d1_lib.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = d1_lib.cc; path = src/ssl/d1_lib.cc; sourceTree = ""; }; - D30F38FB030A12D624E5641821580846 /* prog.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = prog.cc; path = third_party/re2/re2/prog.cc; sourceTree = ""; }; - D32755048BC1DC73A90FB0E9EBCF54B8 /* overlay.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = overlay.cc; path = Firestore/core/src/model/overlay.cc; sourceTree = ""; }; - D32DD869A495C70AC5DD97A3421EF51E /* compression_internal.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = compression_internal.cc; path = src/core/lib/compression/compression_internal.cc; sourceTree = ""; }; - D3404BE51F98EEF2353171792296D24D /* cpp_impl_of.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cpp_impl_of.h; path = src/core/lib/gprpp/cpp_impl_of.h; sourceTree = ""; }; - D3425A81FB60223CECC996993F26529C /* blocking_counter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = blocking_counter.h; path = absl/synchronization/blocking_counter.h; sourceTree = ""; }; - D3516839E43F02BA8A6034CB227E0D38 /* FIRAuthGlobalWorkQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthGlobalWorkQueue.h; path = FirebaseAuth/Sources/Auth/FIRAuthGlobalWorkQueue.h; sourceTree = ""; }; - D352468E805194717B8576CFC6103D30 /* handshaker_registry.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = handshaker_registry.cc; path = src/core/lib/transport/handshaker_registry.cc; sourceTree = ""; }; - D36008E20FD2EAB10F54E1B33F078563 /* http_tracer.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_tracer.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/trace/v3/http_tracer.upbdefs.h"; sourceTree = ""; }; - D3617CAB29D76AC20D363E3887C98908 /* frame_settings.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = frame_settings.h; path = src/core/ext/transport/chttp2/transport/frame_settings.h; sourceTree = ""; }; - D36CE396F016FDF4D6C77741982FF14B /* dynamic_filters.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dynamic_filters.h; path = src/core/ext/filters/client_channel/dynamic_filters.h; sourceTree = ""; }; - D375A4AA5D9E41785EA76FDD2736BBE0 /* cordz_functions.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = cordz_functions.cc; path = absl/strings/internal/cordz_functions.cc; sourceTree = ""; }; - D3B31847D58BA8571768E446EC7B50C1 /* channel_args_preconditioning.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_args_preconditioning.h; path = src/core/lib/channel/channel_args_preconditioning.h; sourceTree = ""; }; - D3B5FA33766A60B4F23F9FCB883A5F8E /* security_context.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = security_context.cc; path = src/core/lib/security/context/security_context.cc; sourceTree = ""; }; - D3BF5EB52E0DFC38A1DBF0C7336F7719 /* arm_arch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = arm_arch.h; path = src/include/openssl/arm_arch.h; sourceTree = ""; }; - D3E5A5D778AFD7EB5B9A25F900ED7FD6 /* set_mutation.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = set_mutation.cc; path = Firestore/core/src/model/set_mutation.cc; sourceTree = ""; }; - D3E7BE352B35AC6630DEA115CFA2D853 /* activity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = activity.h; path = src/core/lib/promise/activity.h; sourceTree = ""; }; - D3F17948EAC57FFC40F95EA43A8B86EE /* mutex_stats.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mutex_stats.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/admin/v3/mutex_stats.upbdefs.h"; sourceTree = ""; }; - D3F661E45798B078D4C846A83576A9C9 /* experiments.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = experiments.h; path = src/core/lib/experiments/experiments.h; sourceTree = ""; }; - D3FF5E74E6E0C03FA96EE34164092E74 /* router.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = router.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/extensions/filters/http/router/v3/router.upbdefs.c"; sourceTree = ""; }; - D41F648301FF4FFF2569B300D443EC70 /* oob_backend_metric.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = oob_backend_metric.h; path = src/core/ext/filters/client_channel/lb_policy/oob_backend_metric.h; sourceTree = ""; }; - D4353FBFB268383CD6FB95EA116B08C2 /* sensitive.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sensitive.upbdefs.h; path = "src/core/ext/upbdefs-generated/xds/annotations/v3/sensitive.upbdefs.h"; sourceTree = ""; }; - D4422107FC580D2844C9BB18D9F6C52C /* hkdf.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hkdf.h; path = src/include/openssl/hkdf.h; sourceTree = ""; }; - D44A24285C81EE46EE1650482DF89584 /* http_proxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_proxy.h; path = src/core/ext/filters/client_channel/http_proxy.h; sourceTree = ""; }; - D45518A97B1E1C3184767BD8E6A8E336 /* GULKeychainUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULKeychainUtils.m; path = GoogleUtilities/Environment/SecureStorage/GULKeychainUtils.m; sourceTree = ""; }; - D45D22553C3851EB16BA74482301FA4C /* route.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = route.upb.h; path = "src/core/ext/upb-generated/envoy/config/route/v3/route.upb.h"; sourceTree = ""; }; - D45E4FB04A2F5661F170F437762F68CB /* priority.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = priority.cc; path = src/core/ext/filters/client_channel/lb_policy/priority/priority.cc; sourceTree = ""; }; - D46123D9E6A3DEE6CB3E306CB79D917E /* GULAppDelegateSwizzler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULAppDelegateSwizzler.m; path = GoogleUtilities/AppDelegateSwizzler/GULAppDelegateSwizzler.m; sourceTree = ""; }; - D48DF17F9EAF85A53E7A9EF267D8E354 /* alts_zero_copy_grpc_protector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_zero_copy_grpc_protector.h; path = src/core/tsi/alts/zero_copy_frame_protector/alts_zero_copy_grpc_protector.h; sourceTree = ""; }; - D4BD039695D91B8F4568550A944C135C /* wrappers.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = wrappers.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/protobuf/wrappers.upbdefs.h"; sourceTree = ""; }; - D4BD0B25405CDF3E185B7EB2C11AA568 /* time_precise.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = time_precise.h; path = src/core/lib/gpr/time_precise.h; sourceTree = ""; }; - D4C41E2B96EBD4941576F71EBE9D96CA /* pcy_data.c */ = {isa = PBXFileReference; includeInIndex = 1; name = pcy_data.c; path = src/crypto/x509v3/pcy_data.c; sourceTree = ""; }; - D4C6F5BB8C69EB90D17A0DF12FACED2E /* FIRGoogleAuthCredential.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRGoogleAuthCredential.h; path = FirebaseAuth/Sources/AuthProvider/Google/FIRGoogleAuthCredential.h; sourceTree = ""; }; - D4D0B6AEC023331FAC1735EE543DF7AE /* listeners.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = listeners.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/admin/v3/listeners.upbdefs.h"; sourceTree = ""; }; - D4EC4EF36452A330D6B3417CB84B2778 /* msg.c */ = {isa = PBXFileReference; includeInIndex = 1; name = msg.c; path = third_party/upb/upb/msg.c; sourceTree = ""; }; - D4F654FCE15099B757465EE57D6A5D89 /* low_level_scheduling.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = low_level_scheduling.h; path = absl/base/internal/low_level_scheduling.h; sourceTree = ""; }; - D4F8183B4BA765D7E7FA6FAFDDC8A8F8 /* attributes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = attributes.h; path = absl/base/attributes.h; sourceTree = ""; }; - D502F95AFC03031B8BD32685C852BA96 /* oct.c */ = {isa = PBXFileReference; includeInIndex = 1; name = oct.c; path = src/crypto/fipsmodule/ec/oct.c; sourceTree = ""; }; - D5101239B8BEA293E6A10ADA36E3C9C1 /* statusor_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = statusor_internal.h; path = absl/status/internal/statusor_internal.h; sourceTree = ""; }; - D51AD44419F4EF94CEED3BB200631976 /* grpc_context.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = grpc_context.cc; path = src/core/ext/filters/census/grpc_context.cc; sourceTree = ""; }; - D529347EB9D0ABF6B3B32ACE949FF9AA /* config_source.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = config_source.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/config_source.upbdefs.h"; sourceTree = ""; }; - D52ADBAC85E227A9DECCEC6F34776599 /* socket_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = socket_utils.h; path = src/core/lib/iomgr/socket_utils.h; sourceTree = ""; }; - D542D463504E6A57C68E605192593783 /* timer.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = timer.cc; path = src/core/lib/iomgr/timer.cc; sourceTree = ""; }; - D54E9FFC1AA99B02DACABB7501948E36 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/fipsmodule/aes/internal.h; sourceTree = ""; }; - D555AAB15669F020F25A660632399869 /* matcher.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = matcher.upbdefs.c; path = "src/core/ext/upbdefs-generated/xds/type/matcher/v3/matcher.upbdefs.c"; sourceTree = ""; }; - D572EE6500E19D585DA2FA27E4DFF3E1 /* oob_backend_metric.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = oob_backend_metric.cc; path = src/core/ext/filters/client_channel/lb_policy/oob_backend_metric.cc; sourceTree = ""; }; - D58250B67622E0885735B8E68B74D8F6 /* time_util.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = time_util.h; path = src/core/lib/gprpp/time_util.h; sourceTree = ""; }; - D588211B948C15203FDABDD0CF5A5FF5 /* stacktrace_generic-inl.inc */ = {isa = PBXFileReference; includeInIndex = 1; name = "stacktrace_generic-inl.inc"; path = "absl/debugging/internal/stacktrace_generic-inl.inc"; sourceTree = ""; }; - D58BC2035B9E4E9E6811E3A54550BF86 /* FIRLoadBundleTask.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRLoadBundleTask.mm; path = Firestore/Source/API/FIRLoadBundleTask.mm; sourceTree = ""; }; - D593398B37C864CE9377508675202E43 /* v3_akey.c */ = {isa = PBXFileReference; includeInIndex = 1; name = v3_akey.c; path = src/crypto/x509v3/v3_akey.c; sourceTree = ""; }; - D596344E8F39FAF00FD3C8A5D2E4956D /* fault.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fault.upb.h; path = "src/core/ext/upb-generated/envoy/extensions/filters/http/fault/v3/fault.upb.h"; sourceTree = ""; }; - D5B0DC95FE239AEB96C9D6FA5D39D508 /* thread_none.c */ = {isa = PBXFileReference; includeInIndex = 1; name = thread_none.c; path = src/crypto/thread_none.c; sourceTree = ""; }; - D5C49334DD556F5780675941F05A851D /* mutation.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = mutation.cc; path = Firestore/core/src/model/mutation.cc; sourceTree = ""; }; - D5F6CA74E75A4988C4A995833C2A659E /* ssl_x509.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = ssl_x509.cc; path = src/ssl/ssl_x509.cc; sourceTree = ""; }; - D601ACB9600068C505CF39F3E7E11526 /* v3_int.c */ = {isa = PBXFileReference; includeInIndex = 1; name = v3_int.c; path = src/crypto/x509v3/v3_int.c; sourceTree = ""; }; - D604AAA6012030F1A3B507CE757376AA /* collection_entry.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = collection_entry.upb.h; path = "src/core/ext/upb-generated/xds/core/v3/collection_entry.upb.h"; sourceTree = ""; }; - D61B86DF04F969B45F542B8C7C6B31DC /* outlier_detection.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = outlier_detection.cc; path = src/core/ext/filters/client_channel/lb_policy/outlier_detection/outlier_detection.cc; sourceTree = ""; }; - D624E16D6ADD7DC3DE603ECB83906BFD /* opencensus.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = opencensus.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/trace/v3/opencensus.upbdefs.h"; sourceTree = ""; }; - D6306F0EBEF45DBF030B935D2B692B83 /* env_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = env_windows.cc; path = src/core/lib/gprpp/env_windows.cc; sourceTree = ""; }; - D637067B913200CB7802A5C3D7395CBB /* function_ref.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = function_ref.h; path = absl/functional/function_ref.h; sourceTree = ""; }; - D6376C70990502E9AB8F64641BF2D03F /* hash_policy.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hash_policy.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/v3/hash_policy.upbdefs.h"; sourceTree = ""; }; - D644599840C60630A4924E270C8E6E8F /* completion_queue.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = completion_queue.cc; path = src/core/lib/surface/completion_queue.cc; sourceTree = ""; }; - D64DE9030857440E3082F1237AFACDED /* local_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = local_credentials.cc; path = src/core/lib/security/credentials/local/local_credentials.cc; sourceTree = ""; }; - D64F92344063F07651988AD6B2638334 /* leveldb_lru_reference_delegate.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = leveldb_lru_reference_delegate.cc; path = Firestore/core/src/local/leveldb_lru_reference_delegate.cc; sourceTree = ""; }; - D654589D2B7BA6F642EFE99831408557 /* block.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = block.h; path = table/block.h; sourceTree = ""; }; - D66F6BE1403961D4B1C8C82EBC3380D4 /* alts_shared_resource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_shared_resource.h; path = src/core/tsi/alts/handshaker/alts_shared_resource.h; sourceTree = ""; }; - D67F03FBA79E60E29EFEF85862D0D94D /* version_set.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = version_set.h; path = db/version_set.h; sourceTree = ""; }; - D68C067A853F7AD5970D4C7E16DD4CAB /* stub_options.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stub_options.h; path = include/grpcpp/impl/codegen/stub_options.h; sourceTree = ""; }; - D695E33920FCE21FF7BE36ACC41D3B6A /* rpc_service_method.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rpc_service_method.h; path = include/grpcpp/impl/codegen/rpc_service_method.h; sourceTree = ""; }; - D69EEF42A61B477CED29AA2AE5C2809B /* bn_asn1.c */ = {isa = PBXFileReference; includeInIndex = 1; name = bn_asn1.c; path = src/crypto/bn_extra/bn_asn1.c; sourceTree = ""; }; - D69F161511A9048C68CDD7EE2E0448FF /* channel_create_impl.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = channel_create_impl.cc; path = src/core/ext/transport/binder/client/channel_create_impl.cc; sourceTree = ""; }; - D6CED0D63EC4CC614FEE9A3E71AA696A /* block_builder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = block_builder.h; path = table/block_builder.h; sourceTree = ""; }; - D701E6D06E679EFC4291D78D67B240F2 /* cord_rep_btree_reader.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = cord_rep_btree_reader.cc; path = absl/strings/internal/cord_rep_btree_reader.cc; sourceTree = ""; }; - D70F9BCB20D2D297FE29FBD3FA60BDB2 /* interceptor_common.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = interceptor_common.h; path = include/grpcpp/impl/codegen/interceptor_common.h; sourceTree = ""; }; - D716CAAD51AAAC24816F01ECD8E4895E /* completion_queue_factory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = completion_queue_factory.h; path = src/core/lib/surface/completion_queue_factory.h; sourceTree = ""; }; - D7209BB21ED1C8B2A042650031AB3E1C /* host_port.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = host_port.cc; path = src/core/lib/gprpp/host_port.cc; sourceTree = ""; }; - D724F02EF09EE34EC463D3C411E9EA42 /* udp_socket_config.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = udp_socket_config.upb.c; path = "src/core/ext/upb-generated/envoy/config/core/v3/udp_socket_config.upb.c"; sourceTree = ""; }; - D7263343A2CE8318439FA335E048B22B /* gRPC-C++-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "gRPC-C++-dummy.m"; sourceTree = ""; }; - D7375A3ADA6615435BD64AB6CA000629 /* FirebaseCore-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FirebaseCore-umbrella.h"; sourceTree = ""; }; - D73DAD8FF8C710E630817A5235D07290 /* fork_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = fork_windows.cc; path = src/core/lib/iomgr/fork_windows.cc; sourceTree = ""; }; - D74BED51A47FDC2F8564D6C2B1022C74 /* status.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.h; path = absl/status/status.h; sourceTree = ""; }; - D75CBA9AA71EC8444D8E502366C231E3 /* parsed_metadata.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = parsed_metadata.h; path = src/core/lib/transport/parsed_metadata.h; sourceTree = ""; }; - D75F6B2620E0448875334D06E8AAC929 /* parser.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = parser.cc; path = absl/strings/internal/str_format/parser.cc; sourceTree = ""; }; - D76EA98DFDC52709CE701A382BBE4154 /* rsa_print.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rsa_print.c; path = src/crypto/rsa_extra/rsa_print.c; sourceTree = ""; }; - D7740C278A1FE9F516CEBD1B6FD3CEF0 /* parsed_metadata.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = parsed_metadata.cc; path = src/core/lib/transport/parsed_metadata.cc; sourceTree = ""; }; - D77CF0DB45417CDF9C6C10F242746ACC /* thd_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = thd_windows.cc; path = src/core/lib/gprpp/thd_windows.cc; sourceTree = ""; }; - D78A423A547DD66CD091A24BF7AFEFE1 /* testutil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = testutil.h; path = util/testutil.h; sourceTree = ""; }; - D78CF9DC1ED1BACE399F3681EDFB9796 /* fd.c */ = {isa = PBXFileReference; includeInIndex = 1; name = fd.c; path = src/crypto/bio/fd.c; sourceTree = ""; }; - D79BBF8EA71DB81E2ECBC5F71B6B667F /* WeakContainer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = WeakContainer.swift; path = FirebaseCore/Internal/Sources/HeartbeatLogging/WeakContainer.swift; sourceTree = ""; }; - D79CE00C5F399529BFB44E3F7DC24340 /* cord.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = cord.cc; path = absl/strings/cord.cc; sourceTree = ""; }; - D7C0DA1668222216C7A0781EC177BEBE /* sync_abseil.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = sync_abseil.cc; path = src/core/lib/gpr/sync_abseil.cc; sourceTree = ""; }; - D7C12B9B63B58E03CDCF04954F3C9F42 /* health_check.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = health_check.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/health_check.upb.h"; sourceTree = ""; }; - D7D723544AABBBF00C348CA1D81E4750 /* json_decode.c */ = {isa = PBXFileReference; includeInIndex = 1; name = json_decode.c; path = third_party/upb/upb/json_decode.c; sourceTree = ""; }; - D7D82F0D1A66634D69610ABE7DE857B9 /* extensions.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = extensions.cc; path = src/ssl/extensions.cc; sourceTree = ""; }; - D7E94C01FAE3D4974B9AC8A12586A0C5 /* FIRPhoneAuthProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRPhoneAuthProvider.m; path = FirebaseAuth/Sources/AuthProvider/Phone/FIRPhoneAuthProvider.m; sourceTree = ""; }; - D7F6DEA3521EBB7A068040093C5F29AF /* async_stream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = async_stream.h; path = include/grpcpp/support/async_stream.h; sourceTree = ""; }; - D804FD736B1C64446935A1966AEC30DE /* reflection.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = reflection.hpp; path = third_party/upb/upb/reflection.hpp; sourceTree = ""; }; - D805DA07D57F7C56E150A22AE107A97A /* grpcpp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpcpp.h; path = include/grpcpp/grpcpp.h; sourceTree = ""; }; - D808E9FAF553F345463B1C910356A8BE /* opencensus.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = opencensus.upb.c; path = "src/core/ext/upb-generated/envoy/config/trace/v3/opencensus.upb.c"; sourceTree = ""; }; - D813F11BF7510E7FD0EB0F97697E2106 /* string_constant.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = string_constant.h; path = absl/strings/internal/string_constant.h; sourceTree = ""; }; - D81F43302CC5D354B4770DFE0448EB60 /* macros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = macros.h; path = absl/base/macros.h; sourceTree = ""; }; - D82084CB5BBE9273BE632746E1340B55 /* matcher.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = matcher.upb.c; path = "src/core/ext/upb-generated/xds/type/matcher/v3/matcher.upb.c"; sourceTree = ""; }; - D823691EBC3A2A72DFAA8EEE1089B7F8 /* transport_stream_receiver_impl.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = transport_stream_receiver_impl.cc; path = src/core/ext/transport/binder/utils/transport_stream_receiver_impl.cc; sourceTree = ""; }; - D825C55CBD86EDE548F326999266D7F7 /* string.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = string.h; path = src/core/lib/gpr/string.h; sourceTree = ""; }; - D8291D10622727BF5085FBB44D8D3A1E /* buffer_list.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = buffer_list.h; path = src/core/lib/iomgr/buffer_list.h; sourceTree = ""; }; - D8412D9A52A20CC9C5F2A71CCDA54E26 /* polling_resolver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = polling_resolver.h; path = src/core/ext/filters/client_channel/resolver/polling_resolver.h; sourceTree = ""; }; - D84AD88CB0289652AD0AB135D7A162F9 /* ecdh.c */ = {isa = PBXFileReference; includeInIndex = 1; name = ecdh.c; path = src/crypto/fipsmodule/ecdh/ecdh.c; sourceTree = ""; }; - D854186469E4DADB5B0A0C312FB64194 /* resource_locator.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = resource_locator.upb.c; path = "src/core/ext/upb-generated/xds/core/v3/resource_locator.upb.c"; sourceTree = ""; }; - D883E813B35FF752204FF6303C849398 /* FIRMultiFactorAssertion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRMultiFactorAssertion.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRMultiFactorAssertion.h; sourceTree = ""; }; - D884B3BD252F16CAE2950D93B9C1E36C /* bin_decoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bin_decoder.h; path = src/core/ext/transport/chttp2/transport/bin_decoder.h; sourceTree = ""; }; - D884D988617672049A1922CF12E24247 /* local_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = local_credentials.h; path = src/core/lib/security/credentials/local/local_credentials.h; sourceTree = ""; }; - D8867A1D5700DD7A03E4E9EE7605C158 /* resolve_address_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = resolve_address_posix.cc; path = src/core/lib/iomgr/resolve_address_posix.cc; sourceTree = ""; }; - D8AA4D3FF56DE7C182CD080A13F596E7 /* lockfree_event.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lockfree_event.h; path = src/core/lib/iomgr/lockfree_event.h; sourceTree = ""; }; - D8AAE302BEB79ED68FF6B9CC96B79FED /* ec_derive.c */ = {isa = PBXFileReference; includeInIndex = 1; name = ec_derive.c; path = src/crypto/ec_extra/ec_derive.c; sourceTree = ""; }; - D8AD4877FDC38E511D78B82AE2712C28 /* FIRMultiFactorAssertion+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FIRMultiFactorAssertion+Internal.h"; path = "FirebaseAuth/Sources/MultiFactor/FIRMultiFactorAssertion+Internal.h"; sourceTree = ""; }; - D8BC9C6F88F909F577BD345F6DBB06BC /* hpke.c */ = {isa = PBXFileReference; includeInIndex = 1; name = hpke.c; path = src/crypto/hpke/hpke.c; sourceTree = ""; }; - D8C03E0DE47940C09661BE8868F5A062 /* service_config_channel_arg_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = service_config_channel_arg_filter.cc; path = src/core/ext/filters/client_channel/service_config_channel_arg_filter.cc; sourceTree = ""; }; - D8CF7C8B1E6ADC4E5F75D68482B743CA /* empty.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = empty.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/protobuf/empty.upbdefs.h"; sourceTree = ""; }; - D8D3AE45380DFEAECB3BA6A5B2FBD5E6 /* HeartbeatController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HeartbeatController.swift; path = FirebaseCore/Internal/Sources/HeartbeatLogging/HeartbeatController.swift; sourceTree = ""; }; - D8E2E460771447000D79434A75C8505E /* bootstrap.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bootstrap.upb.h; path = "src/core/ext/upb-generated/envoy/config/bootstrap/v3/bootstrap.upb.h"; sourceTree = ""; }; - D8EE76CAFFEF6479916A91D3A6064472 /* GTMSessionFetcher-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "GTMSessionFetcher-umbrella.h"; sourceTree = ""; }; - D93105487CA837E2B990AF42A5B20225 /* resource.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource.upbdefs.h; path = "src/core/ext/upbdefs-generated/xds/core/v3/resource.upbdefs.h"; sourceTree = ""; }; - D94751A75F363EBD96E97DDE882A5D2D /* bin_encoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bin_encoder.h; path = src/core/ext/transport/chttp2/transport/bin_encoder.h; sourceTree = ""; }; - D956301BC50C50493399FA7E551ECB1D /* bits.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = bits.cc; path = Firestore/core/src/util/bits.cc; sourceTree = ""; }; - D957A4380785E239ABD643AFCBF2E17F /* metrics.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = metrics.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/admin/v3/metrics.upbdefs.h"; sourceTree = ""; }; - D9713073AD099962997A449A10DB0B0C /* NSData+FIRBase64.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSData+FIRBase64.h"; path = "FirebaseAuth/Sources/Utilities/NSData+FIRBase64.h"; sourceTree = ""; }; - D98B0B1364291A20272519B09E728D02 /* activity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = activity.h; path = src/core/lib/promise/activity.h; sourceTree = ""; }; - D99218DBEB12800C8A7D71B72111FA0F /* FIRAuthAPNSToken.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthAPNSToken.m; path = FirebaseAuth/Sources/SystemService/FIRAuthAPNSToken.m; sourceTree = ""; }; - D998A0105CD9E70E2BFF6E8917C56AE2 /* frame_settings.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = frame_settings.cc; path = src/core/ext/transport/chttp2/transport/frame_settings.cc; sourceTree = ""; }; - D99D39F258998421D7A1C6589A219C93 /* event_engine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = event_engine.h; path = include/grpc/event_engine/event_engine.h; sourceTree = ""; }; - D9C2CB7E5361E2775C6B4AB803907453 /* ssl_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ssl_utils.h; path = src/core/lib/security/security_connector/ssl_utils.h; sourceTree = ""; }; - D9D5761B1CE7AF87935B073653B703A2 /* versioning.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = versioning.upb.h; path = "src/core/ext/upb-generated/udpa/annotations/versioning.upb.h"; sourceTree = ""; }; - D9E57018E0580CC71198528F9FE4D619 /* FIRAuthProtoFinalizeMFAPhoneResponseInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthProtoFinalizeMFAPhoneResponseInfo.m; path = FirebaseAuth/Sources/Backend/RPC/Proto/Phone/FIRAuthProtoFinalizeMFAPhoneResponseInfo.m; sourceTree = ""; }; - D9EB568045DD790BEE70377C14E931AF /* listener.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = listener.upb.h; path = "src/core/ext/upb-generated/envoy/config/listener/v3/listener.upb.h"; sourceTree = ""; }; - D9F297A60D62500B24EFF32C3261A573 /* randen_detect.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = randen_detect.cc; path = absl/random/internal/randen_detect.cc; sourceTree = ""; }; - D9F58945E636EFD97E15B109DF3768DA /* trust_token.c */ = {isa = PBXFileReference; includeInIndex = 1; name = trust_token.c; path = src/crypto/trust_token/trust_token.c; sourceTree = ""; }; - DA17241A96D9E4CB286B5339D7BF57A3 /* FIRQuery.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRQuery.mm; path = Firestore/Source/API/FIRQuery.mm; sourceTree = ""; }; - DA32A10DB6DD5193293193AF26A75732 /* udp_socket_config.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = udp_socket_config.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/udp_socket_config.upb.h"; sourceTree = ""; }; - DA535398CB2B5272DE47D177A7690939 /* frame_ping.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = frame_ping.cc; path = src/core/ext/transport/chttp2/transport/frame_ping.cc; sourceTree = ""; }; - DA6DF344A1EA21110E741BC9F289A8FE /* alts_counter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_counter.h; path = src/core/tsi/alts/frame_protector/alts_counter.h; sourceTree = ""; }; - DA826E834C379BC205FCC293900DF8F3 /* resolved_address.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = resolved_address.cc; path = src/core/lib/event_engine/resolved_address.cc; sourceTree = ""; }; - DABA218AAD32FCAF1F69EE2E9395EBE1 /* timer_generic.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timer_generic.h; path = src/core/lib/iomgr/timer_generic.h; sourceTree = ""; }; - DAC3411B948A79F674993F64945111A7 /* time_zone_if.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = time_zone_if.h; path = absl/time/internal/cctz/src/time_zone_if.h; sourceTree = ""; }; - DACA094CFC3924389DD0F0FFBED9939C /* endpoint_cfstream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endpoint_cfstream.h; path = src/core/lib/iomgr/endpoint_cfstream.h; sourceTree = ""; }; - DACE2DB445C20AFA2C26835146371E81 /* ads.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ads.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/service/discovery/v3/ads.upbdefs.h"; sourceTree = ""; }; - DAD29480BC3188C7B6EC504B340AC4EC /* event_manager.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = event_manager.cc; path = Firestore/core/src/core/event_manager.cc; sourceTree = ""; }; - DAFABCCC619A2FE6F2AA91023D511AA8 /* rbac.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rbac.upb.c; path = "src/core/ext/upb-generated/envoy/extensions/filters/http/rbac/v3/rbac.upb.c"; sourceTree = ""; }; - DAFE7175CE7DA983C7E26F30792C0BDE /* duration.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = duration.cc; path = absl/time/duration.cc; sourceTree = ""; }; - DAFFAB72AD2CC5C653A2036477B65553 /* FIRAuthProtoStartMFATOTPEnrollmentRequestInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthProtoStartMFATOTPEnrollmentRequestInfo.h; path = FirebaseAuth/Sources/Backend/RPC/Proto/TOTP/FIRAuthProtoStartMFATOTPEnrollmentRequestInfo.h; sourceTree = ""; }; - DB18355BF15904A258EAF86207DD711C /* FIRVerifyCustomTokenRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRVerifyCustomTokenRequest.m; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyCustomTokenRequest.m; sourceTree = ""; }; - DB2D8A904EBAB17AAA0F1E6518918E67 /* proto_buffer_writer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = proto_buffer_writer.h; path = include/grpcpp/support/proto_buffer_writer.h; sourceTree = ""; }; - DB3815E8FB98651CA91C5C3E9A37387D /* deprecation.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = deprecation.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/annotations/deprecation.upbdefs.h"; sourceTree = ""; }; - DB6B065074B8D78FBBE33493FA80E477 /* type_traits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = type_traits.h; path = absl/meta/type_traits.h; sourceTree = ""; }; - DB7D999D6E7FCFF2572338BF85B16D57 /* retry_throttle.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = retry_throttle.cc; path = src/core/ext/filters/client_channel/retry_throttle.cc; sourceTree = ""; }; - DBA6780286A2D35A81D54A4672B137F2 /* FIRMultiFactorInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRMultiFactorInfo.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRMultiFactorInfo.h; sourceTree = ""; }; - DBA7F52F13CB23728FE9C24D27A996E1 /* polyval.c */ = {isa = PBXFileReference; includeInIndex = 1; name = polyval.c; path = src/crypto/fipsmodule/modes/polyval.c; sourceTree = ""; }; - DBB7EABB52708DCCDE325832D19610EF /* server_info.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = server_info.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/admin/v3/server_info.upbdefs.c"; sourceTree = ""; }; - DBCFDC629FB39D3F37E1BD3238A12F04 /* iomgr_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = iomgr_internal.h; path = src/core/lib/iomgr/iomgr_internal.h; sourceTree = ""; }; - DBD12F2280D499DFAC19BBF05F91DF88 /* channel_fwd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_fwd.h; path = src/core/lib/channel/channel_fwd.h; sourceTree = ""; }; - DBD5D1A7A6FF8951E79D73FBF5F9FFDF /* gaussian_distribution.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = gaussian_distribution.h; path = absl/random/gaussian_distribution.h; sourceTree = ""; }; - DBDF4CEEAF4FED1108C9BF7202FFF23B /* status.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.h; path = third_party/upb/upb/status.h; sourceTree = ""; }; - DBE11E9C5024A7CC3B1BA0F84F4C3517 /* transport_security_grpc.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = transport_security_grpc.cc; path = src/core/tsi/transport_security_grpc.cc; sourceTree = ""; }; - DBE30D1FBA4A4F01EDCEE792A813A2D2 /* overload.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = overload.upb.c; path = "src/core/ext/upb-generated/envoy/config/overload/v3/overload.upb.c"; sourceTree = ""; }; - DBE408820750FA7C8A0F46359A6DEE21 /* pcre.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pcre.h; path = third_party/re2/util/pcre.h; sourceTree = ""; }; - DBEBF77680EC83F7C179F2E19DCF9361 /* x_x509.c */ = {isa = PBXFileReference; includeInIndex = 1; name = x_x509.c; path = src/crypto/x509/x_x509.c; sourceTree = ""; }; - DBF7F5424980678425CAE8B733E6707A /* endpoint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endpoint.h; path = src/core/lib/iomgr/endpoint.h; sourceTree = ""; }; - DC03C233DC75D21A360F1AF84BCFB94E /* udp_socket_config.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = udp_socket_config.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/udp_socket_config.upbdefs.h"; sourceTree = ""; }; - DC1B47119FAE429D9E2E8935A45B2F3F /* weighted_target.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = weighted_target.cc; path = src/core/ext/filters/client_channel/lb_policy/weighted_target/weighted_target.cc; sourceTree = ""; }; - DC2153613327B730E31849A0E7E3978B /* fault.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fault.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/extensions/filters/common/fault/v3/fault.upbdefs.h"; sourceTree = ""; }; - DC21C32F2D994339298F336B5EC18084 /* FIRAuthDataResult_Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthDataResult_Internal.h; path = FirebaseAuth/Sources/Auth/FIRAuthDataResult_Internal.h; sourceTree = ""; }; - DC2D13CDDD62CF7249C154B1530A01CC /* channel_idle_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_idle_filter.h; path = src/core/ext/filters/channel_idle/channel_idle_filter.h; sourceTree = ""; }; - DC2F52A1C7842D2B32F4B40562BF57CB /* RingBuffer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RingBuffer.swift; path = FirebaseCore/Internal/Sources/HeartbeatLogging/RingBuffer.swift; sourceTree = ""; }; - DC3362571ED94386BAD944F3F9FC3C33 /* online_state_tracker.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = online_state_tracker.cc; path = Firestore/core/src/remote/online_state_tracker.cc; sourceTree = ""; }; - DC370DDB91D9BBA829C11C1CF572B14C /* secure_endpoint.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = secure_endpoint.cc; path = src/core/lib/security/transport/secure_endpoint.cc; sourceTree = ""; }; - DC43BA3F886A7C912B2885C3E8AD6FEF /* time_zone_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = time_zone_posix.cc; path = absl/time/internal/cctz/src/time_zone_posix.cc; sourceTree = ""; }; - DC57842BE8C900E9F93A3705967815CC /* overload.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = overload.upb.h; path = "src/core/ext/upb-generated/envoy/config/overload/v3/overload.upb.h"; sourceTree = ""; }; - DC725264CEBA1CCAF0F65F92CBB266F8 /* PromisesObjC-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "PromisesObjC-umbrella.h"; sourceTree = ""; }; - DC8B9FB9CE4F5A77DC38AF9F8172EEED /* custom_tag.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = custom_tag.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/type/tracing/v3/custom_tag.upbdefs.c"; sourceTree = ""; }; - DC9E868AEA429743C699E1D2DF8EDA02 /* bn.c */ = {isa = PBXFileReference; includeInIndex = 1; name = bn.c; path = src/crypto/fipsmodule/bn/bn.c; sourceTree = ""; }; - DCA5935C5E8A93F10D18141407FA9D25 /* migrate.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = migrate.upbdefs.h; path = "src/core/ext/upbdefs-generated/udpa/annotations/migrate.upbdefs.h"; sourceTree = ""; }; - DCB538713B290324592D5738CA466637 /* xds_cluster_impl.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = xds_cluster_impl.cc; path = src/core/ext/filters/client_channel/lb_policy/xds/xds_cluster_impl.cc; sourceTree = ""; }; - DCC25314E733AE2587AC092BB80BBBB7 /* int128.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = int128.cc; path = absl/numeric/int128.cc; sourceTree = ""; }; - DCC4FDA456F65C7FA2B45B6C9F36D392 /* FIRMultiFactorResolver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRMultiFactorResolver.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRMultiFactorResolver.h; sourceTree = ""; }; - DCDA8341F1F227B9A398B385A35FC568 /* credentials_cc.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = credentials_cc.cc; path = src/cpp/client/credentials_cc.cc; sourceTree = ""; }; - DCE3E91AEE1C5D325FC9EAAEB6F76CE5 /* demangle.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = demangle.cc; path = absl/debugging/internal/demangle.cc; sourceTree = ""; }; - DCFABC7B0A109ED157376A4007E12140 /* resolve_address_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolve_address_posix.h; path = src/core/lib/iomgr/resolve_address_posix.h; sourceTree = ""; }; - DD0996E34BF22C2A10CD9FE16EE2C68E /* schedule.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = schedule.cc; path = Firestore/core/src/util/schedule.cc; sourceTree = ""; }; - DD0CEE86A51A959D825B8F764A44135D /* bits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bits.h; path = absl/numeric/internal/bits.h; sourceTree = ""; }; - DD10E2A6938CD42120EDE7E3DBEF270B /* firebase_metadata_provider.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = firebase_metadata_provider.cc; path = Firestore/core/src/remote/firebase_metadata_provider.cc; sourceTree = ""; }; - DD10F7256FDD72CB5B38A204933FDEFE /* thd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = thd.h; path = src/core/lib/gprpp/thd.h; sourceTree = ""; }; - DD266D40382F30E91821538F308B9C37 /* struct.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = struct.upb.h; path = "src/core/ext/upb-generated/google/protobuf/struct.upb.h"; sourceTree = ""; }; - DD3F2CD1E901F009F1FFA495FF9C878B /* dns_resolver_selection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dns_resolver_selection.h; path = src/core/ext/filters/client_channel/resolver/dns/dns_resolver_selection.h; sourceTree = ""; }; - DD3F87E488F063E80C292D0405B28E15 /* tasn_utl.c */ = {isa = PBXFileReference; includeInIndex = 1; name = tasn_utl.c; path = src/crypto/asn1/tasn_utl.c; sourceTree = ""; }; - DD5617CF629911034355625D5B49E56D /* timer_manager.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = timer_manager.cc; path = src/core/lib/iomgr/timer_manager.cc; sourceTree = ""; }; - DD5743D0B76AA8D7B60617CCE1C28F68 /* lrs.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lrs.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/service/load_stats/v3/lrs.upbdefs.h"; sourceTree = ""; }; - DD5A510619ABFFD66F9C1CFE7D9858B9 /* lame_client.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = lame_client.cc; path = src/core/lib/surface/lame_client.cc; sourceTree = ""; }; - DD6DE9EE970FC6B4FB439296B630A158 /* seed_material.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = seed_material.h; path = absl/random/internal/seed_material.h; sourceTree = ""; }; - DD94E2B1E647F10987C14E3BBEEAAAA7 /* utf8_range.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = utf8_range.h; path = third_party/upb/third_party/utf8_range/utf8_range.h; sourceTree = ""; }; - DDAFD55BA49B14289373BDF535EA2F57 /* certs.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = certs.upb.h; path = "src/core/ext/upb-generated/envoy/admin/v3/certs.upb.h"; sourceTree = ""; }; - DDB087BEE7ABAE0C13395F265DCE7F18 /* FIRFilter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRFilter.h; path = Firestore/Source/Public/FirebaseFirestore/FIRFilter.h; sourceTree = ""; }; - DDD0ECC2DFF834BA66AF17E2A60A69A2 /* pool_urbg.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pool_urbg.h; path = absl/random/internal/pool_urbg.h; sourceTree = ""; }; - DDE1AF07776869A16A9FABA838FA5754 /* FIROptionsInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIROptionsInternal.h; path = FirebaseCore/Extension/FIROptionsInternal.h; sourceTree = ""; }; - DE069E6ED7D38EA0C4651CB578908DAA /* fips.c */ = {isa = PBXFileReference; includeInIndex = 1; name = fips.c; path = src/crypto/fipsmodule/self_check/fips.c; sourceTree = ""; }; - DE11F1047F1D70AD984627D8530089DD /* RecaptchaInterop-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RecaptchaInterop-prefix.pch"; sourceTree = ""; }; - DE39FD8649367557E651B574AE32E4BD /* global_config_generic.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = global_config_generic.h; path = src/core/lib/gprpp/global_config_generic.h; sourceTree = ""; }; - DE41F55DC532A0CF3B9F856ABFEA46B0 /* channel_stack.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = channel_stack.cc; path = src/core/lib/channel/channel_stack.cc; sourceTree = ""; }; - DE820F2E71A04F0A28988E4DC46B251F /* arena.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = arena.h; path = src/core/lib/resource_quota/arena.h; sourceTree = ""; }; - DE8D18979C6AAECAAA42F4068F348F60 /* match.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = match.h; path = src/core/lib/gprpp/match.h; sourceTree = ""; }; - DEA0E366CFE5D366B66F64272F463ADC /* FIRUserMetadata.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRUserMetadata.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRUserMetadata.h; sourceTree = ""; }; - DEA7D6290FB25ED9BF566AA2FCFE648C /* FIRAuthNotificationManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthNotificationManager.h; path = FirebaseAuth/Sources/SystemService/FIRAuthNotificationManager.h; sourceTree = ""; }; - DEC031706F1A948053DC00B43A1C1485 /* filter_policy.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = filter_policy.cc; path = util/filter_policy.cc; sourceTree = ""; }; - DEC8F05DF24A0FFE32C6C26836CC2EDD /* evp_errors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = evp_errors.h; path = src/include/openssl/evp_errors.h; sourceTree = ""; }; - DECEDBE55C2DDB2AE159D7325D384C4F /* log_format.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = log_format.h; path = db/log_format.h; sourceTree = ""; }; - DEFF5777043C076CB9A90CD54EC34832 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/bytestring/internal.h; sourceTree = ""; }; - DF0C326E369849C5A63D04E3186BC3AA /* status_payload_printer.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = status_payload_printer.cc; path = absl/status/status_payload_printer.cc; sourceTree = ""; }; - DF0F460DF0C069ABE4DBA0AF2834BF7C /* mutex_stats.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = mutex_stats.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/admin/v3/mutex_stats.upbdefs.c"; sourceTree = ""; }; - DF3232B0650662692F09AA76FCEEA3A8 /* stacktrace_aarch64-inl.inc */ = {isa = PBXFileReference; includeInIndex = 1; name = "stacktrace_aarch64-inl.inc"; path = "absl/debugging/internal/stacktrace_aarch64-inl.inc"; sourceTree = ""; }; - DF3CDC560364BA1846587C4052FEC4DB /* FBLPromise+Wrap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Wrap.h"; path = "Sources/FBLPromises/include/FBLPromise+Wrap.h"; sourceTree = ""; }; - DF48F3E62DB57D23DA30B3A8A4ECAE95 /* FIRSendVerificationCodeRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRSendVerificationCodeRequest.m; path = FirebaseAuth/Sources/Backend/RPC/FIRSendVerificationCodeRequest.m; sourceTree = ""; }; - DF50BEC38AF2EC847F9659CCFED5AD89 /* dynamic_ot.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dynamic_ot.upb.h; path = "src/core/ext/upb-generated/envoy/config/trace/v3/dynamic_ot.upb.h"; sourceTree = ""; }; - DF51B62188C94F0F5338FD2172BBAB89 /* grpc_authorization_engine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_authorization_engine.h; path = src/core/lib/security/authorization/grpc_authorization_engine.h; sourceTree = ""; }; - DF533D330BD53A04C330A15B554EE3E8 /* xds_bootstrap.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = xds_bootstrap.cc; path = src/core/ext/xds/xds_bootstrap.cc; sourceTree = ""; }; - DF83025E4BD51FB9F0D27CB29305D266 /* stream_lists.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = stream_lists.cc; path = src/core/ext/transport/chttp2/transport/stream_lists.cc; sourceTree = ""; }; - DF9248F8632D47E65700F68F120F89A2 /* executor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = executor.h; path = src/core/lib/event_engine/executor/executor.h; sourceTree = ""; }; - DFBC05A37F4F3DB80E6C9AA362B5C2CE /* time.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = time.cc; path = absl/time/time.cc; sourceTree = ""; }; - DFBFDCA637293CFB8D09C9871AFB04AF /* subchannel_list.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = subchannel_list.h; path = src/core/ext/filters/client_channel/lb_policy/subchannel_list.h; sourceTree = ""; }; - DFC70D8CFEC52BF16A07BFA004185744 /* direction.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = direction.cc; path = Firestore/core/src/core/direction.cc; sourceTree = ""; }; - DFF142006B20473458FC13F34C3A6DD3 /* slice_buffer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = slice_buffer.h; path = include/grpc/slice_buffer.h; sourceTree = ""; }; - DFF27E375A3323376AC18DC40F9B8761 /* pid_controller.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pid_controller.h; path = src/core/lib/transport/pid_controller.h; sourceTree = ""; }; - E00203CDB509071CA2476DDBBB29D290 /* thread_identity.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = thread_identity.cc; path = absl/base/internal/thread_identity.cc; sourceTree = ""; }; - E011348B10B6B69A81AD38B50CAC6F65 /* xds_bootstrap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_bootstrap.h; path = src/core/ext/xds/xds_bootstrap.h; sourceTree = ""; }; - E01564647B13F2E86BB3C9F4FC5E4862 /* decode.c */ = {isa = PBXFileReference; includeInIndex = 1; name = decode.c; path = third_party/upb/upb/decode.c; sourceTree = ""; }; - E022695BE2169CDE9B21D45337106BE1 /* x_req.c */ = {isa = PBXFileReference; includeInIndex = 1; name = x_req.c; path = src/crypto/x509/x_req.c; sourceTree = ""; }; - E025FA592BF5119C8C521FBE1DAF40FB /* sqrt.c */ = {isa = PBXFileReference; includeInIndex = 1; name = sqrt.c; path = src/crypto/fipsmodule/bn/sqrt.c; sourceTree = ""; }; - E02BA09433766238FF28A894B799276D /* cluster.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cluster.upb.c; path = "src/core/ext/upb-generated/envoy/extensions/clusters/aggregate/v3/cluster.upb.c"; sourceTree = ""; }; - E03A2AED69E6696CF60A1947CE49B9BF /* symbolize_emscripten.inc */ = {isa = PBXFileReference; includeInIndex = 1; name = symbolize_emscripten.inc; path = absl/debugging/symbolize_emscripten.inc; sourceTree = ""; }; - E0482393A4F4279E459D91A8753C5558 /* builtins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = builtins.h; path = src/core/lib/surface/builtins.h; sourceTree = ""; }; - E04D0699A741420496FFB8D186AB8A07 /* crc32c.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = crc32c.h; path = util/crc32c.h; sourceTree = ""; }; - E04F87549BF341FC3D4B23B6D3AC9437 /* status.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.h; path = src/core/lib/promise/detail/status.h; sourceTree = ""; }; - E0510B678915413BEE59D289B8272894 /* global_config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = global_config.h; path = src/core/lib/gprpp/global_config.h; sourceTree = ""; }; - E067E77436E8F63146D6A3E4583F54F3 /* simple_mul.c */ = {isa = PBXFileReference; includeInIndex = 1; name = simple_mul.c; path = src/crypto/fipsmodule/ec/simple_mul.c; sourceTree = ""; }; - E06AE2FEE43559ABACD13C304CE87102 /* api_listener.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = api_listener.upb.h; path = "src/core/ext/upb-generated/envoy/config/listener/v3/api_listener.upb.h"; sourceTree = ""; }; - E0793C1837002EA46022CE503C1FBC39 /* subchannel_interface_internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = subchannel_interface_internal.h; path = src/core/ext/filters/client_channel/subchannel_interface_internal.h; sourceTree = ""; }; - E095E0056BB1FA23991BDE1522D0FCFB /* pb_decode.c */ = {isa = PBXFileReference; includeInIndex = 1; path = pb_decode.c; sourceTree = ""; }; - E099D98B5084FC92BE40EEA0F7951682 /* http_connection_manager.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_connection_manager.upb.h; path = "src/core/ext/upb-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb.h"; sourceTree = ""; }; - E0E2C551A32FD85EDD5152E5EEA11059 /* numbers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = numbers.h; path = absl/strings/numbers.h; sourceTree = ""; }; - E0EDBDD3D6684AD9C71F6B95BD8AAEAD /* http_connection_manager.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_connection_manager.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upbdefs.h"; sourceTree = ""; }; - E10387926F647BB9DDBE12A4B65DB06E /* arena_promise.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = arena_promise.h; path = src/core/lib/promise/arena_promise.h; sourceTree = ""; }; - E109B17627DDC15CE11B11980E3B4543 /* pb_common.c */ = {isa = PBXFileReference; includeInIndex = 1; path = pb_common.c; sourceTree = ""; }; - E10A46004BAC723BCFA4A70A47C3F1B3 /* config_source.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = config_source.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/config_source.upbdefs.h"; sourceTree = ""; }; - E123AB2665E2C7D268DF335C2398E74F /* iomgr_internal.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = iomgr_internal.cc; path = src/core/lib/iomgr/iomgr_internal.cc; sourceTree = ""; }; - E12454BE108FE6E4AA93E999C5633B42 /* filesystem_apple.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = filesystem_apple.mm; path = Firestore/core/src/util/filesystem_apple.mm; sourceTree = ""; }; - E12BA41198BA4031424EB611B0130794 /* wakeup_fd_pipe.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = wakeup_fd_pipe.h; path = src/core/lib/iomgr/wakeup_fd_pipe.h; sourceTree = ""; }; - E14D924058E8A29436C3435693CC0FB2 /* leveldb-library-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "leveldb-library-umbrella.h"; sourceTree = ""; }; - E154E67CEF3F02F7959805BE80309CA8 /* grpc_service.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = grpc_service.upb.c; path = "src/core/ext/upb-generated/envoy/config/core/v3/grpc_service.upb.c"; sourceTree = ""; }; - E15820FD15877D9E1361FEC1F50F0B95 /* regex.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = regex.upb.h; path = "src/core/ext/upb-generated/xds/type/matcher/v3/regex.upb.h"; sourceTree = ""; }; - E15B41845B38D1923F989BC14A2A7621 /* FBLPromise+Then.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Then.m"; path = "Sources/FBLPromises/FBLPromise+Then.m"; sourceTree = ""; }; - E161C72FDB7217B077263E42319E2382 /* pkcs8.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pkcs8.h; path = src/include/openssl/pkcs8.h; sourceTree = ""; }; - E1623AD4E106EF42A12BE6F4A8926843 /* spinlock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = spinlock.h; path = src/core/lib/gpr/spinlock.h; sourceTree = ""; }; - E175027F231ECB2626E8B04D26ACFD36 /* ssl_buffer.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = ssl_buffer.cc; path = src/ssl/ssl_buffer.cc; sourceTree = ""; }; - E1829E9F55E21AF6AF6E3A34F5A4D7B4 /* bundle_serializer.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = bundle_serializer.cc; path = Firestore/core/src/bundle/bundle_serializer.cc; sourceTree = ""; }; - E1965F3D6268AD7BAC76ADA992A3BC54 /* datadog.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = datadog.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/trace/v3/datadog.upbdefs.h"; sourceTree = ""; }; - E1A4135396A460A713A353FF093C7740 /* FirebaseCoreInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseCoreInternal.h; path = FirebaseCore/Extension/FirebaseCoreInternal.h; sourceTree = ""; }; - E1BCB43F5ACED0B2A69428E1E0C26355 /* ssl_utils_config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ssl_utils_config.h; path = src/core/lib/security/security_connector/ssl_utils_config.h; sourceTree = ""; }; - E1D2B259078074DE0D14219DBD134643 /* memory_eager_reference_delegate.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = memory_eager_reference_delegate.cc; path = Firestore/core/src/local/memory_eager_reference_delegate.cc; sourceTree = ""; }; - E1E54BEC523885FD99AEA828AA079468 /* error_apple.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = error_apple.mm; path = Firestore/core/src/util/error_apple.mm; sourceTree = ""; }; - E21BC6070BCA241507851DDA31B01A65 /* FIRCreateAuthURIRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCreateAuthURIRequest.h; path = FirebaseAuth/Sources/Backend/RPC/FIRCreateAuthURIRequest.h; sourceTree = ""; }; - E22400E2C3B291528F27D2FC946B3B9A /* resource.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resource.upb.h; path = "src/core/ext/upb-generated/xds/core/v3/resource.upb.h"; sourceTree = ""; }; - E235A67EBF15F76631816A0F064AE352 /* iomgr_posix_cfstream.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = iomgr_posix_cfstream.cc; path = src/core/lib/iomgr/iomgr_posix_cfstream.cc; sourceTree = ""; }; - E244AB962170375248B1E3D35BED0501 /* channel_stack_type.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_stack_type.h; path = src/core/lib/surface/channel_stack_type.h; sourceTree = ""; }; - E26C9890F315455BFF8147617B8CC0A3 /* filter_policy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = filter_policy.h; path = include/leveldb/filter_policy.h; sourceTree = ""; }; - E27318BDCA3B55DED4F246CB929FD338 /* server_config_selector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_config_selector.h; path = src/core/ext/filters/server_config_selector/server_config_selector.h; sourceTree = ""; }; - E27CFE7E99A5B65F511B0173241A25A7 /* binder_server_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = binder_server_credentials.cc; path = src/core/ext/transport/binder/server/binder_server_credentials.cc; sourceTree = ""; }; - E2816B4D12C694A24AF3924582465DC8 /* alts_counter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_counter.h; path = src/core/tsi/alts/frame_protector/alts_counter.h; sourceTree = ""; }; - E28AED8AAF467EB843C7ADFAD1966B31 /* randen_hwaes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = randen_hwaes.h; path = absl/random/internal/randen_hwaes.h; sourceTree = ""; }; - E29197D0898C1483D626B4F1790037CA /* listeners.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = listeners.upb.c; path = "src/core/ext/upb-generated/envoy/admin/v3/listeners.upb.c"; sourceTree = ""; }; - E293A05816875A96AB28A6A0F0963823 /* listeners.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = listeners.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/admin/v3/listeners.upbdefs.h"; sourceTree = ""; }; - E2989E9CF29C43C9EC69735181AA1B94 /* FIRStartMFASignInRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRStartMFASignInRequest.h; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/SignIn/FIRStartMFASignInRequest.h; sourceTree = ""; }; - E2B47A4F01F2C91755352C78B324DCC0 /* route_components.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = route_components.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/route/v3/route_components.upbdefs.c"; sourceTree = ""; }; - E2B63D462DB7F827C4B11FD51E4F8E2D /* FirebaseCore */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = FirebaseCore; path = FirebaseCore.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - E2C0C6DF4A520C0F64BD4AC9306CD774 /* p_x25519.c */ = {isa = PBXFileReference; includeInIndex = 1; name = p_x25519.c; path = src/crypto/evp/p_x25519.c; sourceTree = ""; }; - E2CDD2CAD7BF8D3904FCB525D6896108 /* chacha.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = chacha.h; path = src/include/openssl/chacha.h; sourceTree = ""; }; - E304231909E187742B9610BD30582326 /* endpoint_components.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endpoint_components.upb.h; path = "src/core/ext/upb-generated/envoy/config/endpoint/v3/endpoint_components.upb.h"; sourceTree = ""; }; - E308D3B1D0C19CE6D25EAEEEE1913604 /* string.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = string.cc; path = src/core/lib/gpr/string.cc; sourceTree = ""; }; - E31F064CA5A982DF1A293F4DF342C614 /* google_default_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = google_default_credentials.h; path = src/core/lib/security/credentials/google_default/google_default_credentials.h; sourceTree = ""; }; - E32B2EAEF3E5FE89C9F53F95B5503230 /* bootstrap.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = bootstrap.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/bootstrap/v3/bootstrap.upbdefs.c"; sourceTree = ""; }; - E3556224A3970AA83A6D9EFF47FD791B /* ecdsa_asn1.c */ = {isa = PBXFileReference; includeInIndex = 1; name = ecdsa_asn1.c; path = src/crypto/ecdsa_extra/ecdsa_asn1.c; sourceTree = ""; }; - E356DC4EF8E73F382000570D0CBE12AC /* atm.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = atm.h; path = include/grpc/support/atm.h; sourceTree = ""; }; - E36841E7A85701ADF90619D125F555AE /* alts_crypter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_crypter.h; path = src/core/tsi/alts/frame_protector/alts_crypter.h; sourceTree = ""; }; - E38CE3D5AE58B7C80A5000EB5EC8DE1D /* x509v3.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = x509v3.h; path = src/include/openssl/x509v3.h; sourceTree = ""; }; - E390410347C7F06E53C6A5808A3EB951 /* FIRAuthSerialTaskQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthSerialTaskQueue.h; path = FirebaseAuth/Sources/Auth/FIRAuthSerialTaskQueue.h; sourceTree = ""; }; - E393E63D157F2F8F28ADDA8A688DEAC6 /* FirebaseCoreInternal-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FirebaseCoreInternal-prefix.pch"; sourceTree = ""; }; - E3A79B59FFE16B84C2ADCA787EE3D4C9 /* encrypted_client_hello.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = encrypted_client_hello.cc; path = src/ssl/encrypted_client_hello.cc; sourceTree = ""; }; - E3A8243385EB749CC0B9CB1922DB02FA /* server.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = server.cc; path = src/core/lib/surface/server.cc; sourceTree = ""; }; - E3CF1DAD73C89C7040B184A50B1014BF /* file_external_account_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = file_external_account_credentials.h; path = src/core/lib/security/credentials/external/file_external_account_credentials.h; sourceTree = ""; }; - E3DB1F14CF4DF2DBF75D7F11C6F9E33C /* tls_credentials_options.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tls_credentials_options.h; path = include/grpcpp/security/tls_credentials_options.h; sourceTree = ""; }; - E4183EBAA2C8EEFD2A4BDB04924BCE7D /* rbac.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rbac.upb.h; path = "src/core/ext/upb-generated/envoy/extensions/filters/http/rbac/v3/rbac.upb.h"; sourceTree = ""; }; - E420FDE636F679D52B33A52D717EC25E /* grpc_alts_credentials_options.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = grpc_alts_credentials_options.cc; path = src/core/lib/security/credentials/alts/grpc_alts_credentials_options.cc; sourceTree = ""; }; - E44FF4B5683FAD755CE17615900F8400 /* FirebaseCoreInternal.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = FirebaseCoreInternal.modulemap; sourceTree = ""; }; - E455881EA353F2E9D320FB09BB1031E9 /* hashtablez_sampler_force_weak_definition.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = hashtablez_sampler_force_weak_definition.cc; path = absl/container/internal/hashtablez_sampler_force_weak_definition.cc; sourceTree = ""; }; - E45784DDCABF9D40D3DFA31A1BCDFDFA /* FIRAuthWebView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthWebView.h; path = FirebaseAuth/Sources/Utilities/FIRAuthWebView.h; sourceTree = ""; }; - E457B00026A135A2A8F0852EFD45C04D /* FIRActionCodeSettings.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRActionCodeSettings.m; path = FirebaseAuth/Sources/Auth/FIRActionCodeSettings.m; sourceTree = ""; }; - E466B63531A69D143134218170383275 /* cmac.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cmac.h; path = src/include/openssl/cmac.h; sourceTree = ""; }; - E478955BCA73AF89E2A24E9016E72E34 /* FBLPromise+Recover.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Recover.h"; path = "Sources/FBLPromises/include/FBLPromise+Recover.h"; sourceTree = ""; }; - E485EBCBA1B7994599078CEFAABED88B /* socket_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = socket_windows.cc; path = src/core/lib/iomgr/socket_windows.cc; sourceTree = ""; }; - E4866A1273C33A17D1CC8DD6F80BCE92 /* oob_backend_metric.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = oob_backend_metric.h; path = src/core/ext/filters/client_channel/lb_policy/oob_backend_metric.h; sourceTree = ""; }; - E4884CAB7203FFDAF568C34AF1228BA8 /* nonsecure_base.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = nonsecure_base.h; path = absl/random/internal/nonsecure_base.h; sourceTree = ""; }; - E48B63F986978E616161D7455510314F /* http.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http.upb.h; path = "src/core/ext/upb-generated/google/api/http.upb.h"; sourceTree = ""; }; - E48BC5EF1B8782C48B19D00F9027C36A /* huffsyms.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = huffsyms.cc; path = src/core/ext/transport/chttp2/transport/huffsyms.cc; sourceTree = ""; }; - E49B91EBADD885860BFBD5956A2B9BAC /* cord.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cord.h; path = absl/strings/cord.h; sourceTree = ""; }; - E4AA6D9A4E42B8AC77AEF5EF8F70ACAB /* tasn_typ.c */ = {isa = PBXFileReference; includeInIndex = 1; name = tasn_typ.c; path = src/crypto/asn1/tasn_typ.c; sourceTree = ""; }; - E4B1B1F57B01885D631BCD5331D6D8C6 /* RCARecaptchaProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCARecaptchaProtocol.h; path = RecaptchaEnterprise/RecaptchaInterop/Public/RecaptchaInterop/RCARecaptchaProtocol.h; sourceTree = ""; }; - E4B3B000F04698C2544DD063CD5B0912 /* message_allocator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = message_allocator.h; path = include/grpcpp/impl/codegen/message_allocator.h; sourceTree = ""; }; - E4C27114610E9762FF254E324F4186AB /* varint.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = varint.cc; path = src/core/ext/transport/chttp2/transport/varint.cc; sourceTree = ""; }; - E4EA0DD7FBC34C06DF9C1A78C15D1F42 /* policy_checks.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = policy_checks.h; path = absl/base/policy_checks.h; sourceTree = ""; }; - E4F3F93FC028B79CAE315F17B276D3BC /* uri_parser.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = uri_parser.cc; path = src/core/lib/uri/uri_parser.cc; sourceTree = ""; }; - E4F99A1E6F6C72FD59225E4B82ED4D41 /* FIRAuthBackend.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthBackend.h; path = FirebaseAuth/Sources/Backend/FIRAuthBackend.h; sourceTree = ""; }; - E501ABBA6753CD2BBC5744BD76011D00 /* descriptor.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = descriptor.upb.c; path = "src/core/ext/upb-generated/google/protobuf/descriptor.upb.c"; sourceTree = ""; }; - E51A19381EB53E3EE3C4E891790B45B5 /* rsa_pss.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rsa_pss.c; path = src/crypto/x509/rsa_pss.c; sourceTree = ""; }; - E524E4D95865B2A1C6DD30DE1F5AE976 /* node.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = node.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/matcher/v3/node.upbdefs.h"; sourceTree = ""; }; - E5359379FC10D3F77FF50503BA5F5F19 /* proto_buffer_reader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = proto_buffer_reader.h; path = include/grpcpp/support/proto_buffer_reader.h; sourceTree = ""; }; - E554E8B40ACE269B9DFD91C15D558A67 /* leveldb_persistence.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = leveldb_persistence.cc; path = Firestore/core/src/local/leveldb_persistence.cc; sourceTree = ""; }; - E5613AE04DD9A8188293551C4FB93DDC /* FIROptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIROptions.h; path = FirebaseCore/Sources/Public/FirebaseCore/FIROptions.h; sourceTree = ""; }; - E57B78FF38D81C12A8D4CA2D010E9C60 /* FIRCollectionReference.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRCollectionReference.mm; path = Firestore/Source/API/FIRCollectionReference.mm; sourceTree = ""; }; - E5A1DE4BFDA5B14E481B37EE53652152 /* x_pubkey.c */ = {isa = PBXFileReference; includeInIndex = 1; name = x_pubkey.c; path = src/crypto/x509/x_pubkey.c; sourceTree = ""; }; - E5CA22400BD4D4EA24C1FB27DB144305 /* env.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = env.h; path = src/core/lib/gprpp/env.h; sourceTree = ""; }; - E5CD400681B024A9BAF24AC18DAF538E /* a_verify.c */ = {isa = PBXFileReference; includeInIndex = 1; name = a_verify.c; path = src/crypto/x509/a_verify.c; sourceTree = ""; }; - E5CEB58737BE690A784E875E176DCB77 /* serialization_traits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = serialization_traits.h; path = include/grpcpp/impl/serialization_traits.h; sourceTree = ""; }; - E5D9A56E482B943A70561226842F82EF /* FIRVerifyClientRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRVerifyClientRequest.h; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyClientRequest.h; sourceTree = ""; }; - E5DC5E815A3969509838E48EAE618421 /* alts_iovec_record_protocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_iovec_record_protocol.h; path = src/core/tsi/alts/zero_copy_frame_protector/alts_iovec_record_protocol.h; sourceTree = ""; }; - E5DF0D65B706CB3AEE1D5CE8B4432A02 /* fork.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fork.h; path = src/core/lib/gprpp/fork.h; sourceTree = ""; }; - E60916F62333BCB2DDE838C4938D76AB /* table.c */ = {isa = PBXFileReference; includeInIndex = 1; name = table.c; path = third_party/upb/upb/table.c; sourceTree = ""; }; - E6325262776E75174B9DA7B9C2B7007E /* matcher.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = matcher.upbdefs.h; path = "src/core/ext/upbdefs-generated/xds/type/matcher/v3/matcher.upbdefs.h"; sourceTree = ""; }; - E6422FBB67A95365AA8D224D2006DF11 /* leveldb-library.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "leveldb-library.modulemap"; sourceTree = ""; }; - E6566312956BAB549CFCA7039FDD6FE4 /* server_cc.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = server_cc.cc; path = src/cpp/server/server_cc.cc; sourceTree = ""; }; - E662517F1982D613C313307261F668C5 /* examine_stack.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = examine_stack.h; path = src/core/lib/gprpp/examine_stack.h; sourceTree = ""; }; - E6632D89048050D74B0DE298C73F5DC7 /* annotations.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = annotations.upb.c; path = "src/core/ext/upb-generated/google/api/annotations.upb.c"; sourceTree = ""; }; - E66706627D793C7A0B365B8A075D50C6 /* v3_genn.c */ = {isa = PBXFileReference; includeInIndex = 1; name = v3_genn.c; path = src/crypto/x509v3/v3_genn.c; sourceTree = ""; }; - E66899670A89292100F25478C3E2A1CC /* trace.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = trace.cc; path = src/core/lib/resource_quota/trace.cc; sourceTree = ""; }; - E66ECFCD913AEC91113EA54AC47495AC /* sha256.c */ = {isa = PBXFileReference; includeInIndex = 1; name = sha256.c; path = src/crypto/fipsmodule/sha/sha256.c; sourceTree = ""; }; - E682C0F925C18950ECEB21217B36C4E0 /* default_event_engine_factory.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = default_event_engine_factory.cc; path = src/core/lib/event_engine/default_event_engine_factory.cc; sourceTree = ""; }; - E6882AF9BDC993AF61E63050FCA11EE4 /* hpack_parser.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = hpack_parser.cc; path = src/core/ext/transport/chttp2/transport/hpack_parser.cc; sourceTree = ""; }; - E697E9B2A859FE83DFE63A97032ABCAF /* sockaddr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sockaddr.h; path = src/core/lib/iomgr/sockaddr.h; sourceTree = ""; }; - E699520FAE0C8EBAB84E309418FFAD30 /* grpclb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpclb.h; path = src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.h; sourceTree = ""; }; - E6A272C5CCAC0A3DF3925E19ED0B39EC /* health_check_service_server_builder_option.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = health_check_service_server_builder_option.cc; path = src/cpp/server/health/health_check_service_server_builder_option.cc; sourceTree = ""; }; - E6C87C4DCBEA5CF8E1B5F290096DEBB9 /* fake_transport_security.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = fake_transport_security.cc; path = src/core/tsi/fake_transport_security.cc; sourceTree = ""; }; - E6E0BE5532F3B3BD5DF662B48CCF9CB4 /* json_encode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = json_encode.h; path = third_party/upb/upb/json_encode.h; sourceTree = ""; }; - E6E248615E4DCE3DCD24AC35677A4249 /* httpbody.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = httpbody.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/api/httpbody.upbdefs.h"; sourceTree = ""; }; - E6F31963F98F365F8C8F9C0568785A03 /* interceptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = interceptor.h; path = include/grpcpp/impl/codegen/interceptor.h; sourceTree = ""; }; - E70CD4BC5166E03D1D4DF95E7434AAF5 /* init_internally.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = init_internally.h; path = src/core/lib/surface/init_internally.h; sourceTree = ""; }; - E718061AAA1D23645FFB665A291A49AD /* slice.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = slice.h; path = include/leveldb/slice.h; sourceTree = ""; }; - E72238331925B2894E5E076291078D32 /* FIRTransaction.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FIRTransaction.mm; path = Firestore/Source/API/FIRTransaction.mm; sourceTree = ""; }; - E722747F87FDF4018D93C903D341EA8A /* fake_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = fake_credentials.cc; path = src/core/lib/security/credentials/fake/fake_credentials.cc; sourceTree = ""; }; - E7285AA7C12FA59E344BF276FC1BC3B1 /* iam_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = iam_credentials.cc; path = src/core/lib/security/credentials/iam/iam_credentials.cc; sourceTree = ""; }; - E73F026274DE9CA09BD13E67522C63CE /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/conf/internal.h; sourceTree = ""; }; - E75D00358011D9CF92780BAB8E8F1F83 /* json.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = json.h; path = src/core/lib/json/json.h; sourceTree = ""; }; - E760F2A68AA5F6C34E0966F52BCAF60C /* xds_resource_type.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = xds_resource_type.cc; path = src/core/ext/xds/xds_resource_type.cc; sourceTree = ""; }; - E77176DAFAD6569FC986EA927FBAED72 /* RCAActionProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCAActionProtocol.h; path = RecaptchaEnterprise/RecaptchaInterop/Public/RecaptchaInterop/RCAActionProtocol.h; sourceTree = ""; }; - E77B4D66F6075235B8399BA732A8B39E /* rbac_policy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rbac_policy.h; path = src/core/lib/security/authorization/rbac_policy.h; sourceTree = ""; }; - E77CDF17D7815CBA90FDBEA6AD2371EB /* xds_http_rbac_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_http_rbac_filter.h; path = src/core/ext/xds/xds_http_rbac_filter.h; sourceTree = ""; }; - E78A65C63086E99EA695849D617A83ED /* aead.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = aead.h; path = src/include/openssl/aead.h; sourceTree = ""; }; - E78FBB22C6A320607961BB36F72F8943 /* hide_ptr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hide_ptr.h; path = absl/base/internal/hide_ptr.h; sourceTree = ""; }; - E7C50276FDE00510F43205EABF6ECBDF /* FIRDocumentChange.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDocumentChange.h; path = Firestore/Source/Public/FirebaseFirestore/FIRDocumentChange.h; sourceTree = ""; }; - E7CD0E83823EDDC865203CA0CD24DF32 /* log_windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = log_windows.h; path = include/grpc/support/log_windows.h; sourceTree = ""; }; - E7CD78EC04F62235CC090B79192B34BF /* service.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = service.upb.h; path = "src/core/ext/upb-generated/envoy/config/trace/v3/service.upb.h"; sourceTree = ""; }; - E80AE69A949F9666F72AC280E28F75CF /* FirebaseFirestore-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "FirebaseFirestore-Info.plist"; sourceTree = ""; }; - E80D6440B217AA6D91C35A25792CFAD2 /* xds_lb_policy_registry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_lb_policy_registry.h; path = src/core/ext/xds/xds_lb_policy_registry.h; sourceTree = ""; }; - E816AF8B536BEEC1381B87F6447EC98B /* FIRAdditionalUserInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAdditionalUserInfo.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRAdditionalUserInfo.h; sourceTree = ""; }; - E837B60C0D98A0684F99DF86053C4E63 /* FIREmailLinkSignInRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIREmailLinkSignInRequest.m; path = FirebaseAuth/Sources/Backend/RPC/FIREmailLinkSignInRequest.m; sourceTree = ""; }; - E83A6C91AFD0D0ECEDBAD9311A851436 /* fake_resolver.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = fake_resolver.cc; path = src/core/ext/filters/client_channel/resolver/fake/fake_resolver.cc; sourceTree = ""; }; - E841734C707E2407CA03444C44E459EA /* fault.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = fault.upb.c; path = "src/core/ext/upb-generated/envoy/extensions/filters/common/fault/v3/fault.upb.c"; sourceTree = ""; }; - E844888B644DF497E4517D69113F6341 /* vsnprintf_compat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = vsnprintf_compat.h; path = third_party/upb/upb/internal/vsnprintf_compat.h; sourceTree = ""; }; - E863353054D2963313D783489FA04695 /* hash_policy_traits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hash_policy_traits.h; path = absl/container/internal/hash_policy_traits.h; sourceTree = ""; }; - E86590AAAF5E98E26B6123D6AA0894F3 /* bitset.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bitset.h; path = src/core/lib/gprpp/bitset.h; sourceTree = ""; }; - E8762939BDDE72BF12A981968EC8D732 /* method_handler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = method_handler.h; path = include/grpcpp/impl/codegen/method_handler.h; sourceTree = ""; }; - E8802DCBAB5F1DA891DD4CA46EFC7476 /* latch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = latch.h; path = src/core/lib/promise/latch.h; sourceTree = ""; }; - E887EC5107F3C13FDED59A34E7463859 /* rbac_policy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rbac_policy.h; path = src/core/lib/security/authorization/rbac_policy.h; sourceTree = ""; }; - E891A0AD8DE7028821FB645F13C77019 /* client_authority_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = client_authority_filter.h; path = src/core/ext/filters/http/client_authority_filter.h; sourceTree = ""; }; - E894220545B2955C83C809AA8FB61623 /* cfstream_handle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cfstream_handle.h; path = src/core/lib/iomgr/cfstream_handle.h; sourceTree = ""; }; - E89619E53F05A25D4DA37D6047773584 /* GULNetwork.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULNetwork.m; path = GoogleUtilities/Network/GULNetwork.m; sourceTree = ""; }; - E8A1A3E644DC7315C56F47FBBC1C763A /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/err/internal.h; sourceTree = ""; }; - E8BB79B6562BB8A84AB0B044F9718364 /* grpc_service.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = grpc_service.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/grpc_service.upbdefs.c"; sourceTree = ""; }; - E8BC8950CF0E6BF62C84F441193AB580 /* external_account_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = external_account_credentials.h; path = src/core/lib/security/credentials/external/external_account_credentials.h; sourceTree = ""; }; - E8C4CE6B819E4B2192532AC2D9E35610 /* FIRAuthProtoStartMFAPhoneResponseInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthProtoStartMFAPhoneResponseInfo.m; path = FirebaseAuth/Sources/Backend/RPC/Proto/Phone/FIRAuthProtoStartMFAPhoneResponseInfo.m; sourceTree = ""; }; - E8CF2B976FE5F0B462615A64145E0932 /* ssl_session_cache.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = ssl_session_cache.cc; path = src/core/tsi/ssl/session_cache/ssl_session_cache.cc; sourceTree = ""; }; - E8D6FCFF76F5265F1F1447D8E8509EB9 /* FirebaseCoreInternal-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FirebaseCoreInternal-dummy.m"; sourceTree = ""; }; - E8D8F2E3960BC3C1749044499B36B668 /* hash.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = hash.cc; path = absl/hash/internal/hash.cc; sourceTree = ""; }; - E8DC3D839B8CC36E6D01312BF46C9412 /* jni_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = jni_utils.h; path = src/core/ext/transport/binder/client/jni_utils.h; sourceTree = ""; }; - E8FAA516E3128F65A8CB75FE9F3DB4DF /* grpc_ares_wrapper_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = grpc_ares_wrapper_posix.cc; path = src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_posix.cc; sourceTree = ""; }; - E91FA1D609BEFDB36028576F949337C0 /* FIRSnapshotMetadata.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRSnapshotMetadata.h; path = Firestore/Source/Public/FirebaseFirestore/FIRSnapshotMetadata.h; sourceTree = ""; }; - E972D2002937D3DDC13EA710BAF777FD /* sleep.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sleep.h; path = src/core/lib/promise/sleep.h; sourceTree = ""; }; - E9776BD4D0F9931260EA94CF57E1DDA5 /* c.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = c.cc; path = db/c.cc; sourceTree = ""; }; - E978F7C9894DE631F90D94AC9141DF4A /* FIRVerifyClientResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRVerifyClientResponse.m; path = FirebaseAuth/Sources/Backend/RPC/FIRVerifyClientResponse.m; sourceTree = ""; }; - E9809B0928C3092801D88BDF0681660B /* gsec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = gsec.h; path = src/core/tsi/alts/crypt/gsec.h; sourceTree = ""; }; - E9817A1F4C42D2026D1B6459EB33B418 /* export.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = export.h; path = include/leveldb/export.h; sourceTree = ""; }; - E998B077AC7D4D695E1743A0712CDBD3 /* client_load_reporting_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = client_load_reporting_filter.cc; path = src/core/ext/filters/client_channel/lb_policy/grpclb/client_load_reporting_filter.cc; sourceTree = ""; }; - E9B0275D603793A0F347AB437CEA043E /* status.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status.upb.h; path = "src/core/ext/upb-generated/xds/annotations/v3/status.upb.h"; sourceTree = ""; }; - E9B73F9A3BF74896438423DD4E1C2270 /* xray.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = xray.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/trace/v3/xray.upbdefs.c"; sourceTree = ""; }; - E9BD16718BBC907203D2A917F8413F87 /* xds_client_grpc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_client_grpc.h; path = src/core/ext/xds/xds_client_grpc.h; sourceTree = ""; }; - E9CBCA2F7CCF7873C235AA7517B87F08 /* hash_function_defaults.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hash_function_defaults.h; path = absl/container/internal/hash_function_defaults.h; sourceTree = ""; }; - EA02F77236767F0F6C4B4A89B70A23CF /* xds_resolver.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = xds_resolver.cc; path = src/core/ext/filters/client_channel/resolver/xds/xds_resolver.cc; sourceTree = ""; }; - EA0A644A6BB640FF063BC68B3227136A /* retry_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = retry_filter.h; path = src/core/ext/filters/client_channel/retry_filter.h; sourceTree = ""; }; - EA3A681265106D73B652EF155DCDF403 /* threaded_executor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = threaded_executor.h; path = src/core/lib/event_engine/executor/threaded_executor.h; sourceTree = ""; }; - EA3E1D2993A0CA183D8605B0191C217F /* sensitive.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = sensitive.upbdefs.c; path = "src/core/ext/upbdefs-generated/udpa/annotations/sensitive.upbdefs.c"; sourceTree = ""; }; - EA5EB5A0AE83C9AE2D6544B2799AB549 /* raw_hash_map.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = raw_hash_map.h; path = absl/container/internal/raw_hash_map.h; sourceTree = ""; }; - EA6A13B8B269F58F9B357025D0FA683A /* service_config_parser.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = service_config_parser.cc; path = src/core/lib/service_config/service_config_parser.cc; sourceTree = ""; }; - EA748A455A0289CB5746A5C803901284 /* a_mbstr.c */ = {isa = PBXFileReference; includeInIndex = 1; name = a_mbstr.c; path = src/crypto/asn1/a_mbstr.c; sourceTree = ""; }; - EA761F6527AF29892549BF05EF502954 /* ecdsa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = ecdsa.c; path = src/crypto/fipsmodule/ecdsa/ecdsa.c; sourceTree = ""; }; - EAA01727A243EF6136E41EBB402E4A78 /* resolver_registry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolver_registry.h; path = src/core/lib/resolver/resolver_registry.h; sourceTree = ""; }; - EAA6B469339FF8B3EBC771E2F8E21BBB /* FBLPromise+Validate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Validate.h"; path = "Sources/FBLPromises/include/FBLPromise+Validate.h"; sourceTree = ""; }; - EAA8888AC538FD9D7890A3687BDDDB31 /* dynamic_thread_pool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dynamic_thread_pool.h; path = src/cpp/server/dynamic_thread_pool.h; sourceTree = ""; }; - EAB6D9169AA27102E2AA228BC1F6553D /* FIRTOTPMultiFactorGenerator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRTOTPMultiFactorGenerator.m; path = FirebaseAuth/Sources/MultiFactor/TOTP/FIRTOTPMultiFactorGenerator.m; sourceTree = ""; }; - EACCFF242A450B2548A30BB8C80F76B5 /* base.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = base.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/base.upb.h"; sourceTree = ""; }; - EAD6D720CFAEB3208B4B1D37AB3201E6 /* GTMSessionFetcherService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GTMSessionFetcherService.h; path = Sources/Core/Public/GTMSessionFetcher/GTMSessionFetcherService.h; sourceTree = ""; }; - EAFB7829E5251C2D9974FD41D25A95FA /* percent.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = percent.upb.h; path = "src/core/ext/upb-generated/envoy/type/v3/percent.upb.h"; sourceTree = ""; }; - EB1E898B5A1501A415626353BE59A4E7 /* server_builder_option.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_builder_option.h; path = include/grpcpp/impl/server_builder_option.h; sourceTree = ""; }; - EB45E88E9A1DDB9DE002900D364F2102 /* escaping.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = escaping.h; path = absl/strings/escaping.h; sourceTree = ""; }; - EB687A1C0E258E86C833917065296818 /* cert.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cert.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/cert.upbdefs.h"; sourceTree = ""; }; - EB78ED5DC25B9D2E1D5497D7B62C1330 /* symbolize_win32.inc */ = {isa = PBXFileReference; includeInIndex = 1; name = symbolize_win32.inc; path = absl/debugging/symbolize_win32.inc; sourceTree = ""; }; - EB7B3B1E93CF7DE4BFA1C731AA6EAEA5 /* decode_huff.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = decode_huff.cc; path = src/core/ext/transport/chttp2/transport/decode_huff.cc; sourceTree = ""; }; - EB7E7D65D43AC6B614C525A0E6265B07 /* proxy_protocol.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = proxy_protocol.upb.c; path = "src/core/ext/upb-generated/envoy/config/core/v3/proxy_protocol.upb.c"; sourceTree = ""; }; - EB8C0A552D7530749626CB9E0348637F /* range.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = range.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/v3/range.upbdefs.h"; sourceTree = ""; }; - EB906685D4A23D624949C9FE94C89D89 /* router.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = router.upb.h; path = "src/core/ext/upb-generated/envoy/extensions/filters/http/router/v3/router.upb.h"; sourceTree = ""; }; - EBA0D2779EFE92A09DF5EE5B8DA769C6 /* FIRAnalyticsConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAnalyticsConfiguration.m; path = FirebaseCore/Sources/FIRAnalyticsConfiguration.m; sourceTree = ""; }; - EBA65B4CA8AD61FEF5E9674B21C32BBD /* cookie.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cookie.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/type/http/v3/cookie.upbdefs.c"; sourceTree = ""; }; - EBC7E0CA1EA85E74F4185A939AA44639 /* xds_server_config_fetcher.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = xds_server_config_fetcher.cc; path = src/core/ext/xds/xds_server_config_fetcher.cc; sourceTree = ""; }; - EBCD39418F7F7E55480D70FC2B972F2C /* idle_filter_state.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = idle_filter_state.cc; path = src/core/ext/filters/channel_idle/idle_filter_state.cc; sourceTree = ""; }; - EBCFFE7A064D5E3A3EF6ED6E611656B4 /* string_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = string_windows.cc; path = src/core/lib/gpr/string_windows.cc; sourceTree = ""; }; - EBD22B8BDB048726D64FBAAFA8F79F31 /* symbolize.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = symbolize.cc; path = absl/debugging/symbolize.cc; sourceTree = ""; }; - EBD240E7BEB417CE0F957687B58BC96A /* RecaptchaInterop.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = RecaptchaInterop.modulemap; sourceTree = ""; }; - EBD654524DEB3AE452BAC741C6525356 /* bdp_estimator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bdp_estimator.h; path = src/core/lib/transport/bdp_estimator.h; sourceTree = ""; }; - EC1CFEC3F8A7F7198561BD45C3EC28D8 /* alpn.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alpn.h; path = src/core/ext/transport/chttp2/alpn/alpn.h; sourceTree = ""; }; - EC23DFC8A8AF7E565DD21186A66EBA6C /* api_listener.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = api_listener.upb.h; path = "src/core/ext/upb-generated/envoy/config/listener/v3/api_listener.upb.h"; sourceTree = ""; }; - EC41380911574852C9C8C724B19989F4 /* FIRDependency.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRDependency.m; path = FirebaseCore/Sources/FIRDependency.m; sourceTree = ""; }; - EC4D635B0901B8E654F574D03D4FD14B /* router.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = router.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/extensions/filters/http/router/v3/router.upbdefs.h"; sourceTree = ""; }; - EC5EBBF8CA2A8C829FAD55533A990CF5 /* FIRStartMFAEnrollmentRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRStartMFAEnrollmentRequest.h; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/Enroll/FIRStartMFAEnrollmentRequest.h; sourceTree = ""; }; - EC5F3AFDE0651C5F2482CF9FFB8310CB /* tls_spiffe_validator_config.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tls_spiffe_validator_config.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upbdefs.h"; sourceTree = ""; }; - EC674551ECDC7FA70C3E9C4267482DBC /* insecure_server_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = insecure_server_credentials.cc; path = src/cpp/server/insecure_server_credentials.cc; sourceTree = ""; }; - EC75AE9C7489530528412280EF4BE174 /* api_trace.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = api_trace.cc; path = src/core/lib/surface/api_trace.cc; sourceTree = ""; }; - EC81E633491AE5BD2651951FB564CE8B /* s3_pkt.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = s3_pkt.cc; path = src/ssl/s3_pkt.cc; sourceTree = ""; }; - EC91EE169F104329D44BF9D031A08194 /* listener_components.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = listener_components.upb.c; path = "src/core/ext/upb-generated/envoy/config/listener/v3/listener_components.upb.c"; sourceTree = ""; }; - EC9F60A925CD6F8E96ECEDAF36EDD10C /* bdp_estimator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bdp_estimator.h; path = src/core/lib/transport/bdp_estimator.h; sourceTree = ""; }; - ECBA7AE330D5D7E661566908E3186D97 /* rbac_service_config_parser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rbac_service_config_parser.h; path = src/core/ext/filters/rbac/rbac_service_config_parser.h; sourceTree = ""; }; - ECC6581A78E2AAFC64C8381B726790A9 /* health.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = health.upb.h; path = "src/core/ext/upb-generated/src/proto/grpc/health/v1/health.upb.h"; sourceTree = ""; }; - ECDC60235DD818DF78E2E89B9961A26B /* FIRAuthProtoStartMFAPhoneRequestInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthProtoStartMFAPhoneRequestInfo.m; path = FirebaseAuth/Sources/Backend/RPC/Proto/Phone/FIRAuthProtoStartMFAPhoneRequestInfo.m; sourceTree = ""; }; - ECDE38B3FC4AB9E9C47D6B2239B43128 /* semantic_version.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = semantic_version.upb.c; path = "src/core/ext/upb-generated/envoy/type/v3/semantic_version.upb.c"; sourceTree = ""; }; - ECE57501BF09348A988B83C6794B48BC /* call_op_set_interface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = call_op_set_interface.h; path = include/grpcpp/impl/codegen/call_op_set_interface.h; sourceTree = ""; }; - ED18B67A1053473A48D5F9CD5AF528BF /* opencensus.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = opencensus.upb.h; path = "src/core/ext/upb-generated/envoy/config/trace/v3/opencensus.upb.h"; sourceTree = ""; }; - ED210BD64123997BDED35DC5866134E8 /* GULURLSessionDataResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULURLSessionDataResponse.m; path = GoogleUtilities/Environment/URLSessionPromiseWrapper/GULURLSessionDataResponse.m; sourceTree = ""; }; - ED2B97F127847B10C87C9925BF1C055D /* upb_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = upb_utils.h; path = src/core/ext/xds/upb_utils.h; sourceTree = ""; }; - ED3C7320E80D98E06BE49BC216051792 /* call_metric_recorder.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = call_metric_recorder.cc; path = src/cpp/server/orca/call_metric_recorder.cc; sourceTree = ""; }; - ED612E3EDF5171A16D1CF2E3BE079691 /* leveldb_target_cache.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = leveldb_target_cache.cc; path = Firestore/core/src/local/leveldb_target_cache.cc; sourceTree = ""; }; - ED73CFE96011D1E8EBAD13AADE9BA3D1 /* format.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = format.h; path = table/format.h; sourceTree = ""; }; - ED7850FB6DBDABB9F1EC517CFA346C92 /* versioning.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = versioning.upbdefs.c; path = "src/core/ext/upbdefs-generated/udpa/annotations/versioning.upbdefs.c"; sourceTree = ""; }; - ED80E6395FD0033E0037F717D794A377 /* load_system_roots_fallback.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = load_system_roots_fallback.cc; path = src/core/lib/security/security_connector/load_system_roots_fallback.cc; sourceTree = ""; }; - ED819F8683D5B8DB1299BF7148BAC0E4 /* GULReachabilityMessageCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULReachabilityMessageCode.h; path = GoogleUtilities/Reachability/GULReachabilityMessageCode.h; sourceTree = ""; }; - ED81A8CEA57F3596E1B6B35919C72A80 /* FIRStartMFAEnrollmentResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRStartMFAEnrollmentResponse.h; path = FirebaseAuth/Sources/Backend/RPC/MultiFactor/Enroll/FIRStartMFAEnrollmentResponse.h; sourceTree = ""; }; - ED85B398BCA394C5CAC493A176806EF2 /* xds_bootstrap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_bootstrap.h; path = src/core/ext/xds/xds_bootstrap.h; sourceTree = ""; }; - EDB95363DDD5E8939C4889DF0FBC44FB /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/ec_extra/internal.h; sourceTree = ""; }; - EDBF17ECC5AF18F34F0DEF5529AEE7FE /* grpc_method_list.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = grpc_method_list.upb.c; path = "src/core/ext/upb-generated/envoy/config/core/v3/grpc_method_list.upb.c"; sourceTree = ""; }; - EDC1CF15856C34BBF9D66747AF301D59 /* json_reader.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = json_reader.cc; path = src/core/lib/json/json_reader.cc; sourceTree = ""; }; - EDC3268A11BAB8910C0B456E264503E2 /* rbac_service_config_parser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rbac_service_config_parser.h; path = src/core/ext/filters/rbac/rbac_service_config_parser.h; sourceTree = ""; }; - EDCEE61CD3587D7EE03F0775F3CA9716 /* init_dump.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = init_dump.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/admin/v3/init_dump.upbdefs.h"; sourceTree = ""; }; - EDF35D4254DB55A51CB46A690EE0DE40 /* rls_config.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rls_config.upb.h; path = "src/core/ext/upb-generated/src/proto/grpc/lookup/v1/rls_config.upb.h"; sourceTree = ""; }; - EE10331B89000F8BF42398330720C39C /* aws_external_account_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = aws_external_account_credentials.h; path = src/core/lib/security/credentials/external/aws_external_account_credentials.h; sourceTree = ""; }; - EE25D24667A87E0DFF9A9641F1FC92D0 /* typed_struct.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = typed_struct.upbdefs.c; path = "src/core/ext/upbdefs-generated/xds/type/v3/typed_struct.upbdefs.c"; sourceTree = ""; }; - EE3349D76C260DC8862FA0BA21E82D68 /* path.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = path.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/matcher/v3/path.upbdefs.h"; sourceTree = ""; }; - EE41E25CB195BDDB101D4BD5C54AC937 /* string.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = string.upbdefs.c; path = "src/core/ext/upbdefs-generated/xds/type/matcher/v3/string.upbdefs.c"; sourceTree = ""; }; - EE4811E5DB8598D3186D040D1177052B /* time_zone_lookup.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = time_zone_lookup.cc; path = absl/time/internal/cctz/src/time_zone_lookup.cc; sourceTree = ""; }; - EE6CE92A5E94BB910E4A068B8A7F7A9B /* ssl_key_logging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ssl_key_logging.h; path = src/core/tsi/ssl/key_logging/ssl_key_logging.h; sourceTree = ""; }; - EE706D797A1A34E3A94A1275DB02551E /* xds.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds.h; path = src/core/ext/filters/client_channel/lb_policy/xds/xds.h; sourceTree = ""; }; - EE804E9FD4338E79C130A9BB491A1682 /* promise_based_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = promise_based_filter.h; path = src/core/lib/channel/promise_based_filter.h; sourceTree = ""; }; - EE8C5E7BD8D7914A7BB379AE4DD7DEEF /* metadata.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = metadata.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/type/matcher/v3/metadata.upbdefs.c"; sourceTree = ""; }; - EEA56E65FAF348D729981017A5F14C67 /* FIRComponentContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentContainer.h; path = FirebaseCore/Extension/FIRComponentContainer.h; sourceTree = ""; }; - EEB143FAE4584022A0EF93F2DB20CA6E /* http_connect_handshaker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_connect_handshaker.h; path = src/core/lib/transport/http_connect_handshaker.h; sourceTree = ""; }; - EEB2DF6EAA27D4F4070C3CB8F2A9F9E8 /* connected_channel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = connected_channel.h; path = src/core/lib/channel/connected_channel.h; sourceTree = ""; }; - EEBC5465EBE0C03BD5F5DADAD8169B15 /* lightstep.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lightstep.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/trace/v3/lightstep.upbdefs.h"; sourceTree = ""; }; - EEC1B76CA7CDC02026B54E4E2CF13CD3 /* ndk_binder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ndk_binder.h; path = src/core/ext/transport/binder/utils/ndk_binder.h; sourceTree = ""; }; - EEE2A3C886CF68A2EEF0802CFD94F04F /* span.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = span.h; path = src/include/openssl/span.h; sourceTree = ""; }; - EEFA7143837C97488674FDEAC8125984 /* endpoint_config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endpoint_config.h; path = include/grpc/event_engine/endpoint_config.h; sourceTree = ""; }; - EF1AE0561328D311F6A1B5B54D1213EA /* callback_common.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = callback_common.h; path = include/grpcpp/impl/codegen/callback_common.h; sourceTree = ""; }; - EF26CB6E8AA2DFC4DB0752853BE3EEDB /* obj_xref.c */ = {isa = PBXFileReference; includeInIndex = 1; name = obj_xref.c; path = src/crypto/obj/obj_xref.c; sourceTree = ""; }; - EF3EDBE0A8B29F73FA855A701E907317 /* channel_create.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = channel_create.cc; path = src/core/ext/transport/binder/client/channel_create.cc; sourceTree = ""; }; - EF53589CB5D78A98F3E32898B9D0B479 /* address.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = address.upb.h; path = "src/core/ext/upb-generated/envoy/config/core/v3/address.upb.h"; sourceTree = ""; }; - EF5960F8A3B8DB76B25E521476AF6E97 /* x_algor.c */ = {isa = PBXFileReference; includeInIndex = 1; name = x_algor.c; path = src/crypto/x509/x_algor.c; sourceTree = ""; }; - EF5B18F7561A6ED9B99528D0F16C7EB0 /* debug_location.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = debug_location.h; path = src/core/lib/gprpp/debug_location.h; sourceTree = ""; }; - EF5E6E7BFB49D1A35B2A521EC6FAAC52 /* strerror.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = strerror.cc; path = Firestore/core/src/util/strerror.cc; sourceTree = ""; }; - EF625C321A84FB0EFA2BDEEDFBA52FA0 /* secure_server_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = secure_server_credentials.h; path = src/cpp/server/secure_server_credentials.h; sourceTree = ""; }; - EF8C72DDF4645B8E68F3E8CF241F3DB8 /* metadata_map.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = metadata_map.h; path = include/grpcpp/impl/codegen/metadata_map.h; sourceTree = ""; }; - EF91967570044091C2A4037BEAA4D19E /* certificate_provider_factory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = certificate_provider_factory.h; path = src/core/lib/security/certificate_provider/certificate_provider_factory.h; sourceTree = ""; }; - EF987D90C3E4E320E506F0BAE0D9A2A1 /* FIRDeleteAccountRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDeleteAccountRequest.h; path = FirebaseAuth/Sources/Backend/RPC/FIRDeleteAccountRequest.h; sourceTree = ""; }; - EFBDB8F895AFBE8CB5F8C7007A0B8BA2 /* secure_random_arc4random.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = secure_random_arc4random.cc; path = Firestore/core/src/util/secure_random_arc4random.cc; sourceTree = ""; }; - EFD9D4BBA3833E2F30730C16D57E41C4 /* rbac_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rbac_filter.h; path = src/core/ext/filters/rbac/rbac_filter.h; sourceTree = ""; }; - EFE26B08110609F263FBFEE200189021 /* certs.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = certs.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/admin/v3/certs.upbdefs.h"; sourceTree = ""; }; - EFE62C81BBA07096D5E0402B8548A28A /* endpoint_pair.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endpoint_pair.h; path = src/core/lib/iomgr/endpoint_pair.h; sourceTree = ""; }; - EFF861E1E51296E502941231B2B718BF /* ordered_code.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = ordered_code.cc; path = Firestore/core/src/util/ordered_code.cc; sourceTree = ""; }; - F00AA832B7F043897DDC2F8EDACEE8DD /* closure.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = closure.h; path = src/core/lib/iomgr/closure.h; sourceTree = ""; }; - F01953BFA85C7D4454673CA1C0210ED1 /* any.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = any.upbdefs.h; path = "src/core/ext/upbdefs-generated/google/protobuf/any.upbdefs.h"; sourceTree = ""; }; - F0358DDDC5ED4B160F62181F272628D9 /* alts_tsi_handshaker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_tsi_handshaker.h; path = src/core/tsi/alts/handshaker/alts_tsi_handshaker.h; sourceTree = ""; }; - F03A0837E10E83A4EFD001F774A89742 /* range.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = range.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/type/v3/range.upbdefs.c"; sourceTree = ""; }; - F03AB99DB75B087CA03DAE5446FE6764 /* service.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = service.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/trace/v3/service.upbdefs.h"; sourceTree = ""; }; - F07BD3A85368A33DCA4019065EE2C1B7 /* v3_alt.c */ = {isa = PBXFileReference; includeInIndex = 1; name = v3_alt.c; path = src/crypto/x509v3/v3_alt.c; sourceTree = ""; }; - F07D781B56E3309BBFB234313C631FAF /* ssl_session.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ssl_session.h; path = src/core/tsi/ssl/session_cache/ssl_session.h; sourceTree = ""; }; - F0914F7F5460C0D3D62BF7416D32DD2F /* avl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = avl.h; path = src/core/lib/avl/avl.h; sourceTree = ""; }; - F09371D8E1BDC697CFBDB94012B76BE6 /* iomgr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = iomgr.h; path = src/core/lib/iomgr/iomgr.h; sourceTree = ""; }; - F09E060612D37CB20BC7D330825C6E66 /* e_aesctrhmac.c */ = {isa = PBXFileReference; includeInIndex = 1; name = e_aesctrhmac.c; path = src/crypto/cipher_extra/e_aesctrhmac.c; sourceTree = ""; }; - F0AA1987F49D49EC272AEF1CDEE44A7D /* security_context.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = security_context.h; path = src/core/lib/security/context/security_context.h; sourceTree = ""; }; - F0ADF297B671B3020FE33E20E99EDCCA /* frame_window_update.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = frame_window_update.cc; path = src/core/ext/transport/chttp2/transport/frame_window_update.cc; sourceTree = ""; }; - F0B2C4F706845DB3B64EF3AD5A17FEEA /* graphcycles.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = graphcycles.h; path = absl/synchronization/internal/graphcycles.h; sourceTree = ""; }; - F0B9F2CF1DFA6CEADDF438D2727B0569 /* alts_record_protocol_crypter_common.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alts_record_protocol_crypter_common.h; path = src/core/tsi/alts/frame_protector/alts_record_protocol_crypter_common.h; sourceTree = ""; }; - F0CC929C3211D45D2D771A56AD4DD1BD /* v3_cpols.c */ = {isa = PBXFileReference; includeInIndex = 1; name = v3_cpols.c; path = src/crypto/x509v3/v3_cpols.c; sourceTree = ""; }; - F0D345DE53FF111656F06E1389977340 /* cluster.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cluster.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/extensions/clusters/aggregate/v3/cluster.upbdefs.h"; sourceTree = ""; }; - F0DDB1000478CE78FA09A7582B95753B /* extension.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = extension.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/extension.upbdefs.h"; sourceTree = ""; }; - F0DF1A41CBD6C7A2A4A10ECFD854F084 /* lrs.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lrs.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/service/load_stats/v3/lrs.upbdefs.h"; sourceTree = ""; }; - F0FF2C5B4810C16E40C17E03FD13DDF4 /* charconv_parse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = charconv_parse.h; path = absl/strings/internal/charconv_parse.h; sourceTree = ""; }; - F10A4554F7A5BB1826B7D655C53D7B49 /* wrr_locality.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = wrr_locality.upb.h; path = "src/core/ext/upb-generated/envoy/extensions/load_balancing_policies/wrr_locality/v3/wrr_locality.upb.h"; sourceTree = ""; }; - F118631D1D347A3F4D5DBCCAB7258A89 /* client_interceptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = client_interceptor.h; path = include/grpcpp/support/client_interceptor.h; sourceTree = ""; }; - F1295F8A4D359E5913D7CB235E55E5C7 /* grpc_alts_credentials_server_options.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = grpc_alts_credentials_server_options.cc; path = src/core/lib/security/credentials/alts/grpc_alts_credentials_server_options.cc; sourceTree = ""; }; - F130D519E593354BC0629DEBF3058E86 /* tcp_server_utils_posix_noifaddrs.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = tcp_server_utils_posix_noifaddrs.cc; path = src/core/lib/iomgr/tcp_server_utils_posix_noifaddrs.cc; sourceTree = ""; }; - F13C371FD182590CD1FC7A09A020CC4F /* a_utctm.c */ = {isa = PBXFileReference; includeInIndex = 1; name = a_utctm.c; path = src/crypto/asn1/a_utctm.c; sourceTree = ""; }; - F13D20ED03E9841DAC9C84E812DD3B39 /* metadata.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = metadata.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/matcher/v3/metadata.upbdefs.h"; sourceTree = ""; }; - F1476C9EB62ECB6FAC56BB8E477A4A17 /* jwt_verifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = jwt_verifier.h; path = src/core/lib/security/credentials/jwt/jwt_verifier.h; sourceTree = ""; }; - F14EA4A79F04D99144CBFE0787E816DE /* thd_id.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = thd_id.h; path = include/grpc/support/thd_id.h; sourceTree = ""; }; - F15C98FA291DC6F9E32B7355144234C4 /* rbac_service_config_parser.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = rbac_service_config_parser.cc; path = src/core/ext/filters/rbac/rbac_service_config_parser.cc; sourceTree = ""; }; - F1796EA61C64F626AEC1E4133E7138C7 /* pod_array.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pod_array.h; path = third_party/re2/re2/pod_array.h; sourceTree = ""; }; - F18117D997AF0DA0C76E685ABB0E8F71 /* rbac.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rbac.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/rbac/v3/rbac.upbdefs.h"; sourceTree = ""; }; - F1817909D65C66B8A298477E33056178 /* cycleclock.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = cycleclock.cc; path = absl/base/internal/cycleclock.cc; sourceTree = ""; }; - F1A1D7DC3E8AE3C71CCDBCB96406AEE3 /* wire_reader_impl.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = wire_reader_impl.cc; path = src/core/ext/transport/binder/wire_format/wire_reader_impl.cc; sourceTree = ""; }; - F1C0445280CDDB34127321F46D63364B /* http_status.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_status.upb.h; path = "src/core/ext/upb-generated/envoy/type/v3/http_status.upb.h"; sourceTree = ""; }; - F1C3373BAD109E46054FE53E56039892 /* db.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = db.h; path = include/leveldb/db.h; sourceTree = ""; }; - F1D34EC25933F1E16CDE0854AFE95EE0 /* cord_data_edge.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cord_data_edge.h; path = absl/strings/internal/cord_data_edge.h; sourceTree = ""; }; - F1D4322981761FF288EC921A91D35DAA /* status.c */ = {isa = PBXFileReference; includeInIndex = 1; name = status.c; path = third_party/upb/upb/status.c; sourceTree = ""; }; - F1E9C750906F68CBC1F36E60EBB506F2 /* unique_type_name.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = unique_type_name.h; path = src/core/lib/gprpp/unique_type_name.h; sourceTree = ""; }; - F1F0E7D62B87E55F757D1D62E975CE27 /* pkcs12.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pkcs12.h; path = src/include/openssl/pkcs12.h; sourceTree = ""; }; - F1F368FF3D07CCBBA01831AD2F10ACDE /* percent.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = percent.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/type/v3/percent.upbdefs.c"; sourceTree = ""; }; - F1F5E90B4173A67C94136CB5E8D456D0 /* completion_queue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = completion_queue.h; path = include/grpcpp/impl/codegen/completion_queue.h; sourceTree = ""; }; - F2018B38817CCDF1AB3ACE7EC6778396 /* sockaddr_utils.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = sockaddr_utils.cc; path = src/core/lib/address_utils/sockaddr_utils.cc; sourceTree = ""; }; - F216CB59752BA8794724D218A37530C4 /* ctx.c */ = {isa = PBXFileReference; includeInIndex = 1; name = ctx.c; path = src/crypto/fipsmodule/bn/ctx.c; sourceTree = ""; }; - F224930808921BE4F210A6CCAAE592EE /* zone_info_source.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = zone_info_source.cc; path = absl/time/internal/cctz/src/zone_info_source.cc; sourceTree = ""; }; - F22823DC0FD49D8659DC9C863AD32CE6 /* transport_security_common.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = transport_security_common.upb.c; path = "src/core/ext/upb-generated/src/proto/grpc/gcp/transport_security_common.upb.c"; sourceTree = ""; }; - F24F85271883EDB871609F9D406928B4 /* clusters.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = clusters.upb.h; path = "src/core/ext/upb-generated/envoy/admin/v3/clusters.upb.h"; sourceTree = ""; }; - F25DC0FC565A224A06B6AFAA464034C7 /* discovery.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = discovery.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/service/discovery/v3/discovery.upbdefs.h"; sourceTree = ""; }; - F2824B7066940497B80155061765CF95 /* string.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = string.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/matcher/v3/string.upbdefs.h"; sourceTree = ""; }; - F2877EC86281344FD42C2F61579A7859 /* watch_change.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = watch_change.cc; path = Firestore/core/src/remote/watch_change.cc; sourceTree = ""; }; - F2AC53E9D2081A7384529307D6E5D848 /* opencensus.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = opencensus.upb.h; path = "src/core/ext/upb-generated/envoy/config/trace/v3/opencensus.upb.h"; sourceTree = ""; }; - F2B94F233981F6FAF566270C531223C5 /* slice_buffer.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = slice_buffer.cc; path = src/core/lib/event_engine/slice_buffer.cc; sourceTree = ""; }; - F2C41CD3CD7F030E3FC54836E9B909C7 /* channel_trace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = channel_trace.h; path = src/core/lib/channel/channel_trace.h; sourceTree = ""; }; - F2D33ABDF24120DE8AEA47F7C580D698 /* GoogleUtilities-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "GoogleUtilities-dummy.m"; sourceTree = ""; }; - F2DBFD9C0D907FDDE3A8F2168792AA23 /* time_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = time_windows.cc; path = src/core/lib/gpr/time_windows.cc; sourceTree = ""; }; - F2DCA550A82D165F78F645482A91E00B /* xds_client_stats.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_client_stats.h; path = src/core/ext/xds/xds_client_stats.h; sourceTree = ""; }; - F2E245E1F2E2E131D7F20D5E71B55950 /* resize_uninitialized.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resize_uninitialized.h; path = absl/strings/internal/resize_uninitialized.h; sourceTree = ""; }; - F2F27E2C8D76E032A5D4645E115F9716 /* route_components.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = route_components.upb.h; path = "src/core/ext/upb-generated/envoy/config/route/v3/route_components.upb.h"; sourceTree = ""; }; - F2F9D0EFB3C90652AD11F0641A5EDF10 /* context_params.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = context_params.upbdefs.c; path = "src/core/ext/upbdefs-generated/xds/core/v3/context_params.upbdefs.c"; sourceTree = ""; }; - F30ABE59C7AA770983E2028F2D16DDBE /* path.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = path.upb.h; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/path.upb.h"; sourceTree = ""; }; - F3120CE4BC39237FD543B7217D3B6C90 /* zipkin.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = zipkin.upb.c; path = "src/core/ext/upb-generated/envoy/config/trace/v3/zipkin.upb.c"; sourceTree = ""; }; - F3379AEDD0A5256B9B8A5922BB0A28EA /* rpc_method.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = rpc_method.cc; path = src/cpp/common/rpc_method.cc; sourceTree = ""; }; - F33905D91F86FF1AD248AA7734E4AEB2 /* atm_windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = atm_windows.h; path = include/grpc/support/atm_windows.h; sourceTree = ""; }; - F34657DF2A6C31F7680C4F583734BD95 /* xray.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xray.upb.h; path = "src/core/ext/upb-generated/envoy/config/trace/v3/xray.upb.h"; sourceTree = ""; }; - F3798240EA43139BAD694A1F543601D2 /* firebase_auth_credentials_provider_apple.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = firebase_auth_credentials_provider_apple.mm; path = Firestore/core/src/credentials/firebase_auth_credentials_provider_apple.mm; sourceTree = ""; }; - F38B55B18112A110F5C871B133396BCE /* tls.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tls.upb.h; path = "src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/tls.upb.h"; sourceTree = ""; }; - F395F8D79F57649DFC66E0C99EDA7BF9 /* percent.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = percent.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/v3/percent.upbdefs.h"; sourceTree = ""; }; - F3B763DCF8CB08D84096801A966D1A68 /* extension.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = extension.cc; path = absl/strings/internal/str_format/extension.cc; sourceTree = ""; }; - F3BAFE02740CB2591D3364FECCD9E42C /* ev_poll_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ev_poll_posix.h; path = src/core/lib/iomgr/ev_poll_posix.h; sourceTree = ""; }; - F3C81E35007D1F699291632281EB5C27 /* ssl_session_cache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ssl_session_cache.h; path = src/core/tsi/ssl/session_cache/ssl_session_cache.h; sourceTree = ""; }; - F3C99539B1683DFA20FED6B1599CAB6A /* xds_server_builder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = xds_server_builder.h; path = include/grpcpp/xds_server_builder.h; sourceTree = ""; }; - F3CE4C8EEDD10439387B685A44EF01E6 /* reader.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = reader.cc; path = Firestore/core/src/nanopb/reader.cc; sourceTree = ""; }; - F4129A29BA2B97B2F876F1C716F738A7 /* ssl_versions.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = ssl_versions.cc; path = src/ssl/ssl_versions.cc; sourceTree = ""; }; - F43C7B897F97A2AE6F33AD408D4C0DC6 /* route.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = route.upb.c; path = "src/core/ext/upb-generated/envoy/config/route/v3/route.upb.c"; sourceTree = ""; }; - F43E0662FD05DAEC8548519B75777AB3 /* wrr_locality.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = wrr_locality.upb.c; path = "src/core/ext/upb-generated/envoy/extensions/load_balancing_policies/wrr_locality/v3/wrr_locality.upb.c"; sourceTree = ""; }; - F465A47AB5112A82C393049F0AA971BF /* ssl_session_cache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ssl_session_cache.h; path = src/core/tsi/ssl/session_cache/ssl_session_cache.h; sourceTree = ""; }; - F4982E1089DAC5BB9C250EBF45E03A77 /* stacktrace_emscripten-inl.inc */ = {isa = PBXFileReference; includeInIndex = 1; name = "stacktrace_emscripten-inl.inc"; path = "absl/debugging/internal/stacktrace_emscripten-inl.inc"; sourceTree = ""; }; - F4A63AF682DE80BF60A0D834A48A2708 /* FIRGitHubAuthCredential.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRGitHubAuthCredential.h; path = FirebaseAuth/Sources/AuthProvider/GitHub/FIRGitHubAuthCredential.h; sourceTree = ""; }; - F4AB0837D6154CD500F86D65966EC78D /* server_address.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_address.h; path = src/core/lib/resolver/server_address.h; sourceTree = ""; }; - F4ADFCC0C49CE3161F33A0EBF1C560AE /* http_client_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_client_filter.h; path = src/core/ext/filters/http/client/http_client_filter.h; sourceTree = ""; }; - F4B0D6D086A465BD30BA7402D497718E /* http_inputs.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_inputs.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/matcher/v3/http_inputs.upbdefs.h"; sourceTree = ""; }; - F4CE3853A857EFCBD5352B9F289DD353 /* httpcli_ssl_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = httpcli_ssl_credentials.h; path = src/core/lib/http/httpcli_ssl_credentials.h; sourceTree = ""; }; - F4FFEBF1F06860FB111A0CF5E60C7AD9 /* api_listener.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = api_listener.upb.c; path = "src/core/ext/upb-generated/envoy/config/listener/v3/api_listener.upb.c"; sourceTree = ""; }; - F5010EE71550A293F1893EC35721FECF /* FIRAuthTokenResult.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthTokenResult.m; path = FirebaseAuth/Sources/Auth/FIRAuthTokenResult.m; sourceTree = ""; }; - F512B566E0C061E1004C6ADE966570FA /* version_set.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = version_set.cc; path = db/version_set.cc; sourceTree = ""; }; - F520AAA3206BD5E98CAE1F4221BDC63A /* decode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = decode.h; path = third_party/upb/upb/internal/decode.h; sourceTree = ""; }; - F53700D14C8DA16328F48A96C39728F2 /* FirebaseCore.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseCore.debug.xcconfig; sourceTree = ""; }; - F543372023428E60A966F2DA14C499B3 /* handshaker.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = handshaker.upb.c; path = "src/core/ext/upb-generated/src/proto/grpc/gcp/handshaker.upb.c"; sourceTree = ""; }; - F5494FBC2F9372FB7EFF9C480BDBF6E9 /* ring_hash.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ring_hash.upb.h; path = "src/core/ext/upb-generated/envoy/extensions/load_balancing_policies/ring_hash/v3/ring_hash.upb.h"; sourceTree = ""; }; - F5711C4E8E7A5EAAAE1DFFBEF04E782C /* channel_stack_type.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = channel_stack_type.cc; path = src/core/lib/surface/channel_stack_type.cc; sourceTree = ""; }; - F57890FEFBD05AF3DE45A43ED38FDC1B /* log.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = log.cc; path = src/core/lib/gpr/log.cc; sourceTree = ""; }; - F582DAD6A25A9B67645A1AD78C1FC072 /* container.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = container.h; path = absl/algorithm/container.h; sourceTree = ""; }; - F586E7BCB6DDC821D5C298AB2E2F5D80 /* unscaledcycleclock.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = unscaledcycleclock.cc; path = absl/base/internal/unscaledcycleclock.cc; sourceTree = ""; }; - F5923D73CFEEDA3A2F0E6C0C0B7B7F6C /* trace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = trace.h; path = src/core/lib/debug/trace.h; sourceTree = ""; }; - F5B199BB2433946E3173CEF7694D5EFA /* client_callback.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = client_callback.h; path = include/grpcpp/impl/codegen/client_callback.h; sourceTree = ""; }; - F5BA11E1B777B08457840889070680E3 /* v3_prn.c */ = {isa = PBXFileReference; includeInIndex = 1; name = v3_prn.c; path = src/crypto/x509v3/v3_prn.c; sourceTree = ""; }; - F5BB523CA69AC1EACC5F432980DB8766 /* thread_pool_interface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = thread_pool_interface.h; path = src/cpp/server/thread_pool_interface.h; sourceTree = ""; }; - F5CB26C269447AD1FD0CC5F6254275D3 /* tls.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tls.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/tls.upbdefs.h"; sourceTree = ""; }; - F5D0834018E518C3AC6786409A07EDA9 /* wakeup_fd_eventfd.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = wakeup_fd_eventfd.cc; path = src/core/lib/iomgr/wakeup_fd_eventfd.cc; sourceTree = ""; }; - F5D6F7A3EC34FE8878B6884226D55150 /* retry_filter.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = retry_filter.cc; path = src/core/ext/filters/client_channel/retry_filter.cc; sourceTree = ""; }; - F5EFF166F07E65A3104A6DFB4B745E14 /* map.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = map.h; path = src/core/lib/promise/map.h; sourceTree = ""; }; - F60EA2893EE7CECD46335B2320B8D9A7 /* fault_injection_filter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fault_injection_filter.h; path = src/core/ext/filters/fault_injection/fault_injection_filter.h; sourceTree = ""; }; - F61F4DF6EA38468A07001EA30ABD8AC7 /* ratelimit_strategy.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ratelimit_strategy.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/v3/ratelimit_strategy.upbdefs.h"; sourceTree = ""; }; - F633EB092FB1130E77B7D06D7F8C5E9F /* orca.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = orca.upb.h; path = "src/core/ext/upb-generated/xds/service/orca/v3/orca.upb.h"; sourceTree = ""; }; - F66CD89E0828D169F5EA29EF15313ACD /* metrics_service.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = metrics_service.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/metrics/v3/metrics_service.upbdefs.c"; sourceTree = ""; }; - F69772E8C3385C117EE1CC68367EE646 /* FIRAggregateSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAggregateSource.h; path = Firestore/Source/Public/FirebaseFirestore/FIRAggregateSource.h; sourceTree = ""; }; - F69932F6D1F2F4D3ABFBDE3B9821360D /* protocol.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = protocol.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/protocol.upbdefs.h"; sourceTree = ""; }; - F69F0560872FDB1AC4E6D0D2CC113940 /* bin_decoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bin_decoder.h; path = src/core/ext/transport/chttp2/transport/bin_decoder.h; sourceTree = ""; }; - F6A138CB1E3B37DCCC67A02FC54DFD8D /* zipkin.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = zipkin.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/trace/v3/zipkin.upbdefs.c"; sourceTree = ""; }; - F6C1E8823AA215DC20395E2F03891E75 /* tcp_server.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = tcp_server.cc; path = src/core/lib/iomgr/tcp_server.cc; sourceTree = ""; }; - F6C2630C568BADFFB7F5E9B9BF4CF5B6 /* flat_hash_set.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = flat_hash_set.h; path = absl/container/flat_hash_set.h; sourceTree = ""; }; - F6DA966579875852B5C78CB77EFC387D /* FIRGameCenterAuthCredential.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRGameCenterAuthCredential.h; path = FirebaseAuth/Sources/AuthProvider/GameCenter/FIRGameCenterAuthCredential.h; sourceTree = ""; }; - F6DDCEF3C10E8170FD2184A99774326D /* FIRDeleteAccountResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDeleteAccountResponse.h; path = FirebaseAuth/Sources/Backend/RPC/FIRDeleteAccountResponse.h; sourceTree = ""; }; - F6DE147F8C50354BA2D474E0720E7528 /* http.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = http.upb.c; path = "src/core/ext/upb-generated/envoy/type/v3/http.upb.c"; sourceTree = ""; }; - F6F312F259E87EC85B91F7A939B1B468 /* ref_counted_ptr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ref_counted_ptr.h; path = src/core/lib/gprpp/ref_counted_ptr.h; sourceTree = ""; }; - F70464B62478D1860C6AE5575A233580 /* memory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = memory.h; path = src/core/lib/gprpp/memory.h; sourceTree = ""; }; - F70D4DDD4E03477375B2623017F8D993 /* url_external_account_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = url_external_account_credentials.h; path = src/core/lib/security/credentials/external/url_external_account_credentials.h; sourceTree = ""; }; - F71EDF2DA4FFB0076919B09D78AA80CC /* GULApplication.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULApplication.h; path = GoogleUtilities/AppDelegateSwizzler/Public/GoogleUtilities/GULApplication.h; sourceTree = ""; }; - F721AC5581D35C86FFD072B5144336D1 /* stats.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stats.upb.h; path = "src/core/ext/upb-generated/envoy/config/metrics/v3/stats.upb.h"; sourceTree = ""; }; - F732DEB26E19EF8BEF2FF13131FD2338 /* env.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = env.h; path = include/leveldb/env.h; sourceTree = ""; }; - F73E1D78FCC6D3C7F5A3AD1F0D762D54 /* thread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = thread.h; path = src/include/openssl/thread.h; sourceTree = ""; }; - F76EAC263C6C4F2DE4A954284A60BAE1 /* cord_rep_crc.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = cord_rep_crc.cc; path = absl/strings/internal/cord_rep_crc.cc; sourceTree = ""; }; - F771AC4BCDB830BA7E421916C12E2F9E /* migrate.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = migrate.upbdefs.c; path = "src/core/ext/upbdefs-generated/xds/annotations/v3/migrate.upbdefs.c"; sourceTree = ""; }; - F794199B9FF2C10FD9B8F1272A24333A /* dbformat.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = dbformat.cc; path = db/dbformat.cc; sourceTree = ""; }; - F799C24ABCF793E28DFB7E5609241E05 /* e_aesgcmsiv.c */ = {isa = PBXFileReference; includeInIndex = 1; name = e_aesgcmsiv.c; path = src/crypto/cipher_extra/e_aesgcmsiv.c; sourceTree = ""; }; - F7CA91DFDB014D10CD1EB422B269BF3B /* conf_def.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = conf_def.h; path = src/crypto/conf/conf_def.h; sourceTree = ""; }; - F7D547DD535F6DEB05AEBCDC9899AF48 /* checker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = checker.h; path = absl/strings/internal/str_format/checker.h; sourceTree = ""; }; - F7D7BC2BB25A853BE16F349232A17FAF /* delete_mutation.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = delete_mutation.cc; path = Firestore/core/src/model/delete_mutation.cc; sourceTree = ""; }; - F7E90EBDCB985F811CEC408095BA0528 /* frame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = frame.h; path = src/core/ext/transport/chttp2/transport/frame.h; sourceTree = ""; }; - F7F30151F6076E89C98CFE8A78B7195E /* skywalking.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = skywalking.upb.c; path = "src/core/ext/upb-generated/envoy/config/trace/v3/skywalking.upb.c"; sourceTree = ""; }; - F7F5AE73BF6E2A721496093579E84F54 /* GULURLSessionDataResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULURLSessionDataResponse.h; path = GoogleUtilities/Environment/Public/GoogleUtilities/GULURLSessionDataResponse.h; sourceTree = ""; }; - F81F81178673EF57253255E5164BF4AB /* filter_block.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = filter_block.cc; path = table/filter_block.cc; sourceTree = ""; }; - F8271F010FD7CBF18956D1BA9754E960 /* create_auth_context.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = create_auth_context.h; path = include/grpcpp/impl/codegen/create_auth_context.h; sourceTree = ""; }; - F8281535998389FE890305C159FEF1B3 /* params.c */ = {isa = PBXFileReference; includeInIndex = 1; name = params.c; path = src/crypto/dh_extra/params.c; sourceTree = ""; }; - F82E6C6994D8E3235EA1C0577749B899 /* sync_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = sync_windows.cc; path = src/core/lib/gpr/sync_windows.cc; sourceTree = ""; }; - F839E2A91CE80382B12B0F06E72096D4 /* file.c */ = {isa = PBXFileReference; includeInIndex = 1; name = file.c; path = src/crypto/bio/file.c; sourceTree = ""; }; - F83BB5DD7DFD588350A0E1174D2F2C1C /* backoff.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = backoff.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/backoff.upbdefs.h"; sourceTree = ""; }; - F85DE9BF32D8BA891F129029BC36039C /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/core/ext/transport/chttp2/transport/internal.h; sourceTree = ""; }; - F85FE6920780DD093E151110B93BC095 /* atomic_hook.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = atomic_hook.h; path = absl/base/internal/atomic_hook.h; sourceTree = ""; }; - F86620DAD0C1B9617E38E9E0AEDA349E /* security.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = security.upbdefs.c; path = "src/core/ext/upbdefs-generated/udpa/annotations/security.upbdefs.c"; sourceTree = ""; }; - F87A626222A8D9B26448A9FEB04FD0DF /* Pods-iosApp-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-iosApp-umbrella.h"; sourceTree = ""; }; - F88682CD8145C299F6601426DFD34054 /* gRPC-C++.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "gRPC-C++.modulemap"; sourceTree = ""; }; - F89B1E7217556C8058C1B1492B6DD6D1 /* evaluate_args.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = evaluate_args.h; path = src/core/lib/security/authorization/evaluate_args.h; sourceTree = ""; }; - F8B2BDBD40F3FFCE489C2369D566F3BF /* refcount_c11.c */ = {isa = PBXFileReference; includeInIndex = 1; name = refcount_c11.c; path = src/crypto/refcount_c11.c; sourceTree = ""; }; - F8E99FF62420723DE95F7778C21149FA /* http2_settings.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http2_settings.h; path = src/core/ext/transport/chttp2/transport/http2_settings.h; sourceTree = ""; }; - F8F894EFEB1D0E48A20E955D5EA00F61 /* json_token.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = json_token.cc; path = src/core/lib/security/credentials/jwt/json_token.cc; sourceTree = ""; }; - F8FCF19FB737BB4F5D7E00C9FA1F0112 /* FIROptions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIROptions.m; path = FirebaseCore/Sources/FIROptions.m; sourceTree = ""; }; - F8FD808A43A72CC45449BB2B197A1126 /* validate_metadata.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = validate_metadata.cc; path = src/core/lib/surface/validate_metadata.cc; sourceTree = ""; }; - F8FEC4047D05C7FCD280CF5F87630BC6 /* time_zone_impl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = time_zone_impl.h; path = absl/time/internal/cctz/src/time_zone_impl.h; sourceTree = ""; }; - F91A23F7AFBD4E34A0FF7C5F4F1D501F /* security.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = security.upb.c; path = "src/core/ext/upb-generated/xds/annotations/v3/security.upb.c"; sourceTree = ""; }; - F91B93F17DD3F4F3DB3813463EC4E57A /* pollset_windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pollset_windows.h; path = src/core/lib/iomgr/pollset_windows.h; sourceTree = ""; }; - F920C71C4B5B0690282543174B195718 /* exec_ctx.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = exec_ctx.cc; path = src/core/lib/iomgr/exec_ctx.cc; sourceTree = ""; }; - F9210CF4B78FD4987E644793DC7BBBE3 /* task.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = task.cc; path = Firestore/core/src/util/task.cc; sourceTree = ""; }; - F93B9CB6A5F893B9594F2CCC52447552 /* FIRAuthUserDefaults.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAuthUserDefaults.h; path = FirebaseAuth/Sources/Storage/FIRAuthUserDefaults.h; sourceTree = ""; }; - F943E1DB6B4DE81D36CBE1C3742D6062 /* digestsign.c */ = {isa = PBXFileReference; includeInIndex = 1; name = digestsign.c; path = src/crypto/evp/digestsign.c; sourceTree = ""; }; - F9452A26E153ABAB5437C137DB734873 /* mutation_batch_result.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = mutation_batch_result.cc; path = Firestore/core/src/model/mutation_batch_result.cc; sourceTree = ""; }; - F97E15FF7274C52D265DE0B6B11F20DC /* alts_tsi_utils.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = alts_tsi_utils.cc; path = src/core/tsi/alts/handshaker/alts_tsi_utils.cc; sourceTree = ""; }; - F98FABE335D60E76BC9CF8089E5A4D0C /* GTMSessionFetcherLogging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GTMSessionFetcherLogging.h; path = Sources/Core/Public/GTMSessionFetcher/GTMSessionFetcherLogging.h; sourceTree = ""; }; - F99A33B60C6433761912B85D85A09CF2 /* tcp_windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tcp_windows.h; path = src/core/lib/iomgr/tcp_windows.h; sourceTree = ""; }; - F9AF8D57E2EBDD88C22CAF0527AE5DEA /* utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = utils.h; path = src/core/lib/event_engine/utils.h; sourceTree = ""; }; - F9BA09B6927489C356F0D132675D480C /* GoogleUtilities.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = GoogleUtilities.modulemap; sourceTree = ""; }; - F9D007A814CD8A3C7793C7A04BE9FCBE /* FIROptionsInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIROptionsInternal.h; path = FirebaseCore/Extension/FIROptionsInternal.h; sourceTree = ""; }; - F9D1FAC6F3229F0B1BBDB12AFBD1AB80 /* address.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = address.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/core/v3/address.upbdefs.c"; sourceTree = ""; }; - F9D573A6E630D2491A3142ECAC60CAA8 /* pretty_printing.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = pretty_printing.cc; path = Firestore/core/src/nanopb/pretty_printing.cc; sourceTree = ""; }; - F9E30025564CB9BE63DE329664C1B3A3 /* p_ec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = p_ec.c; path = src/crypto/evp/p_ec.c; sourceTree = ""; }; - F9F21B0F979AA45826948010F270F3D9 /* internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = internal.h; path = src/crypto/fipsmodule/cipher/internal.h; sourceTree = ""; }; - FA0A9A3B40B9AA5025E075B36B7BBA5A /* FirebaseAuth.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseAuth.release.xcconfig; sourceTree = ""; }; - FA10BD16EADA43121A8E2986E80C97D9 /* env_posix.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = env_posix.cc; path = src/core/lib/gprpp/env_posix.cc; sourceTree = ""; }; - FA273065DD3BB0E3B3891CE0BFD1BDA4 /* prog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = prog.h; path = third_party/re2/re2/prog.h; sourceTree = ""; }; - FA2B94669A65E25D50A5496932688F75 /* tcp_connect_handshaker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tcp_connect_handshaker.h; path = src/core/lib/transport/tcp_connect_handshaker.h; sourceTree = ""; }; - FA30B7E3AEA2E3020F37A3C84D2B3D04 /* ec_key.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ec_key.h; path = src/include/openssl/ec_key.h; sourceTree = ""; }; - FA4176136B81AAF1733F149A4BE6557C /* string_ref.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = string_ref.h; path = include/grpcpp/support/string_ref.h; sourceTree = ""; }; - FA4A130BD4C04098FE57D03A2216FC10 /* status_code_enum.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = status_code_enum.h; path = include/grpcpp/impl/codegen/status_code_enum.h; sourceTree = ""; }; - FA4EB41B6297FEE97DD0036187524930 /* filter.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = filter.upb.h; path = "src/core/ext/upb-generated/envoy/config/cluster/v3/filter.upb.h"; sourceTree = ""; }; - FA52D2E5477461E22C25E7B4889C26CE /* json.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = json.h; path = src/core/lib/json/json.h; sourceTree = ""; }; - FA63B277E7E03FF01AAF88D44D696294 /* wire_reader_impl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = wire_reader_impl.h; path = src/core/ext/transport/binder/wire_format/wire_reader_impl.h; sourceTree = ""; }; - FA68B73040DF565D7EB1F0E6E7858688 /* randen.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = randen.h; path = absl/random/internal/randen.h; sourceTree = ""; }; - FA710C181C8CD7CC6E931CF73955AE3C /* cord_rep_btree_navigator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cord_rep_btree_navigator.h; path = absl/strings/internal/cord_rep_btree_navigator.h; sourceTree = ""; }; - FA76FB9B5C3C5655AF8BFA2FD404502C /* barrier.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = barrier.cc; path = absl/synchronization/barrier.cc; sourceTree = ""; }; - FA7CA1669C3F392E7F6749EB19AC4389 /* periodic_update.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = periodic_update.h; path = src/core/lib/resource_quota/periodic_update.h; sourceTree = ""; }; - FA8864B2E99CD5E757220C72A4F257FF /* x509cset.c */ = {isa = PBXFileReference; includeInIndex = 1; name = x509cset.c; path = src/crypto/x509/x509cset.c; sourceTree = ""; }; - FA8E0DF24CF84E28B0CBEE8D050321D3 /* opentelemetry.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = opentelemetry.upb.c; path = "src/core/ext/upb-generated/envoy/config/trace/v3/opentelemetry.upb.c"; sourceTree = ""; }; - FA96BDCF908E820887FAD3F327AA218E /* FIRMultiFactorResolver.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRMultiFactorResolver.m; path = FirebaseAuth/Sources/MultiFactor/FIRMultiFactorResolver.m; sourceTree = ""; }; - FAA6658398256BBDF203D3624299AAFE /* parsing.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = parsing.cc; path = src/core/ext/transport/chttp2/transport/parsing.cc; sourceTree = ""; }; - FAA87742812B17126B4DAB52086E00B5 /* FIRConfigurationInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRConfigurationInternal.h; path = FirebaseCore/Sources/FIRConfigurationInternal.h; sourceTree = ""; }; - FAB1C3A42E8EADD46AC7451600CD2921 /* BoringSSL-GRPC-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "BoringSSL-GRPC-dummy.m"; sourceTree = ""; }; - FABD292CA2CA606D8218B3D8C9894EB0 /* a_bitstr.c */ = {isa = PBXFileReference; includeInIndex = 1; name = a_bitstr.c; path = src/crypto/asn1/a_bitstr.c; sourceTree = ""; }; - FACBC4367B030FE5B391590A0E6B9346 /* ctr.c */ = {isa = PBXFileReference; includeInIndex = 1; name = ctr.c; path = src/crypto/fipsmodule/modes/ctr.c; sourceTree = ""; }; - FAD8CFCFA1937FEBDD177FBE797C2768 /* local_transport_security.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = local_transport_security.cc; path = src/core/tsi/local_transport_security.cc; sourceTree = ""; }; - FADBA76EF5B7A55ECDC0528EC9587921 /* decode_fast.c */ = {isa = PBXFileReference; includeInIndex = 1; name = decode_fast.c; path = third_party/upb/upb/decode_fast.c; sourceTree = ""; }; - FAF7E5DB0839CFE9EC781F97C8AFF047 /* handshaker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = handshaker.h; path = src/core/lib/transport/handshaker.h; sourceTree = ""; }; - FB0469101B7000CE00058B90BB4AAB3B /* bdp_estimator.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = bdp_estimator.cc; path = src/core/lib/transport/bdp_estimator.cc; sourceTree = ""; }; + BCAED803D074E2E9C3B1327F049C8C2A /* Pods-iosApp-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-iosApp-Info.plist"; sourceTree = ""; }; FB1BF8BE937671FB0F330C2D28634477 /* shared.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = shared.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - FB56314023FEFE8D7BEB0975EF14AEED /* upb_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = upb_utils.h; path = src/core/ext/xds/upb_utils.h; sourceTree = ""; }; - FB5EB14A6CD26376EEA1A4BF881BEFBE /* FirebaseCore-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "FirebaseCore-Info.plist"; sourceTree = ""; }; - FB6C7492955F5B9D7E1C21ACB1F7B4AE /* python_util.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = python_util.h; path = src/core/lib/iomgr/python_util.h; sourceTree = ""; }; - FB7BCBDAD672580F386A1B6B8EBBA620 /* retry_service_config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = retry_service_config.h; path = src/core/ext/filters/client_channel/retry_service_config.h; sourceTree = ""; }; - FB9C7AFA43EB81823A7B6CD35707C87F /* proto_sizer.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = proto_sizer.cc; path = Firestore/core/src/local/proto_sizer.cc; sourceTree = ""; }; - FBA213433EBA04FA3ECC6FC3FB0908FD /* curve25519_tables.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = curve25519_tables.h; path = src/crypto/curve25519/curve25519_tables.h; sourceTree = ""; }; - FBAACB464419902BCFC817EDDD4869A2 /* handshaker.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = handshaker.upb.h; path = "src/core/ext/upb-generated/src/proto/grpc/gcp/handshaker.upb.h"; sourceTree = ""; }; - FBAF17A98DBB7476AC3961EBE9E2CBEF /* resolver_factory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = resolver_factory.h; path = src/core/lib/resolver/resolver_factory.h; sourceTree = ""; }; - FBB39E85D4CC09AD338E735C86D59F95 /* method_handler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = method_handler.h; path = include/grpcpp/support/method_handler.h; sourceTree = ""; }; - FBC1A1512CB4E182260321654AE71141 /* server_callback_handlers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = server_callback_handlers.h; path = include/grpcpp/impl/codegen/server_callback_handlers.h; sourceTree = ""; }; - FBD208DF15D768B355FF1278906BEE54 /* numbers.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = numbers.cc; path = absl/strings/numbers.cc; sourceTree = ""; }; - FBE690A1D4965A7AA47C9F74B6B3E40F /* aws_request_signer.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = aws_request_signer.cc; path = src/core/lib/security/credentials/external/aws_request_signer.cc; sourceTree = ""; }; - FC288893084AE5D080A397A27FA423FF /* skywalking.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = skywalking.upb.h; path = "src/core/ext/upb-generated/envoy/config/trace/v3/skywalking.upb.h"; sourceTree = ""; }; - FC3C2890BCDB5519C0FDB4C3BC83DC67 /* randen_engine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = randen_engine.h; path = absl/random/internal/randen_engine.h; sourceTree = ""; }; - FC479DAA79F8EAF2E3AD7A2FC04AB7E3 /* http_status.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = http_status.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/type/v3/http_status.upbdefs.c"; sourceTree = ""; }; - FC4A72E07C612940809EDE591D1C940E /* sync_abseil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sync_abseil.h; path = include/grpc/support/sync_abseil.h; sourceTree = ""; }; - FC4CDF69ABA1641838F9C784D8FDB19A /* re2.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = re2.h; path = third_party/re2/re2/re2.h; sourceTree = ""; }; - FC62437D59875DF3D4930A076152D69B /* stacktrace_riscv-inl.inc */ = {isa = PBXFileReference; includeInIndex = 1; name = "stacktrace_riscv-inl.inc"; path = "absl/debugging/internal/stacktrace_riscv-inl.inc"; sourceTree = ""; }; - FC7148873ECEA0E0D785F882A4673962 /* FIRMultiFactorResolver+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FIRMultiFactorResolver+Internal.h"; path = "FirebaseAuth/Sources/MultiFactor/FIRMultiFactorResolver+Internal.h"; sourceTree = ""; }; - FC75457071D2B686EDB22D32C0E6E6E1 /* percent.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = percent.upb.c; path = "src/core/ext/upb-generated/envoy/type/v3/percent.upb.c"; sourceTree = ""; }; - FC77134EB051265501BF65EC2F3BE4A4 /* xds_credentials.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = xds_credentials.cc; path = src/cpp/client/xds_credentials.cc; sourceTree = ""; }; - FC8AA6D2A84ABF0D286C16E664E6303E /* proxy_mapper_registry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = proxy_mapper_registry.h; path = src/core/lib/handshaker/proxy_mapper_registry.h; sourceTree = ""; }; - FC8F8EB3D84173C4E4FA5539C7818E09 /* pcre.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = pcre.cc; path = third_party/re2/util/pcre.cc; sourceTree = ""; }; - FC9EDC0D420186F1EB2BC36C29E2548B /* port_example.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = port_example.h; path = port/port_example.h; sourceTree = ""; }; - FCD770D6D7132322DEC042E74C7367EC /* a_print.c */ = {isa = PBXFileReference; includeInIndex = 1; name = a_print.c; path = src/crypto/asn1/a_print.c; sourceTree = ""; }; - FCDB429977FBFE702FBAEEBDBC12BF65 /* FIRLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRLogger.m; path = FirebaseCore/Sources/FIRLogger.m; sourceTree = ""; }; - FCE3BBBBF2008B1FFAEE2EF21D1D4BCE /* no_destruct.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = no_destruct.h; path = src/core/lib/gprpp/no_destruct.h; sourceTree = ""; }; - FD0C11A97EC61A94C7FD02F030E88AAF /* fast_type_id.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fast_type_id.h; path = absl/base/internal/fast_type_id.h; sourceTree = ""; }; - FD0F8ABA6CBB494DAFD5088EEBE221CE /* varint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = varint.h; path = src/core/ext/transport/chttp2/transport/varint.h; sourceTree = ""; }; - FD25CA17182899DC1BC62F676BC68B55 /* strutil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = strutil.h; path = third_party/re2/util/strutil.h; sourceTree = ""; }; - FD53BDAA60C11E139052A737A66DB87D /* sensitive.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sensitive.upbdefs.h; path = "src/core/ext/upbdefs-generated/udpa/annotations/sensitive.upbdefs.h"; sourceTree = ""; }; - FD5C926B169100E43975F149C5E2D00F /* trace.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = trace.cc; path = src/core/lib/event_engine/trace.cc; sourceTree = ""; }; - FD614FF5A204C9A46304C9B2FCD76F4F /* sync_abseil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sync_abseil.h; path = include/grpc/impl/codegen/sync_abseil.h; sourceTree = ""; }; - FD661D654B8B93715ECFDF8D2117EC7F /* hpack_parser_table.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = hpack_parser_table.cc; path = src/core/ext/transport/chttp2/transport/hpack_parser_table.cc; sourceTree = ""; }; - FD746BFD80A5E85B5D0273E5A13A3AC3 /* versioning.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = versioning.upb.h; path = "src/core/ext/upb-generated/xds/annotations/v3/versioning.upb.h"; sourceTree = ""; }; - FD76DB8B1C84D0CA7A8F2C22FF9CFAAD /* regex.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = regex.upb.h; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/regex.upb.h"; sourceTree = ""; }; - FD8D010B341CD186B2702FB0FE810381 /* struct.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = struct.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/matcher/v3/struct.upbdefs.h"; sourceTree = ""; }; - FDB172C67017D2DC14A30DAD69BA578C /* FIRMultiFactorInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRMultiFactorInfo.m; path = FirebaseAuth/Sources/MultiFactor/FIRMultiFactorInfo.m; sourceTree = ""; }; - FDC357D9B2DA0DC945D813E7985E2DBB /* tap.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tap.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/admin/v3/tap.upbdefs.h"; sourceTree = ""; }; - FDE0DE004BED00EA46222108331A7C6F /* FIRFirebaseUserAgent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRFirebaseUserAgent.m; path = FirebaseCore/Sources/FIRFirebaseUserAgent.m; sourceTree = ""; }; - FDF05055FAF2AEF32BF075AEAFF1F223 /* fork.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fork.h; path = include/grpc/fork.h; sourceTree = ""; }; - FE23A05FF59693CF8924948AFB73B907 /* regex.upb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = regex.upb.h; path = "src/core/ext/upb-generated/envoy/type/matcher/v3/regex.upb.h"; sourceTree = ""; }; - FE3B1861CF82858CA53393ACEF376B55 /* oauth2_credentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = oauth2_credentials.h; path = src/core/lib/security/credentials/oauth2/oauth2_credentials.h; sourceTree = ""; }; - FE3BEE6A5DD464109EDF19D8D6EBC1C2 /* leveldb_index_manager.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = leveldb_index_manager.cc; path = Firestore/core/src/local/leveldb_index_manager.cc; sourceTree = ""; }; - FE3CFA78AF13AB77CD8C1CAF9DBDA77F /* path_transformation.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = path_transformation.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/type/http/v3/path_transformation.upbdefs.h"; sourceTree = ""; }; - FE44FB9BA1D648896D08652CED8AF3C3 /* FIRAuthErrorUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthErrorUtils.m; path = FirebaseAuth/Sources/Utilities/FIRAuthErrorUtils.m; sourceTree = ""; }; - FE59ED425389FDDB9FFD7FB5046E6A43 /* httpbody.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = httpbody.upb.c; path = "src/core/ext/upb-generated/google/api/httpbody.upb.c"; sourceTree = ""; }; - FE5BCFBC5B737B214D858E84E1EA24AC /* listener_components.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = listener_components.upbdefs.c; path = "src/core/ext/upbdefs-generated/envoy/config/listener/v3/listener_components.upbdefs.c"; sourceTree = ""; }; - FE604CAC0622697B1B0F7F5D17E9E9B5 /* slice.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = slice.h; path = include/grpc/slice.h; sourceTree = ""; }; - FE9601343DBA66A3E6452AE34A8E9C22 /* utf8.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = utf8.h; path = absl/strings/internal/utf8.h; sourceTree = ""; }; - FE9D702E233466F09D9CD2490AE6DCD7 /* json_token.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = json_token.h; path = src/core/lib/security/credentials/jwt/json_token.h; sourceTree = ""; }; - FE9E715BFAA415CF6F36B3833BA13EE5 /* FirebaseAuth.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseAuth.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FirebaseAuth.h; sourceTree = ""; }; - FEA140D5E29CF06E1D2173B7EE05AC5C /* FIRAuthDataResult.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAuthDataResult.m; path = FirebaseAuth/Sources/Auth/FIRAuthDataResult.m; sourceTree = ""; }; - FEB52A8FFB592D31FA115844F19DC186 /* gRPC-C++-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "gRPC-C++-prefix.pch"; sourceTree = ""; }; - FEC2B325C6194885028E0EED01110199 /* config_selector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = config_selector.h; path = src/core/ext/filters/client_channel/config_selector.h; sourceTree = ""; }; - FEC779D2587471697D299304F7A18E0D /* a_enum.c */ = {isa = PBXFileReference; includeInIndex = 1; name = a_enum.c; path = src/crypto/asn1/a_enum.c; sourceTree = ""; }; - FECFA730A80621E7DB12C564525649FD /* extension.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = extension.upbdefs.h; path = "src/core/ext/upbdefs-generated/xds/core/v3/extension.upbdefs.h"; sourceTree = ""; }; - FF057E39A828E53FBE6D699AE0CA0E6C /* route_components.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = route_components.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/route/v3/route_components.upbdefs.h"; sourceTree = ""; }; - FF20D92329942D51EC5773CB25AD6BE1 /* FIRComponentType.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRComponentType.m; path = FirebaseCore/Sources/FIRComponentType.m; sourceTree = ""; }; - FF2375FF4965F6805E7C46ECC07C000A /* empty.upb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = empty.upb.c; path = "src/core/ext/upb-generated/google/protobuf/empty.upb.c"; sourceTree = ""; }; - FF32776993609E75769E4048CFB4B619 /* alts_tsi_handshaker.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = alts_tsi_handshaker.cc; path = src/core/tsi/alts/handshaker/alts_tsi_handshaker.cc; sourceTree = ""; }; - FF37696428EE1051ADDBBD9AE3B8FEA5 /* grpc_security.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_security.h; path = include/grpc/grpc_security.h; sourceTree = ""; }; - FF5E4D8426F06CB5231ACFB708B98ED0 /* p_rsa_asn1.c */ = {isa = PBXFileReference; includeInIndex = 1; name = p_rsa_asn1.c; path = src/crypto/evp/p_rsa_asn1.c; sourceTree = ""; }; - FF7572C0D633D81B8EB3959C7489B056 /* pollset_set_windows.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = pollset_set_windows.cc; path = src/core/lib/iomgr/pollset_set_windows.cc; sourceTree = ""; }; - FF7EC7567DD1202920B1957CB8672639 /* GULNetworkMessageCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetworkMessageCode.h; path = GoogleUtilities/Network/Public/GoogleUtilities/GULNetworkMessageCode.h; sourceTree = ""; }; - FF81B41418853E7F40AD117358C26575 /* any.nanopb.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = any.nanopb.cc; path = Firestore/Protos/nanopb/google/protobuf/any.nanopb.cc; sourceTree = ""; }; - FF93AD3BFFDED6911242EEDEFC0EFA80 /* grpc_library.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = grpc_library.h; path = include/grpcpp/impl/grpc_library.h; sourceTree = ""; }; - FF975FBCC0880A23B459EB732EC2F7DA /* tls_method.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = tls_method.cc; path = src/ssl/tls_method.cc; sourceTree = ""; }; - FFA74503C227AB0CFA15848DB9A1DC8E /* FIRUser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRUser.h; path = FirebaseAuth/Sources/Public/FirebaseAuth/FIRUser.h; sourceTree = ""; }; - FFAD1CE099250D9211ABB625047FE804 /* resource_locator.upbdefs.c */ = {isa = PBXFileReference; includeInIndex = 1; name = resource_locator.upbdefs.c; path = "src/core/ext/upbdefs-generated/xds/core/v3/resource_locator.upbdefs.c"; sourceTree = ""; }; - FFAFC8C2618D263E14545259858C17E1 /* writer.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = writer.cc; path = Firestore/core/src/nanopb/writer.cc; sourceTree = ""; }; - FFBCD6E9A0E6F1DE65424AF3D0C8F820 /* mutex.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = mutex.cc; path = absl/synchronization/mutex.cc; sourceTree = ""; }; - FFC439467DAD329D39932AEBD15B921D /* wakeup_fd_posix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = wakeup_fd_posix.h; path = src/core/lib/iomgr/wakeup_fd_posix.h; sourceTree = ""; }; - FFF0C979AF8E5F953479DE4EFA0C60E6 /* resolver_result_parsing.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = resolver_result_parsing.cc; path = src/core/ext/filters/client_channel/resolver_result_parsing.cc; sourceTree = ""; }; - FFF17CF68F1A93CBF429E4A09A7D2563 /* felem.c */ = {isa = PBXFileReference; includeInIndex = 1; name = felem.c; path = src/crypto/fipsmodule/ec/felem.c; sourceTree = ""; }; - FFF5B3524AE72B6D9F6F447FA0DDDFA5 /* binder_resolver.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = binder_resolver.cc; path = src/core/ext/filters/client_channel/resolver/binder/binder_resolver.cc; sourceTree = ""; }; - FFF8FAD09582E2B875E0C5C50797144F /* circuit_breaker.upbdefs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = circuit_breaker.upbdefs.h; path = "src/core/ext/upbdefs-generated/envoy/config/cluster/v3/circuit_breaker.upbdefs.h"; sourceTree = ""; }; /* End PBXFileReference section */ /* Begin PBXFrameworksBuildPhase section */ - 19F0B8ECBFB426C886DB989CF62A0663 /* Frameworks */ = { + CC3CD5459C4A5476C5A93268587E63E7 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - C2EB3DF5419F10CD26A26B3AE33CE418 /* Foundation.framework in Frameworks */, - C6D35B15A99DDB5A828A03344BD5F3F5 /* SafariServices.framework in Frameworks */, - 6B75725028273F57CF28B1E784A68CE8 /* Security.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 2E14E8C61E7402BFFDD6ED5A824AEB80 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - B07A7E64B559FE0B9111D29FCB23A430 /* Foundation.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4592E7FE13DF65E0D0AA7C29CE8C5ECC /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - 802F5156ACDD3C63A33A744CF4F7E9F7 /* Foundation.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 47C5C3032B6CB7EDD64B6C04C1B43830 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 551AB43DF8C94A62E274CACBD710BB8A /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - D5DBBD0F8873C8B1ECF47788FE2E1D06 /* Foundation.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 57CE7687515F43D42E9717B66A93A8F9 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - EED5A87967D01F3707135B40D592D898 /* Foundation.framework in Frameworks */, - A1CF3F4C91DA984D58E9BD5EA397DE4B /* SystemConfiguration.framework in Frameworks */, - EA6DBD8DBBF897220BEE066D9C8550CD /* UIKit.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 8CEF9060847BB07629EA3D98AA7DCEA3 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - 9DDDC1EFEE831A3BC5BCBEDE6E91D912 /* Foundation.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 8ECAE4F67F47703EBA501A6CD2A4AA40 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - 0CA1413E405A8A23B3F08C0BF3D279AB /* Foundation.framework in Frameworks */, - 4C581BBE5B22C19BB1E6F558535AE63A /* Security.framework in Frameworks */, - 6C2B2DF3BB6E7E01992A27B68887345C /* SystemConfiguration.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 97A5E0931CF28044BF387E32141F5EED /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - BF4D2022C88A06046386A8CA2E4CD894 /* Foundation.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 9D48F065A96BCCF57442C9943C078366 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - 3C5CAEBB17D94E75E7B8199E737C3119 /* Foundation.framework in Frameworks */, - 37309D4890821C702D1FFE6BDCEBBF6C /* UIKit.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AFAD1CC56D3F3812899DC7AD5C73BDF8 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - FFD984FC5E1AED9A8F47CB57CBC4CDF8 /* Foundation.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - B064A993DF20C140045D82715AB39AE6 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - 36A6C545D579769AF3B1B5D2E37BB976 /* Foundation.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - BC2982E1E41FBF5DA04AD52C766AF739 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - 61851424DA7702FD441271AC6C6D0521 /* Foundation.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - C9C3CA168DC2DCDB8E929B78CA72876A /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - 83EC9CAB3CF6129A1C7DCF3AEC979955 /* Foundation.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - CC959B2A089551A04E85C4CA8431687B /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - 56430DD72155CA934C748E02E66C41D3 /* Foundation.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - D3CDB34DA0EE275C148BF3240C4276BB /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - 692B87C3D9C4AD17EA2B4C6662FC68F3 /* Foundation.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - D6DBE9565D704BD00A0EFDC87AB11870 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - 77DDBD0A8828512298EEE9339EFF4C7D /* Foundation.framework in Frameworks */, - 47C8530FC39ED736C1F292DC53AE3FE0 /* Security.framework in Frameworks */, + 648F16425FEF89525AE0325F5A984B86 /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; /* End PBXFrameworksBuildPhase section */ /* Begin PBXGroup section */ - 01EC9029442F81022F33F4D86B087E09 /* compressed_tuple */ = { + 1F86AA6785DF34AFD5A71790761717DE /* Products */ = { isa = PBXGroup; children = ( - C25CCB73644B884EEB1B796F9FAC6DAD /* compressed_tuple.h */, + B097DD7534E741D5C41838011D755842 /* Pods-iosApp */, ); - name = compressed_tuple; + name = Products; sourceTree = ""; }; - 034DC4F14F312EF2E2771E5B11C4D2C9 /* fixed_array */ = { + 310087C345B86EEF25A054485E0BB5CB /* Pods-iosApp */ = { isa = PBXGroup; children = ( - 0EE18AE557C7BCEDDF032AC7DA353776 /* fixed_array.h */, + 482384ADFE4EF692B16FACB8C2021970 /* Pods-iosApp.modulemap */, + A43877303056397968EC90C7AAFE17E8 /* Pods-iosApp-acknowledgements.markdown */, + 0011AEE22E8296B3D9E0B0B2CDCAB2EE /* Pods-iosApp-acknowledgements.plist */, + 3A2475209BEE7612101900020629C625 /* Pods-iosApp-dummy.m */, + BCAED803D074E2E9C3B1327F049C8C2A /* Pods-iosApp-Info.plist */, + 42DE4C0106600A5B6D599285368F3270 /* Pods-iosApp-umbrella.h */, + A79C2AA5C063914B2D1BD80187FDF6DE /* Pods-iosApp.debug.xcconfig */, + 1A2FB55B5C37861BC78ECD1420D818C3 /* Pods-iosApp.release.xcconfig */, ); - name = fixed_array; - sourceTree = ""; - }; - 05790B681CFB3D797FADCA0F749BDBDD /* strerror */ = { - isa = PBXGroup; - children = ( - 0A8F2434FEEA788A70133A74516D5313 /* strerror.cc */, - D2E6D6AB981FCC021D7368A58683B79E /* strerror.h */, - ); - name = strerror; - sourceTree = ""; - }; - 06F2955B92188B583711A3943A81D32F /* synchronization */ = { - isa = PBXGroup; - children = ( - FA76FB9B5C3C5655AF8BFA2FD404502C /* barrier.cc */, - 37F0393FA22A723EF3B2F2DD1F51B51C /* barrier.h */, - 797BF28F287A56D71DAD6FF3C7497BD8 /* blocking_counter.cc */, - D3425A81FB60223CECC996993F26529C /* blocking_counter.h */, - C913BAEE461360A3FE8E176E51029E39 /* create_thread_identity.cc */, - 991FFDEDE586C37A4A55FCF5CCEAF8C8 /* create_thread_identity.h */, - 61A876D516AEC1CF9D7CB38D19213911 /* futex.h */, - FFBCD6E9A0E6F1DE65424AF3D0C8F820 /* mutex.cc */, - 5E373C39844A705F9266F61407512500 /* mutex.h */, - 588FD11B90900BDCD531B3BCFF90A23B /* notification.cc */, - 0DE2F018DBEF2901EC4F00D8A8C6659D /* notification.h */, - 733E790616C1A048CAA297626C8D4143 /* per_thread_sem.cc */, - 120973E92D7D51F45C77777F8A6F1C99 /* per_thread_sem.h */, - 2557103E165BDC04D127A9C3EF01B0C2 /* waiter.cc */, - 1091DA9A1993928A94677295C3CE0488 /* waiter.h */, - ); - name = synchronization; - sourceTree = ""; - }; - 08C59C8EA11B259AC03EFEDAE6560C44 /* cordz_handle */ = { - isa = PBXGroup; - children = ( - 0CE4CB8589E6AF043320D355DDAA85CA /* cordz_handle.cc */, - B79406B18FCC00F1BE74F82B2B71486E /* cordz_handle.h */, - ); - name = cordz_handle; - sourceTree = ""; - }; - 094ED11858ACD34A55F011214A783158 /* inlined_vector */ = { - isa = PBXGroup; - children = ( - 19CB4B90FE8A0383092322CF0CFDF56B /* inlined_vector.h */, - ); - name = inlined_vector; - sourceTree = ""; - }; - 09AA700EB22FBD5618AECBC5B1A0F58E /* randen_hwaes_impl */ = { - isa = PBXGroup; - children = ( - 43D080E10B8A1E9B406CF5D329BF4816 /* randen_hwaes.cc */, - ); - name = randen_hwaes_impl; - sourceTree = ""; - }; - 0AD96DD9E58A478EC659B522DE45056C /* FirebaseAuth */ = { - isa = PBXGroup; - children = ( - 9897E439A4F232003B40FF1A7F7FDCD7 /* FIRActionCodeSettings.h */, - E457B00026A135A2A8F0852EFD45C04D /* FIRActionCodeSettings.m */, - E816AF8B536BEEC1381B87F6447EC98B /* FIRAdditionalUserInfo.h */, - 4EF8D8725746F14A8B061129CFAF2C4C /* FIRAdditionalUserInfo.m */, - A61DC8CB33FFB763430DF47BFD79C9BA /* FIRAdditionalUserInfo_Internal.h */, - C063A75FF1E196AB119FC3FE30E8C0B9 /* FIRAppCheckInterop.h */, - 51BF9DD484184CBA7FF5554CACA1B924 /* FIRAppCheckTokenResultInterop.h */, - 63E5B2E435521AAA50D70C9594103894 /* FIRAppInternal.h */, - 95F96AEF02E8EAA91FD76A1233916660 /* FIRAuth.h */, - 39252B52400CE636040946DBEEF5E7DA /* FIRAuth.m */, - C24B3975446E3A9F4D166590847B0850 /* FIRAuth_Internal.h */, - C1AB4BF0B36F02B935C393D7B59C8C18 /* FIRAuthAPNSToken.h */, - D99218DBEB12800C8A7D71B72111FA0F /* FIRAuthAPNSToken.m */, - 5193F0BDE0AB361BF772B69494B70A4D /* FIRAuthAPNSTokenManager.h */, - 496D800EFD7E242BC303D05A20DC1B4E /* FIRAuthAPNSTokenManager.m */, - 190AA77CBDFD209C001B1E1D4FECA0CD /* FIRAuthAPNSTokenType.h */, - A68ACCE8471118CDE72D1AC14F1BCD0D /* FIRAuthAppCredential.h */, - 48D98A3AFAE95D01525515410ED73D72 /* FIRAuthAppCredential.m */, - 7576F7EA725B4D9612A77492008ED5A9 /* FIRAuthAppCredentialManager.h */, - 9B4B4F12B31CE2C7C9A7154CBEA736EC /* FIRAuthAppCredentialManager.m */, - E4F99A1E6F6C72FD59225E4B82ED4D41 /* FIRAuthBackend.h */, - CEA54DCA64DA56E09E3CAB28E6E91EAC /* FIRAuthBackend.m */, - 8B6FBDD9F6D43BA31DFDE175F64970CD /* FIRAuthBackend+MultiFactor.h */, - A4A905EAF87BE710848B15EDA8DAA6C5 /* FIRAuthBackend+MultiFactor.m */, - 195A2DB5E78C49C1AE0B418DA24023F1 /* FIRAuthCredential.h */, - 117CF7A8A5A4D83B4850FC64E8DE1F8E /* FIRAuthCredential.m */, - BF2160B131D602AF866AEC110F349653 /* FIRAuthCredential_Internal.h */, - 29A77F5C79177E1D95D7008E32713B9A /* FIRAuthDataResult.h */, - FEA140D5E29CF06E1D2173B7EE05AC5C /* FIRAuthDataResult.m */, - DC21C32F2D994339298F336B5EC18084 /* FIRAuthDataResult_Internal.h */, - 6818705A38B832A128816C50B9FBB10F /* FIRAuthDefaultUIDelegate.h */, - 59F3222F272F14CFA97A279FD2C657F9 /* FIRAuthDefaultUIDelegate.m */, - 205BDCDE52227DE514BAA067BFDB34AD /* FIRAuthDispatcher.h */, - D0D4438B8D4B117D3A23F1DEF9F6F035 /* FIRAuthDispatcher.m */, - 6A23B807B03895BC98C5B37DA78E17BD /* FIRAuthErrors.h */, - 180481C14161F7B5D4859DAAEFB3555D /* FIRAuthErrorUtils.h */, - FE44FB9BA1D648896D08652CED8AF3C3 /* FIRAuthErrorUtils.m */, - 34DFB8830092F41584F56A2DF3BD27D9 /* FIRAuthExceptionUtils.h */, - 31957344DB02BBE794FF2969E74DA26C /* FIRAuthExceptionUtils.m */, - D3516839E43F02BA8A6034CB227E0D38 /* FIRAuthGlobalWorkQueue.h */, - 910CBFE27A1F44E18B1DE0FEE7213E80 /* FIRAuthGlobalWorkQueue.m */, - 184D1A8484B271AC5F4BB80557F17552 /* FIRAuthInternalErrors.h */, - 42098459F9DDB98C3E1E61025964ABEF /* FIRAuthInterop.h */, - 78ADBBE8C5A875225F2DD88C3457836A /* FIRAuthKeychainServices.h */, - 80AF1F0D0C509D9CF4E8B525F2373ACA /* FIRAuthKeychainServices.m */, - DEA7D6290FB25ED9BF566AA2FCFE648C /* FIRAuthNotificationManager.h */, - CDB9FAA98B5A5C2F27A7A31F9B36CB2E /* FIRAuthNotificationManager.m */, - B9B0ACBBDF67217FDD7447DDAEB5D847 /* FIRAuthOperationType.h */, - 2160B691C74D2CDA4D8D350C4756DA34 /* FIRAuthProto.h */, - 6B3B45B67C989FAAE41DD5FDCDA593E9 /* FIRAuthProtoFinalizeMFAPhoneRequestInfo.h */, - 0A9FEE752CA6928AD0326A9F883D5086 /* FIRAuthProtoFinalizeMFAPhoneRequestInfo.m */, - 5C89BCD7E0BED75B1C6FF63BFFACADA2 /* FIRAuthProtoFinalizeMFAPhoneResponseInfo.h */, - D9E57018E0580CC71198528F9FE4D619 /* FIRAuthProtoFinalizeMFAPhoneResponseInfo.m */, - C818A66C7A3D8CE6DD10FE531E143F08 /* FIRAuthProtoFinalizeMFATOTPEnrollmentRequestInfo.h */, - 5246CD7FBE45B3ABDA4EF3D967322AC6 /* FIRAuthProtoFinalizeMFATOTPEnrollmentRequestInfo.m */, - 8BE75FF40E37F53EEAB7334875B89C78 /* FIRAuthProtoFinalizeMFATOTPEnrollmentResponseInfo.h */, - C05F1CE99780C4ADE06E6ACFF7272D17 /* FIRAuthProtoFinalizeMFATOTPEnrollmentResponseInfo.m */, - 22386369D1540AFE7E9FE4F50F37F574 /* FIRAuthProtoFinalizeMFATOTPSignInRequestInfo.h */, - CD718B396CE724621E23A00C19222697 /* FIRAuthProtoFinalizeMFATOTPSignInRequestInfo.m */, - 2FA806DD6AFCE175C9376E5EA0EA370F /* FIRAuthProtoMFAEnrollment.h */, - C8BC44CB7401C1106A0665B42B2C4253 /* FIRAuthProtoMFAEnrollment.m */, - CB0C2546AE5093FECEB80DC579DBB87A /* FIRAuthProtoStartMFAPhoneRequestInfo.h */, - ECDC60235DD818DF78E2E89B9961A26B /* FIRAuthProtoStartMFAPhoneRequestInfo.m */, - 7AA5BA9F40B8B6DB0E0AC7EE6DD0808F /* FIRAuthProtoStartMFAPhoneResponseInfo.h */, - E8C4CE6B819E4B2192532AC2D9E35610 /* FIRAuthProtoStartMFAPhoneResponseInfo.m */, - DAFFAB72AD2CC5C653A2036477B65553 /* FIRAuthProtoStartMFATOTPEnrollmentRequestInfo.h */, - 24F8EFC76F218C7292AA2B4884E7F66E /* FIRAuthProtoStartMFATOTPEnrollmentRequestInfo.m */, - 3F03B7BC829FD1D8E52CCAA208E7B4EE /* FIRAuthProtoStartMFATOTPEnrollmentResponseInfo.h */, - 02FF7A85CD951688B07730AB777CD083 /* FIRAuthProtoStartMFATOTPEnrollmentResponseInfo.m */, - 071AF4850B9833CF10B3A8979EE62B91 /* FIRAuthProvider.m */, - 5955E56DFC74566E66F9624940E3FD41 /* FIRAuthRecaptchaVerifier.h */, - 1995808E960CBF0DACF5C040FF85DD99 /* FIRAuthRecaptchaVerifier.m */, - 6ADFB8953096194E6130E5A39600DCE2 /* FIRAuthRequestConfiguration.h */, - D1817AA542CBBC67BCE8442F9E5419AA /* FIRAuthRequestConfiguration.m */, - 8492334018510257F1E8DCB21D698D58 /* FIRAuthRPCRequest.h */, - 85643CD824BEC180F5284881B578EC58 /* FIRAuthRPCResponse.h */, - E390410347C7F06E53C6A5808A3EB951 /* FIRAuthSerialTaskQueue.h */, - 33659C106C597E06603A0554A65A3821 /* FIRAuthSerialTaskQueue.m */, - 4742CCD5F8521E9B9032FA3B9D9CD007 /* FIRAuthSettings.h */, - D2C3FA94BA84138CE947ED5099F74E96 /* FIRAuthSettings.m */, - CEA4E8111655C0795A3AB6C9051E1847 /* FIRAuthStoredUserManager.h */, - AAAEEF1B5CD11C792D2412F5AA972250 /* FIRAuthStoredUserManager.m */, - 6FF48038BF819D625A509E5DAD027800 /* FIRAuthTokenResult.h */, - F5010EE71550A293F1893EC35721FECF /* FIRAuthTokenResult.m */, - 47966719743DBDFE3EA0E7807EC57A09 /* FIRAuthTokenResult_Internal.h */, - 19747E4348066BF84AFD1ED2BAE50E38 /* FIRAuthUIDelegate.h */, - 9CE01FD2AB1C984419523D3E9A4BD8FC /* FIRAuthURLPresenter.h */, - 03FED8F623B0E89E9C6E0F2B8465ADA9 /* FIRAuthURLPresenter.m */, - F93B9CB6A5F893B9594F2CCC52447552 /* FIRAuthUserDefaults.h */, - B318C72EE26D0DBC3DF56E3D702483A4 /* FIRAuthUserDefaults.m */, - 98F9361D778A28D472065DFD8ACF3731 /* FIRAuthWebUtils.h */, - 88B5488822B64F8AD43C855ED4079A3A /* FIRAuthWebUtils.m */, - E45784DDCABF9D40D3DFA31A1BCDFDFA /* FIRAuthWebView.h */, - 25251A5FC7438A7997731B572A2C929C /* FIRAuthWebView.m */, - 4AE7117E188A1986ED90299EE00B7C47 /* FIRAuthWebViewController.h */, - 9D063408EDD751B2BBB099FF9994FD82 /* FIRAuthWebViewController.m */, - 14E22EF52F350355122C850C58B5A58B /* FIRComponent.h */, - B3825847244B114C7033F46305CC36B3 /* FIRComponentContainer.h */, - 6F36378327BF7E38E03BA0C4668B5D9B /* FIRComponentType.h */, - E21BC6070BCA241507851DDA31B01A65 /* FIRCreateAuthURIRequest.h */, - C3C1F931030FEF6569EF2178FD514048 /* FIRCreateAuthURIRequest.m */, - 8508FD92179D0458B3F09BE8065DADDE /* FIRCreateAuthURIResponse.h */, - 0DF9D9F9BB28D79DF52D3C5334674377 /* FIRCreateAuthURIResponse.m */, - EF987D90C3E4E320E506F0BAE0D9A2A1 /* FIRDeleteAccountRequest.h */, - 817B3FB5ECC867B28B733CB0B1D4D3E2 /* FIRDeleteAccountRequest.m */, - F6DDCEF3C10E8170FD2184A99774326D /* FIRDeleteAccountResponse.h */, - 5809005D6A643FA2CD8B9E5FD0929C7B /* FIRDeleteAccountResponse.m */, - D1AADD10EC8273DA4107128FC239E074 /* FIRDependency.h */, - FE9E715BFAA415CF6F36B3833BA13EE5 /* FirebaseAuth.h */, - 3909D3F6B40E48F42C11E9F67FAE0688 /* FirebaseCoreInternal.h */, - 898DFFAAFAA23F5B36BA6539F4296190 /* FIREmailAuthProvider.h */, - B3FC3D27A98630B220769C0809334C8A /* FIREmailAuthProvider.m */, - 64942CF36E750B68834864AFE7A428E6 /* FIREmailLinkSignInRequest.h */, - E837B60C0D98A0684F99DF86053C4E63 /* FIREmailLinkSignInRequest.m */, - 8ADCF644F09FEC6F68206AE1AAC85531 /* FIREmailLinkSignInResponse.h */, - A209EC5AAD973918D1087D9E92075C02 /* FIREmailLinkSignInResponse.m */, - 0FC93416721A53218A385CE125CCC17E /* FIREmailPasswordAuthCredential.h */, - 3AA97A7C0C06BA437D076E32AEB18D57 /* FIREmailPasswordAuthCredential.m */, - 3744D0941F8A545EFD6E4310FDEE7618 /* FIRFacebookAuthCredential.h */, - 4923DB9A47DED71DD8F57000BE8D8897 /* FIRFacebookAuthCredential.m */, - 7B426E867DCB007A2251FCC4D788D3D6 /* FIRFacebookAuthProvider.h */, - A20727CD3FB217D605F611CA4A1CDC26 /* FIRFacebookAuthProvider.m */, - B22782F5571A7AC385645B89CD12B642 /* FIRFederatedAuthProvider.h */, - CE305A8B0116439B17B573A38E0D4A8A /* FIRFinalizeMFAEnrollmentRequest.h */, - D167F2B07F65CE6EB39B8FE5E37DE0C0 /* FIRFinalizeMFAEnrollmentRequest.m */, - C4BA7595DA4FA489AD222F889BC902BE /* FIRFinalizeMFAEnrollmentResponse.h */, - CC9CD830A4043A1DFE20CA5F84D46357 /* FIRFinalizeMFAEnrollmentResponse.m */, - A7045899A59CF82A8E1173B7BDDA8019 /* FIRFinalizeMFASignInRequest.h */, - 7E9624EA43F21CC24239E900ED7689D8 /* FIRFinalizeMFASignInRequest.m */, - 638C8902386FE8639FA04FC4550ACFC0 /* FIRFinalizeMFASignInResponse.h */, - 84DCC47D2A287317E3B7281F2A4C8983 /* FIRFinalizeMFASignInResponse.m */, - F6DA966579875852B5C78CB77EFC387D /* FIRGameCenterAuthCredential.h */, - BEDE7997DC0355C0BF3627BB525685C7 /* FIRGameCenterAuthCredential.m */, - 5918C26FF0F929718A43FAFED301963D /* FIRGameCenterAuthProvider.h */, - 19A3EB0C3E4614F7F2563AF42374133D /* FIRGameCenterAuthProvider.m */, - 235F4F298E58662098A2AA7BAF003121 /* FIRGetAccountInfoRequest.h */, - 19CBF60EAC11EAC2266F3AFC028F0D95 /* FIRGetAccountInfoRequest.m */, - 90A9A0B9284FC7D550BE12E42A26CCFA /* FIRGetAccountInfoResponse.h */, - C1DD1ED98A7670A43287C0E1FF3B26B0 /* FIRGetAccountInfoResponse.m */, - 4EE1E6CD19428D464014A5E0E635FA70 /* FIRGetOOBConfirmationCodeRequest.h */, - 3BE9DB234E00C9CBB012C22A427922D3 /* FIRGetOOBConfirmationCodeRequest.m */, - 9EBD4B00BE5B93E2EA9C17C913CD21DF /* FIRGetOOBConfirmationCodeResponse.h */, - 05D143A84E6FACF76154B99085C0D3A4 /* FIRGetOOBConfirmationCodeResponse.m */, - B7A88B8FFED3DA53D95C81D25144E26A /* FIRGetProjectConfigRequest.h */, - 1D780F1CC26400888513316ADA2DF632 /* FIRGetProjectConfigRequest.m */, - 0F40BC40D176CAFB977DB33584326086 /* FIRGetProjectConfigResponse.h */, - 9B946F1663177E7C03CACF9020496875 /* FIRGetProjectConfigResponse.m */, - 2FF2D2C00B45F1B7B6E8E7786685BAEC /* FIRGetRecaptchaConfigRequest.h */, - 89512A5FF8D45D6221769BD69F26E3BA /* FIRGetRecaptchaConfigRequest.m */, - 0368F8E4C3F699A47D43F08FE26913A0 /* FIRGetRecaptchaConfigResponse.h */, - 056118C3B185466E4A9338B768DCC007 /* FIRGetRecaptchaConfigResponse.m */, - F4A63AF682DE80BF60A0D834A48A2708 /* FIRGitHubAuthCredential.h */, - 6A728E41F7B469810932E44DF65807FF /* FIRGitHubAuthCredential.m */, - 41271B628A9A0446764BAE8A1E03A160 /* FIRGitHubAuthProvider.h */, - B8FE3A01E76719B1D14F6C0CDC3EFC42 /* FIRGitHubAuthProvider.m */, - D4C6F5BB8C69EB90D17A0DF12FACED2E /* FIRGoogleAuthCredential.h */, - 358520D93B3C479B798F73BD398B9E6B /* FIRGoogleAuthCredential.m */, - CF4DCAFFFD0ACDD91AD15A08DA779387 /* FIRGoogleAuthProvider.h */, - 3F3C3DCC41E388C7D914B5A81952B485 /* FIRGoogleAuthProvider.m */, - 6E557669055631E55F1D205C3D0DF3AC /* FIRHeartbeatLogger.h */, - 2AE18FE86949AC953AE9174B86F6CBC0 /* FIRIdentityToolkitRequest.h */, - 81E1E4F3DB7DE84F6A63B034EC3416B5 /* FIRIdentityToolkitRequest.m */, - 458AADF755A03242A04A379635F670D3 /* FIRLibrary.h */, - 6451A52ECE7630AB836DAF27E76313C5 /* FIRLogger.h */, - 534DC6D1DC5F2230E2293F6EA5469D22 /* FIRMultiFactor.h */, - 2938F4FFE6E8122F63D8129B19774D4E /* FIRMultiFactor.m */, - A5A3C58614D496B0EDC360F5E203068D /* FIRMultiFactor+Internal.h */, - D883E813B35FF752204FF6303C849398 /* FIRMultiFactorAssertion.h */, - 2479511CF957DB2ADC98139CEB4F1917 /* FIRMultiFactorAssertion.m */, - D8AD4877FDC38E511D78B82AE2712C28 /* FIRMultiFactorAssertion+Internal.h */, - B1DC38359A4C4E210408DCA124BECC3F /* FIRMultiFactorConstants.m */, - DBA6780286A2D35A81D54A4672B137F2 /* FIRMultiFactorInfo.h */, - FDB172C67017D2DC14A30DAD69BA578C /* FIRMultiFactorInfo.m */, - 047BF6A39A0C9563AF0E682586D2F0D0 /* FIRMultiFactorInfo+Internal.h */, - DCC4FDA456F65C7FA2B45B6C9F36D392 /* FIRMultiFactorResolver.h */, - FA96BDCF908E820887FAD3F327AA218E /* FIRMultiFactorResolver.m */, - FC7148873ECEA0E0D785F882A4673962 /* FIRMultiFactorResolver+Internal.h */, - 936DB1A15FD757DC8F8CF3F445A4A2C6 /* FIRMultiFactorSession.h */, - 80DB711C83A796318C346A1EF369475C /* FIRMultiFactorSession.m */, - 0BC130ED50A9D0965C7DA9599DDA20E2 /* FIRMultiFactorSession+Internal.h */, - C199707CA3E6C5223516663CCC5CB9C4 /* FIROAuthCredential.h */, - CE048244AF35E3A3497EEEA8A00C9E59 /* FIROAuthCredential.m */, - 2E3ED0E5E9173B991156BF72C9B7AB19 /* FIROAuthCredential_Internal.h */, - 44F14B9CF128B252894BFB64D8BF6743 /* FIROAuthProvider.h */, - 1772F3769D36BDB6BC4AC17C3BAAB52F /* FIROAuthProvider.m */, - 5ABA285C7A4F0F7172CD67574178B910 /* FIROptionsInternal.h */, - 1A90885BB10FC6E1EE223C8DC747F79A /* FIRPhoneAuthCredential.h */, - A544F460FF19D87AC447EE1C89A3858E /* FIRPhoneAuthCredential.m */, - 2CFE842F513A06AC5E0080FD67F58512 /* FIRPhoneAuthCredential_Internal.h */, - 17C30238877BB9F54C7CE0436E61C93C /* FIRPhoneAuthProvider.h */, - D7E94C01FAE3D4974B9AC8A12586A0C5 /* FIRPhoneAuthProvider.m */, - 997F156319E448AC0DC82F7CE2DF5C4A /* FIRPhoneMultiFactorAssertion.h */, - 7668CEE5CBA5BCDE91A5DC73C912562E /* FIRPhoneMultiFactorAssertion.m */, - 9571507A0A70212CB01CAE5B0A5B4279 /* FIRPhoneMultiFactorAssertion+Internal.h */, - BE8C945DBA46D34EF5AFC2B374FF9F14 /* FIRPhoneMultiFactorGenerator.h */, - 5BD56AA7A2CFC6D576101018A24800C9 /* FIRPhoneMultiFactorGenerator.m */, - 229BEB63A60FEEF7753A113423A4B18E /* FIRPhoneMultiFactorInfo.h */, - C8D9A2D6A506686C45F877A6343A902D /* FIRPhoneMultiFactorInfo.m */, - 22EFD129D2A12100994A98B6A31373F4 /* FIRPhoneMultiFactorInfo+Internal.h */, - 7433A6EBCF055C177AA2350778A8D066 /* FIRResetPasswordRequest.h */, - 6EC70AB7D346B3E51DA578EC9B36C817 /* FIRResetPasswordRequest.m */, - 280A85E81BE200D66457D3D4A5696F67 /* FIRResetPasswordResponse.h */, - 9BBEA7919718605CA84548EAB738BD30 /* FIRResetPasswordResponse.m */, - C4B4A58CB040C347FEF879F701E95C52 /* FIRRevokeTokenRequest.h */, - 1776A7F945303F621981858DC78CCB22 /* FIRRevokeTokenRequest.m */, - 8BDED2E05255D0B70B2C68CD14A72749 /* FIRRevokeTokenResponse.h */, - B6F763F8E761D51991DC18A7BEB3D6C0 /* FIRRevokeTokenResponse.m */, - 75C150A708F4577360F6C6890C990D81 /* FIRSecureTokenRequest.h */, - 0914BC8906B234A1BB722E25A834DC2B /* FIRSecureTokenRequest.m */, - 2B6E3048956D259CFFF27CD79958DFA5 /* FIRSecureTokenResponse.h */, - 142764120D04DD908496CDD66BC02A0D /* FIRSecureTokenResponse.m */, - 878ECAC366B38262533620EA19B646DA /* FIRSecureTokenService.h */, - 40BFAAA18E82A3927DB2263D4C446C86 /* FIRSecureTokenService.m */, - 1850D2EDCB2F7328D519DD4FA0263608 /* FIRSendVerificationCodeRequest.h */, - DF48F3E62DB57D23DA30B3A8A4ECAE95 /* FIRSendVerificationCodeRequest.m */, - 3F66040F0E63D24D666E8784C52774F2 /* FIRSendVerificationCodeResponse.h */, - 8D5EEAD7A7FB191398B526CD7C02E8E0 /* FIRSendVerificationCodeResponse.m */, - 87F7D3AE37F85569FCC718DD21ADCF14 /* FIRSetAccountInfoRequest.h */, - 15DD4881A40AFD7AA8AAF82760BD77E7 /* FIRSetAccountInfoRequest.m */, - C62D3AF9E3D949AE6EAA8C4C0F45419A /* FIRSetAccountInfoResponse.h */, - 78C68CEA17B3453B0FEB58A7833EF0B9 /* FIRSetAccountInfoResponse.m */, - 488298E5DD41AE6DF42CAFA39632BDEB /* FIRSignInWithGameCenterRequest.h */, - 5F1A982373F65E8533884BF6E56AE150 /* FIRSignInWithGameCenterRequest.m */, - 83DC017B516EF1CE4D3544B110C618C6 /* FIRSignInWithGameCenterResponse.h */, - 06E888DF9412BB6E2A72F109271C870A /* FIRSignInWithGameCenterResponse.m */, - 45999E1EA437166DBA5793231C531C43 /* FIRSignUpNewUserRequest.h */, - 7A24E51B36D5F92C8C4962F6A54F60C4 /* FIRSignUpNewUserRequest.m */, - C975940CAC996D4AE1A4B2987D6558AD /* FIRSignUpNewUserResponse.h */, - 8C2D8E60B8DD73E74E64BA02300F6645 /* FIRSignUpNewUserResponse.m */, - EC5EBBF8CA2A8C829FAD55533A990CF5 /* FIRStartMFAEnrollmentRequest.h */, - D0474E436BB01F4262DCC112C9A939B1 /* FIRStartMFAEnrollmentRequest.m */, - ED81A8CEA57F3596E1B6B35919C72A80 /* FIRStartMFAEnrollmentResponse.h */, - 0C043AAE398C84AB28A00AD47F8714B0 /* FIRStartMFAEnrollmentResponse.m */, - E2989E9CF29C43C9EC69735181AA1B94 /* FIRStartMFASignInRequest.h */, - C8C8E84DF4E034EC32168C987E896B2B /* FIRStartMFASignInRequest.m */, - A890C3B891667F310EF5CD9C87790FA1 /* FIRStartMFASignInResponse.h */, - 6BFBBCCF5C1949980FA94EB9E01DBEA9 /* FIRStartMFASignInResponse.m */, - 52516FE1FE4EFB9A6E859662C7D66077 /* FIRTOTPMultiFactorAssertion.h */, - 6077FA03F13DDC81DFA4650E0391631B /* FIRTOTPMultiFactorAssertion.m */, - 4F21D1135ADA76CC1CC14D2C7E1E26C2 /* FIRTOTPMultiFactorAssertion+Internal.h */, - 138CA2946B39091949E841709031E65D /* FIRTOTPMultiFactorGenerator.h */, - EAB6D9169AA27102E2AA228BC1F6553D /* FIRTOTPMultiFactorGenerator.m */, - 920D344E6B620528C55CE7EE8270B3B2 /* FIRTOTPMultiFactorInfo.h */, - 15B1795A64D9495BC11959749DFE5D16 /* FIRTOTPMultiFactorInfo.m */, - 6E4341521875D24C9C5F296031E65450 /* FIRTOTPSecret.h */, - 9F85FCE31E767636A1E88490BC7A2D91 /* FIRTOTPSecret.m */, - C0EC9DF644B5922F61467B4FEBF04CB2 /* FIRTOTPSecret+Internal.h */, - 5DDB2EF64F8D3A146C6DAAA4198E2FF1 /* FIRTwitterAuthCredential.h */, - 1BBC5EBCFA57BFB540973AC6EEA09DAF /* FIRTwitterAuthCredential.m */, - 0C159C663FAF0F9387223336097E40AD /* FIRTwitterAuthProvider.h */, - 5B26EE68C8AA205B525CB8D50F64FC91 /* FIRTwitterAuthProvider.m */, - FFA74503C227AB0CFA15848DB9A1DC8E /* FIRUser.h */, - 926F0100CFEC69D4A60131931842E39C /* FIRUser.m */, - 04BBD6DBBC6BBA2400FC9AC7717806CC /* FIRUser_Internal.h */, - 030B7DEEE1BD4F2D308AC78EBB0F0F30 /* FIRUserInfo.h */, - 220A18060F0A697A61A56E3A4227B82C /* FIRUserInfoImpl.h */, - 1927E1F9D9D46E702AC18225C24EBD49 /* FIRUserInfoImpl.m */, - DEA0E366CFE5D366B66F64272F463ADC /* FIRUserMetadata.h */, - 1A1F3A96B2533F58C7FCC8BB56117326 /* FIRUserMetadata.m */, - 54AB70879F3962A9188A1875D333A5B5 /* FIRUserMetadata_Internal.h */, - 700B85841AE8D2D021EA9C1E8DD86E97 /* FIRVerifyAssertionRequest.h */, - 6A0DFEB3AD5115B4EF963CA6ECB7B0EA /* FIRVerifyAssertionRequest.m */, - BA784F5B6D197C423C72E88568D5C783 /* FIRVerifyAssertionResponse.h */, - 277C10F71F11D91A7C5FD71E672768CF /* FIRVerifyAssertionResponse.m */, - E5D9A56E482B943A70561226842F82EF /* FIRVerifyClientRequest.h */, - 8B44C84EFE8AB0477BD0F27F99FA89A1 /* FIRVerifyClientRequest.m */, - 8136A3EE099FED7E6FC4222022DB099B /* FIRVerifyClientResponse.h */, - E978F7C9894DE631F90D94AC9141DF4A /* FIRVerifyClientResponse.m */, - 2D8AC6514D7B15FE4A4223B74A8821BA /* FIRVerifyCustomTokenRequest.h */, - DB18355BF15904A258EAF86207DD711C /* FIRVerifyCustomTokenRequest.m */, - 99839EB82CFF9B836FB3D2EDFE379660 /* FIRVerifyCustomTokenResponse.h */, - BC86C4E961F3098D19E20F9CEEC62726 /* FIRVerifyCustomTokenResponse.m */, - 3EAB3FF108AC6E40D1CC890D330257AD /* FIRVerifyPasswordRequest.h */, - 4F701D5835D97013D2431EC213F1E23E /* FIRVerifyPasswordRequest.m */, - 48BFA24DB91B4F48D1FE2CB683127234 /* FIRVerifyPasswordResponse.h */, - 4224259A4A8BBEB52ACB1922DC7B2B69 /* FIRVerifyPasswordResponse.m */, - 79B85590279D668EA9EAEFE801FC755D /* FIRVerifyPhoneNumberRequest.h */, - 247A52A8AF7A863EEF3CB43B25E0BB0E /* FIRVerifyPhoneNumberRequest.m */, - A203B8D6A5A1FFEBE812166A65A5E954 /* FIRVerifyPhoneNumberResponse.h */, - ACCE9A697FB604396DD134232516E1D3 /* FIRVerifyPhoneNumberResponse.m */, - 55B6BD22C2AAA079D65318F4BB98E229 /* FIRWithdrawMFARequest.h */, - 6E94E96F0B0F15A8E137A78E024317CC /* FIRWithdrawMFARequest.m */, - A426100975DC820276715A027B9F351A /* FIRWithdrawMFAResponse.h */, - BC6242DCEEE9250B3CD0FAE74A883E4B /* FIRWithdrawMFAResponse.m */, - D9713073AD099962997A449A10DB0B0C /* NSData+FIRBase64.h */, - 12A0ED5F89B30A4928E1E33140AAEB14 /* NSData+FIRBase64.m */, - 2CCFAF90399BAEAC4839E1ABE5CC3C55 /* Support Files */, - ); - name = FirebaseAuth; - path = FirebaseAuth; - sourceTree = ""; - }; - 0B804D08453D166D02F8922485733EFF /* GTMSessionFetcher */ = { - isa = PBXGroup; - children = ( - CA995544CB7C6839A3425DD47E9FCD81 /* Core */, - 94FCBE827E4F2D150B7C09D835BAD966 /* Support Files */, - ); - name = GTMSessionFetcher; - path = GTMSessionFetcher; - sourceTree = ""; - }; - 0CE53C0DA3FA464A6EA9293534928DF6 /* statusor */ = { - isa = PBXGroup; - children = ( - 82E6DAC2E4D7C06209EDB8C15F9A54CF /* statusor.cc */, - 5E84A027945F0807860C495DE2BE596A /* statusor.h */, - D5101239B8BEA293E6A10ADA36E3C9C1 /* statusor_internal.h */, - ); - name = statusor; - sourceTree = ""; - }; - 0D6114204BD1C513E4BEA21DA02BA842 /* utility */ = { - isa = PBXGroup; - children = ( - E839F810F3F2E5D96A14288E61FDBA3C /* utility */, - ); - name = utility; - sourceTree = ""; - }; - 1135FE2BB3F0A7AC7A0ABF11C05D9086 /* prefetch */ = { - isa = PBXGroup; - children = ( - 80AAAF09ABB2AAA0D3DFFDBB21E4F4AF /* prefetch.h */, - ); - name = prefetch; - sourceTree = ""; - }; - 11C970DEAE48C6D0282DFE54684F53F1 /* Targets Support Files */ = { - isa = PBXGroup; - children = ( - 52A898E555C2DBD7D25A7E44754C3FC6 /* Pods-iosApp */, - ); - name = "Targets Support Files"; - sourceTree = ""; - }; - 128BCDADD00263ADD3548CB0D7DF3A3A /* Support Files */ = { - isa = PBXGroup; - children = ( - 346CB45C394BC2C0B30A7E7825A3BFA9 /* abseil.modulemap */, - 528091B66F03D3BA5F2E67AA2589B8C9 /* abseil-dummy.m */, - 4E7D1EE72EFE33DFE52091513D66C041 /* abseil-Info.plist */, - 234DB096511662BA46EFEADC90D07C85 /* abseil-prefix.pch */, - 2E677EB36E010F5FFAEA2E4D4CBA7BA8 /* abseil-umbrella.h */, - 6BFDDAE329D6311F9FEF092B8FBD50F5 /* abseil.debug.xcconfig */, - BE71F7C8A227DF317F9DC7B155FC4EB8 /* abseil.release.xcconfig */, - ); - name = "Support Files"; - path = "../Target Support Files/abseil"; - sourceTree = ""; - }; - 13A5BDE28792AB2EF00B60FDB1241EA3 /* cordz_info */ = { - isa = PBXGroup; - children = ( - 62B7CC1F779071DC0078EA5ABE7882F9 /* cordz_info.cc */, - 7B2B6E19BDB6AEC69A93C29DE098EB15 /* cordz_info.h */, - ); - name = cordz_info; - sourceTree = ""; - }; - 13E83A5C01EE41110CD8AFB6F6304F37 /* Support Files */ = { - isa = PBXGroup; - children = ( - 436696C43D6DD11C40814CF76E78D91B /* gRPC-Core.modulemap */, - 923FEDDF9CA3B1A0D9779708ABEAA628 /* gRPC-Core-dummy.m */, - 1DF316C0F417C1D06A55470C22D0CFCE /* gRPC-Core-Info.plist */, - 4052AF24F34F960E8F438025F17715C7 /* gRPC-Core-prefix.pch */, - 33AAA0CC9B1BED878B77DB963BD785F5 /* gRPC-Core.debug.xcconfig */, - AB36978DA8D2CD6347A9AE6C1EE0D3AE /* gRPC-Core.release.xcconfig */, - ); - name = "Support Files"; - path = "../Target Support Files/gRPC-Core"; - sourceTree = ""; - }; - 169E4195D847AA09F19D31E828FFF510 /* cleanup */ = { - isa = PBXGroup; - children = ( - 997E74094C2C4CAA643ED94A0C1E36B4 /* cleanup */, - 283A6AA1AA84A114A2BB0E8A30F1005E /* cleanup_internal */, - ); - name = cleanup; - sourceTree = ""; - }; - 16C48DD1196C4D453736D64E1409136C /* synchronization */ = { - isa = PBXGroup; - children = ( - 9A49508C1741ED67BB71C28DF7715CD5 /* graphcycles_internal */, - 7C202261B8150359BDAFEF505937F0DF /* kernel_timeout_internal */, - 06F2955B92188B583711A3943A81D32F /* synchronization */, - ); - name = synchronization; - sourceTree = ""; - }; - 16DC213FA3D80E4294B863BD8D71D3C2 /* randen_hwaes */ = { - isa = PBXGroup; - children = ( - D9F297A60D62500B24EFF32C3261A573 /* randen_detect.cc */, - 8E0FFB05D22DEBF5FDE438AF01DBBF61 /* randen_detect.h */, - E28AED8AAF467EB843C7ADFAD1966B31 /* randen_hwaes.h */, - ); - name = randen_hwaes; - sourceTree = ""; - }; - 17A004A8BEC0902B372C2694196F7FC8 /* randen_slow */ = { - isa = PBXGroup; - children = ( - A45272F65493ACA4073FD05BED34A1D4 /* randen_slow.cc */, - 769E14872A275CC5B96A858FD0E1683E /* randen_slow.h */, - ); - name = randen_slow; - sourceTree = ""; - }; - 1873F6D05880265FC7B47974984BD025 /* bind_front */ = { - isa = PBXGroup; - children = ( - 14D7335EFAF9427414BA07D885C75BD8 /* bind_front.h */, - 57447590CA8373001BB53BF27B93E004 /* front_binder.h */, - ); - name = bind_front; - sourceTree = ""; - }; - 199F49C81989A41CCC4ACA68E9D7BAFE /* raw_hash_set */ = { - isa = PBXGroup; - children = ( - AACA6C35EF1C0FE17FA11109E6C36055 /* raw_hash_set.cc */, - 6B99E72B942642C3141EA4555B2D804C /* raw_hash_set.h */, - ); - name = raw_hash_set; - sourceTree = ""; - }; - 1BBD94AD470918AE2E0EAE82735A60B5 /* cctz */ = { - isa = PBXGroup; - children = ( - DCE6E46898AF64445AC96243F277F346 /* civil_time */, - D3F103CFF1699E6E00C05D17E2A4388C /* time_zone */, - ); - name = cctz; - sourceTree = ""; - }; - 1DC2E28DC92CD82B777E0D960CDFB366 /* salted_seed_seq */ = { - isa = PBXGroup; - children = ( - 9C06CF13668131D55179FE7481870EA8 /* salted_seed_seq.h */, - ); - name = salted_seed_seq; - sourceTree = ""; - }; - 1FB120081DF8E3DA4B4815A67B0E7B9C /* Resources */ = { - isa = PBXGroup; - children = ( - B0ED0EE91BA1BA420CC0961AA534F83A /* roots.pem */, - ); - name = Resources; - sourceTree = ""; - }; - 2003E3B10B7AEAFAAF82DBAFF8327A31 /* raw_hash_map */ = { - isa = PBXGroup; - children = ( - EA5EB5A0AE83C9AE2D6544B2799AB549 /* raw_hash_map.h */, - ); - name = raw_hash_map; - sourceTree = ""; - }; - 204781D2DC9094CFA5C9A7C8DA62A6F1 /* log_severity */ = { - isa = PBXGroup; - children = ( - C1767C24E8B45DA6D9E61647C9E391C8 /* log_severity.cc */, - 06DCCCBA38736B0AB76BC0E3DDE92FC5 /* log_severity.h */, - ); - name = log_severity; - sourceTree = ""; - }; - 217218F344F19FB79121B44A045BED36 /* randen_engine */ = { - isa = PBXGroup; - children = ( - FC3C2890BCDB5519C0FDB4C3BC83DC67 /* randen_engine.h */, - ); - name = randen_engine; - sourceTree = ""; - }; - 22E8D78B1A4308B797736AF602D61EE3 /* internal */ = { - isa = PBXGroup; - children = ( - C2EB0D5669DE7A3308293C5D6D8F6FAE /* distribution_caller */, - 5648DB1BA55EAB391147DAFB20E7B2B2 /* fast_uniform_bits */, - 574B7494FF4C857808565939C93EB557 /* fastmath */, - 320A555E0ACB767456DE3794BFA45024 /* generate_real */, - 6E59FE02E48982E0BB278A373B46C5B0 /* iostream_state_saver */, - B29A117B9DA1AEA0AA71FFF78AA6AAB5 /* nonsecure_base */, - 33CDC28FA86561F2D60F2B87407070DD /* pcg_engine */, - C1E0B58EBAAE00E05095C7F5C47E7AF4 /* platform */, - F272F26889963C5E30ED6364B7093873 /* pool_urbg */, - EBAF3676601B81DDE3677E38D07BD5EE /* randen */, - 217218F344F19FB79121B44A045BED36 /* randen_engine */, - 16DC213FA3D80E4294B863BD8D71D3C2 /* randen_hwaes */, - 09AA700EB22FBD5618AECBC5B1A0F58E /* randen_hwaes_impl */, - 17A004A8BEC0902B372C2694196F7FC8 /* randen_slow */, - 1DC2E28DC92CD82B777E0D960CDFB366 /* salted_seed_seq */, - BD4F35BCC1CE4389AA17BDF964A6CC59 /* seed_material */, - D3EAF368332BBA8DF692482ACC87E461 /* traits */, - DC3237F19D7564B10496F271B1D0CB76 /* uniform_helper */, - DA148C6D839D785366462D067F5CE27A /* wide_multiply */, - ); - name = internal; - sourceTree = ""; - }; - 2376CC3E896190AA150516F940E3A7F5 /* Interface */ = { - isa = PBXGroup; - children = ( - 38372C8CCE137F7D37EF2CE7E811572B /* alarm.h */, - A79AAE49FF4B97318D57FAE267F533E7 /* async_generic_service.h */, - 19D405D76CF303CD18D241AE0DC046D8 /* async_generic_service.h */, - CD39CECA9330EC8A739E013A746B76F6 /* async_stream.h */, - D7F6DEA3521EBB7A068040093C5F29AF /* async_stream.h */, - 38FC676B1E21DD852CB7072EF9FF9FFD /* async_unary_call.h */, - 6F9D5565D9E7D0602C4B952F6902ED55 /* async_unary_call.h */, - BE09DCA32BE3F5B9ADE90E9C36CC20ED /* auth_context.h */, - 64F88E052E243C4DAB957F2FFA7D1AA1 /* auth_context.h */, - 0548729B5398A6BB1298D4D7D8C8B645 /* auth_metadata_processor.h */, - A8CE24F6E2CE893BDB9D00AECBEF5F21 /* authorization_policy_provider.h */, - 53EE4E6DDACBC578020A1B75F103332F /* binder_credentials.h */, - 449F252B8F734C44E2239A3321D2E672 /* binder_security_policy.h */, - 931F00845085134A7761CDFFAA1F1C49 /* byte_buffer.h */, - B884A4CF7DCEF7FE0EE94E6A9BC01211 /* byte_buffer.h */, - CB541BDCA4A37E80246FEC9AF33FAF09 /* call.h */, - 5D005D8A4BD29D324B5F19F3D39C900C /* call.h */, - 88DBF16A12144E5220E91AB339862D16 /* call_hook.h */, - 0B7216370FB72A5F5AC3267F6B9CC9A0 /* call_hook.h */, - 5E4F5F7C9E12D4FF1D60882C8C7DA5FD /* call_metric_recorder.h */, - 7A0E2510288A22D24D6A9DB28DA8ED2C /* call_op_set.h */, - 3282F1AEF772ECEA9B2DA45B3C8B1706 /* call_op_set_interface.h */, - ECE57501BF09348A988B83C6794B48BC /* call_op_set_interface.h */, - EF1AE0561328D311F6A1B5B54D1213EA /* callback_common.h */, - 911EA92095E7913F4BCF5650897CFD52 /* channel.h */, - 7BB6274DCD40164FB9BE46A6BB87D3DD /* channel_argument_option.h */, - 78580A8C6B7B33383D25F925E1BF9840 /* channel_arguments.h */, - 8E589F26721EC7A5AB17EEDA47AB0017 /* channel_interface.h */, - F5B199BB2433946E3173CEF7694D5EFA /* client_callback.h */, - 037BA24CC125A5F3EC651AE71CFFFDFE /* client_callback.h */, - 2B5CDD833547C48509D8ED94ED2548BD /* client_context.h */, - 4115FECB4A6A56EBC208F60EE3B9CECB /* client_context.h */, - 6FAC080419F83AC07DAE2537628EDB12 /* client_interceptor.h */, - F118631D1D347A3F4D5DBCCAB7258A89 /* client_interceptor.h */, - C8A5F5D46C0B1ED71FB2F7D21C5FE0B1 /* client_unary_call.h */, - B92B339C719AD7AA78B972D6543CB4C0 /* client_unary_call.h */, - 0B06CEBE0793FBE33C4712A6E92EBB8A /* completion_queue.h */, - F1F5E90B4173A67C94136CB5E8D456D0 /* completion_queue.h */, - C011F9D37C3D96DDF9A2FEB5226A2400 /* completion_queue_tag.h */, - 209D2899C8189B79A159CEB805EB127D /* config.h */, - 94346C8CBF02031E36C76E7552E5D9F9 /* config.h */, - 1E022FC78DE40F836648FC1DE7BAFD20 /* core_codegen.h */, - 4AEEBFD269A1040AC399650FDC0A3BD9 /* core_codegen_interface.h */, - F8271F010FD7CBF18956D1BA9754E960 /* create_auth_context.h */, - 277AA69A94219A1A3B3996F2FE0BB55A /* create_channel.h */, - AF4BCB4559B0D03F46ED51304095FE0C /* create_channel_binder.h */, - 81CEF159C4EE4631B5FC8EA7CCE1983F /* create_channel_posix.h */, - 6199E30F0237F0382BBEA7AAF6C29D19 /* credentials.h */, - 264C03A93FE6C91CECEA391487DD658D /* delegating_channel.h */, - AC1B666B0C9BB3B3CC5A3C2EA4879727 /* generic_stub.h */, - 955582FAC5286853B8BA2A661AA785BD /* grpc_library.h */, - FF93AD3BFFDED6911242EEDEFC0EFA80 /* grpc_library.h */, - D805DA07D57F7C56E150A22AE107A97A /* grpcpp.h */, - 661B937FC5674347933097C3C8FFEAAD /* health_check_service_interface.h */, - 2D26254D99475D263C91C35A23C96262 /* health_check_service_server_builder_option.h */, - AB94A709C35A711A9889E89C75561F6B /* intercepted_channel.h */, - E6F31963F98F365F8C8F9C0568785A03 /* interceptor.h */, - CE191F7288D78851159F6BF80E9E9437 /* interceptor.h */, - D70F9BCB20D2D297FE29FBD3FA60BDB2 /* interceptor_common.h */, - E4B3B000F04698C2544DD063CD5B0912 /* message_allocator.h */, - 337D14FE64F04CAF68645EB8093FD65A /* message_allocator.h */, - EF8C72DDF4645B8E68F3E8CF241F3DB8 /* metadata_map.h */, - E8762939BDDE72BF12A981968EC8D732 /* method_handler.h */, - FBB39E85D4CC09AD338E735C86D59F95 /* method_handler.h */, - 120C12EBC55DA13576A550C7D52CE356 /* method_handler_impl.h */, - 19A23E1AD61FD7EC04565C3077754E2F /* method_handler_impl.h */, - E5359379FC10D3F77FF50503BA5F5F19 /* proto_buffer_reader.h */, - DB2D8A904EBAB17AAA0F1E6518918E67 /* proto_buffer_writer.h */, - CEA0B12F3C2E518D0293CDC130498C4D /* resource_quota.h */, - 018EBBDF9E92975681447908246114B0 /* rpc_method.h */, - 8221C0F94BE4C238CF5AEAEB4694E512 /* rpc_method.h */, - D695E33920FCE21FF7BE36ACC41D3B6A /* rpc_service_method.h */, - 01D027ED4A430C8DCB4AF625FA7089F5 /* rpc_service_method.h */, - 4C132BF366A57434EFC8D62AB9CAFB4F /* serialization_traits.h */, - E5CEB58737BE690A784E875E176DCB77 /* serialization_traits.h */, - 12BC94FF43BD63CDCE5CD5D9A5A6B00E /* server.h */, - C9B2D37DC583BA2BA268D79A288D4831 /* server_builder.h */, - EB1E898B5A1501A415626353BE59A4E7 /* server_builder_option.h */, - 15A901D67B2083DA2A89EF65997B4F81 /* server_builder_plugin.h */, - C95516337BF933091D542718E81FFFB8 /* server_callback.h */, - 7EE0654A2D4205A029F1A28C61017E50 /* server_callback.h */, - FBC1A1512CB4E182260321654AE71141 /* server_callback_handlers.h */, - 6E8A62DEE58FE2266D3CA59FA37D734E /* server_context.h */, - 7D51E10E873AE8F8D9C3E343E01F34F7 /* server_context.h */, - B71AFCFCF16FCD25AEA7F4DF265E25BB /* server_credentials.h */, - 2A3B11ED631F1883AF4E338DCED55465 /* server_initializer.h */, - A4AB1593199644D04FC1A71CCB56EE85 /* server_interceptor.h */, - BF0CEB606C8C1E4923B757CE76460C9C /* server_interceptor.h */, - 4B68B9D103D1FB0B0528BEE47E4B5267 /* server_interface.h */, - 4030873CD5D0678DDD37C92A24FEAFDF /* server_posix.h */, - 8BA441E380A71E80E9C27DC42C69A28E /* service_type.h */, - 6D3F2916FC95DE50EEDDDBCAAA3CCFEB /* service_type.h */, - 844AB3682B0B824BC3FBF06C48AE2E57 /* slice.h */, - BB29A937E17D63490AFE0FC9C83EADFD /* slice.h */, - 1844EBE4FC14781156F8093B134BFFD1 /* status.h */, - 93EA384982455290DC53F3B566C8941F /* status.h */, - FA4A130BD4C04098FE57D03A2216FC10 /* status_code_enum.h */, - B195581CEE5385F0283433CB07519DAD /* status_code_enum.h */, - 0C07D8003D83CF55A7B8F310F65ED095 /* string_ref.h */, - FA4176136B81AAF1733F149A4BE6557C /* string_ref.h */, - D68C067A853F7AD5970D4C7E16DD4CAB /* stub_options.h */, - 2E878D6BE81E0EA3533B0FE83904085D /* stub_options.h */, - 1433FF61669DF6AE8B034989C2EE7053 /* sync.h */, - 72758FDD9AB22A2F07D4E30497668C1A /* sync_stream.h */, - 76525149F01A88CDEB67CC781DE077C6 /* sync_stream.h */, - 94CC9A71D59DD942E500FF67B096A19A /* time.h */, - 017315FA27290D2FE48E6C74F79FA697 /* time.h */, - CC90D2B2F21BA630BFBDC9EF4507A7B5 /* tls_certificate_provider.h */, - 07B5614E6363884F610B39068C12B1E7 /* tls_certificate_verifier.h */, - E3DB1F14CF4DF2DBF75D7F11C6F9E33C /* tls_credentials_options.h */, - C1C87356DFC6FE99B19F02CA41C7B4F1 /* validate_service_config.h */, - F3C99539B1683DFA20FED6B1599CAB6A /* xds_server_builder.h */, - ); - name = Interface; - sourceTree = ""; - }; - 23CE789E9AD58FDF41E127C7938C014A /* types */ = { - isa = PBXGroup; - children = ( - C697E00D3081727AE988C2D241461D5B /* any */, - 5742C5FA8751C739373D50A19E6A504F /* bad_any_cast */, - 6584A6E888D931D65AE3B904D0AADF33 /* bad_any_cast_impl */, - AD2EB733680CB9949EB2F928990072F6 /* bad_optional_access */, - 6B7072E8CC317558CD3DBA52212A4473 /* bad_variant_access */, - BE1432B9867861F9B9080811B2D1494C /* compare */, - 7B63495B3AE2EB10BC6143393506144B /* optional */, - 9C4AEE64E4B206731F192DA2F73588E1 /* span */, - FE17CCD01291FEB9F79FE8855EAB82C7 /* variant */, - ); - name = types; - sourceTree = ""; - }; - 27464242619BBAD3FD54CFD2406A8691 /* strings */ = { - isa = PBXGroup; - children = ( - 857473C373DBBBAE4BF9948C99F29D3B /* cord */, - 4BA15408FCE77A886EC1858E8DFD8445 /* cord_internal */, - C6EE4B22B4F58B72E0D9F686D24CEB0E /* cordz_functions */, - 08C59C8EA11B259AC03EFEDAE6560C44 /* cordz_handle */, - 13A5BDE28792AB2EF00B60FDB1241EA3 /* cordz_info */, - 9C467F32203DFE38A85D04E17AA4773F /* cordz_statistics */, - E0B4AD3852F01CB702BC05AD80275A28 /* cordz_update_scope */, - 9557906FEB8D62D82FB4E1AEC0C7563C /* cordz_update_tracker */, - AD5EB8795EE53D65C8FD0F2BAEF9F2D0 /* internal */, - C6D44E667FC818C07E5F7D7D93A1666D /* str_format */, - 814801EFB4C188CAB8F0BBBA460AAB51 /* str_format_internal */, - 5B10A54CA26F0C73E9582D2057FCB013 /* strings */, - ); - name = strings; - sourceTree = ""; - }; - 283A6AA1AA84A114A2BB0E8A30F1005E /* cleanup_internal */ = { - isa = PBXGroup; - children = ( - 9402DC9EEBC82A8B50F21346EFE3825B /* cleanup.h */, - ); - name = cleanup_internal; - sourceTree = ""; - }; - 288CB2FF91F94796A9F37E102CD0D02D /* inlined_vector_internal */ = { - isa = PBXGroup; - children = ( - 9BAB1D78A738E6B11192431A9C1C1EB4 /* inlined_vector.h */, - ); - name = inlined_vector_internal; - sourceTree = ""; - }; - 290A79B703885A1CD827706A4EDEE626 /* gRPC-C++ */ = { - isa = PBXGroup; - children = ( - CACB5D2D9DFF9CBFADABEE77C7C9205A /* Implementation */, - 2376CC3E896190AA150516F940E3A7F5 /* Interface */, - 1FB120081DF8E3DA4B4815A67B0E7B9C /* Resources */, - E91824CB73E95E5555AB5982A99AA5FF /* Support Files */, - ); - name = "gRPC-C++"; - path = "gRPC-C++"; - sourceTree = ""; - }; - 2913C0D08B562AFBC1566EFEC633FB5E /* container_memory */ = { - isa = PBXGroup; - children = ( - B66552DADF9C8B268C364F7009B26532 /* container_memory.h */, - ); - name = container_memory; - sourceTree = ""; - }; - 2CCFAF90399BAEAC4839E1ABE5CC3C55 /* Support Files */ = { - isa = PBXGroup; - children = ( - 58EE8B34DBE5ACBCEB1468967F7DF943 /* FirebaseAuth.modulemap */, - 28F988009744B2E8737F4C10A3DAF024 /* FirebaseAuth-dummy.m */, - 876D75DD5BE64CB8902BF123031456E4 /* FirebaseAuth-Info.plist */, - 22B188125BB13FC2AD60F4E2FB8EA8C4 /* FirebaseAuth-umbrella.h */, - AB2410985D9366A0D9F891EE87AA247A /* FirebaseAuth.debug.xcconfig */, - FA0A9A3B40B9AA5025E075B36B7BBA5A /* FirebaseAuth.release.xcconfig */, - ); - name = "Support Files"; - path = "../Target Support Files/FirebaseAuth"; + name = "Pods-iosApp"; + path = "Target Support Files/Pods-iosApp"; sourceTree = ""; }; 313FE5FE915A4A924C55AAC02A910D61 /* Development Pods */ = { @@ -18731,198 +97,6 @@ name = "Development Pods"; sourceTree = ""; }; - 320A555E0ACB767456DE3794BFA45024 /* generate_real */ = { - isa = PBXGroup; - children = ( - A2FA0A77E1FA58E2684AEBD1111E43A4 /* generate_real.h */, - ); - name = generate_real; - sourceTree = ""; - }; - 33CDC28FA86561F2D60F2B87407070DD /* pcg_engine */ = { - isa = PBXGroup; - children = ( - B5B9A4DBF9C375779C98F1F46154BBBE /* pcg_engine.h */, - ); - name = pcg_engine; - sourceTree = ""; - }; - 3B23A13EC9AF59378109A652309FC6A0 /* Support Files */ = { - isa = PBXGroup; - children = ( - 28A2A119F7CF07CCECBA972CFB579C14 /* FirebaseFirestore.modulemap */, - 3230029473DC4A88131A7D55079A2EB2 /* FirebaseFirestore-dummy.m */, - E80AE69A949F9666F72AC280E28F75CF /* FirebaseFirestore-Info.plist */, - 0A28E301802200A3C88C7E891C07166F /* FirebaseFirestore-umbrella.h */, - B21F0873261681EBC41B6280DB0B20B3 /* FirebaseFirestore.debug.xcconfig */, - 06E5D7246C4BC9A2A10097ED3A568796 /* FirebaseFirestore.release.xcconfig */, - ); - name = "Support Files"; - path = "../Target Support Files/FirebaseFirestore"; - sourceTree = ""; - }; - 3BB5CBAF59E89B4C3C36AB325E8C0644 /* hashtable_debug_hooks */ = { - isa = PBXGroup; - children = ( - 529867BA488FC08C3043FABD9AA34F06 /* hashtable_debug_hooks.h */, - ); - name = hashtable_debug_hooks; - sourceTree = ""; - }; - 3CB51301DADBA0C9B26F20F4EAEC3402 /* hash */ = { - isa = PBXGroup; - children = ( - E8D8F2E3960BC3C1749044499B36B668 /* hash.cc */, - A5D25A97771ACA3EF86878E4A7E37A9F /* hash.h */, - 8D3FF9734DC721CEC53FCD4ED190B6EB /* hash.h */, - ); - name = hash; - sourceTree = ""; - }; - 3D743CA876DFF2CFC19FB9E3F02D70AF /* FirebaseAppCheckInterop */ = { - isa = PBXGroup; - children = ( - C97BE2BF7776F29BA3B3C3B70B0CD309 /* dummy.m */, - B4A4E676048BADE896E89881963D4DB6 /* FIRAppCheckInterop.h */, - A4E0F0C61DAC9CA7ADFFE5630F048666 /* FIRAppCheckTokenResultInterop.h */, - 606C380A74EB7CEA0FA661436783DA06 /* Support Files */, - ); - name = FirebaseAppCheckInterop; - path = FirebaseAppCheckInterop; - sourceTree = ""; - }; - 3EE3BC4C45D68F687F1332704754B934 /* hashtablez_sampler */ = { - isa = PBXGroup; - children = ( - 776D2FB5E8842DB96ECEFA9532B7EF40 /* hashtablez_sampler.cc */, - AA49DD5B4B2C5FBA17F0B9BB89C1C4AC /* hashtablez_sampler.h */, - E455881EA353F2E9D320FB09BB1031E9 /* hashtablez_sampler_force_weak_definition.cc */, - ); - name = hashtablez_sampler; - sourceTree = ""; - }; - 43BDD407977C17847DBD1BD8444C4ED6 /* type_traits */ = { - isa = PBXGroup; - children = ( - DB6B065074B8D78FBBE33493FA80E477 /* type_traits.h */, - ); - name = type_traits; - sourceTree = ""; - }; - 463D18EB4B2B5E32EAD0A979A1FFE03F /* fast_type_id */ = { - isa = PBXGroup; - children = ( - FD0C11A97EC61A94C7FD02F030E88AAF /* fast_type_id.h */, - ); - name = fast_type_id; - sourceTree = ""; - }; - 4920415169AA73F0E84A679779069520 /* algorithm */ = { - isa = PBXGroup; - children = ( - 0E64171273CFB196DC76D354C951DE9B /* algorithm.h */, - ); - name = algorithm; - sourceTree = ""; - }; - 4BA15408FCE77A886EC1858E8DFD8445 /* cord_internal */ = { - isa = PBXGroup; - children = ( - F1D34EC25933F1E16CDE0854AFE95EE0 /* cord_data_edge.h */, - 978548C282C4A24205D1B88481C226FE /* cord_internal.cc */, - A942CC33E482BF6965F3962A0833FAA3 /* cord_internal.h */, - 0B6FD558C468B8F6C2E5813BF35E0412 /* cord_rep_btree.cc */, - 8FAEE300B6D0508E05E10360A13251C5 /* cord_rep_btree.h */, - A7E87EB86AC3EA8C6BFD1B2659FC508E /* cord_rep_btree_navigator.cc */, - FA710C181C8CD7CC6E931CF73955AE3C /* cord_rep_btree_navigator.h */, - D701E6D06E679EFC4291D78D67B240F2 /* cord_rep_btree_reader.cc */, - 59B0AF343FAA29A9C7CA47B8E3C375A8 /* cord_rep_btree_reader.h */, - A2E4909DF886B5885126D6ED4C1EAFD4 /* cord_rep_consume.cc */, - 7ACA7464C4F5BABD1BF795C156500911 /* cord_rep_consume.h */, - F76EAC263C6C4F2DE4A954284A60BAE1 /* cord_rep_crc.cc */, - A39167BE79E4645A7CD3691B989E9D33 /* cord_rep_crc.h */, - BBCF11F07F1DAF832E2C1D292C30BD07 /* cord_rep_flat.h */, - 2D8AA2A9E8946D1CBCA6659B7ED67C1C /* cord_rep_ring.cc */, - 8CC456FFC90777410195C72C499AEE17 /* cord_rep_ring.h */, - 88FABD19D80280E84C32E5864F3C4CE3 /* cord_rep_ring_reader.h */, - ); - name = cord_internal; - sourceTree = ""; - }; - 4D72249F8969841CD48170D0F98B6DB6 /* memory */ = { - isa = PBXGroup; - children = ( - D0B126EA435E296288D24FAA98699F54 /* memory.h */, - ); - name = memory; - sourceTree = ""; - }; - 4FECB155673FEDE91A9117894452A90C /* hash_policy_traits */ = { - isa = PBXGroup; - children = ( - E863353054D2963313D783489FA04695 /* hash_policy_traits.h */, - ); - name = hash_policy_traits; - sourceTree = ""; - }; - 50082CAB67909D4F7E2289BABECBDA61 /* function_ref */ = { - isa = PBXGroup; - children = ( - D637067B913200CB7802A5C3D7395CBB /* function_ref.h */, - 69EBA31AEB067C068C6DDB66943A2C61 /* function_ref.h */, - ); - name = function_ref; - sourceTree = ""; - }; - 520362993A2D9EDD6E4DA10081C8905B /* raw_logging_internal */ = { - isa = PBXGroup; - children = ( - 8850A003D8F4009F4D78335C8103498F /* raw_logging.cc */, - 4A84271205C910073062A075B8C4731D /* raw_logging.h */, - ); - name = raw_logging_internal; - sourceTree = ""; - }; - 52A898E555C2DBD7D25A7E44754C3FC6 /* Pods-iosApp */ = { - isa = PBXGroup; - children = ( - 8B524AABE529FB8A2D151B05321336E0 /* Pods-iosApp.modulemap */, - 9F1FFC8B10F4D7D4F37606E8959B3F29 /* Pods-iosApp-acknowledgements.markdown */, - 9BB0B8B698D4C35D4F9A07EF70910170 /* Pods-iosApp-acknowledgements.plist */, - 54DC7F9924F99FEE67A9AD3BEE09A10C /* Pods-iosApp-dummy.m */, - 0187F135D5F61750CD24C3E04B6E8B64 /* Pods-iosApp-frameworks.sh */, - 5AC974169B09D4545F741E9A2147610E /* Pods-iosApp-Info.plist */, - F87A626222A8D9B26448A9FEB04FD0DF /* Pods-iosApp-umbrella.h */, - 3F64BADB16C311E9D09DAD0116F684F4 /* Pods-iosApp.debug.xcconfig */, - 9FECCB5AFF87D121F15BA01E683C7932 /* Pods-iosApp.release.xcconfig */, - ); - name = "Pods-iosApp"; - path = "Target Support Files/Pods-iosApp"; - sourceTree = ""; - }; - 539005BAF2546C7F889A06231739BA8C /* Support Files */ = { - isa = PBXGroup; - children = ( - E44FF4B5683FAD755CE17615900F8400 /* FirebaseCoreInternal.modulemap */, - E8D6FCFF76F5265F1F1447D8E8509EB9 /* FirebaseCoreInternal-dummy.m */, - 8320552248AB2DDEE0499159C89D335F /* FirebaseCoreInternal-Info.plist */, - E393E63D157F2F8F28ADDA8A688DEAC6 /* FirebaseCoreInternal-prefix.pch */, - 8725E03DD151AC9A99D518784B08CA85 /* FirebaseCoreInternal-umbrella.h */, - 1A83B8BCFF66CD058423DBF8E8B8EC0D /* FirebaseCoreInternal.debug.xcconfig */, - 80FBEBD6406D2618EF107128B920DCE3 /* FirebaseCoreInternal.release.xcconfig */, - ); - name = "Support Files"; - path = "../Target Support Files/FirebaseCoreInternal"; - sourceTree = ""; - }; - 5648DB1BA55EAB391147DAFB20E7B2B2 /* fast_uniform_bits */ = { - isa = PBXGroup; - children = ( - BE8B2513C819015AFEE44E7F0481AB14 /* fast_uniform_bits.h */, - ); - name = fast_uniform_bits; - sourceTree = ""; - }; 569B56E5B05425CAE32676C6049DC8CB /* Pod */ = { isa = PBXGroup; children = ( @@ -18931,86 +105,12 @@ name = Pod; sourceTree = ""; }; - 5742C5FA8751C739373D50A19E6A504F /* bad_any_cast */ = { + 578452D2E740E91742655AC8F1636D1F /* iOS */ = { isa = PBXGroup; children = ( - BC80F0361AFA3C19CEF023D39AD2EA4E /* bad_any_cast.h */, + 73010CC983E3809BECEE5348DA1BB8C6 /* Foundation.framework */, ); - name = bad_any_cast; - sourceTree = ""; - }; - 574B7494FF4C857808565939C93EB557 /* fastmath */ = { - isa = PBXGroup; - children = ( - CB5597A033BDBA48CA4EB0A5C59F88CD /* fastmath.h */, - ); - name = fastmath; - sourceTree = ""; - }; - 5844776FE519391D33464A6B98538DDA /* meta */ = { - isa = PBXGroup; - children = ( - 43BDD407977C17847DBD1BD8444C4ED6 /* type_traits */, - ); - name = meta; - sourceTree = ""; - }; - 5851A3FAD3C44FF047958E174B50B7F5 /* numeric */ = { - isa = PBXGroup; - children = ( - A7D224AE158688F7B76B4EFB3430E2B9 /* bits */, - B57672C92E641544F24F7F3B61D459F7 /* int128 */, - 7AC24EC0F810F2E02387C7CFD7DBB5B8 /* representation */, - ); - name = numeric; - sourceTree = ""; - }; - 5923874E4A3AA8954F21BE85F42A52E1 /* throw_delegate */ = { - isa = PBXGroup; - children = ( - 57A2DA839D5033E675A3AEFE5174D189 /* throw_delegate.cc */, - 8465EF2068ABF85475AE2C2B2E95FBCA /* throw_delegate.h */, - ); - name = throw_delegate; - sourceTree = ""; - }; - 5B10A54CA26F0C73E9582D2057FCB013 /* strings */ = { - isa = PBXGroup; - children = ( - 94429DD60C08A900494A34C3D055A24B /* ascii.cc */, - 2666B3846875F005A0A8300CBCBCB647 /* ascii.h */, - 85274F47BB234FC78CDFF31266B0A43B /* charconv.cc */, - 130B2FB7210B5C6ECB851A60F7B1E91E /* charconv.h */, - BC3E14459BB674764720659EAF8730A7 /* charconv_bigint.cc */, - 57015A3555BDA5B5476363053AC3962E /* charconv_bigint.h */, - B02291C92D476CBBA912F9FB5B5A1CCC /* charconv_parse.cc */, - F0FF2C5B4810C16E40C17E03FD13DDF4 /* charconv_parse.h */, - 50A05ACAB29F061EEE6C18C316847090 /* escaping.cc */, - EB45E88E9A1DDB9DE002900D364F2102 /* escaping.h */, - 28F96F1F4AFD4BFA8332B5D8AC7A6279 /* match.cc */, - 7E32A6C0F786FFCFE5FE3EAF320D288D /* match.h */, - 198FC76DFF94EC9C0CE10D0A2559299A /* memutil.cc */, - 07E087072B663C7269710F818833F544 /* memutil.h */, - FBD208DF15D768B355FF1278906BEE54 /* numbers.cc */, - E0E2C551A32FD85EDD5152E5EEA11059 /* numbers.h */, - C4E34597B14DB579FD699639D72696C4 /* stl_type_traits.h */, - B9D937566AA9967FC5C4F7EF4E86D684 /* str_cat.cc */, - 49EFF549AE06BED7E1604FEDE1687262 /* str_cat.h */, - 8824A6B84FA98AC5943EF5B1ADC853C0 /* str_join.h */, - 68A82223FFE7CB8C76ED7DABA9BEA2BB /* str_join_internal.h */, - 31D48CC002303851B60BB531377CBFA3 /* str_replace.cc */, - 20D6E838B5FCE9A99DDC4B108AC6EBC4 /* str_replace.h */, - ACEC5209B4668F4A4CB6982AC0CE49A6 /* str_split.cc */, - 88E3D434F82A78109CF36FE993070682 /* str_split.h */, - 4D9AD7EB3568EDB85941E58DD7A083B3 /* str_split_internal.h */, - D813F11BF7510E7FD0EB0F97697E2106 /* string_constant.h */, - BFAFC543BE8D9C2794C361304FD30B83 /* string_view.cc */, - B42D3C0B1482F30DD407F98E931ABA41 /* string_view.h */, - 9BAF57328174C52BC50DA3334EFEB052 /* strip.h */, - C5F799B9DCED0C015FF843BCDFB0F4A9 /* substitute.cc */, - 27442E135381F54C516E929FAB2D37C7 /* substitute.h */, - ); - name = strings; + name = iOS; sourceTree = ""; }; 5CB66AAACA3977B45E9869C360E9F289 /* Support Files */ = { @@ -19023,2108 +123,6 @@ path = "../iosApp/Pods/Target Support Files/shared"; sourceTree = ""; }; - 5E3ECC9F532E02FE5A592C8D5E7E925E /* spinlock_wait */ = { - isa = PBXGroup; - children = ( - 321F515DBCB9A9485EC57A0201F2A855 /* spinlock_akaros.inc */, - 2B32D26986FD325538594D0BF3A8C178 /* spinlock_linux.inc */, - C1C68EA808C262306A82C99029E9F0D4 /* spinlock_posix.inc */, - B015B36B6E74E1AC594DF87003DF37FB /* spinlock_wait.cc */, - 5A8986A61A03A7BAF9DDDC5B80D9EB9B /* spinlock_wait.h */, - 26E0FCFBFB3138BD8B021B6C54F965E7 /* spinlock_win32.inc */, - ); - name = spinlock_wait; - sourceTree = ""; - }; - 5F7E349731C895813509BA3438B40897 /* core_headers */ = { - isa = PBXGroup; - children = ( - D4F8183B4BA765D7E7FA6FAFDDC8A8F8 /* attributes.h */, - BBE3B451B22C221428555FAED52DB364 /* const_init.h */, - D81F43302CC5D354B4770DFE0448EB60 /* macros.h */, - 9FE6450A7BBB0E0C5BFCBCA7ECD8838B /* optimization.h */, - AB76D999C9ABCA718FC360F0332E0F9C /* port.h */, - 98A708F22C6CBB16326AF5FB550C6F8E /* thread_annotations.h */, - 6A94A930055EFFE97250821CA7E654BA /* thread_annotations.h */, - ); - name = core_headers; - sourceTree = ""; - }; - 606C380A74EB7CEA0FA661436783DA06 /* Support Files */ = { - isa = PBXGroup; - children = ( - C9E87053B8E17890D2B05773C206F439 /* FirebaseAppCheckInterop.modulemap */, - 3A576FED4141FC5A1271EFD8611C8A4B /* FirebaseAppCheckInterop-dummy.m */, - 344BE8BC3B785DDBA347A6AD19D1686B /* FirebaseAppCheckInterop-Info.plist */, - B0AB7E0CF44DF1735E4AA2A3F1065C3E /* FirebaseAppCheckInterop-prefix.pch */, - 5A6DEB607A098732838AD3D974372E75 /* FirebaseAppCheckInterop-umbrella.h */, - 9FAAC8CD2364E06678F632155ECDEC8F /* FirebaseAppCheckInterop.debug.xcconfig */, - 43C0EFC7C2CB7A88A5083B5DAECA78E6 /* FirebaseAppCheckInterop.release.xcconfig */, - ); - name = "Support Files"; - path = "../Target Support Files/FirebaseAppCheckInterop"; - sourceTree = ""; - }; - 61A411EB28452EF7231D9EE834B5A683 /* Implementation */ = { - isa = PBXGroup; - children = ( - 5880CF772E91BE7AF2D4558A6785D2E8 /* accesslog.upb.c */, - BA402AD6E721076A6D162778796B8465 /* accesslog.upb.h */, - AC62B81E56FEA11182C8E0F2AB7A0E0C /* accesslog.upbdefs.c */, - B5DD57387FF143CE625134B9CFEAB0D8 /* accesslog.upbdefs.h */, - 1252EEEA9B3170B907D71520E1BB9226 /* activity.cc */, - D3E7BE352B35AC6630DEA115CFA2D853 /* activity.h */, - B395450B5E121A8BA726F4DB019F913A /* address.upb.c */, - 67B36A3B6FDCF2B3C62DF46148B52179 /* address.upb.h */, - F9D1FAC6F3229F0B1BBDB12AFBD1AB80 /* address.upbdefs.c */, - 145EA771FCD62182DB86117A67DFF1FB /* address.upbdefs.h */, - 5DEA42821B6F225F6CABB26B48C297D2 /* address_filtering.cc */, - BBE328C0669C8E4A2B9DFC4F77E17208 /* address_filtering.h */, - 83068067410F14D3A6489802C77D7CDA /* ads.upb.c */, - 6798E263C7C5EA17A26793A0714EF4EF /* ads.upb.h */, - 24D571806007841D11747609B67FE1F0 /* ads.upbdefs.c */, - DACE2DB445C20AFA2C26835146371E81 /* ads.upbdefs.h */, - 87615091377A4FEF2DCFBB241F00A526 /* aes_gcm.cc */, - BDE6A265F1436E19B308BD9AFE66F4F9 /* alloc.cc */, - 3E3B9724C33E603269CD4A9091E8B422 /* alloc.h */, - B2CB95538112C6205BCF43043A0D96ED /* alpn.cc */, - EC1CFEC3F8A7F7198561BD45C3EC28D8 /* alpn.h */, - 7717906D59E1D412A3D887E11C4B0D04 /* alts_counter.cc */, - DA6DF344A1EA21110E741BC9F289A8FE /* alts_counter.h */, - 425884339893268BE59E26ED8C67658D /* alts_credentials.cc */, - A90CD0E35EB42BC9F1C27E7052F7765A /* alts_credentials.h */, - 821CD787103545B9C94AF52FE2B14308 /* alts_crypter.cc */, - 097054A92AFBBEBF210867D9C46DE3D7 /* alts_crypter.h */, - 612EA281157C51DCCBA7761FF7AA1501 /* alts_frame_protector.cc */, - 382CF00AC9B3E3B0FEBA9B1A38D76AEF /* alts_frame_protector.h */, - 6E6E291A9AA5427621512378D4A61DF6 /* alts_grpc_integrity_only_record_protocol.cc */, - 9B902B5BE988BB8142472BFF9824BC4E /* alts_grpc_integrity_only_record_protocol.h */, - 13E6E5D6A8EB1C7978814C690D699652 /* alts_grpc_privacy_integrity_record_protocol.cc */, - 4CBD2DA5AF23D05371273038813442D9 /* alts_grpc_privacy_integrity_record_protocol.h */, - 1F6BDF55ADB595DCF7949D3FD6750F6E /* alts_grpc_record_protocol.h */, - AE84CF73D366FB2E5DB175CDC0CBC947 /* alts_grpc_record_protocol_common.cc */, - 9455EA5BF28CDB45748C1C0D8E6A2325 /* alts_grpc_record_protocol_common.h */, - A395E66AD536C7C62165F35507EBFB9E /* alts_handshaker_client.cc */, - 4B071A7B2CD93C95C6619E13D709E0ED /* alts_handshaker_client.h */, - B182E15385357E2354E5B9F66470561E /* alts_iovec_record_protocol.cc */, - 583770A9623A9D33F182DDA0104B7494 /* alts_iovec_record_protocol.h */, - 7DE5B1BD6CCA627B9C1E442A02607ED3 /* alts_record_protocol_crypter_common.cc */, - F0B9F2CF1DFA6CEADDF438D2727B0569 /* alts_record_protocol_crypter_common.h */, - 06FBFA4E7B6DE6CFD33BFB3E6CBC4A71 /* alts_seal_privacy_integrity_crypter.cc */, - 0B36D6BC90DB6F20B965D1505E7709B1 /* alts_security_connector.cc */, - 8F9676DFBB10CF6E003DE27398F7901B /* alts_security_connector.h */, - 1575CF2457FB510CA1BFAE8180A759C8 /* alts_shared_resource.cc */, - D66F6BE1403961D4B1C8C82EBC3380D4 /* alts_shared_resource.h */, - FF32776993609E75769E4048CFB4B619 /* alts_tsi_handshaker.cc */, - 91DB6135A2522289145F86EBC4D64FE9 /* alts_tsi_handshaker.h */, - 6BB08DEE40295FB1B35B53590B045040 /* alts_tsi_handshaker_private.h */, - F97E15FF7274C52D265DE0B6B11F20DC /* alts_tsi_utils.cc */, - 61A38FC5D9BACE9C0F57BB794239CBFF /* alts_tsi_utils.h */, - 0FB749D7A47FC3F2A138987E3DD790C8 /* alts_unseal_privacy_integrity_crypter.cc */, - 7E13CF13E4A1EBE968FB72C6DA1CFCFE /* alts_zero_copy_grpc_protector.cc */, - 232BB2ACE0E4A6B41534C3ED7B8EF446 /* alts_zero_copy_grpc_protector.h */, - 492D01E59D4586D3181EA46C12549E18 /* altscontext.upb.c */, - 0D094DEAB2BA05B268581BC9C17415D2 /* altscontext.upb.h */, - E6632D89048050D74B0DE298C73F5DC7 /* annotations.upb.c */, - 8B2AAF91ECA5991AA1FE684962D3C2FD /* annotations.upb.h */, - 89D0043EF749D56A94B5117B1D4E74D2 /* annotations.upbdefs.c */, - 1B24BD0A3D0A318FAD9CF5933A7644A7 /* annotations.upbdefs.h */, - 0CC8F95A9FBC5242FAB3453FE77328E0 /* any.upb.c */, - 04AA242262A0F3748A18170440020F85 /* any.upb.h */, - 583427480B637D6CF0F3B433F4D15A7F /* any.upbdefs.c */, - F01953BFA85C7D4454673CA1C0210ED1 /* any.upbdefs.h */, - 5867EA59171E5DECD72FA35F7304D76E /* api.cc */, - 47774A628458D45006AB2200890347CA /* api.h */, - F4FFEBF1F06860FB111A0CF5E60C7AD9 /* api_listener.upb.c */, - E06AE2FEE43559ABACD13C304CE87102 /* api_listener.upb.h */, - 45A6D9388A48CD6B8C19CCB34796D622 /* api_listener.upbdefs.c */, - CE67CB4080A540F6DCBDAFA4920D7D89 /* api_listener.upbdefs.h */, - EC75AE9C7489530528412280EF4BE174 /* api_trace.cc */, - 8B5D7F37145C59A36E04A33B8FC194EB /* api_trace.h */, - 57FF00184BBCBACB0BD93313AE0295AB /* arena.c */, - 683365243AA576502F8B647A84F6B179 /* arena.cc */, - DE820F2E71A04F0A28988E4DC46B251F /* arena.h */, - 806FFFE5B67D1D312258AB06EF0F64CC /* arena.h */, - 287D082E25B9600B7A06EDE1A3F80F43 /* arena_promise.h */, - 6EE547D31092B02089AAC11D9648A6B8 /* array.c */, - 84C46E8FCB9D83D31ED409DDA687FBA6 /* array.h */, - 2E378F98C1686C82248E0A52A9D8E3E3 /* atm.cc */, - C7460E8D305448ABCFBAA5EEAA48214D /* atomic_utils.h */, - 1E05D7E91A4FC66661C3C2DA1D6CA248 /* auth_filters.h */, - 91E3672ED1271A622E2943C1B6A4BF92 /* authority.upb.c */, - 4C9174E0D172985BACA90A52616E8757 /* authority.upb.h */, - A92A4185253E91A5A3AB0084AC4C601D /* authority.upbdefs.c */, - 3CF1D78C3C2E17B49A9E25964B735374 /* authority.upbdefs.h */, - B22BFDD81F3A9D4E11BF7C59BF13F94B /* authorization_engine.h */, - 6C6D13BBFEE108524A320463E20DE7C5 /* authorization_policy_provider.h */, - 909904BD4BB698B790BCE64649DD0143 /* authorization_policy_provider_vtable.cc */, - B2DC7787F065075B8A2E11EA70C1C60B /* avl.h */, - 67A06EB2141681007B622553A1A0ACA8 /* aws_external_account_credentials.cc */, - C3C0682247F0D93AEDD5C4713F8BD1EB /* aws_external_account_credentials.h */, - FBE690A1D4965A7AA47C9F74B6B3E40F /* aws_request_signer.cc */, - 2DE4D9390896EA9A69B43A1DA59D3439 /* aws_request_signer.h */, - 1DED7A568BB5A9C4FD0D96ADF9DB6752 /* b64.cc */, - B78ACF9146E8E7F22C08EEB71D12C8E8 /* b64.h */, - 3F83D5014BCC9A3842ABBB114BD533DE /* backend_metric.cc */, - 01AA869DA6F50150DB6A516AA7F4A927 /* backend_metric.h */, - 0EBA18879F5395AA869BF779A0CD70A7 /* backend_metric_data.h */, - 6071149C2FF4694B726158839C8DA594 /* backoff.cc */, - 8125D65435B3BCEA337C9905727030BE /* backoff.h */, - 5583D02FF8953D0C6D07E80775C48E90 /* backoff.upb.c */, - A4B884E0F6477324A11CAD093CC5E691 /* backoff.upb.h */, - 1D7CF27997FD0A87CCE91DC194F66D61 /* backoff.upbdefs.c */, - 03E74713156FDAC4C957ECED36CEDA22 /* backoff.upbdefs.h */, - 5E71E0E2135FD8BE46A183C3C89361EA /* backup_poller.cc */, - 30883659BB3EA13CFA7312B5A23F0217 /* backup_poller.h */, - 81EF8E3FD3C08D9097FE26B2804BB630 /* base.upb.c */, - 98911173E6D763FC2A1AE50A476ED439 /* base.upb.h */, - 68C239C60B8E52D5988C72A7A491602B /* base.upbdefs.c */, - 00A47C8B6DD59E2481D98DC277879480 /* base.upbdefs.h */, - 76EAB1E72F583B1553C9C2A8347B5F8E /* basic_seq.h */, - FB0469101B7000CE00058B90BB4AAB3B /* bdp_estimator.cc */, - EC9F60A925CD6F8E96ECEDAF36EDD10C /* bdp_estimator.h */, - A4CB92C65C9CE37A9A610F84EC988284 /* benchmark.h */, - B938F873E032713E035927F1F65B7A4B /* bin_decoder.cc */, - F69F0560872FDB1AC4E6D0D2CC113940 /* bin_decoder.h */, - 6ABE979A579013EE5CBBA339B0992C57 /* bin_encoder.cc */, - D94751A75F363EBD96E97DDE882A5D2D /* bin_encoder.h */, - FFF5B3524AE72B6D9F6F447FA0DDDFA5 /* binder_resolver.cc */, - 056BF016156B3FBB28C6A4BC43BE4099 /* bitmap256.h */, - 7EC6A4C501219900D2D7CB0ADD4ACC2B /* bitset.h */, - 50CB5656CAF0BE54637FDD8AFBEE29EE /* bitstate.cc */, - 1E73586FCC03ED1B3303A48E00AFF265 /* block_annotate.h */, - A9E23F975C14BCCBF33D6F98C8545911 /* bootstrap.upb.c */, - 2212EC5D07C1E8B7C8A24C7D22A91C4E /* bootstrap.upb.h */, - E32B2EAEF3E5FE89C9F53F95B5503230 /* bootstrap.upbdefs.c */, - BE62B0F7FF80B367DE2B224425E3AFB3 /* bootstrap.upbdefs.h */, - 8392A2E20DFDD535C4CFBC81337C46F3 /* buffer_list.cc */, - D8291D10622727BF5085FBB44D8D3A1E /* buffer_list.h */, - 5AE44DBFFD1D7C9E8C6728E2C4DC8577 /* builtins.cc */, - E0482393A4F4279E459D91A8753C5558 /* builtins.h */, - AE2278CE659340040C067C139F57861A /* byte_buffer.cc */, - BF7E64E37EB0214F5E36BA43158B0E28 /* byte_buffer_reader.cc */, - B86A23F50D4471684FAADB1BE1B6BC95 /* call.cc */, - C953FFD2316336751F5A9712665291CA /* call.h */, - 1F50ACB075D0ED0D597628C771FF601D /* call_combiner.cc */, - 9417A4697062445A2054B51CE12F0187 /* call_combiner.h */, - 4237353321590370C33B334D492BDDCA /* call_creds_util.cc */, - C7AA36B9C1434E68861FE9865E1C6E67 /* call_creds_util.h */, - 63BECD86605B49069EA07E39CF04722C /* call_details.cc */, - C427A5024BD0C5565DFC74DC86D2E541 /* call_finalization.h */, - B545C4772B765F5A4A136D3ED4BDCB4C /* call_log_batch.cc */, - 9B7858D3BD36CC64D85AD7CE4C16E99C /* call_push_pull.h */, - 09C20EACCD4D4D4AA6CD6CC0B302EDE2 /* call_test_only.h */, - 77A2A15AFFA01D245A379428F38CAEC5 /* call_tracer.h */, - 70CFE7FE871E740984C67E7A9A4292A7 /* cds.cc */, - C8CCB78438FA15049C9F2CF805649C9D /* cert.upb.c */, - 5B3CF0051F125615540DBA3C3D4E1552 /* cert.upb.h */, - D1A24D009C195F553432878CBE64910F /* cert.upbdefs.c */, - EB687A1C0E258E86C833917065296818 /* cert.upbdefs.h */, - ADC7D617245F4925E8E802FE2851624B /* certificate_provider_factory.h */, - 9DBC0EE54F9A78A83BA87BFA1B6FB680 /* certificate_provider_registry.cc */, - C16BA8733C7B297294E7CE39AE15BA5C /* certificate_provider_registry.h */, - BFA4D4FEA64AC05FFD81C8C8E6339054 /* certificate_provider_store.cc */, - 4C4D5A755BD5FCD21AB8C2D0ADB8873B /* certificate_provider_store.h */, - 20DEA631C30BE8FAEE1EE0E44327D9BD /* certs.upb.c */, - DDAFD55BA49B14289373BDF535EA2F57 /* certs.upb.h */, - 9C61D580F166A5661820CB428886BA2E /* certs.upbdefs.c */, - EFE26B08110609F263FBFEE200189021 /* certs.upbdefs.h */, - 1EB4CD6A457FDF73D733D18642481915 /* cfstream_handle.cc */, - E894220545B2955C83C809AA8FB61623 /* cfstream_handle.h */, - 687AB0BB816A0703C0E4E969966E9CBA /* channel.cc */, - 742B356C761207A4316CE78B54794B5F /* channel.h */, - 74AE65ED474C08AC123856FE11F55035 /* channel_args.cc */, - 1E211DB1275783D9C78059A105BE417F /* channel_args.h */, - 88907C487E988862F14CEA3593405F88 /* channel_args_endpoint_config.cc */, - 2BD78645EA5EEDA4E4ECF3C16C67FCEB /* channel_args_endpoint_config.h */, - 8780BBF38EEF34E9C83B2DE0D262ECC0 /* channel_args_preconditioning.cc */, - D3B31847D58BA8571768E446EC7B50C1 /* channel_args_preconditioning.h */, - 40A22BF40D6693542845AF42F046D412 /* channel_connectivity.cc */, - 84FDBF0688626CD2DE06E87491D25C98 /* channel_creds_registry.h */, - 5D4284E7FA6E1CEB9CC9F19F51E4E61F /* channel_creds_registry_init.cc */, - 1C78067BDBE1D18ECA497231AC19E002 /* channel_fwd.h */, - 5854DBE2DB9C896859118F6DBEB18FA3 /* channel_idle_filter.cc */, - DC2D13CDDD62CF7249C154B1530A01CC /* channel_idle_filter.h */, - CD9C761946A5C33D1D523AF0252C0F26 /* channel_init.cc */, - 92F5AA7799549934A3FCF5022D40D663 /* channel_init.h */, - 0BB9D5F28D73B100CB9692C701BA83A4 /* channel_ping.cc */, - DE41F55DC532A0CF3B9F856ABFEA46B0 /* channel_stack.cc */, - 07F1FD0255609A03C3535619080FBCA5 /* channel_stack.h */, - 6BF6B0CC722E832FB4616822FC4E1468 /* channel_stack_builder.cc */, - 7EC1FA7B92F243F3F92D0FD6893AF9EE /* channel_stack_builder.h */, - 8B54997B7F36D5D83DB63714ED3A7DEC /* channel_stack_builder_impl.cc */, - A590B23F87299401E5D446F0B1E26DB3 /* channel_stack_builder_impl.h */, - F5711C4E8E7A5EAAAE1DFFBEF04E782C /* channel_stack_type.cc */, - 9AC3EA20738D61B8660CF5C30D1438A2 /* channel_stack_type.h */, - 9F923AAB675A69F20101C3E78FD75358 /* channel_trace.cc */, - 2B6F66AD8D11C51D98571C63EA0937A1 /* channel_trace.h */, - A19D659C5049DB8C9844CE6EBE35917D /* channelz.cc */, - 88689FC16461B95CAEEAE8D66E3305B3 /* channelz.h */, - 0AEF6450BC7366BC63114C581296920C /* channelz_registry.cc */, - CD48AC94385B20DFD0E96B95B8D64973 /* channelz_registry.h */, - 1812A735373A742DFA5CAE2600CED9F5 /* check_gcp_environment.cc */, - 398DB00B926B8A795F11AA30BB9744C1 /* check_gcp_environment.h */, - 21DF6B46F05D1A34B5744F2AF9CD6C74 /* check_gcp_environment_linux.cc */, - A66FB766538D394BF0D9C396A335AB64 /* check_gcp_environment_no_op.cc */, - 18D6FF9C7977346DF5A7FE0D0A9EAC2C /* check_gcp_environment_windows.cc */, - 8C203B763C0F64BD90C662D7489CF35F /* checked.upb.c */, - 0F8DF8F2E63FC5F767A9EFA03E995FE4 /* checked.upb.h */, - 3B4A06CBAD268E78F4BA1ADE5814C5F3 /* checked.upbdefs.c */, - 35C9072FE84E4E63B48146BC96926907 /* checked.upbdefs.h */, - 3BDF926F308AF5FCEE56EA7523893A97 /* child_policy_handler.cc */, - C9C29D0F085F85528A81E6A3BBD8D797 /* child_policy_handler.h */, - A00965BC296F5962B28F6BBFB378D9EA /* chttp2_connector.cc */, - 0AA1C1B24BB5237282D061255F91D505 /* chttp2_connector.h */, - 7AAD95C465D1F26E9A1F878C9315B462 /* chttp2_server.cc */, - C7A8029F35D8B8CC23D0DB3F3BD041D7 /* chttp2_server.h */, - 36C86A1E1380A713ECA3A59A5E8A06BE /* chttp2_transport.cc */, - 616A1B62B882A324C9750D053E055938 /* chttp2_transport.h */, - 1CA9FA7ACCBB7A0C93FB4ED61A315110 /* chunked_vector.h */, - 1E09B343C8C85CB6C84FD2AB85C3706A /* circuit_breaker.upb.c */, - CDC391759035FC76DDF36BFA4D915896 /* circuit_breaker.upb.h */, - D233121D59236ACA301AB2AB209F9418 /* circuit_breaker.upbdefs.c */, - FFF8FAD09582E2B875E0C5C50797144F /* circuit_breaker.upbdefs.h */, - A12AAD1823E97BE3F6B22F8E8872C163 /* client_auth_filter.cc */, - A4D6807DD3206F07A821CFCDDA6E7C46 /* client_authority_filter.cc */, - E891A0AD8DE7028821FB645F13C77019 /* client_authority_filter.h */, - 83C49915B4E2E3A662A1BF4ED2CDEE28 /* client_channel.cc */, - AC46BE2233BA5C2F7CBF991ED9D80B7D /* client_channel.h */, - 900319D93BC6A070EFF660C655506A07 /* client_channel_channelz.cc */, - AD8BD74603E3D6BCEC62D93F5D7C5653 /* client_channel_channelz.h */, - 4811DB344972C01C5B8EAD49449943E4 /* client_channel_factory.cc */, - 9F2011C6D64CD081085A14DC4892BCB9 /* client_channel_factory.h */, - 18E4F3732197F713BA20233201F57F1C /* client_channel_plugin.cc */, - E998B077AC7D4D695E1743A0712CDBD3 /* client_load_reporting_filter.cc */, - A861397642F26D9B3A2B8A8734D25B2F /* client_load_reporting_filter.h */, - D14C93F06504E9FCD5A66106DCE2AE21 /* closure.h */, - A1C9941F0FF60759894CB9D6A9D0707F /* cluster.upb.c */, - E02BA09433766238FF28A894B799276D /* cluster.upb.c */, - 12E6FFF3FC945747FF54FA1BA408D8C4 /* cluster.upb.h */, - A0CECF743559AED98CAE7D08D03A85BA /* cluster.upb.h */, - 45679618617E39DB195E389B6BE6E56D /* cluster.upbdefs.c */, - 11346C016A41BB95CC7B9B15C0C25A0C /* cluster.upbdefs.c */, - D0F264205FC248E97089541A953C9FCE /* cluster.upbdefs.h */, - F0D345DE53FF111656F06E1389977340 /* cluster.upbdefs.h */, - 9B8CC21FB77A353ECC437199BB317363 /* clusters.upb.c */, - F24F85271883EDB871609F9D406928B4 /* clusters.upb.h */, - 43DCBCF5145460B9E34A6FE5E6AE9225 /* clusters.upbdefs.c */, - A8238DCC349BED4246297BA768DD248D /* clusters.upbdefs.h */, - 9ABD1D68CD476691F884623FED2BDA1F /* collection_entry.upb.c */, - D604AAA6012030F1A3B507CE757376AA /* collection_entry.upb.h */, - BED92A62A7DF41D186AB73F10586207F /* collection_entry.upbdefs.c */, - 20A31AC3FF8DA7EE53581272B98C890C /* collection_entry.upbdefs.h */, - 210CFB2D8B044E4DBA8071468CFEF8F3 /* collections.h */, - 79F909ECC3E93E8902F6D36A05CD6BDC /* combiner.cc */, - BB836C78230D297E1EF595D20E41D8F6 /* combiner.h */, - 2AFEEB84849AAC59EA163A468E67209A /* common.upb.c */, - A476216E2694E77BEC254D311D426525 /* common.upb.c */, - A83744DCEBD753A2CAB7F3D09FE8EB0A /* common.upb.h */, - 10CA326DB9F12972F14D647CE44AD434 /* common.upb.h */, - A66317ED8A2DB02175C05C9907EBD7A6 /* common.upbdefs.c */, - 7097EDB2F7F476C7B6DCAE79217FD1B5 /* common.upbdefs.c */, - 771458E14AAEAFC2454009D1AF1D09F5 /* common.upbdefs.h */, - 8C0FA5E304669C11EC0A8B1EF7993130 /* common.upbdefs.h */, - 73F166B6F976475F5A9FA66433F398EA /* compile.cc */, - D644599840C60630A4924E270C8E6E8F /* completion_queue.cc */, - 60776B8F1DE8EB37CB8BE7600C64C808 /* completion_queue.h */, - 34915FB06B4D197FAFFF29F2749E7318 /* completion_queue_factory.cc */, - C15445F7FD481BFCFC514C9C64D98039 /* completion_queue_factory.h */, - 616EA307C2DD626543957DA7845F3561 /* composite_credentials.cc */, - D0F754575AF15CF21659E990E5AC6ED2 /* composite_credentials.h */, - 603AC1CECA7F0325A0645F75AEAA6CD8 /* compression.cc */, - D32DD869A495C70AC5DD97A3421EF51E /* compression_internal.cc */, - 4E404FD8A1A3C08A58DD5BC4CE9E5CE1 /* compression_internal.h */, - 4F47FDAD31792661958BD344023637B4 /* config.cc */, - B12CC9F0DBEFB367E64D68D3999E92AA /* config.h */, - 59922FF312F9A2D0847E9976AA03732B /* config_dump.upb.c */, - 97AB33F99060C2497419B3756D1A6289 /* config_dump.upb.h */, - 08A70BD72C1E3ACA8D5046D53559FDBD /* config_dump.upbdefs.c */, - 3EA8343325E1E8A0CF13F57C9ABBF03D /* config_dump.upbdefs.h */, - A3E2892652A28BEE5C340BA46DA11B2B /* config_dump_shared.upb.c */, - 22970C50F288FFBD9CC888E8B27B049D /* config_dump_shared.upb.h */, - 2BDD080ABA5EC111966827D6C30CE44F /* config_dump_shared.upbdefs.c */, - 3E280793D99C21902483E68E8A614975 /* config_dump_shared.upbdefs.h */, - 3A38A39751745D4AC1841F472A785A98 /* config_selector.cc */, - 1ACB917CF960892AD5AD6CF6035DA2D3 /* config_selector.h */, - 40BFCA09D8810AF25F717122F2DB9FDC /* config_source.upb.c */, - 42F87903F3FA822AFAF183B8B91DFE37 /* config_source.upb.h */, - 3FBBF7AD25C40865DB0BB85D9D404A87 /* config_source.upbdefs.c */, - D529347EB9D0ABF6B3B32ACE949FF9AA /* config_source.upbdefs.h */, - B06C015E686DA5993ED96EFA687A3058 /* connected_channel.cc */, - EEB2DF6EAA27D4F4070C3CB8F2A9F9E8 /* connected_channel.h */, - 23C25CD3FCD6EEC989B61011EEDACC93 /* connectivity_state.cc */, - 491BFA36A0530FF3EC002F1FB3CB333A /* connectivity_state.h */, - 127C2BB3447A6AAA56AA95089268906F /* connector.h */, - 275AFB3AFE5471B08DD0F988AA12C351 /* construct_destruct.h */, - 0D6A0A6A622EE2DD10856BF2120B85C8 /* context.h */, - 9A4407D02E6FB6572E5689E2E7EF98CA /* context.h */, - 2591DD30E2ADF43D6390F34666E771F0 /* context_list.cc */, - C52E852B752BF8243E306C8280D84A4E /* context_list.h */, - AAC0C904D9E314F597F12DC559C01017 /* context_params.upb.c */, - 262C592EC3A0F8789C886B2CD3283C19 /* context_params.upb.h */, - F2F9D0EFB3C90652AD11F0641A5EDF10 /* context_params.upbdefs.c */, - 1CFE3CCE9E01BCD85301BDCAFC3A0D2B /* context_params.upbdefs.h */, - 439C109346C1F19EE1A1308C8352D258 /* cookie.upb.c */, - 872098F8965B338F6DB9DFBD7998B2BD /* cookie.upb.h */, - EBA65B4CA8AD61FEF5E9674B21C32BBD /* cookie.upbdefs.c */, - 1A27EFEF109F68AD716D9F3A83FD6445 /* cookie.upbdefs.h */, - B6F98A11D0D1736ED71C4CAA74521BF1 /* core_configuration.cc */, - B44DB9059811AD461CD3758CCF10A274 /* core_configuration.h */, - 82D13C1CD8A7FD8B0769017004CC7D6E /* cpp_impl_of.h */, - 06B98EBD5D8AB3DF97F8878EB789DD4B /* cpu_iphone.cc */, - A3A88764CFC4556A1D53FD8A112B5570 /* cpu_linux.cc */, - 11F728C2D75FF71255DF68685DC56BE1 /* cpu_posix.cc */, - 4628D674F912E9CD140496EC33EF9B2F /* cpu_windows.cc */, - 6EFEED697261126865B276A933C46AEC /* credentials.cc */, - 7431FBBE1490F4C247C92516BD41EB6F /* credentials.h */, - 481EBC83D9774AEA967E2C144AD5698A /* credentials_generic.cc */, - 98E8D00800CB8F924243803E45430FB0 /* csds.upb.c */, - 642ACDB1EA8365F1ACF3CCD7B4654AF3 /* csds.upb.h */, - 8B7AD78760F690032AD25D0A94C25C1D /* csds.upbdefs.c */, - A70AC419A37C643C06499E6E11CD83FB /* csds.upbdefs.h */, - 2F97685D966EAEE9E509D67B1FBC96D0 /* custom_tag.upb.c */, - 25B91D6C55401E8CF9FFBEFB973218AF /* custom_tag.upb.h */, - DC8B9FB9CE4F5A77DC38AF9F8172EEED /* custom_tag.upbdefs.c */, - 2897E521EAEF034519181E7343AA6455 /* custom_tag.upbdefs.h */, - 68DC936E74CF4BE1A50D95DA9764460B /* datadog.upb.c */, - 531FF5A0013E66803F262C86EC4453E3 /* datadog.upb.h */, - 70B51A6956F26BA4629CFA56B549B088 /* datadog.upbdefs.c */, - A20142CF651CE7EB218D259ACC1A0602 /* datadog.upbdefs.h */, - 4647B464DAC3C7CA2C1AF5799DF7800E /* deadline_filter.cc */, - 45F12C68E6AA6CE8860D74166036B9A9 /* deadline_filter.h */, - EF5B18F7561A6ED9B99528D0F16C7EB0 /* debug_location.h */, - E01564647B13F2E86BB3C9F4FC5E4862 /* decode.c */, - 17E051142539D39490A629C7F0E012D8 /* decode.h */, - F520AAA3206BD5E98CAE1F4221BDC63A /* decode.h */, - FADBA76EF5B7A55ECDC0528EC9587921 /* decode_fast.c */, - 17876962FA8C5D0178EC8CEB827D22F7 /* decode_fast.h */, - EB7B3B1E93CF7DE4BFA1C731AA6EAEA5 /* decode_huff.cc */, - 5D71FA456F5CC276DCD6818F1FC5679C /* decode_huff.h */, - 0C09B35EF0EA7DCC3DB8FDC30EF22EA6 /* def.c */, - CD8AC6E77275190A6EAAD6352C9DEF39 /* def.h */, - 8F126583FC51D8C29967B9C0614883CD /* def.hpp */, - 307A02501BEA07B87967E12BB6C0029D /* default_event_engine.cc */, - D249E20BCC56D29F5AE8F55086892344 /* default_event_engine.h */, - E682C0F925C18950ECEB21217B36C4E0 /* default_event_engine_factory.cc */, - 93BC0C8A2928C262C2EA37A096C25783 /* default_event_engine_factory.h */, - 2C78FC38FA900F6FBB02043937093CD8 /* deprecation.upb.c */, - BADA9DD4147C58B4A1DFE6C39F5533C8 /* deprecation.upb.h */, - 8191DCA630090C33832EA084A1B77A9C /* deprecation.upbdefs.c */, - DB3815E8FB98651CA91C5C3E9A37387D /* deprecation.upbdefs.h */, - E501ABBA6753CD2BBC5744BD76011D00 /* descriptor.upb.c */, - 3CDB38CC3A2723099BA584C7552B5450 /* descriptor.upb.h */, - 55FB15C1B5D44B83E91C7DBE1025AE61 /* descriptor.upbdefs.c */, - 372FE16E9F9B80CB1F1BF5874A89F8A3 /* descriptor.upbdefs.h */, - 161FA1ED5BF54385AF4FBCD54B35E2B7 /* dfa.cc */, - A918E8AED381B836B71CD875DDC0BC7E /* discovery.upb.c */, - 612092FF34C08EA646FDBB6F59EB7C5E /* discovery.upb.h */, - BAA174C2F975F9193DFC8A9F2A8F4E91 /* discovery.upbdefs.c */, - 3B9AB857B8D9653E68D1A3909D4D9907 /* discovery.upbdefs.h */, - 380B094704F420D4E0EC9F2759DAC40F /* dns_resolver.cc */, - 7AE7BB22BD2F5FBF0546B86060C862AE /* dns_resolver_ares.cc */, - 506BE959A8FF341230D42448ABDD67EC /* dns_resolver_selection.cc */, - DD3F2CD1E901F009F1FFA495FF9C878B /* dns_resolver_selection.h */, - 19A09BADB75E70F63D955FE33A967D98 /* dual_ref_counted.h */, - C7E6AE563516302E113B94128B9B58E9 /* dualstack_socket_posix.cc */, - 2A22C5B2AD4B67D84884CB584F3C61C9 /* duration.upb.c */, - 72D0BC9CDAD0C64C7C70EF38E66A8E54 /* duration.upb.h */, - 1473D1F16FF623CD44FF9FE997589B66 /* duration.upbdefs.c */, - 88E28CC52CED0E3F92A4CD567F6479C9 /* duration.upbdefs.h */, - 49390ED3B202EAAD55CB4A2272AC14CD /* dynamic_annotations.h */, - BFF3FEF0F9834F6A5FE6625E4D2117EE /* dynamic_filters.cc */, - 02CC35C334D5A5FEEA94346CF765DC82 /* dynamic_filters.h */, - 81DEB8B9EB08A87AC92E5FA190E87955 /* dynamic_ot.upb.c */, - D132D0176B8F6D4868648359B84E5179 /* dynamic_ot.upb.h */, - 07DAEE9F3F44E822AB1F56231339D871 /* dynamic_ot.upbdefs.c */, - 9D2A7B1D09398165CBDD927370EC0B9B /* dynamic_ot.upbdefs.h */, - FF2375FF4965F6805E7C46ECC07C000A /* empty.upb.c */, - 2251B7CDBF5C4541E60B1F5BFEBBF4AF /* empty.upb.h */, - 8EF9D8F91A4CF04751CDC0FBFA869B5E /* empty.upbdefs.c */, - 03A8FEA26C43557304E9347251306D00 /* empty.upbdefs.h */, - 86A1397821FBF023FD9862770A13C2D8 /* encode.c */, - 2704798CCF3A2AF9C00D74EDFBEA01C2 /* encode.h */, - 0C217E5B2E886D09BA8E24734EB5B097 /* endpoint.cc */, - 626C1127ECEC310CAA6FED22EDCC4AE3 /* endpoint.h */, - 33448C9404020ABFFBBB0103E1001B13 /* endpoint.upb.c */, - 23FF272E4931E112E178E695DA36C5AE /* endpoint.upb.h */, - 62F31A570C21E4784474A1A9BD23A4B6 /* endpoint.upbdefs.c */, - 6303FB2E62D7556F5DB77DD3A5EC121F /* endpoint.upbdefs.h */, - 3F947FC7348DA5365E8CE84F1516CEE2 /* endpoint_cfstream.cc */, - 150B0238429C2211A35706B836B6FE88 /* endpoint_cfstream.h */, - 6C4C0ECBE2BECCDE38CFE8DA04D838C4 /* endpoint_components.upb.c */, - 25D4892CDBD1534D500D0B2572174E58 /* endpoint_components.upb.h */, - C98549136003E3F3C8FF4AEC08999405 /* endpoint_components.upbdefs.c */, - 54073F7D1227F56635F9D8186877FAB3 /* endpoint_components.upbdefs.h */, - EFE62C81BBA07096D5E0402B8548A28A /* endpoint_pair.h */, - 7D91AA0C81DD626A9C53FFB68485EAAA /* endpoint_pair_posix.cc */, - 28B8DEEEBD1DD676F586D66C68680207 /* endpoint_pair_windows.cc */, - E5CA22400BD4D4EA24C1FB27DB144305 /* env.h */, - 4CFE7AE761289C6E26F2B422D627F66F /* env_linux.cc */, - FA10BD16EADA43121A8E2986E80C97D9 /* env_posix.cc */, - D6306F0EBEF45DBF030B935D2B692B83 /* env_windows.cc */, - 2D2AABA1C6284EB46E3A8EBF5E9B4334 /* error.cc */, - D0D12080D00C45CAB5B22C55FC74A193 /* error.h */, - 90B11AE02C7594A58A7EB5C514183147 /* error_cfstream.cc */, - CBAFF506D7DE87F1BD5EF87F77653E61 /* error_cfstream.h */, - 221925D455700AC395245A89096F16E4 /* error_utils.cc */, - 4B05C0E180F3A12885A769A071238B78 /* error_utils.h */, - 748448D516E73F7481AD9DC0D9EA1CB9 /* ev_apple.cc */, - B1242E93600EBBBD8A2FBA00530A9563 /* ev_apple.h */, - C327170635042EAE8899B0354ECF3B98 /* ev_epoll1_linux.cc */, - 7A0C856042B3542D4548E0BC5B91F8AE /* ev_epoll1_linux.h */, - 0E9FC9BFBBF679606F71D9CE46EFD5A6 /* ev_poll_posix.cc */, - 834C045E06AE607E28692F51AFBE2F2F /* ev_poll_posix.h */, - A88434D3635635EA4C0C18CB712F73F2 /* ev_posix.cc */, - 64A786F90353B5C190F0C469477587E4 /* ev_posix.h */, - CD3FA117F44E65F131E37521CBBC654C /* ev_windows.cc */, - 3829ABB814C6845689AEC6BB49EFDEE3 /* evaluate_args.cc */, - 1136CEB901CB7E04E4754B6C11C64C9E /* evaluate_args.h */, - 214FD45FE01F1593CBD2EA29CADBB22E /* event_service_config.upb.c */, - 6591BCAFB4298119AB4185E24A528D76 /* event_service_config.upb.h */, - 0DFC036D212EE5A4B2930082BD79ABF0 /* event_service_config.upbdefs.c */, - 533655527D81DA5AE7037858605AD0F4 /* event_service_config.upbdefs.h */, - 905E96D25B25A1A69E7E76F35599D465 /* event_string.cc */, - 52F4575211180F40E0CEF52240DD2AC6 /* event_string.h */, - 7F0B8B2A95D9E2132274009ADCAEDDF1 /* examine_stack.cc */, - E662517F1982D613C313307261F668C5 /* examine_stack.h */, - F920C71C4B5B0690282543174B195718 /* exec_ctx.cc */, - C5895A4042C8187B7199258368A2D678 /* exec_ctx.h */, - 0AFDD41002641E79F4E12988F82E016D /* exec_ctx_wakeup_scheduler.h */, - 56723D415501F9F9B8EA04A3B4C72D16 /* executor.cc */, - 6AEEF1079C748B1A1D312DF8A4AC1AE0 /* executor.h */, - 38A1DCA3064BA8F96D1E9127F712BDA3 /* executor.h */, - 62C5546236C9A6E5DD5C319C6474149A /* experiments.cc */, - D3F661E45798B078D4C846A83576A9C9 /* experiments.h */, - 299E519AEC2EB90A55F52BA73DEEAB2E /* extension.upb.c */, - 37723074CAD3AD2A43F4D33146D841F3 /* extension.upb.c */, - 72F7E21BE89BC99807A36CCB4EA90755 /* extension.upb.h */, - AE8C374CFD33BAB906F085E13C66FEC1 /* extension.upb.h */, - 1D6008EB592B75CFE5097504742BA7DA /* extension.upbdefs.c */, - BC77B6B14B47437A609BBC2D60EECC9F /* extension.upbdefs.c */, - F0DDB1000478CE78FA09A7582B95753B /* extension.upbdefs.h */, - 0350E46334E61C0F9023F5B27C48A26C /* extension.upbdefs.h */, - 08FB3B0CD74D21F7758718A0E59002BD /* extension_registry.c */, - 965F190E7DB563FDC560EF52BA7A9626 /* extension_registry.h */, - 3F6C05F1E6B1AC54757BE1214A27B7BD /* external_account_credentials.cc */, - D097F292BB0365B72A3F3B17A0F346F2 /* external_account_credentials.h */, - E722747F87FDF4018D93C903D341EA8A /* fake_credentials.cc */, - 7122537F48940CE5086D0A86C5880E03 /* fake_credentials.h */, - E83A6C91AFD0D0ECEDBAD9311A851436 /* fake_resolver.cc */, - 8A11E59ED9F68DCAFB41BDF0E50DBEF2 /* fake_resolver.h */, - CA9B3C16655D25FD94294CC82D35C6F8 /* fake_security_connector.cc */, - C5516F0D86CC1D1C8C1E509C8E19EFCB /* fake_security_connector.h */, - E6C87C4DCBEA5CF8E1B5F290096DEBB9 /* fake_transport_security.cc */, - 17460B4EC14F17861C1C9CA708C33128 /* fake_transport_security.h */, - E841734C707E2407CA03444C44E459EA /* fault.upb.c */, - 07F3D2DFC50BDFA20E205B29196F9AD9 /* fault.upb.c */, - B4644D5212C8676DF04A9B175EBF659D /* fault.upb.h */, - D596344E8F39FAF00FD3C8A5D2E4956D /* fault.upb.h */, - CBF7DB1368D4171C4C5394EEC861BDA4 /* fault.upbdefs.c */, - 8D8A5D8E67487EB8DE4178EE03B73D03 /* fault.upbdefs.c */, - 3575F8D3ABA823BD4E0C775B378CAD64 /* fault.upbdefs.h */, - 950AA27C19BE01503CAA741334CFD596 /* fault.upbdefs.h */, - C818BD8463F1EFE1920ACF20C9F11B58 /* fault_injection_filter.cc */, - B5B313452E889490C09C09C639540230 /* fault_injection_filter.h */, - A4E8417897D5A65D9CC998A8B44A461A /* file_external_account_credentials.cc */, - 77F45682034E5E49781F6B95BA3D8A07 /* file_external_account_credentials.h */, - CDB52B5501BB8A154719A60F17DAB6C8 /* file_watcher_certificate_provider_factory.cc */, - 84FA9BC8A082FDD586774F74A33D2EE6 /* file_watcher_certificate_provider_factory.h */, - 5F8D4753A60F89C16344108636A22117 /* filter.upb.c */, - FA4EB41B6297FEE97DD0036187524930 /* filter.upb.h */, - 8B0AF2E3FEADD3DC27BB0248F5B45490 /* filter.upbdefs.c */, - 178E062A4A9CEB480C27DC929BA13932 /* filter.upbdefs.h */, - 4CEE2C4FE7E9393F6F04F080373DCE1C /* filtered_re2.cc */, - 7C3A25BC9926F00613EF11CE053327CF /* filtered_re2.h */, - 34C00D5A69B9779843AE763D220152D6 /* flags.h */, - 1CFE86B54EC25DE641935FE6648E13CE /* flow_control.cc */, - A106A8FB735171799A9E7BD055E14D43 /* flow_control.h */, - 4DE69AA462853C53EA531DFCA2F89334 /* fork.cc */, - A6BE8BF1FD8433F227C364FFAD4BB0FB /* fork.h */, - 97F7A58F73913EB9EF5E859ADC1CD9E6 /* fork_posix.cc */, - D73DAD8FF8C710E630817A5235D07290 /* fork_windows.cc */, - 6A469E5C6DB2F95ED28A3096E328EDF1 /* forkable.cc */, - 57F76FDFC2D8E073DB783AA8FBB56B07 /* forkable.h */, - ADC5DD8780F4BBC1010477374CE03C3B /* format_request.cc */, - 525B19BD992D61DC26F8A0F11C53690C /* format_request.h */, - F7E90EBDCB985F811CEC408095BA0528 /* frame.h */, - 752C8AF4AA3C1291EB8C64DCA636B5AA /* frame_data.cc */, - 806BAF4EE90D0D2B91CCAE4DC1B5A6D7 /* frame_data.h */, - ADFA82BF47AEB5DDFF8952C8640319DC /* frame_goaway.cc */, - 33C4A96A5DE21D1E08DA02F702FF5916 /* frame_goaway.h */, - 8BEC4E31F6DD4BEDABEB2E60E92DD19F /* frame_handler.cc */, - BE065CCB87EB67D32B7E424DA5A1C1D9 /* frame_handler.h */, - DA535398CB2B5272DE47D177A7690939 /* frame_ping.cc */, - AFB7197165C2DFB1FBB0863F43B633FF /* frame_ping.h */, - 4CBEC30B3090CE9F4ADB415E299AF879 /* frame_rst_stream.cc */, - CAB0F8A65AE5476329220A0184EC3515 /* frame_rst_stream.h */, - D998A0105CD9E70E2BFF6E8917C56AE2 /* frame_settings.cc */, - D3617CAB29D76AC20D363E3887C98908 /* frame_settings.h */, - F0ADF297B671B3020FE33E20E99EDCCA /* frame_window_update.cc */, - AAE2393B71DBAF6E4370F754FAC3C3AC /* frame_window_update.h */, - 7082B127535C072E0A4D2E35E8F507B3 /* gethostname.h */, - 1C80FBFAFFDCE9E2F58823778966930D /* gethostname_fallback.cc */, - B033259C1AF5F2E0237DC97DB4094FAD /* gethostname_host_name_max.cc */, - 7DDA02EA73C9DD8A6C2C4AC85423BA63 /* gethostname_sysconf.cc */, - 17DB8C8B437B6C636D0DD2F316547097 /* global_config.h */, - 968F64F3ECDA4A9A35FAE4632FFEBF25 /* global_config_custom.h */, - 6018B45D1FDEE584DBB7B4695D48503B /* global_config_env.cc */, - 9CA6047AD07D89A43FE08622059BA7DE /* global_config_env.h */, - DE39FD8649367557E651B574AE32E4BD /* global_config_generic.h */, - BD35F216869620278824FD395E69F878 /* global_subchannel_pool.cc */, - 62D2CB7539315C4667F8DB4B16A53781 /* global_subchannel_pool.h */, - 8673121A5CD578B8E93FD17F72E46DE8 /* google_c2p_resolver.cc */, - AF78A9D368188EE23CFE66BE0203AE23 /* google_default_credentials.cc */, - E31F064CA5A982DF1A293F4DF342C614 /* google_default_credentials.h */, - 60F06674CC66FBC7B3158AE708C81303 /* grpc_alts_credentials_client_options.cc */, - E420FDE636F679D52B33A52D717EC25E /* grpc_alts_credentials_options.cc */, - BD2AAC335F72A9B51F02B1C9722C5E80 /* grpc_alts_credentials_options.h */, - F1295F8A4D359E5913D7CB235E55E5C7 /* grpc_alts_credentials_server_options.cc */, - 5A993101D8FE0C50A170CA30BB76C3C6 /* grpc_ares_ev_driver.h */, - BF39081BFC86B77152F09043DC09C722 /* grpc_ares_ev_driver_posix.cc */, - 20F734CF5F8A2EDB1B0DC83C8A4012CF /* grpc_ares_ev_driver_windows.cc */, - 17EA3630DC9737756BCE14A611D46B21 /* grpc_ares_wrapper.cc */, - 0C4C14EBFE2E73D6B1A8E88368C4039A /* grpc_ares_wrapper.h */, - E8FAA516E3128F65A8CB75FE9F3DB4DF /* grpc_ares_wrapper_posix.cc */, - 272B9A5B2DC3FEF40684FBBAA7BAF4CD /* grpc_ares_wrapper_windows.cc */, - 26C3B20C10C8A98166ADB03C10EE85EF /* grpc_authorization_engine.cc */, - DF51B62188C94F0F5338FD2172BBAB89 /* grpc_authorization_engine.h */, - D51AD44419F4EF94CEED3BB200631976 /* grpc_context.cc */, - 3ADECC74F92D4955B7E72247A83B3768 /* grpc_if_nametoindex.h */, - 9B96D8CF164402BC55B7E1DD9CB7E797 /* grpc_if_nametoindex_posix.cc */, - 06AD0B0949883C13EC0B57C10703568D /* grpc_if_nametoindex_unsupported.cc */, - EDBF17ECC5AF18F34F0DEF5529AEE7FE /* grpc_method_list.upb.c */, - 46B718ECD83A634DF60B69CFB56C57CE /* grpc_method_list.upb.h */, - A6C366CA67F3B366939079830CB8BB7B /* grpc_method_list.upbdefs.c */, - 35B968D638FD8203F0A649B8655020C3 /* grpc_method_list.upbdefs.h */, - 4A8DDF4A2F0B7582CE3E8EA4ADF69C9D /* grpc_plugin_registry.cc */, - 3838986E3FB6D16ABB9B5EBE29E09E19 /* grpc_plugin_registry_extra.cc */, - 559D70D0074AB54F863B6E67468F9979 /* grpc_server_authz_filter.cc */, - 7EE5557F04C9C2B2802C3F67E065CC1D /* grpc_server_authz_filter.h */, - E154E67CEF3F02F7959805BE80309CA8 /* grpc_service.upb.c */, - 2F56D706E77012F897CE34BE94F4C9F0 /* grpc_service.upb.h */, - E8BB79B6562BB8A84AB0B044F9718364 /* grpc_service.upbdefs.c */, - A34E7F79675E30FBA8CF8367DD807154 /* grpc_service.upbdefs.h */, - C206BEAFD5AD221042F3C051C0E1D74A /* grpc_tls_certificate_distributor.cc */, - 36F0DCAEBD3D688E3154982FBE823F25 /* grpc_tls_certificate_distributor.h */, - 016C0C136B84613215A41037242687ED /* grpc_tls_certificate_provider.cc */, - 12683401888FF9994AE2BEE01CADA7E7 /* grpc_tls_certificate_provider.h */, - 35D4FD4083A50042E79FFD0C83FFFED5 /* grpc_tls_certificate_verifier.cc */, - 0F1ABE580A488B5652F06B8ED4EF8C86 /* grpc_tls_certificate_verifier.h */, - D250593A5ABB536D0C9ECAFA806BFD6F /* grpc_tls_credentials_options.cc */, - A6AE9C55E3DA473D56A4C2144013731A /* grpc_tls_credentials_options.h */, - 8CCC6FC79534ACC5FA7387B4371CDCD5 /* grpclb.cc */, - E699520FAE0C8EBAB84E309418FFAD30 /* grpclb.h */, - C9DF9AE9FE3593ADAB199CA826A3FCFF /* grpclb_balancer_addresses.cc */, - 6D0176963172D4448F8F3BEF74E31304 /* grpclb_balancer_addresses.h */, - 6349E18ED9BC599E24798EA657788567 /* grpclb_client_stats.cc */, - 39757624A0559A9432811637D57F253A /* grpclb_client_stats.h */, - 67EF3CC730EEDB4BA19DB1232444325E /* gsec.cc */, - E9809B0928C3092801D88BDF0681660B /* gsec.h */, - 717036DF4B82F7C432B925261402AD15 /* handle_containers.h */, - 6A57EBD664F1A3009FCA9192C3943553 /* handshaker.cc */, - 2B9D55C7BC6752DBA75BF5318E4BEAAB /* handshaker.h */, - F543372023428E60A966F2DA14C499B3 /* handshaker.upb.c */, - FBAACB464419902BCFC817EDDD4869A2 /* handshaker.upb.h */, - 6A6043BA6228715407F893402899D7F7 /* handshaker_factory.h */, - D352468E805194717B8576CFC6103D30 /* handshaker_registry.cc */, - 2B48BEEE640A0C6BD075F5C236207552 /* handshaker_registry.h */, - BFE7591AA4338D3FCE2C27204AA3F325 /* hash_policy.upb.c */, - 1D7102E0832D113DB8685B47A97E882E /* hash_policy.upb.h */, - C88256EE4AFFAF39DCD9D66E645FCAB9 /* hash_policy.upbdefs.c */, - 932B8FCC5C539EC567D98AD4AC3F00F2 /* hash_policy.upbdefs.h */, - 6D2A23B7B598404E487E7294704E0A9F /* health.upb.c */, - ECC6581A78E2AAFC64C8381B726790A9 /* health.upb.h */, - 2DB7CEC54180C1A475EB9B35A5C97635 /* health_check.upb.c */, - CE8D67FB0C068057B70161D489B5E496 /* health_check.upb.h */, - 42F5A83768EA56ECD8B187D5BBC9729B /* health_check.upbdefs.c */, - 4905DEDED50FDA250A1F79866DB0C5F8 /* health_check.upbdefs.h */, - 4603E61AC977F1F10CE880A7ADD96D96 /* health_check_client.cc */, - 188CDB4F8ADFDE5FAF959BD35BB56D0E /* health_check_client.h */, - D7209BB21ED1C8B2A042650031AB3E1C /* host_port.cc */, - C4DC48646BC2BEBE1373ED3FCCB4589D /* host_port.h */, - 6C8C6EBF64643A2187A66C46997FF6D5 /* hpack_constants.h */, - 158B1ADEF7E49D23FD2E89C2F4760C09 /* hpack_encoder.cc */, - 704E8748DDB35FAF66471C49C504C5DF /* hpack_encoder.h */, - 66F6DE563A446AA08317343F90BDE250 /* hpack_encoder_table.cc */, - 9C8ECD963DF15A6C0CA692C541B1CA56 /* hpack_encoder_table.h */, - E6882AF9BDC993AF61E63050FCA11EE4 /* hpack_parser.cc */, - B28A6E10C0B793A03D24AC91C9F9C108 /* hpack_parser.h */, - FD661D654B8B93715ECFDF8D2117EC7F /* hpack_parser_table.cc */, - 837DBE4C996FF2B821EDF138B5E9D19F /* hpack_parser_table.h */, - F6DE147F8C50354BA2D474E0720E7528 /* http.upb.c */, - 1165571B49A5871EDCEFE0D735B6D138 /* http.upb.c */, - 8118F123AD46EE0C21B3868128CDA121 /* http.upb.h */, - E48B63F986978E616161D7455510314F /* http.upb.h */, - 691FED75920CDA87F00C6C52A59CF129 /* http.upbdefs.c */, - 8C7CF3978703F93475652EFF78FFBC7E /* http.upbdefs.c */, - 19592F0E05108D751480092990690648 /* http.upbdefs.h */, - B319FEB429B242CF30FA994BD31775DD /* http.upbdefs.h */, - 20FDD67BF2AEF2E98D354BB4F6AD025A /* http2_errors.h */, - 0BCFE6FA6F1C01423EE009DD6713DC6A /* http2_settings.cc */, - 65416ED0373A4CA19EB0B6CF4D732370 /* http2_settings.h */, - A6938644DD75457C14B5B6E9512FBD54 /* http_client_filter.cc */, - 86DC1D98A5477E0CD9A2A00A6C585F55 /* http_client_filter.h */, - B0AA96ED24026283CB89DC532E0E5D93 /* http_connect_handshaker.cc */, - EEB143FAE4584022A0EF93F2DB20CA6E /* http_connect_handshaker.h */, - ACE59FE17C53B0BB7B2A2B6E304E64EF /* http_connection_manager.upb.c */, - E099D98B5084FC92BE40EEA0F7951682 /* http_connection_manager.upb.h */, - A381CF726D852B08A76346FD749508EF /* http_connection_manager.upbdefs.c */, - E0EDBDD3D6684AD9C71F6B95BD8AAEAD /* http_connection_manager.upbdefs.h */, - 930826F5EDF72BECBF317C99036E1AEB /* http_filters_plugin.cc */, - 7B670716720AD7F64F3A11A1C46518BB /* http_inputs.upb.c */, - 60943C8515DC3BEB09B4519B1BE22C11 /* http_inputs.upb.h */, - 0F2A72C75104DE72BD562457BB12D077 /* http_inputs.upbdefs.c */, - 9191D05A0B38957452ECFA760D80CFFB /* http_inputs.upbdefs.h */, - 7ABC93F7C0B3634CDFE0F89B7FA3638D /* http_proxy.cc */, - D44A24285C81EE46EE1650482DF89584 /* http_proxy.h */, - CB4B811E1AC9778827BD8B2BD4C89243 /* http_server_filter.cc */, - A8C4B1712BE80B5A9D88261EE2DCB11E /* http_server_filter.h */, - 2865D4C43C8C65CE4907FB7135F10939 /* http_status.upb.c */, - F1C0445280CDDB34127321F46D63364B /* http_status.upb.h */, - FC479DAA79F8EAF2E3AD7A2FC04AB7E3 /* http_status.upbdefs.c */, - 00DFA7E80F27D4F09FB74E5AEE1BE4C1 /* http_status.upbdefs.h */, - 677ABAF6941728100ADF71395EBDC59E /* http_tracer.upb.c */, - 8CBF6F5274998BF4495F5A8B0E1A43E7 /* http_tracer.upb.h */, - 5B63618FF3B1EF7AC7E4279CB1805FAD /* http_tracer.upbdefs.c */, - D36008E20FD2EAB10F54E1B33F078563 /* http_tracer.upbdefs.h */, - 049C189516E0D237833FC2030C50E041 /* http_uri.upb.c */, - 9EF465CAD0FADB19364000A1504383C1 /* http_uri.upb.h */, - 751AD17722D4C9100D4429537720B298 /* http_uri.upbdefs.c */, - 7F373B40B843EC14251BE74C7E298E1D /* http_uri.upbdefs.h */, - FE59ED425389FDDB9FFD7FB5046E6A43 /* httpbody.upb.c */, - 0AC9240598E0FFDED9320ACC157F636E /* httpbody.upb.h */, - 10721F8A1CB60F1526614B29D9542532 /* httpbody.upbdefs.c */, - 084B8E1EF4D0EC492AAE5CD86A26089F /* httpbody.upbdefs.h */, - 54A4C452D72F5192D61186F24C060D34 /* httpcli.cc */, - 6839766BFB84C47DA25ED6083B416F9D /* httpcli.h */, - 68CD59BDFDBB8007FED4EC851B852E60 /* httpcli_security_connector.cc */, - 71EAFA07B9DE319EDA1B6FC829613507 /* httpcli_ssl_credentials.h */, - E48BC5EF1B8782C48B19D00F9027C36A /* huffsyms.cc */, - 9D36B227BF49390FFB4DC7950433A2E4 /* huffsyms.h */, - E7285AA7C12FA59E344BF276FC1BC3B1 /* iam_credentials.cc */, - B8D0BA64E81CF9C79EB253E44F5E39CD /* iam_credentials.h */, - EBCD39418F7F7E55480D70FC2B972F2C /* idle_filter_state.cc */, - 64B430672EC15BDE4E66E14FB59B04F4 /* idle_filter_state.h */, - 1B883E7E0EF6499C7B22143CE83590E5 /* init.cc */, - 2CFCEFB76B73C3019203ACBE144E2235 /* init.h */, - 09EA71DD90F518445968BAF87D9DF498 /* init_dump.upb.c */, - 725E6F4CF9E7CBF17245C63A497D04A2 /* init_dump.upb.h */, - CD41922F5C84A94E1008911B2759F293 /* init_dump.upbdefs.c */, - A6D4F9E4F86E576A29E4646C9CF2EE9C /* init_dump.upbdefs.h */, - 9385F78A37B9C335B33102338D5522DF /* init_internally.cc */, - E70CD4BC5166E03D1D4DF95E7434AAF5 /* init_internally.h */, - C901CE59BC9613758F7DE662246F93FE /* inproc_plugin.cc */, - 705A9FCD35B183BE3D5CB9A74D96614B /* inproc_transport.cc */, - B840396FE97FBC4BCAD0FA85500E8DD5 /* inproc_transport.h */, - 2ADEC484067163ABE5C58AC26B2F0F7E /* insecure_credentials.cc */, - 6A6426894FF97110F947FFF60F1AE9BB /* insecure_credentials.h */, - 3B9C2A8E760124F796BA316B005FD621 /* insecure_security_connector.cc */, - 598487EDD24FBA335DD24B6A5C31DC9C /* insecure_security_connector.h */, - 36169A9BB6EA80ECA2B79CE6743341F2 /* internal.h */, - 361F1765394550B8F24A02F702A16728 /* internal_errqueue.cc */, - 83DD8EC8753EDE10EFE3C0A163FA0164 /* internal_errqueue.h */, - 909BD7402DFE6D0D50EF17F47E6FD290 /* intra_activity_waiter.h */, - 1D1DFFCC43C65919ACB48F7BDCE21155 /* iocp.cc */, - 050E8F52FF88618E647955659FC57E4E /* iocp.h */, - 7D61E4E9469260047E68EA523CEB4102 /* iocp_windows.cc */, - A642B9AD423A215C5CA785F2D238C99F /* iocp_windows.h */, - 5A689F574D2D13763A0A1E9450146719 /* iomgr.cc */, - 7DFD1FD2827DBEFDD11DB028326CEBAD /* iomgr.h */, - 1A5587DDED359B09371001E3ED4E1963 /* iomgr_fwd.h */, - E123AB2665E2C7D268DF335C2398E74F /* iomgr_internal.cc */, - DBCFDC629FB39D3F37E1BD3238A12F04 /* iomgr_internal.h */, - 59D31710FB08979F21802130F6377807 /* iomgr_posix.cc */, - E235A67EBF15F76631816A0F064AE352 /* iomgr_posix_cfstream.cc */, - 00C7D96DE833438927B6673F0A7653FC /* iomgr_windows.cc */, - FA52D2E5477461E22C25E7B4889C26CE /* json.h */, - 4716776435D1969D8B69A39A9608C247 /* json_args.h */, - D7D723544AABBBF00C348CA1D81E4750 /* json_decode.c */, - 5E785E4BC16356AC99F7A3E6AABC9C7B /* json_decode.h */, - C1E687ABF0173DBAE8C68A949D8C922C /* json_encode.c */, - E6E0BE5532F3B3BD5DF662B48CCF9CB4 /* json_encode.h */, - C4A9BBC3A38CA89D1C601DE6552ADF9A /* json_object_loader.cc */, - 1490659F1A1249DE305319C0673EFF3A /* json_object_loader.h */, - EDC1CF15856C34BBF9D66747AF301D59 /* json_reader.cc */, - F8F894EFEB1D0E48A20E955D5EA00F61 /* json_token.cc */, - 4539744A379524A0BD27344ABCDCB411 /* json_token.h */, - 262A5AA2E7052E637C97B4264931FBCF /* json_util.cc */, - 4C0882E0E8F34C6262DF39744272D550 /* json_util.cc */, - 1D7BE3AD52FDA00820CF4EC9167EE0B1 /* json_util.h */, - 121A4E59D9471F015794CB52DB461D07 /* json_util.h */, - 2D3EC06B242AE9553A46B047B1689E43 /* json_writer.cc */, - 9E38D381480C9705CE766A4C9C7B88F8 /* jwt_credentials.cc */, - 53ED99E00ACB7EF1FB410B71D0E6B601 /* jwt_credentials.h */, - 86243431F0B72F796DEEFDF6B79C37F2 /* jwt_verifier.cc */, - F1476C9EB62ECB6FAC56BB8E477A4A17 /* jwt_verifier.h */, - DD5A510619ABFFD66F9C1CFE7D9858B9 /* lame_client.cc */, - 6976A310739358E04A136BBD397833B3 /* lame_client.h */, - E8802DCBAB5F1DA891DD4CA46EFC7476 /* latch.h */, - BF86619C004700FB0949C3F9EDA23A9E /* lb_policy.cc */, - 8F10B917EC9D6D257321E20940C1C50C /* lb_policy.h */, - 27914A60F0F19583118D50119F0B0938 /* lb_policy_factory.h */, - 55F29C12F604DCE7A9D041D44D3D5970 /* lb_policy_registry.cc */, - 0DD1E48A70177D9B7B939D8AFB93066F /* lb_policy_registry.h */, - 92EFDE241CA0F3E7F3732BE4A273C996 /* lightstep.upb.c */, - 3D2E7E57DF93DAE54FABFA6DEA74E15B /* lightstep.upb.h */, - 2CC5911D1AA7258ED37D328DD3577840 /* lightstep.upbdefs.c */, - EEBC5465EBE0C03BD5F5DADAD8169B15 /* lightstep.upbdefs.h */, - 86E7F2F92FEDBF61B8FB23DA53631F8A /* listener.upb.c */, - 465C992A00DF734E450EA64547316D35 /* listener.upb.h */, - 57BF870F526EAE355673A38DCBDD7512 /* listener.upbdefs.c */, - B56B5D1506B37C17CF57B56E7684516E /* listener.upbdefs.h */, - EC91EE169F104329D44BF9D031A08194 /* listener_components.upb.c */, - 4AB2D7CAE02AD13C08BD330638A71232 /* listener_components.upb.h */, - FE5BCFBC5B737B214D858E84E1EA24AC /* listener_components.upbdefs.c */, - 1F5FA8A6467F58D2EBA8D27644636F33 /* listener_components.upbdefs.h */, - E29197D0898C1483D626B4F1790037CA /* listeners.upb.c */, - 0625752EBAB40908A94FC824D9F2769E /* listeners.upb.h */, - 61D1E6B691A6C974CDE940589D8006F4 /* listeners.upbdefs.c */, - E293A05816875A96AB28A6A0F0963823 /* listeners.upbdefs.h */, - 96734CF1A7E306BD829CE1305ACC65EE /* load_balancer.upb.c */, - 0286AD1737C7A52B8606497313F87F76 /* load_balancer.upb.h */, - 493B841C63E9E70E741D381FAA7EB85F /* load_balancer_api.cc */, - 305069D0B7CDB47BA21D29D33129734B /* load_balancer_api.h */, - 2E1F25ACEC57995CFB39BF3FE0B38575 /* load_file.cc */, - 1C794432AEE3059C645696D8CE60EE02 /* load_file.h */, - C4103AE6B7B3E375603532FB4A073D9E /* load_report.upb.c */, - 5B40A95164ADF4F451EBCF0470A9B272 /* load_report.upb.h */, - 93A3A82C9DE223357DB39430C200D2B7 /* load_report.upbdefs.c */, - 8A05B002E1C2350C88136402F7C62FA2 /* load_report.upbdefs.h */, - 014C69344E5FD2245680BF492F49DECD /* load_system_roots.h */, - ED80E6395FD0033E0037F717D794A377 /* load_system_roots_fallback.cc */, - 4212079D8333803243EC1F4C4404C10F /* load_system_roots_supported.cc */, - B6A734E7B3D25E06D6A4451C43895EBB /* load_system_roots_supported.h */, - D64DE9030857440E3082F1237AFACDED /* local_credentials.cc */, - 8F4C1DA0086D63908548B978FF04C4C7 /* local_credentials.h */, - 849ED0992F3C7C43F16F8B249FB47A74 /* local_security_connector.cc */, - B2F955487CA513935758ED59C953D3B9 /* local_security_connector.h */, - 6DC173CD0D05A7E57916E74D9C2A6343 /* local_subchannel_pool.cc */, - B2CDFF6C746D1B8C9DC1FED9D101EACE /* local_subchannel_pool.h */, - FAD8CFCFA1937FEBDD177FBE797C2768 /* local_transport_security.cc */, - 635E7706B3303D4C01DE0094FBBFBAC1 /* local_transport_security.h */, - 95044DAE92E09B759F3B7AB2241FC7C0 /* lockfree_event.cc */, - 58640A70D90FCB3560E49C22EE4D0F00 /* lockfree_event.h */, - F57890FEFBD05AF3DE45A43ED38FDC1B /* log.cc */, - 4BA6BC4089EA085298C7D968A50DEFF2 /* log_android.cc */, - 7F989746341F0BEE30833BA07281D08A /* log_linux.cc */, - C72B2F53338FCD2B2F781156976E1AD9 /* log_posix.cc */, - 4623B5385E4C86B54107B66F1A18F2D4 /* log_windows.cc */, - 0AB1D33F97938390017ECB2C80330571 /* logging.h */, - 7EDE1BD86074D7CA9C51E550793862B8 /* loop.h */, - 2ED89895513FA5CDC17ACD2CE9930819 /* lrs.upb.c */, - C3F10130BC25289B0938A7B8A9E3042C /* lrs.upb.h */, - 892905525499B31B482FD8B4B4BF4A87 /* lrs.upbdefs.c */, - DD5743D0B76AA8D7B60617CCE1C28F68 /* lrs.upbdefs.h */, - 4797401D1B22D884FDB2731470EBC952 /* malloc_counter.h */, - C7DBB5B1AAAB9AA6646DB95114D9EBB4 /* manual_constructor.h */, - 2BCF8215E4EC3E538910C877778AFA4B /* map.c */, - F5EFF166F07E65A3104A6DFB4B745E14 /* map.h */, - B107EEC70CAE13297AA0F42B5110BFCA /* map.h */, - 31CC756094CE168F7023ED9619E2A11A /* match.h */, - BCB7F97E99D02AE62A5727541E7EADD4 /* matcher.upb.c */, - D82084CB5BBE9273BE632746E1340B55 /* matcher.upb.c */, - 1286728D64CAAEFC4147B36CC6CC3CBE /* matcher.upb.h */, - 87B93940D10F0576FE285EEFCCEE374E /* matcher.upb.h */, - 6D1721044615940636635073A9994CE8 /* matcher.upbdefs.c */, - D555AAB15669F020F25A660632399869 /* matcher.upbdefs.c */, - 65AA0752CA1CCAB85CDCF79822FFE962 /* matcher.upbdefs.h */, - 1993D5A3B0668140C34BDCDD5FF5990B /* matcher.upbdefs.h */, - 2FCFBA8D9B7AD7C2263B7F07A1101984 /* matchers.cc */, - D147789D5E91AB13312BF6DE031D3E06 /* matchers.cc */, - 927E1197D70B241B45BEB7573DC0F4F7 /* matchers.h */, - 2921334CAE7D788B077700717E2C9DBB /* matchers.h */, - F70464B62478D1860C6AE5575A233580 /* memory.h */, - 154F2BE2B6E8724A87459B9290393B79 /* memory.upb.c */, - 204A3E762E76090C27AAC197A417C4AB /* memory.upb.h */, - 3E8C38B68E50ECF8A8F8F3CD90CCD74C /* memory.upbdefs.c */, - 05BF01215F209396550559B62C9520CF /* memory.upbdefs.h */, - 3CDDE1765E0F260A558CC6E99E6C0A20 /* memory_allocator.cc */, - B976E5F7DD90B10B7D0169C21B5E33AF /* memory_quota.cc */, - BD74A7D724DB1A5B3C5C74F294A3BA8A /* memory_quota.h */, - 6BD1FAD72ABB4C8649C089B5DF34FD63 /* message_compress.cc */, - 18645A2EFEF4D8BFB9451944F15E6A3D /* message_compress.h */, - C2A5EF6AF2FE70B8E669CF19490766EF /* message_compress_filter.cc */, - 1ECDEDF4C82FCA27BEA956A79DF33F9C /* message_compress_filter.h */, - C18E5DC69D465D64F2FB51DD2D29CECC /* message_decompress_filter.cc */, - 41AC16BCD9A08381A3F97850B0C9BF21 /* message_decompress_filter.h */, - 139CFAB41679A6A88FD545C1FB839799 /* message_size_filter.cc */, - C8D5AA504C413C950D1B594F15E196E8 /* message_size_filter.h */, - 5A2E6485B6CC467E45DCA237903107FA /* message_value.h */, - 4C8C29A15A74FB46087B5D1B9100D667 /* metadata.upb.c */, - 2DE87DC53874A9580137D9A897BB90A6 /* metadata.upb.c */, - CD7EBF5FB7364063B984A7B4471F6301 /* metadata.upb.h */, - 5AC23B5DA5F7B31CFA2D94A0A10B7C33 /* metadata.upb.h */, - EE8C5E7BD8D7914A7BB379AE4DD7DEEF /* metadata.upbdefs.c */, - 96F7410A43D66245ED3AC75BA0DCC039 /* metadata.upbdefs.c */, - 3922CFD54B85B0F45E8F44EA32F09DD7 /* metadata.upbdefs.h */, - AB0A1508E260C87F9964408175904AE3 /* metadata.upbdefs.h */, - ADE80FD2EF1876AB92683AA3B4B05A69 /* metadata_array.cc */, - 71DAFD579FAC7192183F625354D13925 /* metadata_batch.cc */, - 848B821801DA3575DC6745DFCF758650 /* metadata_batch.h */, - AFA7295FED81E112DF84B8F099FFDF80 /* metrics.upb.c */, - 0C4B81820294A7FAEF53493E1D11D286 /* metrics.upb.h */, - 2BCE260B03AF3F48775E998B397CAFBE /* metrics.upbdefs.c */, - 083654ED2F2CEBA320970FF6FB8267A2 /* metrics.upbdefs.h */, - 27566AA7F1C7633BE555A957B2DBD4C2 /* metrics_service.upb.c */, - 3E841452D22D8D7B6EBA233662941B3D /* metrics_service.upb.h */, - F66CD89E0828D169F5EA29EF15313ACD /* metrics_service.upbdefs.c */, - 80503B25F026ABE1D34036BB6F82FD89 /* metrics_service.upbdefs.h */, - 237BBF148B7CD307E75CA243F706D46E /* migrate.upb.c */, - 5F3833159854516E2D0B9B92DD654F2B /* migrate.upb.c */, - 1331C08243CDF5C2C9DA95CDD2B9DFC2 /* migrate.upb.h */, - 7AABB31E3ACDAB7BA8770E683BCCABC0 /* migrate.upb.h */, - 1C2977F76C81A65C72F697F2AB533F71 /* migrate.upbdefs.c */, - F771AC4BCDB830BA7E421916C12E2F9E /* migrate.upbdefs.c */, - DCA5935C5E8A93F10D18141407FA9D25 /* migrate.upbdefs.h */, - 042C092FB084ACFCBCA3250BE9F76EDF /* migrate.upbdefs.h */, - CB4F32F184CF0D27310BF47688F7BACE /* mimics_pcre.cc */, - B0952C805B8A58C13E829BFD6B54AE7C /* mini_table.c */, - 80385C8C2256402D3B2A4EAB15E588F6 /* mini_table.h */, - 3A322B4302CA5F4C4581C0A9C895ABA7 /* mini_table.hpp */, - 1CB9C48F627F540C93D3E9BB0D040949 /* mix.h */, - 98D1A3FB47EA8E1409E66473005A7D97 /* mpscq.cc */, - 7710D072640D96C2B7AA385F0A0D6BA0 /* mpscq.h */, - D4EC4EF36452A330D6B3417CB84B2778 /* msg.c */, - 77A51F4925ECF7FF164BD21B92E5706C /* msg.h */, - 6703DD21A38A841429A2E73AC6897614 /* msg_internal.h */, - A242612D4189C9B85A2B2BD2803FB223 /* murmur_hash.cc */, - 06C01CD6ECB4DB8B2FC4240C7A7CB62B /* murmur_hash.h */, - 31008F3EF87979E7EAA163916EF64D83 /* mutex.h */, - 50C4607A5E9C800D0DADB4059DC29BE7 /* mutex_stats.upb.c */, - 7678CC800F699E19F1FC72CCA01979D3 /* mutex_stats.upb.h */, - DF0F460DF0C069ABE4DBA0AF2834BF7C /* mutex_stats.upbdefs.c */, - D3F17948EAC57FFC40F95EA43A8B86EE /* mutex_stats.upbdefs.h */, - 101FA6760343F14228636781C2FA25B2 /* naive.c */, - 8E37A08848FB168A3CD446827638ED03 /* nameser.h */, - 9BE306249FBC7E0D62A0DFC3DB552E79 /* nfa.cc */, - BE976FF31E3EFC8F3A9A35234659F126 /* no_destruct.h */, - 0324C9E6C1FD05080C7F876478AC50CB /* node.upb.c */, - 629444E4E1A9FC1F2757CE426FBE60B3 /* node.upb.h */, - C47A59563F05D4A639ED3413322CA0F9 /* node.upbdefs.c */, - E524E4D95865B2A1C6DD30DE1F5AE976 /* node.upbdefs.h */, - 8DAE34F466CDFDC3CED464B2D788E082 /* notification.h */, - 921D6F5945B42258494ABDFE97F57662 /* number.upb.c */, - B4D028EBBF368C157F36818D8289A054 /* number.upb.h */, - 80F8D7ED95FA6EBB82179E594C725F28 /* number.upbdefs.c */, - CCDB0181164357A278EFF369D70EA8AA /* number.upbdefs.h */, - 6B356D1E00F9DA871B4C69F9F0518B3E /* oauth2_credentials.cc */, - FE3B1861CF82858CA53393ACEF376B55 /* oauth2_credentials.h */, - C3089F3773483F41D2BB1B33487C8617 /* onepass.cc */, - D572EE6500E19D585DA2FA27E4DFF3E1 /* oob_backend_metric.cc */, - E4866A1273C33A17D1CC8DD6F80BCE92 /* oob_backend_metric.h */, - D808E9FAF553F345463B1C910356A8BE /* opencensus.upb.c */, - F2AC53E9D2081A7384529307D6E5D848 /* opencensus.upb.h */, - A1BDFB7CCA66BEAC717CFC676AA12A76 /* opencensus.upbdefs.c */, - 9FACE661387F5F53E609A1427068B813 /* opencensus.upbdefs.h */, - FA8E0DF24CF84E28B0CBEE8D050321D3 /* opentelemetry.upb.c */, - B4C04ADE81EC4AC94E52FFE68769FC29 /* opentelemetry.upb.h */, - 270120CDAE7BAB9C3809949056763408 /* opentelemetry.upbdefs.c */, - D1EB4D937CC7BD7F39667353D663C319 /* opentelemetry.upbdefs.h */, - C3811525CD5F5C9EE56F2049CC74EDF3 /* orca.upb.c */, - F633EB092FB1130E77B7D06D7F8C5E9F /* orca.upb.h */, - 627AB2FA042DA10851D02C9567850C54 /* orca_load_report.upb.c */, - 33129397BEB630E69985E604A171C2A4 /* orca_load_report.upb.h */, - 77620D97BB51073B47D1E79603217C51 /* orphanable.h */, - D61B86DF04F969B45F542B8C7C6B31DC /* outlier_detection.cc */, - A4CC2A4E07ED5C589FB43C94977A3B06 /* outlier_detection.h */, - 03C409E8C1E26CFB8C9B9624C788EFF1 /* outlier_detection.upb.c */, - 6AF76257FF1A395CC8E9C356BF46F73B /* outlier_detection.upb.h */, - 6DE60ECB1E0C0B43FC3B8E7D5CEFD46F /* outlier_detection.upbdefs.c */, - AB0F3869830E90DBB369E5D6A2A2A7E3 /* outlier_detection.upbdefs.h */, - 225A86FCC4F24113CBAE01AE913D4E14 /* overload.h */, - DBE30D1FBA4A4F01EDCEE792A813A2D2 /* overload.upb.c */, - 994D9786F3C51FFA8FC76A3450E9A03D /* overload.upb.h */, - 8CEEECA7FE44E7D147F2000D3B5B8659 /* overload.upbdefs.c */, - 77D8F136B6E55F05B32C578235C79550 /* overload.upbdefs.h */, - B741B5E1D0A54476A498636D5106EC42 /* packed_table.h */, - 1522AC1F5E5340CE17FD3B0621FF0D41 /* parse.cc */, - 48A489C288E821611ECD4FB85149DB06 /* parse_address.cc */, - 99CF4CDA14EC4A7168828C7E2F70B482 /* parse_address.h */, - D7740C278A1FE9F516CEBD1B6FD3CEF0 /* parsed_metadata.cc */, - 5683FA40D6FA0D9DCDB888F619339694 /* parsed_metadata.h */, - 3FAEE96EAC5733AF3960575410373416 /* parser.cc */, - C774AE36A045DF2B7CCDF735B23EE88A /* parser.h */, - FAA6658398256BBDF203D3624299AAFE /* parsing.cc */, - 42DC33213771446563736A226E3D2ABF /* path.upb.c */, - 467BA4014208F0E720792971663D263E /* path.upb.h */, - 2BC15D15FC3EEA275223D5A6A2D10AD3 /* path.upbdefs.c */, - 4843BD24732CAA1BE51AF39CD2ECDE7E /* path.upbdefs.h */, - C8F6F1676B155616E9903F57670EA87E /* path_transformation.upb.c */, - C11C481C8C910821E3B96E1B3284787F /* path_transformation.upb.h */, - 9B8E826CF5D4334FE67B0A8FF20E59A3 /* path_transformation.upbdefs.c */, - 07420C5C2EEECDCB1364153BFAA66BF1 /* path_transformation.upbdefs.h */, - FC8F8EB3D84173C4E4FA5539C7818E09 /* pcre.cc */, - DBE408820750FA7C8A0F46359A6DEE21 /* pcre.h */, - FC75457071D2B686EDB22D32C0E6E6E1 /* percent.upb.c */, - EAFB7829E5251C2D9974FD41D25A95FA /* percent.upb.h */, - F1F368FF3D07CCBBA01831AD2F10ACDE /* percent.upbdefs.c */, - 41CD127B3C489332BA557C830355417D /* percent.upbdefs.h */, - B5F3CEF3D9DF7B89BDC5284F3B38959D /* percent_encoding.cc */, - B0C19F84BBB23A1A7EC659C47BCA9E70 /* percent_encoding.h */, - 20CDBE5F9BCABD9B5B94B363740EF479 /* periodic_update.cc */, - 2853B6FFC5EB1390F8B01F29542CD2B7 /* periodic_update.h */, - 11A41C38FA106AB6319EBB40983EE005 /* perl_groups.cc */, - 2BA606250839500CF6864FAC5B98EC3B /* pick_first.cc */, - D005F18DB7324E48E8BF8E13BF3F5D30 /* pid_controller.cc */, - B121D70EF92B043A1A1584C579548A52 /* pid_controller.h */, - 38DFEB12E491FE27CE0123B485FA92CC /* plugin_credentials.cc */, - 00AAA4DD02F35853A27F6E5CA59DEF06 /* plugin_credentials.h */, - F1796EA61C64F626AEC1E4133E7138C7 /* pod_array.h */, - 0F19488CE91969939757AF32AF3050D4 /* poll.h */, - 6F25EB5B636A25FE646304BB73DCCEDF /* poller.h */, - 9F80153F4F865D29F5D70B226F655659 /* polling_entity.cc */, - BFFED9C1285C281437A5AA43F8E82956 /* polling_entity.h */, - 44AA50AEA617B6562511EC6C56E3C3C7 /* polling_resolver.cc */, - 71F44072C383AE765E4AC606419FE99C /* polling_resolver.h */, - 0178E167F0E133055F578A6E27533F55 /* pollset.cc */, - CA571D814A2DB230278A56265823500E /* pollset.h */, - CEC41E1012CBECD8C9C57AC7C72A3A09 /* pollset_set.cc */, - BF0703816100982D11C66479B5F34F9E /* pollset_set.h */, - FF7572C0D633D81B8EB3959C7489B056 /* pollset_set_windows.cc */, - CCC58D8BC16C091215A5A467E37379FF /* pollset_set_windows.h */, - 8914F223550732A95C8DA4544F638645 /* pollset_windows.cc */, - 6F81FF239BF2881CBED9B53AF5145E5F /* pollset_windows.h */, - 75DD5BF750D5530177B5F59F481087EF /* port.h */, - A7B503E57EA992EA2106B77A44C36332 /* port_def.inc */, - 973D09FA8B84178D1BDEF9F4850AEDC6 /* port_undef.inc */, - 31DA655DF3D6FCCBCDCFB2B6676BDE95 /* posix_engine.cc */, - 1BD45741D4ACCC04949E6770DC9B15CC /* posix_engine.h */, - 6A72746CFA5F1C2D5C2FD1B721CD7247 /* prefilter.cc */, - 7F8F68011599A37679C69A6BC10FB9E8 /* prefilter.h */, - B28FBAF2D85D461314A6D7B1558FE22D /* prefilter_tree.cc */, - B903D4DEFC7342FE0063E6E284FFC0A8 /* prefilter_tree.h */, - D45E4FB04A2F5661F170F437762F68CB /* priority.cc */, - D30F38FB030A12D624E5641821580846 /* prog.cc */, - FA273065DD3BB0E3B3891CE0BFD1BDA4 /* prog.h */, - A7A27F20AA6A790B3928D35C17CF6A55 /* promise.h */, - 581CCA92F93134248BE3029048BD3D5F /* promise_based_filter.cc */, - EE804E9FD4338E79C130A9BB491A1682 /* promise_based_filter.h */, - 470DDA3D7EBDA386014E4071AD8F3BE1 /* promise_factory.h */, - 8B41C54125BEA274B0E44A102ECDED77 /* promise_like.h */, - 0FF54C24FCA429B0CD45ABFA725B27B1 /* protocol.upb.c */, - 2B629CD1122C320E88A3DF4B791A1516 /* protocol.upb.h */, - 1E997CA9154AF79B101D6E82B916EFF8 /* protocol.upbdefs.c */, - F69932F6D1F2F4D3ABFBDE3B9821360D /* protocol.upbdefs.h */, - 37B71D016F5AB4B39D0BE3A2EC98DF0C /* proxy_mapper.h */, - 5E09020B5D3C183A7C47AC81BF64505C /* proxy_mapper_registry.cc */, - FC8AA6D2A84ABF0D286C16E664E6303E /* proxy_mapper_registry.h */, - EB7E7D65D43AC6B614C525A0E6265B07 /* proxy_protocol.upb.c */, - 123B991CA38B79F5E44EF2E7B8FF414B /* proxy_protocol.upb.h */, - BE37B600E887DE98849A0423696B923A /* proxy_protocol.upbdefs.c */, - 8368D024F6289CD4C6ED674FE54117EB /* proxy_protocol.upbdefs.h */, - 2D914461D85784124AA8CE79666C3308 /* python_util.h */, - 4503E8A7899D86D8E705BCA82EAEBC4C /* quic_config.upb.c */, - 89CE7E704B22BFEBF30F6FD8D911D5B8 /* quic_config.upb.h */, - A2DA81D2FC2D25A5355AB178D9492634 /* quic_config.upbdefs.c */, - 754314632A7CFF878DBED6427474B473 /* quic_config.upbdefs.h */, - 858A462A922E3B82A20CA6FAD2D03618 /* race.h */, - 0E394C6120D94A8B14FAF37D19E69684 /* range.upb.c */, - 4B677005586E12690055682B28A8BA34 /* range.upb.h */, - F03A0837E10E83A4EFD001F774A89742 /* range.upbdefs.c */, - EB8C0A552D7530749626CB9E0348637F /* range.upbdefs.h */, - 14BE70D9DC8CD4AB58B059281663E8CE /* range2-neon.c */, - 26C09341D7EC6D699A3E703E35AEDC92 /* range2-sse.c */, - C04D3699CAACD78C0AE091952ED4AAFC /* ratelimit_strategy.upb.c */, - AC40AB2ADE36E501E757D387E042971E /* ratelimit_strategy.upb.h */, - D1BD1ED880C77C1C655E02C22720BDC2 /* ratelimit_strategy.upbdefs.c */, - F61F4DF6EA38468A07001EA30ABD8AC7 /* ratelimit_strategy.upbdefs.h */, - 119EF8A4435910A100F5E99E4EDBCA21 /* ratelimit_unit.upb.c */, - 7D005FBDFE35091B437E2B7B95CE9A3A /* ratelimit_unit.upb.h */, - 0BB09B9AC5613704597CBB67857733AE /* ratelimit_unit.upbdefs.c */, - 839DD14D9ACEC67FBD86E1F203C200C2 /* ratelimit_unit.upbdefs.h */, - 0B511B4215F8C302EF71B18E5016243E /* rbac.upb.c */, - DAFABCCC619A2FE6F2AA91023D511AA8 /* rbac.upb.c */, - 486F932832F407A1FB39ED9FF85127C6 /* rbac.upb.h */, - E4183EBAA2C8EEFD2A4BDB04924BCE7D /* rbac.upb.h */, - 6C9021F6FC9BE900E7CD3C475C510E5D /* rbac.upbdefs.c */, - 7499623D6B9D5CC76C42FED7F38DF643 /* rbac.upbdefs.c */, - F18117D997AF0DA0C76E685ABB0E8F71 /* rbac.upbdefs.h */, - C058B5A0A026F7AB7BB0210D1F40CE47 /* rbac.upbdefs.h */, - 53660483CC051A5A551C354394CA2EEE /* rbac_filter.cc */, - CF9C125AF3CBC4F8F791D25DABDBD207 /* rbac_filter.h */, - C844A8FD3CDB89A0FCE10DA129B9DF42 /* rbac_policy.cc */, - E887EC5107F3C13FDED59A34E7463859 /* rbac_policy.h */, - F15C98FA291DC6F9E32B7355144234C4 /* rbac_service_config_parser.cc */, - ECBA7AE330D5D7E661566908E3186D97 /* rbac_service_config_parser.h */, - 1B46928C3A47E4A4891F6E8EDEE6403D /* re2.cc */, - FC4CDF69ABA1641838F9C784D8FDB19A /* re2.h */, - 408BD66CC047A94055DFEB2F1EA0B130 /* ref_counted.h */, - AB0542540352019915F6C28BB23262D4 /* ref_counted_ptr.h */, - 884F56D1FE18C88E04CE0C60DDC068D4 /* reflection.c */, - AA8CEB25D40CE457BDB3403F185F30D2 /* reflection.h */, - 78F7AEDE4094100DFD6C569F2EDE090E /* reflection.hpp */, - 58A3508AC81E61FBA6E484F7CE29E973 /* regex.upb.c */, - 673177F4971544C9C1FBF552C282F599 /* regex.upb.c */, - FD76DB8B1C84D0CA7A8F2C22FF9CFAAD /* regex.upb.h */, - E15820FD15877D9E1361FEC1F50F0B95 /* regex.upb.h */, - AA84801997A087F882A2A27535485628 /* regex.upbdefs.c */, - 28FE76CFE9F4BEBCB914AFBADBAE79AA /* regex.upbdefs.c */, - 6D818AF319C7D09EE62BDB0A3E28678F /* regex.upbdefs.h */, - 20755D82FC61D6246023D7BFFCCC5037 /* regex.upbdefs.h */, - 188BE3785B4092C02DBE4D892D5A7FF4 /* regexp.cc */, - 150B2B6BFDF59CAE192AD0CABF0ACA37 /* regexp.h */, - 8825C89C732232E79B8C1A07F147CF94 /* resolve_address.cc */, - B1A0FBFBAFCD557B8C8791CCFE1AADD2 /* resolve_address.h */, - C0242C4A3C1FEF4E6FBC2B09A181701C /* resolve_address_impl.h */, - D8867A1D5700DD7A03E4E9EE7605C158 /* resolve_address_posix.cc */, - 35E8A32CE322A3E022C3DCB888208A0E /* resolve_address_posix.h */, - C207DCB9D9FEA47F6BD9C6471154160F /* resolve_address_windows.cc */, - 85DFFF7A0CE9899F31F4CC4E802D8695 /* resolve_address_windows.h */, - DA826E834C379BC205FCC293900DF8F3 /* resolved_address.cc */, - 6FC58F6072465A6829CCA8C8E8FF0F10 /* resolved_address.h */, - 4E055439FF5B3CC31E680570D6DBB750 /* resolver.cc */, - 19CA51DFF75942055965196F29F926E2 /* resolver.h */, - 7D5B6E3AA3455C88892C51CD0863D1E5 /* resolver.upb.c */, - 4735E0CC0246CAAA6B6894E1FD0E31EA /* resolver.upb.h */, - 7BB6A70CC87BD78FE8DC7FAEC4330FFB /* resolver.upbdefs.c */, - 3B1AA9559BDE1C0FD02B513FF76C89EF /* resolver.upbdefs.h */, - FBAF17A98DBB7476AC3961EBE9E2CBEF /* resolver_factory.h */, - 054F7D5A4479D49EB3C9C98416D97E12 /* resolver_registry.cc */, - 4CDE79020F08EFE07D8A5C7A08EB8F50 /* resolver_registry.h */, - FFF0C979AF8E5F953479DE4EFA0C60E6 /* resolver_result_parsing.cc */, - B8E642D6A332C826846139E0C783BFD7 /* resolver_result_parsing.h */, - 0634F16BCF6BE1DB9FE0849F05115E3C /* resource.upb.c */, - 7CCBFD5732A9BE2A05441D7EA6A71F6E /* resource.upb.c */, - 5660127BA17F0342C2293D076477DE32 /* resource.upb.h */, - C825D1178B5DEA48C2971D88DEB6EBA5 /* resource.upb.h */, - 74734BCA91DCF3DF9B34EE0F71364EB8 /* resource.upbdefs.c */, - 3F0340BE5A31437558ED606A17F43A15 /* resource.upbdefs.c */, - 0CFA724637CB489D5E948BA722221A43 /* resource.upbdefs.h */, - D93105487CA837E2B990AF42A5B20225 /* resource.upbdefs.h */, - D854186469E4DADB5B0A0C312FB64194 /* resource_locator.upb.c */, - 0B7FB9BBCC529428F75ABA3625B7BF56 /* resource_locator.upb.h */, - FFAD1CE099250D9211ABB625047FE804 /* resource_locator.upbdefs.c */, - 79D93757864157DE03BF62355E41CD82 /* resource_locator.upbdefs.h */, - 1DA46895756E69F3B9F46764AA039733 /* resource_name.upb.c */, - 452AEF02AF512CBA16C87AC120FF3F63 /* resource_name.upb.h */, - 2CE19B9FC7E470FD0590714772741D56 /* resource_name.upbdefs.c */, - 9A8BC20F54E5F3266ECE7402547E83D3 /* resource_name.upbdefs.h */, - 6A9E9BEBCA9BF3F3564A89520F9561FA /* resource_quota.cc */, - 43E71514D4554E01A6957C0ED3C73B1C /* resource_quota.h */, - F5D6F7A3EC34FE8878B6884226D55150 /* retry_filter.cc */, - D25E974A39FA21BF7767713F01E43EB0 /* retry_filter.h */, - AE703F476C16C469B372C72422DE1C3B /* retry_service_config.cc */, - 01CF51B3954682CC39060D76C17E7D9B /* retry_service_config.h */, - DB7D999D6E7FCFF2572338BF85B16D57 /* retry_throttle.cc */, - BEECC412575A1BCD57C035E6E7DE6000 /* retry_throttle.h */, - 15F626839572D1DB285F90644A233421 /* ring_hash.cc */, - 8B1D8FB1EDBCEA242BE829963D723BA4 /* ring_hash.h */, - B8B7536160184D4222E33FD694B18C03 /* ring_hash.upb.c */, - F5494FBC2F9372FB7EFF9C480BDBF6E9 /* ring_hash.upb.h */, - 1975B513063EC92B14E161186BF1F74E /* rls.cc */, - 043FE3E6C18A23448D40A0E4B4D19A54 /* rls.upb.c */, - 605FE44A9239FEDD2A4221429C15E070 /* rls.upb.h */, - 8EC2D6D1BF6239E1204779E205989C09 /* rls_config.upb.c */, - EDF35D4254DB55A51CB46A690EE0DE40 /* rls_config.upb.h */, - B42B8DBF43B5A3C26DFCADF175BD42A0 /* rls_config.upbdefs.c */, - 7F68B66FA26669911A340D622679C840 /* rls_config.upbdefs.h */, - 47D47483362AF68A27EAA27C598F91B8 /* round_robin.cc */, - F43C7B897F97A2AE6F33AD408D4C0DC6 /* route.upb.c */, - 6F78BA2CAEA88F2C95083F594C34C93A /* route.upb.h */, - 6BE3AB8DD0F3F0A6E3DA66BA882C62EC /* route.upbdefs.c */, - 86889066EC0EFD4D6845ABF42DA762F6 /* route.upbdefs.h */, - 7F13F276ABA51A14E301231E801422F5 /* route_components.upb.c */, - 206FC3208C8924001449698166E3F536 /* route_components.upb.h */, - E2B47A4F01F2C91755352C78B324DCC0 /* route_components.upbdefs.c */, - FF057E39A828E53FBE6D699AE0CA0E6C /* route_components.upbdefs.h */, - 8903038F2FAA6BA24AACB58C6F64F414 /* router.upb.c */, - EB906685D4A23D624949C9FE94C89D89 /* router.upb.h */, - D3FF5E74E6E0C03FA96EE34164092E74 /* router.upbdefs.c */, - C9CC380E5CD27BAA280EC6FFD46E817A /* router.upbdefs.h */, - 8EF8A35991D4E6CE200CA75EB9FEF6D1 /* rune.cc */, - A588888A7CBD9E880A3787089F49BAFD /* scoped_route.upb.c */, - 4D5378060BCB42AA8BF69C98FF163CE3 /* scoped_route.upb.h */, - 684FC0BC69AD400F535589D1D61529FF /* scoped_route.upbdefs.c */, - 3DA01CEE16745AE7DAC47E0CF19A2D05 /* scoped_route.upbdefs.h */, - 00842CD947022049AF21532D6F689155 /* secret.upb.c */, - 0837FB8A12ADE2BB2305D0FEDBF7ED1F /* secret.upb.h */, - 9886F834E9287949F012ADCE4839B747 /* secret.upbdefs.c */, - A6B67B5FA8091DDB641099C405597FFF /* secret.upbdefs.h */, - DC370DDB91D9BBA829C11C1CF572B14C /* secure_endpoint.cc */, - AD2E12207946547B6E6B68790692F2B9 /* secure_endpoint.h */, - 24D1A4EF638FB0DDC1616E15A53E7E2E /* security.upb.c */, - F91A23F7AFBD4E34A0FF7C5F4F1D501F /* security.upb.c */, - 0A174314C39D401855EA85B42396433A /* security.upb.h */, - ADCD8DFE593A8790EF8DF76D7659EFE8 /* security.upb.h */, - F86620DAD0C1B9617E38E9E0AEDA349E /* security.upbdefs.c */, - 89B128B508C0308A2AF66EF3B994E941 /* security.upbdefs.c */, - 0E08E597B6588B1CFEAD63915941B59F /* security.upbdefs.h */, - 05603E080B7957664B50E13BBACA7222 /* security.upbdefs.h */, - 2608493C7B8C20CC32333E8A93D0D04D /* security_connector.cc */, - CF8D0C569836EEB33BF1DE9A53489B2B /* security_connector.h */, - D3B5FA33766A60B4F23F9FCB883A5F8E /* security_context.cc */, - F0AA1987F49D49EC272AEF1CDEE44A7D /* security_context.h */, - 92A8C8886534F99480F5CEC565823CC3 /* security_handshaker.cc */, - AC8B515E9882F2F80A27025C3F996B38 /* security_handshaker.h */, - ECDE38B3FC4AB9E9C47D6B2239B43128 /* semantic_version.upb.c */, - 01B540E31F3BED592296B10164B3C452 /* semantic_version.upb.h */, - 22DBB810D6FBE3C239E12E0E5A1E44A4 /* semantic_version.upbdefs.c */, - C4620C7ECB575EA763239802001C9A35 /* semantic_version.upbdefs.h */, - B8C2F93CF0342E109E495F55C29543EE /* sensitive.upb.c */, - 0CBE2A64EC2B57F4BA89B40B812DD568 /* sensitive.upb.c */, - 1DA0DB6D2819859B62E1C5B754F07771 /* sensitive.upb.h */, - 889D49C30222A0127ADFF219895821BD /* sensitive.upb.h */, - EA3E1D2993A0CA183D8605B0191C217F /* sensitive.upbdefs.c */, - 5C93C5F8AD53DE3D25662800C9393B6B /* sensitive.upbdefs.c */, - FD53BDAA60C11E139052A737A66DB87D /* sensitive.upbdefs.h */, - D4353FBFB268383CD6FB95EA116B08C2 /* sensitive.upbdefs.h */, - 42451DEB71FC64F850C3832CF5A3E213 /* seq.h */, - E3A8243385EB749CC0B9CB1922DB02FA /* server.cc */, - 67086824536AD3BA315A8B5E49F55B8E /* server.h */, - 5F1C7493078EA6ADFDF0B0E69A494773 /* server_address.cc */, - B5AEE86292B51CFD21969FB61AAE8E47 /* server_address.h */, - 65AC650755E70917DB6DADB38BA70D3C /* server_auth_filter.cc */, - 2881965F7068136F58F91B450AA62361 /* server_config_selector.cc */, - E27318BDCA3B55DED4F246CB929FD338 /* server_config_selector.h */, - 0DBAF8CFE2B37FF190EC5340B9BA15A0 /* server_config_selector_filter.cc */, - 1FFA8BFF04370260E7DF86886A867442 /* server_config_selector_filter.h */, - BB84EF334CC943D709C94E8C14AC38BE /* server_info.upb.c */, - 4CD37D1232681B15B152671402B1D3F4 /* server_info.upb.h */, - DBB7EABB52708DCCDE325832D19610EF /* server_info.upbdefs.c */, - BCB2453630C2CDCE3881352FF5C4EB70 /* server_info.upbdefs.h */, - 51D2CF91FBDFA49F8EE3313584DBAEE7 /* service.upb.c */, - CC72A9402C9409D8ECDCCABA84960771 /* service.upb.h */, - CF96B649FDA7326D3EE30CC6AFE6D4C7 /* service.upbdefs.c */, - 7359B7BA7C6FF0EBED5697581C1F038A /* service.upbdefs.h */, - 2D2B5932D59CF896AF331C7455E83E87 /* service_config.h */, - 41E6988F82084782CE70EB824E643991 /* service_config_call_data.h */, - D8C03E0DE47940C09661BE8868F5A062 /* service_config_channel_arg_filter.cc */, - 9EECFBA7194D482B07A10FD2C85B03F3 /* service_config_impl.cc */, - 1A36D9C035BCFD1324F484913C6463A7 /* service_config_impl.h */, - 553747F2878660240CC64A8F8907F346 /* service_config_parser.cc */, - EA6A13B8B269F58F9B357025D0FA683A /* service_config_parser.cc */, - 3817AA49B807F526FC21E3DD84ADC8AA /* service_config_parser.h */, - C508BED4A2017ED4D125467788FDB416 /* service_config_parser.h */, - 93E1D2292491007E908DD9F0596831C0 /* set.cc */, - 4E3E7675CE17E4AFD6F620315D2DAC07 /* set.h */, - C21A7FEE31E6587E7339326CDF570EE9 /* simplify.cc */, - C2EE68D496B77A1EA9DFF0475B27D8AF /* single_set_ptr.h */, - F7F30151F6076E89C98CFE8A78B7195E /* skywalking.upb.c */, - FC288893084AE5D080A397A27FA423FF /* skywalking.upb.h */, - 6360BDBD7F2CA4293AA9EDB99C551A82 /* skywalking.upbdefs.c */, - B30762529350C4D96A5AE1F90DBD9F1E /* skywalking.upbdefs.h */, - CDBE03FFDC9817DB13EB9E39AF096473 /* sleep.cc */, - E972D2002937D3DDC13EA710BAF777FD /* sleep.h */, - 4C8D4AD392472B6DE3CAE9F1E403E696 /* slice.cc */, - 636DC4CD513E8471A5776B96417DC0D8 /* slice.cc */, - 0F30BB17CF6C392F9DF995C4CBE71678 /* slice.h */, - BD8433D8437001217A32070E30079FA5 /* slice_api.cc */, - F2B94F233981F6FAF566270C531223C5 /* slice_buffer.cc */, - C45DF6B1C0ACD716FC0B0ECE837BCDB2 /* slice_buffer.cc */, - 6691054229FE27550E269235F3E624AD /* slice_buffer.h */, - 5ADC95A05159E9A7BF399E81A02EF3EE /* slice_buffer_api.cc */, - 9CF3F3A2EE81EBB23EC4234A586D0D88 /* slice_internal.h */, - 8B98D303E753456A60A4B7F70B4839A8 /* slice_refcount.cc */, - AD1DFC597DB1D5020134118190C806FC /* slice_refcount.h */, - 0FC001E714139D0B27DA58324C56EBE1 /* slice_refcount_base.h */, - 3611235070AE4A66DDCC04DB845D7A1D /* slice_string_helpers.cc */, - 24AB50486C6C94BC8CAA3E17B315EB10 /* slice_string_helpers.h */, - E697E9B2A859FE83DFE63A97032ABCAF /* sockaddr.h */, - 39D3E28102BBB1AF3E1D37D90C92A1EE /* sockaddr_posix.h */, - 33EE0318AF45ABE8ADAE15C7E30B7A0D /* sockaddr_resolver.cc */, - F2018B38817CCDF1AB3ACE7EC6778396 /* sockaddr_utils.cc */, - AD8C51E04512E3704FB6C134C9E96456 /* sockaddr_utils.h */, - 654935D1135F3D751C672E6CE4D65125 /* sockaddr_utils_posix.cc */, - 0016F3697BB2D507CF5B838ED0900BEA /* sockaddr_windows.h */, - 5A71526266EF70CFF204476072747484 /* socket_factory_posix.cc */, - 3DA08BA8B50DC72DDB36532E53EF6857 /* socket_factory_posix.h */, - 4EEFD82193E0C49AD0A3A978C6BC196F /* socket_mutator.cc */, - A92B31043C7B1DAC7957E5068CE99A7A /* socket_mutator.h */, - 5E6F78950A5D6889537FB4BAA5BC3AF8 /* socket_notifier.h */, - 21995EE3344B951AAA0D991E22F21F4E /* socket_option.upb.c */, - 704E4963623394BFDD9FE2AD3C0748B0 /* socket_option.upb.h */, - BBD7798AB013C053F2E76491C5B6EFAC /* socket_option.upbdefs.c */, - 9CE9D1ED01E586499FA49574DFC0A04F /* socket_option.upbdefs.h */, - D52ADBAC85E227A9DECCEC6F34776599 /* socket_utils.h */, - D179F32FF7F26EAEFFD2E911CD0D333C /* socket_utils_common_posix.cc */, - BDC5DC5233CF25321EF143D3B0B425DA /* socket_utils_linux.cc */, - 08907FFC03E574D5F29CE200623AED27 /* socket_utils_posix.cc */, - 52D84E70155B87C243F4C1CB7479D60F /* socket_utils_posix.h */, - BDAA16E71EF33BB62C9C1B92818B8823 /* socket_utils_windows.cc */, - E485EBCBA1B7994599078CEFAABED88B /* socket_windows.cc */, - 08B3E4C96B4854DEB61D4D1C85C5E33F /* socket_windows.h */, - 1AC51CD662C33BBD4B460B884DE307C8 /* sorted_pack.h */, - AD20F6FD78E5B375E7410117E248CD3F /* sparse_array.h */, - 7D48FED36BE16E0456D8B6718B78A529 /* sparse_set.h */, - 6097A96131150EFC5CBFE14B777EC693 /* spinlock.h */, - C8B06FF63F378553777F9A839CEA45B7 /* ssl_credentials.cc */, - 49535D78406F24160B801FFF22C2722E /* ssl_credentials.h */, - 796F9940703794CB3C627FF32271F786 /* ssl_key_logging.cc */, - 799A987C7CFB3B3191D4E1C69EE0291F /* ssl_key_logging.h */, - B0BCFE845AA727C770F15FC39C6CE3AE /* ssl_security_connector.cc */, - CDDD2D73791FB482AB9782B867AC2F70 /* ssl_security_connector.h */, - F07D781B56E3309BBFB234313C631FAF /* ssl_session.h */, - AAC56110EE299D0D2FA70F9F057ECA58 /* ssl_session_boringssl.cc */, - E8CF2B976FE5F0B462615A64145E0932 /* ssl_session_cache.cc */, - F465A47AB5112A82C393049F0AA971BF /* ssl_session_cache.h */, - 701ED1E54D3281E8E45BDDB3CD61B06F /* ssl_session_openssl.cc */, - A6196876EC6F4D791C83ACB255423247 /* ssl_transport_security.cc */, - A18F1B5B4BADC40A887379C0B32ACF4E /* ssl_transport_security.h */, - 1EB1444C130BA5DED98284F1AF09AA5B /* ssl_types.h */, - 552C7E81B4607B1144C0BEBBFDEAFDFB /* ssl_utils.cc */, - 164DBA11BE7F19B1765886A7011DDCD8 /* ssl_utils.h */, - B10D00B747D229DC2D8763AAECD49087 /* ssl_utils_config.cc */, - 146AC436A90A252FD5897A59D8A920BB /* ssl_utils_config.h */, - 1781BB0D9BFC6A8BF2634B1A513498E1 /* stat.h */, - 69D19C1DE663BB0048D8C3490C7293A7 /* stat_posix.cc */, - 9A3A71594F0896A8AAE0979EEF764104 /* stat_windows.cc */, - 7D92486790536239236C8CF54739A4A1 /* stats.cc */, - 2DC76C83BA21A07D6D3B59C97EEB682E /* stats.h */, - 5B268B72904055358B955F9F4CF219D4 /* stats.upb.c */, - 92C5FEE6A4D726E49B64835A36B09969 /* stats.upb.h */, - 26A16F1D6A10BE5A569C15FEEF003DA9 /* stats.upbdefs.c */, - 92479FC78EF86A6D60DDD788A64916DA /* stats.upbdefs.h */, - 37253A0CF4F309D3341749330B4D4BA8 /* stats_data.cc */, - 1D598A2C214CD177CFE95CEB5B1784DF /* stats_data.h */, - F1D4322981761FF288EC921A91D35DAA /* status.c */, - E04F87549BF341FC3D4B23B6D3AC9437 /* status.h */, - DBDF4CEEAF4FED1108C9BF7202FFF23B /* status.h */, - 91F6FAAB32BA5853A6EEA61402B30223 /* status.upb.c */, - 010534D293688125225F9A18822035A2 /* status.upb.c */, - 0AFC54081D9D4DD9CF870208438C633D /* status.upb.c */, - 1F652B140E607983B920F4855C0736F4 /* status.upb.h */, - 4EA4F61BA6DE6D6741FA81CAD1B4A769 /* status.upb.h */, - E9B0275D603793A0F347AB437CEA043E /* status.upb.h */, - 60D420F96CDF12208D4F3E3F89FEADC8 /* status.upbdefs.c */, - BFE36402D3D7351454461BF466848B03 /* status.upbdefs.c */, - A205E0A9B9138F7FC515247064C77BBB /* status.upbdefs.c */, - 34F53D5BE1F3C538EB74CE713C2D673D /* status.upbdefs.h */, - 0CB687260ED178368E23C4D255D62246 /* status.upbdefs.h */, - CB6D2A218F89B0DA61D3FFD1B0104124 /* status.upbdefs.h */, - 0C7097935DD467C1ABE0EBA62D15FC44 /* status_conversion.cc */, - 499C98641AC653051E58F37C56DFDC90 /* status_conversion.h */, - 026B23DDD049ABB351FD2EB88450346D /* status_helper.cc */, - B51D4BC7B2A5193A66A3D2D8584FDB2D /* status_helper.h */, - 2749647CA6BA0679EED2A0D102114A35 /* status_util.cc */, - 7F15E1B830E7FD883854BD8E644F068D /* status_util.h */, - DF83025E4BD51FB9F0D27CB29305D266 /* stream_lists.cc */, - A6E52397D0320FBBA9C5C2F477CFDE34 /* stream_map.cc */, - 14CDDB904C6B91A2BBDFD2ACDC7957CF /* stream_map.h */, - E308D3B1D0C19CE6D25EAEEEE1913604 /* string.cc */, - 3A7A4D2B3EA04CD2D431FC77E580A86C /* string.h */, - C96646CB9B40FAC85FA17B6098767FAD /* string.upb.c */, - B6372AE661A63346B4DA4591FA1537F5 /* string.upb.c */, - BC57ECE84E3252A14E6F994ACB1C3BEE /* string.upb.h */, - C04C4C41919DDFD8256619CA343CF213 /* string.upb.h */, - 807951AC5231970558C0691BD7C44F49 /* string.upbdefs.c */, - EE41E25CB195BDDB101D4BD5C54AC937 /* string.upbdefs.c */, - F2824B7066940497B80155061765CF95 /* string.upbdefs.h */, - 0EC6205C591DA2704E9D3A2DE341027B /* string.upbdefs.h */, - 75DEE7F292D417CB70BD489E34DF47AB /* string_posix.cc */, - 68C1DD396516234BA2C51EF11565EE2B /* string_util_windows.cc */, - EBCFFE7A064D5E3A3EF6ED6E611656B4 /* string_windows.cc */, - 3D42FCC370A6088C0015DA5F7E60C62B /* stringpiece.cc */, - 9CC6C38CA5AC54E5BB752E1201DAB65B /* stringpiece.h */, - 13439BAA1D978BB3A922745A675A84B6 /* struct.upb.c */, - 3C180102BA32CE9B12AF39D1E5AB3210 /* struct.upb.c */, - 9AF6B6A69AEB02ED1527DB0973FA6046 /* struct.upb.h */, - DD266D40382F30E91821538F308B9C37 /* struct.upb.h */, - 51336D71B379B293BCA3C8B3E9D9EBFF /* struct.upbdefs.c */, - AF89B3E7236AD3C2B8071DCD77C0DB0A /* struct.upbdefs.c */, - FD8D010B341CD186B2702FB0FE810381 /* struct.upbdefs.h */, - 4E70880A680300C2F8EBCFCB8AB11FB0 /* struct.upbdefs.h */, - 994D8465EFBE52A42629F2A93DBF103A /* strutil.cc */, - FD25CA17182899DC1BC62F676BC68B55 /* strutil.h */, - 9844CFB6549D86371E9AC75D558DBEF4 /* subchannel.cc */, - 020A6AE37E25FE5415EE87787A8B568B /* subchannel.h */, - 38D052780525542B9D7CBC3DB4AF5AFD /* subchannel_interface.h */, - E0793C1837002EA46022CE503C1FBC39 /* subchannel_interface_internal.h */, - DFBFDCA637293CFB8D09C9871AFB04AF /* subchannel_list.h */, - 71510BBCBAA823517D5993F358795D45 /* subchannel_pool_interface.cc */, - 8AF126228940DFBB0169093B1627DC10 /* subchannel_pool_interface.h */, - B79AAE9737B55DD1BB069A1BCA08F25E /* subchannel_stream_client.cc */, - 2E728DF3C719A431532FBD088134BA75 /* subchannel_stream_client.h */, - 09E0886FB5EE1B9CCDE2E3424FDB1E10 /* substitution_format_string.upb.c */, - 2D476990B3136475ADE67B7391B07406 /* substitution_format_string.upb.h */, - 12CD8EE7E95D665870239C22F413E917 /* substitution_format_string.upbdefs.c */, - A186B0CB5F97B50221217601950819E9 /* substitution_format_string.upbdefs.h */, - 7D42CE31A98293DA4D63D88E8DD47FC6 /* sync.cc */, - C3762F9BDD426D3B4E59E305CE021E54 /* sync.h */, - D7C0DA1668222216C7A0781EC177BEBE /* sync_abseil.cc */, - 4B24444088D584F712D7FC14D82C35BC /* sync_posix.cc */, - F82E6C6994D8E3235EA1C0577749B899 /* sync_windows.cc */, - 2A7D2FF6173D8DE0A107DE2F930F13AF /* syntax.upb.c */, - 68899930347F6398814220466D1DA45D /* syntax.upb.h */, - BAE85648440381407F11E50159CB1701 /* syntax.upbdefs.c */, - ACBD2765C696BE0C99C66D5005CD44E4 /* syntax.upbdefs.h */, - E60916F62333BCB2DDE838C4938D76AB /* table.c */, - 2E8628A56468D58FC7C1FA03B6DADFC0 /* table.h */, - 121DDDC118D56428E342CD24CFD53BE5 /* table.h */, - 8F1852BA1E97745C409E9B029D50E8FA /* table_internal.h */, - 57ECF721863A71EBB8B6DCE2669E9B47 /* tap.upb.c */, - 1C0ADF90A07901007BF2B7E7A82B1D5B /* tap.upb.h */, - 1DE62FAAE286CCC194CD33B462FA7EC8 /* tap.upbdefs.c */, - 0C026E164309BD57461813C31AEC0F43 /* tap.upbdefs.h */, - 6338F6E0BC6CD448B253C5681F745F26 /* tchar.cc */, - 99ADED98F966D8D3F351A5CBE0D4E23B /* tchar.h */, - 7E4EAD0BD8FB6F74E445170ED4877F23 /* tcp_client.cc */, - B4D171BD9D1D0A833C72E50075FDFBE7 /* tcp_client.h */, - 8BCDBD85F63ACCA4D6B97297946CA543 /* tcp_client_cfstream.cc */, - 8F90F898FEA07264FFECC3A869FEFCF9 /* tcp_client_posix.cc */, - 71945B90F81F84D5200AB10AAE155E89 /* tcp_client_posix.h */, - 9AC103B972DC6DFD9CD206F2CB580ABE /* tcp_client_windows.cc */, - 6EF9A7564CA1555B504ED72735CE94AC /* tcp_connect_handshaker.cc */, - FA2B94669A65E25D50A5496932688F75 /* tcp_connect_handshaker.h */, - B9AAC40E39BD0FB9F2EB6A3B9867D754 /* tcp_posix.cc */, - 2DCFEB02E1188E6E7B3C7BC6744C8280 /* tcp_posix.h */, - F6C1E8823AA215DC20395E2F03891E75 /* tcp_server.cc */, - 9844E3A37FFD6175761AEBA2983074A8 /* tcp_server.h */, - 327D1FA8ADCF1DA2B9CE13E0FE10F59E /* tcp_server_posix.cc */, - 0CB9F2E62605C9E6718C530233667D7B /* tcp_server_utils_posix.h */, - 7169945F5E485F3262B22D54B2E3A341 /* tcp_server_utils_posix_common.cc */, - 1B7ADF6AEAB25592794307A8E97CD5BA /* tcp_server_utils_posix_ifaddrs.cc */, - F130D519E593354BC0629DEBF3058E86 /* tcp_server_utils_posix_noifaddrs.cc */, - 2DB6AC5960B68B54964C2F6CD5C6DB3C /* tcp_server_windows.cc */, - 0CE3451B14BE5098477B01EA631A96E6 /* tcp_windows.cc */, - 53BAEC956CA1A4355E7F3E2B725705B9 /* tcp_windows.h */, - 017A1CC21502A56709FACABB0263B6F1 /* test.h */, - B62695BA6D668CE8F7D173FA3BB9E3BC /* text_encode.c */, - AB99B1D72A6245C3C5255A73316847B5 /* text_encode.h */, - D1B540F55F7DB2B9D510A0BB2A9F8E09 /* thd.h */, - 86EECCDC7950DF55E642EB7707D1B0F3 /* thd_posix.cc */, - D77CF0DB45417CDF9C6C10F242746ACC /* thd_windows.cc */, - 30BCF3EFAE4D317FF2B7F827B91CA82F /* thread_pool.cc */, - 8925B06C32C81CBDA5A5468F78CE70B4 /* thread_pool.h */, - BDC41B78FC9E2C366BA662F26F7CE207 /* thread_quota.cc */, - 3990D9F719024BA5F88C3712DF7C80BD /* thread_quota.h */, - 62BA6FE22AEDDAFDEB9C2B233BA1140A /* threaded_executor.cc */, - EA3A681265106D73B652EF155DCDF403 /* threaded_executor.h */, - 54B15F35DC0C15C4B43851A2BADF7EF0 /* time.cc */, - 6C996D1632B933D118AAED87CCB1967E /* time.cc */, - 15FA802375E52FE64C2C51A885C9A7C9 /* time.h */, - 7C4EEEF6CCC9EFF0049FB44830635214 /* time_averaged_stats.cc */, - 76B91D5077AA64DFCFF64905FA48A626 /* time_averaged_stats.h */, - 8CCC207B78A0EBB69AFCE7A0D14056AE /* time_posix.cc */, - 8D236A13FFE1293FC6738E2D0BF6423A /* time_precise.cc */, - CE02D107B5C581A98AB1F9B66822C0B0 /* time_precise.h */, - 38DB8290A9A9A619338D360EE034C48C /* time_util.cc */, - 9B6B3DFABB9200904671006CFD46EECB /* time_util.cc */, - 22301206311EA22AD5A3ADF53892E791 /* time_util.h */, - 2FCD5B61392BE1D0D9B3315415E8EC2C /* time_util.h */, - F2DBFD9C0D907FDDE3A8F2168792AA23 /* time_windows.cc */, - C221188F3FCEDF04418B4B3FF0C31AED /* timeout_encoding.cc */, - 6937CA174368F516E7D43989322F587C /* timeout_encoding.h */, - 1D66AE195A622BA6B4699D8C2292663B /* timer.cc */, - D542D463504E6A57C68E605192593783 /* timer.cc */, - 27EB496AE59B13641472D4659A50D875 /* timer.h */, - 89AB0D470DCAA47CE66441AEAFAA9726 /* timer.h */, - 5493500EEFD797D756FFA833C0471765 /* timer_generic.cc */, - 604431C45AC92D9F096CF2D24CD8D5B4 /* timer_generic.h */, - 4B14774D806972A74ADB0DE0D83FCB23 /* timer_heap.cc */, - 820CE478CBF058B954A8D46AC8DB3BD9 /* timer_heap.cc */, - 2933DE9AA8BE2131278DB117B23177E8 /* timer_heap.h */, - 3E48A20086959F1D370E5662A5A1494A /* timer_heap.h */, - 4A7ABB5493AD45ACDB93F848A02843F8 /* timer_manager.cc */, - DD5617CF629911034355625D5B49E56D /* timer_manager.cc */, - B4B31727210C12554FD9BF0C287C30E1 /* timer_manager.h */, - C1C3B6962E58BCD82356E5A8027EB1C0 /* timer_manager.h */, - 9D9703BD3104524170BBF05CDE51B3C9 /* timestamp.upb.c */, - 149B3AB286928B969D3A87E8AEA583E2 /* timestamp.upb.h */, - 5BED6A13971AF289354334A6AB6F183F /* timestamp.upbdefs.c */, - C2F7791B7CDFEC5662CD6A4FAEAC3055 /* timestamp.upbdefs.h */, - CB2A80BD022534D8DFA89BBE3FF013BD /* tls.h */, - 492F51A5C1C59D9EB6F0108CE300CDB1 /* tls.upb.c */, - F38B55B18112A110F5C871B133396BCE /* tls.upb.h */, - 7D12BE4FBE6EAB93D2DE1C808BB61360 /* tls.upbdefs.c */, - F5CB26C269447AD1FD0CC5F6254275D3 /* tls.upbdefs.h */, - B02CAC738AA3AA440CC9D3147CCAFF94 /* tls_credentials.cc */, - 1E09FC981BD4109864F3A1EFC649154C /* tls_credentials.h */, - 73E5C713B3C2D3069B6716F90414CEBB /* tls_security_connector.cc */, - 48EC2AC596C611471E1B80C9DF097C54 /* tls_security_connector.h */, - A868DF2F2526BF120A5AB8D1ACA795B2 /* tls_spiffe_validator_config.upb.c */, - 3ACBE943965D4328EC514EB23BBE6178 /* tls_spiffe_validator_config.upb.h */, - 9C1FCF44CE02049DA4E05BE98238F4CA /* tls_spiffe_validator_config.upbdefs.c */, - 723F2246A09846A5CEF722162EAC2A3D /* tls_spiffe_validator_config.upbdefs.h */, - C33EA0BB9E10F7B3CE0BC2F228ECC601 /* tls_utils.cc */, - 12F051A7D064CE804841009E80B706E8 /* tls_utils.h */, - 86D3BC6CAB304C97FBCEFBD958CB7DB9 /* tmpfile.h */, - 23F8440C05F4FC7549683491BABA0556 /* tmpfile_msys.cc */, - 5AA54FFBE2AF4B22CAE375C19E4786D0 /* tmpfile_posix.cc */, - 73D3366BA1D2F7363402A959D9CC795E /* tmpfile_windows.cc */, - 7F8EEEB03170AF5301709D5C852CD4B6 /* token_bucket.upb.c */, - 4E44117A4EA0E55D6DB71C16533BB2B1 /* token_bucket.upb.h */, - 1CECB88D71D7BDF7E0A14D93CBD65AFF /* token_bucket.upbdefs.c */, - 0DA72163BFFE545A8CD1251DACC2E4B8 /* token_bucket.upbdefs.h */, - 1751ED9CFE13D8329D036BB821C81DEF /* tostring.cc */, - 249E3B1353449398D20FA841FCAF8A8D /* trace.cc */, - FD5C926B169100E43975F149C5E2D00F /* trace.cc */, - E66899670A89292100F25478C3E2A1CC /* trace.cc */, - F5923D73CFEEDA3A2F0E6C0C0B7B7F6C /* trace.h */, - B4D3883CF738697B611F2B0E8F1D1CB3 /* trace.h */, - B41760AA119EB2FA9E13CC57A0B06D0B /* trace.h */, - 4EB51A584EC203ACE44341032C9521F6 /* trace.upb.c */, - 8804887D943121340330F2566D6637A9 /* trace.upb.h */, - 952BED7892FA7334C72EC7D1A48BC9FE /* trace.upbdefs.c */, - 24206AFE77B0F19EECB7B5D202411858 /* trace.upbdefs.h */, - 618CE0051962CB7EF75D2A71FBC894D9 /* trace_config.upb.c */, - 54740C790D97AC79FC6E71BFC679C950 /* trace_config.upb.h */, - 76716AB00EB3EE58974817F831DCCFA6 /* trace_config.upbdefs.c */, - 388D0DC6537080711BCB27B8221D4AD6 /* trace_config.upbdefs.h */, - 556F3182402F68F408EA0C94B7CE40DB /* transport.cc */, - BA267A7BFC223E4B4292E586D9BF4306 /* transport.h */, - 28FCCE9D66DC001A7F7A675EF8A00E82 /* transport_fwd.h */, - 47509376033A3C34BA5D277828F8123F /* transport_impl.h */, - 77C985060699802A833C647F87F4FE4D /* transport_op_string.cc */, - D0F04CECD994320E3A01DFA9FC57870F /* transport_security.cc */, - 889289290E4C2097E30A53E9751D3313 /* transport_security.h */, - F22823DC0FD49D8659DC9C863AD32CE6 /* transport_security_common.upb.c */, - B8576BC91BBDBB64B820D587C0C2CB69 /* transport_security_common.upb.h */, - C379DB924E9B7F657B9327E91B8EACFA /* transport_security_common_api.cc */, - A46F18014AAD3371E655B03883FDC642 /* transport_security_common_api.h */, - DBE11E9C5024A7CC3B1BA0F84F4C3517 /* transport_security_grpc.cc */, - CB6B0D80AB9EB7751551756893200FBD /* transport_security_grpc.h */, - 626DBE3B2E122C648FBF932E289733B9 /* transport_security_interface.h */, - 47F900A793A5B6C92BCD57457053FBE0 /* try_seq.h */, - BC418F8E2293195379625D8BC133675A /* tsi_error.cc */, - 70F33EABDE05FFEA3C2E977415873D1A /* tsi_error.h */, - C2B47C6868ED732C81F48D2478E8CE4D /* typed_struct.upb.c */, - 24ABC9D764EB1572F47819BB2E9FDC18 /* typed_struct.upb.h */, - EE25D24667A87E0DFF9A9641F1FC92D0 /* typed_struct.upbdefs.c */, - 44604EF6DA4D53CBB1F128CAFE32509B /* typed_struct.upbdefs.h */, - CC5346AB4C544CA23E5DF78E30C5D807 /* udp_listener_config.upb.c */, - 7524712DFC385C720AF25C19ACF9EE9A /* udp_listener_config.upb.h */, - 2AB6A0EA7F33BBCB167A9D0F6DE110CF /* udp_listener_config.upbdefs.c */, - 3B2BBBCA2A334A2B5A286924E8C390CC /* udp_listener_config.upbdefs.h */, - D724F02EF09EE34EC463D3C411E9EA42 /* udp_socket_config.upb.c */, - 82F246AFBED00DBB7EED0B26694D490F /* udp_socket_config.upb.h */, - 12AC982ED3D08ADC9F04D5E3E67A676C /* udp_socket_config.upbdefs.c */, - DC03C233DC75D21A360F1AF84BCFB94E /* udp_socket_config.upbdefs.h */, - D0B18B50725808F666D9681BE04B83EB /* unicode_casefold.cc */, - 264F5D7A414D1E53BDB43A304C3533E0 /* unicode_casefold.h */, - 062BDFE49A17AFE3EF96F513A5D5F5D5 /* unicode_groups.cc */, - 4418C9424B02438767AA9101D620F065 /* unicode_groups.h */, - 921C872891295C9EB31BF8C5D51C590E /* unique_type_name.h */, - 4B274F9109C0E3690A9687208E23CE6E /* unix_sockets_posix.cc */, - AD878EE3680847148D33B693B1B39065 /* unix_sockets_posix.h */, - B2E7ED6487BCC2D9D79700D17624973A /* unix_sockets_posix_noop.cc */, - 472908D0FA32FF83EB1C98D618CD8F8E /* upb.c */, - CD56792D14D5AC2584C0293A29A2B898 /* upb.h */, - 3BD90E818DD2D4334EB9A39CA84CDCB7 /* upb.h */, - 26726BD74B1CA97DF8A4C36E829B7BCB /* upb.hpp */, - ED2B97F127847B10C87C9925BF1C055D /* upb_utils.h */, - E4F3F93FC028B79CAE315F17B276D3BC /* uri_parser.cc */, - 52F9419BDF7CFB1A64EA4A2D5256A294 /* uri_parser.h */, - 36148282188F1893905C3FDEEF53B382 /* url_external_account_credentials.cc */, - 546BC79BE2B19A814F67D07637E8EEDE /* url_external_account_credentials.h */, - 054466AB0EC45613E8C82A662860D431 /* useful.h */, - 1FB19D674A6C63A47203BE6CD3206057 /* utf.h */, - DD94E2B1E647F10987C14E3BBEEAAAA7 /* utf8_range.h */, - B944562E9BF9745B4B33DC7322BEF315 /* util.h */, - 19D93B91BADC8E62879B2777C8505028 /* utils.cc */, - F9AF8D57E2EBDD88C22CAF0527AE5DEA /* utils.h */, - B3BC3AF4DA87EC855ED2FEE65B83F57D /* validate.upb.c */, - BDFC0385DCCBC982A4EA400406D8904B /* validate.upb.h */, - 660CCFDEDD5B3D9FDC02F4707996D582 /* validate.upbdefs.c */, - 29B46AD96DCA45527893F593F08C5239 /* validate.upbdefs.h */, - F8FD808A43A72CC45449BB2B197A1126 /* validate_metadata.cc */, - 0336891C61BF31C85E91EEC8BEA4824A /* validate_metadata.h */, - 9A0296B223ED1027E8E6CA1CA2B617AF /* validation_errors.cc */, - 759551F43C7E542874248022F236FC75 /* validation_errors.h */, - 3C5D527AA998FA1582770E1C2BE83A8F /* value.upb.c */, - 62D461F7A3AFADCDB3F7990CEE96E7B1 /* value.upb.h */, - 822D5882A79A56C527C5E67CB90A73AF /* value.upbdefs.c */, - 9CF06E83F78E512F1380511B03AAD8FF /* value.upbdefs.h */, - E4C27114610E9762FF254E324F4186AB /* varint.cc */, - FD0F8ABA6CBB494DAFD5088EEBE221CE /* varint.h */, - 0B9E4BD6EBC0BC7C8F569E23A93A3F5F /* version.cc */, - 76ED2E2CD50298210F7EC0A1152463D0 /* versioning.upb.c */, - 6BACFDF66245BCEB464CF653D7B4CD95 /* versioning.upb.c */, - BE6F32D7B91C009D5CF7524E41EA06D1 /* versioning.upb.h */, - 43AC3D2DEF5D82E0D4EC4BB0CEE6E359 /* versioning.upb.h */, - ED7850FB6DBDABB9F1EC517CFA346C92 /* versioning.upbdefs.c */, - 5C9E1E1B59B83F436A47645E29F6E7A4 /* versioning.upbdefs.c */, - 6F08DA410B010FD5EF9F4635DAA7C3E3 /* versioning.upbdefs.h */, - 96376842707628BA781C9D941D12F7C9 /* versioning.upbdefs.h */, - B231D2929E392D3F03B896A4B35EA36D /* vsnprintf_compat.h */, - F5D0834018E518C3AC6786409A07EDA9 /* wakeup_fd_eventfd.cc */, - 25D478F279D9CF329222F0B4E3DB8169 /* wakeup_fd_nospecial.cc */, - 59B15E74BE99EB5C8C571EF2C7C7AA05 /* wakeup_fd_pipe.cc */, - E12BA41198BA4031424EB611B0130794 /* wakeup_fd_pipe.h */, - 11CF5C9502D8AD9415678A36EB6C13FD /* wakeup_fd_posix.cc */, - FFC439467DAD329D39932AEBD15B921D /* wakeup_fd_posix.h */, - CEC19DD7ECBA45F9AFB4DABF183FF502 /* walker-inl.h */, - DC1B47119FAE429D9E2E8935A45B2F3F /* weighted_target.cc */, - CACB4D0CEDBFA71645DC849CC383745D /* win_socket.cc */, - B8B866A0F33B2456B473B88B799B2E76 /* win_socket.h */, - 7E04F44490213FD76138C26843F14332 /* windows_engine.cc */, - 51AA7CF048C27C081307004296AD222F /* windows_engine.h */, - 21D332C63FDD0A327DF11689DFCDB201 /* work_serializer.cc */, - 84AD84E8D9A75BF251E8D08E2DDBBA1C /* work_serializer.h */, - 661DF176C7CFB3AF930EF8951DE2744A /* wrap_memcpy.cc */, - 8BA5D96DA846DC697F71DCD755AE2F68 /* wrappers.upb.c */, - 4EF66996D48034F85009C251BDEB566D /* wrappers.upb.h */, - A550F95AAE9F531FC223DD3E232C20A1 /* wrappers.upbdefs.c */, - D4BD039695D91B8F4568550A944C135C /* wrappers.upbdefs.h */, - 99639769715E316E6AB5B4AB6F710F13 /* writing.cc */, - F43E0662FD05DAEC8548519B75777AB3 /* wrr_locality.upb.c */, - 5CD658EE2CC2E60FB425C7FE285A61A3 /* wrr_locality.upb.h */, - EE706D797A1A34E3A94A1275DB02551E /* xds.h */, - 4A3082BF8D45B270736707BDDBE46BF1 /* xds_api.cc */, - 9E3C54000181AAAF157A7700F1E89832 /* xds_api.h */, - DF533D330BD53A04C330A15B554EE3E8 /* xds_bootstrap.cc */, - E011348B10B6B69A81AD38B50CAC6F65 /* xds_bootstrap.h */, - 89203C3CD2244463E5C9ECAE8998DBB4 /* xds_bootstrap_grpc.cc */, - BF56CB2B89C7D4D258DEC7DB187293AC /* xds_bootstrap_grpc.h */, - 88F476F024A5374395E5DD65C0114F80 /* xds_certificate_provider.cc */, - 8C6E2882C5D5BB6473DF3DF853B9B124 /* xds_certificate_provider.h */, - 207BD07A85E064D82C31A4586F791017 /* xds_channel_args.h */, - 30012554A58375A1CB09BED5718C39E3 /* xds_channel_args.h */, - C1CB54704B19B21DEA50476AA628E855 /* xds_channel_stack_modifier.cc */, - 25B1C6BBD41D9BC7BE908D6162D33B62 /* xds_channel_stack_modifier.h */, - 72B105D68A9B7B9500A15B3B8CF48D5B /* xds_client.cc */, - 0712CA2B4CBEFC0340A8265E9A81BB84 /* xds_client.h */, - AD8CB2CD900CA1D9BC0BFDF9A44CD056 /* xds_client_grpc.cc */, - C0F27C18CD6D20D0AD0F3DA5CCF9C4B6 /* xds_client_grpc.h */, - 5A4454C59EC4E76B6ABB54F47B1B58FD /* xds_client_stats.cc */, - 9FEF02FB555153E9A024D63E3B90F7EE /* xds_client_stats.h */, - 0262101D7563C18C092FDCC09A355971 /* xds_cluster.cc */, - C286E783FECE8F5DEC16378728E217D8 /* xds_cluster.h */, - DCB538713B290324592D5738CA466637 /* xds_cluster_impl.cc */, - 327BC8D07AAD7738AE459D1D2527F75A /* xds_cluster_manager.cc */, - 44F1F0CADCF2BF04F8634250A6AA78E3 /* xds_cluster_resolver.cc */, - C36E642798AFAFA1CCFCE10AF5268803 /* xds_cluster_specifier_plugin.cc */, - 93DF81CE698F227F3F1626A1A431B36C /* xds_cluster_specifier_plugin.h */, - 3F8C0C6C92FD5F79F104515886E6BC0C /* xds_common_types.cc */, - 6499C785CC09C8B79953179FFBCFE114 /* xds_common_types.h */, - 6A635F33D61E117112CA04E90990D870 /* xds_credentials.cc */, - 4A97659BA5049E13C49E920DDFAB371D /* xds_credentials.h */, - 46DF5109E3E41B59471CA6D4A5DEBB13 /* xds_endpoint.cc */, - 6A552E6FC0373E664B44E522495B4F78 /* xds_endpoint.h */, - 85847520DD5BC143BD0B6E0F3170A705 /* xds_http_fault_filter.cc */, - 3D46EDF9122ABA759BFC755058F54AB6 /* xds_http_fault_filter.h */, - 064FB5E6568897324CF95F5EF79A3CE9 /* xds_http_filters.cc */, - 15D241C6BDA2A5BA32E7EE30BEC9D97B /* xds_http_filters.h */, - B7F3FBB87D3642FC90C44EC28BAB7E2B /* xds_http_rbac_filter.cc */, - E77CDF17D7815CBA90FDBEA6AD2371EB /* xds_http_rbac_filter.h */, - 245894C829F9D2E2C228299C0DDB28EB /* xds_lb_policy_registry.cc */, - E80D6440B217AA6D91C35A25792CFAD2 /* xds_lb_policy_registry.h */, - 7086B792686202D9BD88A862ACDD3DD0 /* xds_listener.cc */, - 12C217239A5100F16ED795FCC3090BC7 /* xds_listener.h */, - EA02F77236767F0F6C4B4A89B70A23CF /* xds_resolver.cc */, - 6E0D3D2183C0DA16A02F8A13CB1B92F6 /* xds_resolver.h */, - E760F2A68AA5F6C34E0966F52BCAF60C /* xds_resource_type.cc */, - 7CE573937799F08AB8B9EE9F30455699 /* xds_resource_type.h */, - 2E49450A0245D82B48D393C7F99C7DDC /* xds_resource_type_impl.h */, - 7AEF9EA0ABC52D672DE5210707B2E3A6 /* xds_route_config.cc */, - 2357F4805073EC8381563D69EF59E164 /* xds_route_config.h */, - 8BF12259FE5936B21FF6A2969EF1AD9D /* xds_routing.cc */, - 3FFFAF029ABF7DCE2482970E72A6FDD0 /* xds_routing.h */, - EBC7E0CA1EA85E74F4185A939AA44639 /* xds_server_config_fetcher.cc */, - C522BEB0135F072ACE442D7AA634259C /* xds_transport.h */, - 2A6B9E5C5F11DB7BBE067926A33F97FA /* xds_transport_grpc.cc */, - 7FFBB2575934A84CD4407EAC5962C6CA /* xds_transport_grpc.h */, - A0E28086AF387A070B6E22BC4E0C2A86 /* xray.upb.c */, - F34657DF2A6C31F7680C4F583734BD95 /* xray.upb.h */, - E9B73F9A3BF74896438423DD4E1C2270 /* xray.upbdefs.c */, - 0CF05BC16C7BE6FE9772893C78E0FEA4 /* xray.upbdefs.h */, - 6D3102995018AB50A9C3FE3706120CA9 /* xxhash.h */, - F3120CE4BC39237FD543B7217D3B6C90 /* zipkin.upb.c */, - A9634BE1AA404E2B168CEAD0A5503CF9 /* zipkin.upb.h */, - F6A138CB1E3B37DCCC67A02FC54DFD8D /* zipkin.upbdefs.c */, - 67E521E952D8AF471EF259499F53A6AA /* zipkin.upbdefs.h */, - ); - name = Implementation; - sourceTree = ""; - }; - 61E93B7C4FF2DBC2C9FABCE51A7091EC /* memory */ = { - isa = PBXGroup; - children = ( - 4D72249F8969841CD48170D0F98B6DB6 /* memory */, - ); - name = memory; - sourceTree = ""; - }; - 627F4F6387F81D3E4366E0D0491FB0B8 /* flat_hash_map */ = { - isa = PBXGroup; - children = ( - 86C3FE000E429114CF2087D59A39C587 /* flat_hash_map.h */, - ); - name = flat_hash_map; - sourceTree = ""; - }; - 62C51F39238981A3AECD66C346D7E121 /* FirebaseFirestore */ = { - isa = PBXGroup; - children = ( - 7C3E7C45B42358ECC7EA4E438B591E0C /* aggregate_alias.cc */, - 72CB22716DADC17704FD9F4EA1EAFF02 /* aggregate_field.cc */, - 311135A38FB9B4F980524B49FD6F620E /* aggregate_query.cc */, - CB19AE531B13D29E7491B996C5203D33 /* aggregation_result.nanopb.cc */, - 3B32B1F1E09CEEDBF447CABE86592ED9 /* annotations.nanopb.cc */, - FF81B41418853E7F40AD117358C26575 /* any.nanopb.cc */, - 62D6191BBB78AEFAFAA01747BA6C14EC /* array_contains_any_filter.cc */, - B560252D576C493BEB4E15246E57F509 /* array_contains_filter.cc */, - 1051391B51DB9F66BCA46C51564875C1 /* async_queue.cc */, - C2D90BC2D1C5C01FA1A368369697A75E /* auth_token.cc */, - 5EFBD0382600267A7270504D7C8C5AC3 /* autoid.cc */, - 018FB099107C1B9D30BF97F7306BCE03 /* background_queue.cc */, - D956301BC50C50493399FA7E551ECB1D /* bits.cc */, - 2530748983BAAB8D32D112BF6325BAF2 /* bloom_filter.cc */, - CA6DEE1A50B012C48D139A8060A8433F /* bloom_filter.nanopb.cc */, - 0E64064E9501CEE071C07450987CBA40 /* bound.cc */, - C5627730ACDDD35AAFACC86E6DE8BE53 /* bundle.nanopb.cc */, - AF985D02CF09C7920F7314E5B49A40AD /* bundle_loader.cc */, - BB3BC1656D86F62EAE3407693EFA7E82 /* bundle_reader.cc */, - E1829E9F55E21AF6AF6E3A34F5A4D7B4 /* bundle_serializer.cc */, - 22964823D12777DC44BE5BD99D5E245B /* byte_stream_apple.mm */, - 91AB5FE31E12C9E1DB94E0F5CCDEA183 /* byte_stream_cpp.cc */, - 73276BA2E2BB80FC5390223933E3BF08 /* byte_string.cc */, - 7D9A59BA61CFEA7001F07F6E846522FE /* collection_reference.cc */, - 34AD2E39AA180A9D3A58EE2B0409264A /* common.nanopb.cc */, - C0A33027B3F1E55AC798F3F33CF023EB /* comparison.cc */, - 12920A46440C58D493C61B3924E1D855 /* composite_filter.cc */, - CB82D039C82F66FEB29B564F988C0B10 /* connectivity_monitor.cc */, - AC002DDC2BA7320479D7D25EE5B0BCC9 /* connectivity_monitor_apple.mm */, - 6AE2CE6497FF7D8488BA5D3125F0BB17 /* converters.mm */, - 43D4853532B32FC9414E3929D6AE60FA /* database_id.cc */, - 371C2AB56B9E1DCD66FDB54BBD3E7A43 /* database_info.cc */, - 35BEDE946D34A49E78AEF7756E6D8F29 /* datastore.cc */, - F7D7BC2BB25A853BE16F349232A17FAF /* delete_mutation.cc */, - DFC70D8CFEC52BF16A07BFA004185744 /* direction.cc */, - 39CF3D4298290AD557652E9185300916 /* document.cc */, - 3B42AA4452710A4A8E01539C22D553C4 /* document.nanopb.cc */, - 7179690FA4971C56199906B50CBB8647 /* document_change.cc */, - 2CC450B15ABC2966E7852D32E0BF7F25 /* document_key.cc */, - A7C7926ABCF4E74D14D82CD40AFBA279 /* document_key_reference.cc */, - CAAB597C2F2442CCB905EA6D18241F9B /* document_overlay_cache.cc */, - 2D8C876FDB4E11E8F348ACF9B15B4DFA /* document_reference.cc */, - 503DDB1054A207F8BBA5812C745A121F /* document_set.cc */, - CF7B83713A6C4159FCA5F77BE9DB26F8 /* document_snapshot.cc */, - 99BE4C357917C5B87268B42A58D656DF /* empty.nanopb.cc */, - E1E54BEC523885FD99AEA828AA079468 /* error_apple.mm */, - DAD29480BC3188C7B6EC504B340AC4EC /* event_manager.cc */, - 9F9EB9FE0EA2544B6DE15E05DE47EF61 /* exception.cc */, - 4CA0A2E13AF5D89332995263289903E7 /* exception_apple.mm */, - 124753A0FFAF65FD4E02B674F88A47F2 /* executor_libdispatch.mm */, - 9797A96F857C9361C90DF148B16B4AD1 /* executor_std.cc */, - B1E543C471699BD3025F2FF21E660917 /* exponential_backoff.cc */, - C01E3EA51C64E66B87F386DB9AC715AD /* field_filter.cc */, - 5DAD5411E07B7D3355A5584C75F496CD /* field_index.cc */, - 4D1685818D38F01330C6E6E034A05F3D /* field_mask.cc */, - A4B20B3F09227B3FED1D0B403D986DD5 /* field_path.cc */, - B397DF1B74E9DE8F5852314A71D66EAB /* field_transform.cc */, - E12454BE108FE6E4AA93E999C5633B42 /* filesystem_apple.mm */, - 8E54B0D90ECFBECE0B81E12C5F4C62E5 /* filesystem_common.cc */, - A37DF15936EC92D785824A9FA60C8B5F /* filesystem_posix.cc */, - A75CB53763125AFA6FD0C4E65630A69D /* filter.cc */, - 5D40A8B86BC481D22C195A2F75BA294F /* FIRAggregateField.mm */, - 24016B4D793056CA94111FCC1E463716 /* FIRAggregateQuery.h */, - C26E11DE48D80F2D0875985199E220BD /* FIRAggregateQuery.mm */, - 0A6B4D168909FFE3DB0751F19111BA23 /* FIRAggregateQuerySnapshot.h */, - 2E63FEDD199336042B2B317F667A874B /* FIRAggregateQuerySnapshot.mm */, - F69772E8C3385C117EE1CC68367EE646 /* FIRAggregateSource.h */, - 943EFF12BFBE542E8A189B61FD224298 /* FIRAppCheckInterop.h */, - 39F82BB721AD6B6F79DD61E7260869A7 /* FIRAppCheckTokenResultInterop.h */, - CEA3302FA04EED422385A71409FCB713 /* FIRAppInternal.h */, - 0DF45D4C5F26587666F44F5491718DF1 /* FIRAuthInterop.h */, - 7D898CE712703E831FE8B73B3A0292B9 /* FIRCollectionReference.h */, - E57B78FF38D81C12A8D4CA2D010E9C60 /* FIRCollectionReference.mm */, - 6DB28D8C225072B71D9F816C4BB2FFDC /* FIRComponent.h */, - 6B3556C6520BE1382062DF1EDCAE22FA /* FIRComponentContainer.h */, - CF1D048681D6B7F138DEA4D2D58696BB /* FIRComponentType.h */, - B82B61B5B5BB3849530D7B7106749DE6 /* FIRDependency.h */, - E7C50276FDE00510F43205EABF6ECBDF /* FIRDocumentChange.h */, - 7F3DE96C86DDACCFC4EA1E1D0E1FDB57 /* FIRDocumentChange.mm */, - BC14AEF0D7D423FC9ED8E1D589C5C138 /* FIRDocumentReference.h */, - 49C61257B52713317DD0183844018D76 /* FIRDocumentReference.mm */, - 992B4677FF496F401658CD092A222CB5 /* FIRDocumentSnapshot.h */, - 58D0BC0962FFA577369408058F767285 /* FIRDocumentSnapshot.mm */, - A9081E636F55C0408610B17204A26495 /* firebase_app_check_credentials_provider_apple.mm */, - F3798240EA43139BAD694A1F543601D2 /* firebase_auth_credentials_provider_apple.mm */, - DD10E2A6938CD42120EDE7E3DBEF270B /* firebase_metadata_provider.cc */, - 708A1BBEBC5941DF207B0F0AEC54915C /* firebase_metadata_provider_apple.mm */, - 2C809026551253328C62242516D9B89A /* firebase_metadata_provider_noop.cc */, - E1A4135396A460A713A353FF093C7740 /* FirebaseCoreInternal.h */, - 779F52AEEB1E15C23BA30257920E1078 /* FirebaseFirestore.h */, - 7B31E0565925869ABE1D60B3655FA88B /* firestore.cc */, - AEFC4A41773CD797AAF9560EDAF6A676 /* firestore.nanopb.cc */, - 56B9A055B9950E329EAF0B5318553000 /* firestore_client.cc */, - D0FD096A4FEB1CF15B4404E807642F56 /* firestore_index_value_writer.cc */, - 245602F0D6F278BE8C168A4986906922 /* firestore_version.cc */, - 8B61857C03E965B84A0EAF37EE8B6D95 /* FIRFieldPath.h */, - 15E07316BD2C913FEC484C8B9B357E23 /* FIRFieldPath.mm */, - C852CAB06B011F79FEB2ED5206841923 /* FIRFieldValue.h */, - 8CEEC39FCEB85AFEEC26A5CF82BDF1AA /* FIRFieldValue.mm */, - DDB087BEE7ABAE0C13395F265DCE7F18 /* FIRFilter.h */, - 471A65B86F7026E28EAF9DD25789E568 /* FIRFilter.mm */, - 8D7B7D076E7DA0BDF61753E63EBB3B19 /* FIRFirestore.h */, - B0B57116F683E8299C3929CE4BC5D5DA /* FIRFirestore.mm */, - 042807C3354340AA4272C4F8A2281FCF /* FIRFirestoreErrors.h */, - 7B36E65F05DB381EA991BD16AB53BDA2 /* FIRFirestoreSettings.h */, - 55A215E2D6B46036FCB634A8ACFB2B75 /* FIRFirestoreSettings.mm */, - 45E158F553AE5D6633D3EAAE60EB63CE /* FIRFirestoreSource.h */, - 4FE87A67CC739306C0575B6302C9BC14 /* FIRFirestoreSource.mm */, - 044E1846DE5BE1E69494B3A0BCA176AF /* FIRFirestoreVersion.mm */, - B2BA2C9E068D68F333C7EF077F295F39 /* FIRGeoPoint.h */, - 322458ADDB75562BBC219C9FBDD0C3F3 /* FIRGeoPoint.mm */, - CF6CA45E7D0E6AB974B869D561CCA495 /* FIRHeartbeatLogger.h */, - 09588FEDA69EEC5C3508F7FB7E8B887D /* FIRLibrary.h */, - B75C68CCD29462B5E35C590BF1D8639C /* FIRListenerRegistration.h */, - 2A443F4D337DBD49A78521A00D970EC5 /* FIRListenerRegistration.mm */, - 89826072CF30C191F47DDAEC9B1FC533 /* FIRLoadBundleTask.h */, - D58BC2035B9E4E9E6811E3A54550BF86 /* FIRLoadBundleTask.mm */, - 9C71CA419C025097B9A9DC1ED54FD1A2 /* FIRLocalCacheSettings.h */, - B4AAF92ED2FBB09D0C466100C56B3CB5 /* FIRLocalCacheSettings.mm */, - 6EA53921F2D293A9BD32DC585AC8B753 /* FIRLogger.h */, - F9D007A814CD8A3C7793C7A04BE9FCBE /* FIROptionsInternal.h */, - 7E0DADFE076F051FF1855CF11B91B5E1 /* FIRQuery.h */, - DA17241A96D9E4CB286B5339D7BF57A3 /* FIRQuery.mm */, - 33B763A67E3F4479336E7E55F97CF10A /* FIRQuerySnapshot.h */, - 758153589BA41E4E823046BB674A6DF6 /* FIRQuerySnapshot.mm */, - E91FA1D609BEFDB36028576F949337C0 /* FIRSnapshotMetadata.h */, - 816E641178492EC88C56FE354C504DD9 /* FIRSnapshotMetadata.mm */, - 6FE6838E46BFD0D4DE02F6D2FCBAA9D8 /* FIRTimestamp.h */, - 2A4BC126184283F634A70FC24FAB527A /* FIRTimestamp.m */, - 320DBBF2F6AE8B771191D7380958FAF5 /* FIRTransaction.h */, - E72238331925B2894E5E076291078D32 /* FIRTransaction.mm */, - 1EEDB472AB5EEE70306A12A1E8007342 /* FIRTransactionOptions.h */, - 60A43A1A15E45FAEC7CCEB752C9FF372 /* FIRTransactionOptions.mm */, - 5679B6B360A9D56E5390A072D8C20AD5 /* FIRWriteBatch.h */, - 14BE8B16C391D9A68342E0A702945859 /* FIRWriteBatch.mm */, - 7823A2D8143E73CC43D5EF94ACA5859C /* FSTFirestoreComponent.mm */, - C6E7CE05D326BD285F2B606DC1B36262 /* FSTUserDataReader.mm */, - 80FB8905D1EECA2DC4B6D1AF4BC3FF26 /* FSTUserDataWriter.mm */, - A22F02E4D515A4A1F92DEA3928A1AF06 /* geo_point.cc */, - 0F056D0C31F69C2B7C1EA6E245ECE2C6 /* grpc_completion.cc */, - 6EC846317B709186F9758E972A6C9FDF /* grpc_connection.cc */, - 262F2933C136E248FAC5CC0C21B3266B /* grpc_nanopb.cc */, - AA8B78D00C90CDF4189F04D9F26BD698 /* grpc_root_certificate_finder_generated.cc */, - 6B4BB44852657DDEC0CE80E093C32473 /* grpc_root_certificates_generated.cc */, - 5D15C396F3F532BE655A2C429FBF2BF0 /* grpc_stream.cc */, - 78FA1A4D98C6CA4BDC32DDCEEE85BE88 /* grpc_streaming_reader.cc */, - 24F76B1CE7703B6311D685B6D24E3126 /* grpc_unary_call.cc */, - D273FB4479BDEA012EA9F2E7BD156A02 /* grpc_util.cc */, - A52FF711E18DE84D139272E768DC85AC /* hard_assert.cc */, - 491BDBC48B11ACBEB7CCE9D1D87E8275 /* http.nanopb.cc */, - AE268BBE40AA9437AC68B760DA236531 /* in_filter.cc */, - C9888343E3C5CD7CD0C3AEBA508A84EB /* index.nanopb.cc */, - 04C355AE28356711B25A701D82B41E6B /* index_backfiller.cc */, - 133B0BF0F4D04A48625AB32CCE640CAF /* index_entry.cc */, - 2DB4309F3B1FC1A442E9F4F485C1BAB8 /* json_reader.cc */, - 764C7A9F48833F600E3941686F37DA04 /* key_field_filter.cc */, - 357D38A2FFBAF186424EB9B0A5246416 /* key_field_in_filter.cc */, - 818209FEDE4C40891B8F42B00FE690E0 /* key_field_not_in_filter.cc */, - D124BAB3F5939B75FF57C3B11057CD5B /* latlng.nanopb.cc */, - 4D26C801CC5160BB4E2C02B5ECB2E5D8 /* leveldb_bundle_cache.cc */, - 2D18CC9EA292D9B6E06A8FAF66690A08 /* leveldb_document_overlay_cache.cc */, - FE3BEE6A5DD464109EDF19D8D6EBC1C2 /* leveldb_index_manager.cc */, - C4C5361D6EF2CC01580637D355F0CF60 /* leveldb_key.cc */, - D64F92344063F07651988AD6B2638334 /* leveldb_lru_reference_delegate.cc */, - 9F26FAACD22DD45E08C229F2DD119542 /* leveldb_migrations.cc */, - CB53C71435615D531DFE8D54283F4242 /* leveldb_mutation_queue.cc */, - 96BF7048883594722E611DF3F44CD639 /* leveldb_opener.cc */, - 4F0E7CB18E742B2087BE213E82BA08CD /* leveldb_overlay_migration_manager.cc */, - E554E8B40ACE269B9DFD91C15D558A67 /* leveldb_persistence.cc */, - 5890FB02BD062A30CE25893709B9BF06 /* leveldb_remote_document_cache.cc */, - ED612E3EDF5171A16D1CF2E3BE079691 /* leveldb_target_cache.cc */, - 52AF8092DA64472A441D58650E2F6628 /* leveldb_transaction.cc */, - C0F6B89DA174E7E4CB2F566D9E817690 /* leveldb_util.cc */, - 7FA4AF3280CD0C83C3079000FD578F65 /* load_bundle_task.cc */, - 13E53A35A6B10B14B822401B10697A47 /* local_documents_view.cc */, - 29358633BC6F5396A7AECA8A735D3C8D /* local_serializer.cc */, - 23FA38B13623911A587BFA9A240B3677 /* local_store.cc */, - 57AB98EA56FC6F511C62AD43AA886235 /* local_view_changes.cc */, - 521589AB076C08D434BFB00471194C77 /* log_apple.mm */, - 7E1C95B0EF6F3631D1B7E6FDDEB3FF69 /* logic_utils.cc */, - A8B9AAA6BB6FE63B57970ED7E057B10A /* lru_garbage_collector.cc */, - 63D3114D176A6F166DCC21725B75E26E /* maybe_document.nanopb.cc */, - 3CBD302CC0B8EA28E6C29CAD109FA4F3 /* md5.cc */, - 707B6DD39E3C74F72905379366173522 /* memory_bundle_cache.cc */, - 75E8174F5C6FC5ED028E68979B686EF8 /* memory_document_overlay_cache.cc */, - E1D2B259078074DE0D14219DBD134643 /* memory_eager_reference_delegate.cc */, - 674DB6B7DD1EA16B25962F892CB65046 /* memory_index_manager.cc */, - 119B519B0144C0E738614234A202ABED /* memory_lru_reference_delegate.cc */, - 826C40E83E360394F067C1A71672DCFB /* memory_mutation_queue.cc */, - 15E98AF11ADBA9A2C942B9E7B067A2D9 /* memory_persistence.cc */, - 932587BFC6F2FC4B233E9F033C0D54BA /* memory_remote_document_cache.cc */, - 1C4211ECBF43B68AF35C84179AABD645 /* memory_target_cache.cc */, - 3A9A77D417395A339197A0213DDE226C /* message.cc */, - 87F44ED0BCEE0839EE70046C16633179 /* mutable_document.cc */, - D5C49334DD556F5780675941F05A851D /* mutation.cc */, - 726E97FBB8766A83600F9B855C766B9B /* mutation.nanopb.cc */, - 699572CE718D8499EECECE2D16326F24 /* mutation_batch.cc */, - F9452A26E153ABAB5437C137DB734873 /* mutation_batch_result.cc */, - 2A7ECDB06B3BBD0B7404CD558EDCE7CB /* nanopb_util.cc */, - 209A6D3E47565683A3F872AF130430CE /* not_in_filter.cc */, - 45E81D9E7235332FA5B87A9A6EFB4FF6 /* object_value.cc */, - DC3362571ED94386BAD944F3F9FC3C33 /* online_state_tracker.cc */, - 3EA24C0597378DB5F748AFBFCB7BD7BA /* order_by.cc */, - EFF861E1E51296E502941231B2B718BF /* ordered_code.cc */, - D32755048BC1DC73A90FB0E9EBCF54B8 /* overlay.cc */, - 67D181297C71AC703F9DCC6B73E79FAA /* patch_mutation.cc */, - 0CE2AFCC12B9C96AE4C79D8D785C353D /* path.cc */, - 05732C594FA7B0CE2F028221ABBFC9B9 /* precondition.cc */, - F9D573A6E630D2491A3142ECAC60CAA8 /* pretty_printing.cc */, - FB9C7AFA43EB81823A7B6CD35707C87F /* proto_sizer.cc */, - 960F307D5647AF6EBCA155E81F152B41 /* query.cc */, - 0440D3F17390445D067205461336D5B1 /* query.nanopb.cc */, - 4459B50AD1E0EF350D4D46A3C060EFB5 /* query_core.cc */, - B1C628BACBB47F27BADBCEC465ABE673 /* query_engine.cc */, - A7ADF0D346BC8E8E730B566CE5CBAC90 /* query_listener.cc */, - D103D4A583D94F3FBA8AC69437E520EB /* query_listener_registration.cc */, - 9F2A81B2B523310E7DBF3120599D009C /* query_snapshot.cc */, - F3CE4C8EEDD10439387B685A44EF01E6 /* reader.cc */, - C4E2498C9156BE25F8F834426FBB2BB6 /* reference_set.cc */, - 526CD969E1DB97E5F128C9ACF806D905 /* remote_event.cc */, - A3BFC0CD40E63CA07E47AE82C4A39765 /* remote_objc_bridge.cc */, - C097AF0E10E8516C84BA2F55FC1C9FE1 /* remote_store.cc */, - B36D2E737E5B7CEE488D15BBBCF092D3 /* resource.nanopb.cc */, - 1DEE40E82837740E374C5DD2172EF7F8 /* resource_path.cc */, - DD0996E34BF22C2A10CD9FE16EE2C68E /* schedule.cc */, - EFBDB8F895AFBE8CB5F8C7007A0B8BA2 /* secure_random_arc4random.cc */, - 76A6549D7C1AD5DEEE265DD4DE21E0DA /* serializer.cc */, - 33A8EC5E689E1E55CFC3895B326BF58C /* server_timestamp_util.cc */, - D3E5A5D778AFD7EB5B9A25F900ED7FD6 /* set_mutation.cc */, - 7AE4FC58BDCDAC4C52BDB5E4B758BA92 /* settings.cc */, - A877D7812A8A5AD96E22FC18E041E923 /* snapshot_metadata.cc */, - 1CC3B64B2042A436DDA929392E4C4799 /* snapshot_version.cc */, - 6DD9CC91AA2D137BF0D2348999AD1415 /* snapshots_in_sync_listener_registration.cc */, - AF92C376592500644AC18868B1DD51BA /* sorted_container.cc */, - 08B18F7D8BB4A72D5F150F7A7EDD8EBD /* status.cc */, - BD477BAF6842763B38752AB3BB2E3BD0 /* status.nanopb.cc */, - C545213BD9D3D9C0BDE9169575E2A2BE /* status_apple.mm */, - 7F260F31E641E952A5E954B4FE17B822 /* status_errno.cc */, - 7CAAD37DF86F020FD9324625F96C3917 /* status_win.cc */, - 329BEBF73249662C2D188CA1832390FE /* statusor.cc */, - 913FF0432CFB90217E21CD9369D28FBA /* stream.cc */, - EF5E6E7BFB49D1A35B2A521EC6FAAC52 /* strerror.cc */, - A5D04B395D420B5F4AC1334B57B5702B /* string_apple.cc */, - 8948A061C9D6A81FB38E75438617295E /* string_format.cc */, - 932ACBE39D4B9A034968C27E1B6D6437 /* string_util.cc */, - 9E96C6230BA0F4DAEDBACA9DD7D0AC02 /* string_win.cc */, - CFBE020DB1A63E9237BB951E0C08C89C /* struct.nanopb.cc */, - A88FD0B189A0AE3A785602FB06B880EE /* sync_engine.cc */, - 6E26E47F3ED40EB9CB3E91909DC6B72A /* target.cc */, - 999FEB2A052AEC4F668AD8008125AF3E /* target.nanopb.cc */, - 49BD80CD795324336288115C9871BB52 /* target_data.cc */, - 1A70DB7E797A2289D2EA4F62C1E14CDC /* target_id_generator.cc */, - 88C79FDE92BEAF68B5D7A55F4F976B56 /* target_index_matcher.cc */, - F9210CF4B78FD4987E644793DC7BBBE3 /* task.cc */, - BF98892018C0C9B2BB824EBE3597AB07 /* testing_hooks.cc */, - 66583862B20E51C44ABA6DF0559A62FD /* timestamp.cc */, - 241881A0BD85AA4472D622E8B5D1F159 /* timestamp.nanopb.cc */, - 88D557EEB312146E3D810D761D5A19BE /* timestamp_internal.cc */, - 45B48D94DEADFEDBDEFCBB3239C776EF /* transaction.cc */, - 903C51085931C5089DC145495DC79220 /* transaction_runner.cc */, - 3FB0DF5272FF94014759BD9D23CC33C1 /* transform_operation.cc */, - 7AFE56D22EBCF861D6AA052B22106714 /* user.cc */, - 0B24AF1DA82E7EB9FBE61A111EF2A013 /* user_data.cc */, - BC00C7B22917C65D4D4682491B942623 /* value_util.cc */, - 3AB1E9B05CA3D23CB6A370322FAB7C54 /* verify_mutation.cc */, - 4F777712A036CB356574BBFEB25DBFD7 /* view.cc */, - B6742CB0E2D474E4D9925C9714D1E17B /* view_snapshot.cc */, - F2877EC86281344FD42C2F61579A7859 /* watch_change.cc */, - 32B516A1BEC4CFF25A8E8D66A5322BB8 /* watch_stream.cc */, - 5DDD87C0B789B20353B0AAD2340A1C59 /* wrappers.nanopb.cc */, - BD37EA425FB318D08A49809858FC559E /* write.nanopb.cc */, - 2B753E1984903757C52DB81EE42F4EA6 /* write_batch.cc */, - 678D368A633EEEF83385F17AC5DB4681 /* write_stream.cc */, - FFAFC8C2618D263E14545259858C17E1 /* writer.cc */, - 3B23A13EC9AF59378109A652309FC6A0 /* Support Files */, - ); - name = FirebaseFirestore; - path = FirebaseFirestore; - sourceTree = ""; - }; - 6584A6E888D931D65AE3B904D0AADF33 /* bad_any_cast_impl */ = { - isa = PBXGroup; - children = ( - 1256AFE85719C285CF9F350384F93C1C /* bad_any_cast.cc */, - ); - name = bad_any_cast_impl; - sourceTree = ""; - }; - 6A9DAAF1108EB6FF51FCBE8956B55C2B /* base */ = { - isa = PBXGroup; - children = ( - 0B4E4385D6FBAA28BFA45C6352F71818 /* call_once.h */, - 762F98456A81D63C7632832560CEEA87 /* casts.h */, - F1817909D65C66B8A298477E33056178 /* cycleclock.cc */, - 70D7AA536DB260202B825C476BA152E2 /* cycleclock.h */, - D4F654FCE15099B757465EE57D6A5D89 /* low_level_scheduling.h */, - 87E1C791227E9E7062B1B73382E79D90 /* per_thread_tls.h */, - 565B5A3A5A88FE4EAF9C63CBBB5E6D5F /* spinlock.cc */, - 6ECB6B52CCFEFDCADCE4BC72790204C6 /* spinlock.h */, - 7800076DC8BACF12725A116059C93253 /* sysinfo.cc */, - 5718EBD3D052E008DE6E5C38BFF4DADB /* sysinfo.h */, - E00203CDB509071CA2476DDBBB29D290 /* thread_identity.cc */, - 5B6FEFCF5951CCB876A05DED38B16567 /* thread_identity.h */, - BA4DB91A6D868983A1E3BEF6678933C7 /* tsan_mutex_interface.h */, - F586E7BCB6DDC821D5C298AB2E2F5D80 /* unscaledcycleclock.cc */, - C27A0FA65DBBEF2D25B48F71304500DF /* unscaledcycleclock.h */, - ); - name = base; - sourceTree = ""; - }; - 6B7072E8CC317558CD3DBA52212A4473 /* bad_variant_access */ = { - isa = PBXGroup; - children = ( - 176A10510B33DE33C11855F840E3E4EA /* bad_variant_access.cc */, - 0AC7F295A9BF96E551BD821B01F32EE9 /* bad_variant_access.h */, - ); - name = bad_variant_access; - sourceTree = ""; - }; - 6E59FE02E48982E0BB278A373B46C5B0 /* iostream_state_saver */ = { - isa = PBXGroup; - children = ( - 90267A3BFA5ED8C2FBC84DAA31F9BA9B /* iostream_state_saver.h */, - ); - name = iostream_state_saver; - sourceTree = ""; - }; - 6FA83B6AC42FB562B5774F720A7AC1F6 /* encode */ = { - isa = PBXGroup; - children = ( - ); - name = encode; - sourceTree = ""; - }; - 7034AD2D1E3D1DA011E0828FB5253B7B /* RecaptchaInterop */ = { - isa = PBXGroup; - children = ( - 84E1EDE793D455A175F566985BD39333 /* placeholder.m */, - E77176DAFAD6569FC986EA927FBAED72 /* RCAActionProtocol.h */, - 19A5AFA3772DF97B4F21597F320D97CC /* RCARecaptchaClientProtocol.h */, - E4B1B1F57B01885D631BCD5331D6D8C6 /* RCARecaptchaProtocol.h */, - 6944293CB2607243C2718706B91089ED /* RecaptchaInterop.h */, - A263BC963EF8AFEBB558105D9C96E287 /* Support Files */, - ); - name = RecaptchaInterop; - path = RecaptchaInterop; - sourceTree = ""; - }; - 72FBAFEBC62A4B49D547BACBE3C235A8 /* abseil */ = { - isa = PBXGroup; - children = ( - BC4C6B68BA8734999235E2BFCA224977 /* algorithm */, - 77666CD57CD1FEBE5C261C5201C1C428 /* base */, - 169E4195D847AA09F19D31E828FFF510 /* cleanup */, - A9B036C6E061C40AB4DD2ACF73DCEB9A /* container */, - E9EFA77693440E96FB50DD0A9218AE38 /* debugging */, - DE0F76EA71C7954FA4E1ACD8B29D02E6 /* functional */, - 9AFBDDA7FB3585F3537C5055B0F11237 /* hash */, - 61E93B7C4FF2DBC2C9FABCE51A7091EC /* memory */, - 5844776FE519391D33464A6B98538DDA /* meta */, - 5851A3FAD3C44FF047958E174B50B7F5 /* numeric */, - C70A85B958DF893CFEAC486068AAA30E /* profiling */, - DA82EC904692126E1E84E8979D27C127 /* random */, - 7F1375581ADCD87D5ADEEEAC4B6286AF /* status */, - 27464242619BBAD3FD54CFD2406A8691 /* strings */, - 128BCDADD00263ADD3548CB0D7DF3A3A /* Support Files */, - 16C48DD1196C4D453736D64E1409136C /* synchronization */, - EB491A9508742955B0FDEF33615A86EF /* time */, - 23CE789E9AD58FDF41E127C7938C014A /* types */, - 0D6114204BD1C513E4BEA21DA02BA842 /* utility */, - ); - name = abseil; - path = abseil; - sourceTree = ""; - }; - 761871B31A0D1EF8DC02A648DD9FE977 /* layout */ = { - isa = PBXGroup; - children = ( - 05218FB6CA186A4EF0EA1D5DCE406677 /* layout.h */, - ); - name = layout; - sourceTree = ""; - }; - 77666CD57CD1FEBE5C261C5201C1C428 /* base */ = { - isa = PBXGroup; - children = ( - C200FDDB2408257466CC1F047F90D433 /* atomic_hook */, - 6A9DAAF1108EB6FF51FCBE8956B55C2B /* base */, - F1583F2CFBD9B296DF5661B990FCC4DA /* base_internal */, - 7AF7CD548D63A31B00032325C59022DC /* config */, - 5F7E349731C895813509BA3438B40897 /* core_headers */, - F202852F90108C1884DC20717CE9E4C3 /* dynamic_annotations */, - 8DD50631929AFC94EEEB1C02B03EFFB1 /* endian */, - BEE7364BE97AD6BC2AAFA3A3F4FAAF90 /* errno_saver */, - 463D18EB4B2B5E32EAD0A979A1FFE03F /* fast_type_id */, - 204781D2DC9094CFA5C9A7C8DA62A6F1 /* log_severity */, - E2A11124C6BBAA28608A574AD5CDFEB1 /* malloc_internal */, - 1135FE2BB3F0A7AC7A0ABF11C05D9086 /* prefetch */, - B42E3920A8ABE6BFFAD8A6015AC1B6A5 /* pretty_function */, - 520362993A2D9EDD6E4DA10081C8905B /* raw_logging_internal */, - 5E3ECC9F532E02FE5A592C8D5E7E925E /* spinlock_wait */, - 05790B681CFB3D797FADCA0F749BDBDD /* strerror */, - 5923874E4A3AA8954F21BE85F42A52E1 /* throw_delegate */, - ); - name = base; - sourceTree = ""; - }; - 7AC24EC0F810F2E02387C7CFD7DBB5B8 /* representation */ = { - isa = PBXGroup; - children = ( - 302F88279ED3476551D7CF43993239AC /* representation.h */, - ); - name = representation; - sourceTree = ""; - }; - 7AF7CD548D63A31B00032325C59022DC /* config */ = { - isa = PBXGroup; - children = ( - 2E577A9C81666A9F91FA34C74874730A /* config.h */, - 24BA90FFDCA5A2EF40F57CAF3466DB8C /* options.h */, - E4EA0DD7FBC34C06DF9C1A78C15D1F42 /* policy_checks.h */, - ); - name = config; - sourceTree = ""; - }; - 7B166BD8A54EA36F5A477A7EA53B0762 /* GoogleUtilities */ = { - isa = PBXGroup; - children = ( - C370EECD058ABEF88CDE770B18632D67 /* AppDelegateSwizzler */, - 91A266EAE0A82EEA5566E68828665DD9 /* Environment */, - BE3FEAABF37A21608DC07296AB1DD284 /* Logger */, - 86068B2D8B80D312C50BFCA53DBF74D6 /* Network */, - 89AF433F62CF35C3CE09015D567E7990 /* NSData+zlib */, - D562D753C324B57A9BBBBF3BBFBD248A /* Reachability */, - 851BC182CC3376C0E112356F27110444 /* Support Files */, - ); - name = GoogleUtilities; - path = GoogleUtilities; - sourceTree = ""; - }; - 7B63495B3AE2EB10BC6143393506144B /* optional */ = { - isa = PBXGroup; - children = ( - 95407501728C6F7F67AEFF1908758714 /* optional.h */, - 1D9DDF413C634F2C569FE3630DE09562 /* optional.h */, - ); - name = optional; - sourceTree = ""; - }; - 7BE01C05B72615C3FD3696B7D4D3CBE6 /* demangle_internal */ = { - isa = PBXGroup; - children = ( - DCE3E91AEE1C5D325FC9EAAEB6F76CE5 /* demangle.cc */, - 6ACCBAA84DA46799CCB6C74A930FB5D0 /* demangle.h */, - ); - name = demangle_internal; - sourceTree = ""; - }; - 7BF40FC913B922AFC2CCE90FFA8DAFD2 /* Support Files */ = { - isa = PBXGroup; - children = ( - 736D6E938C03CF1EE3FE765EFB8EEAE8 /* PromisesObjC.modulemap */, - 95314A6C43AD6ABE31AD7AAD5A9B912D /* PromisesObjC-dummy.m */, - 6BFFAAE4A296EC09D01ED94046773B6A /* PromisesObjC-Info.plist */, - DC725264CEBA1CCAF0F65F92CBB266F8 /* PromisesObjC-umbrella.h */, - B8EE3D497F7B26DF214B74A9248F59BC /* PromisesObjC.debug.xcconfig */, - 3B1AE8185AA1582F23BE517DE128680D /* PromisesObjC.release.xcconfig */, - ); - name = "Support Files"; - path = "../Target Support Files/PromisesObjC"; - sourceTree = ""; - }; - 7C202261B8150359BDAFEF505937F0DF /* kernel_timeout_internal */ = { - isa = PBXGroup; - children = ( - 3FD506A5CBFA0523639A3865A5C91A8B /* kernel_timeout.h */, - ); - name = kernel_timeout_internal; - sourceTree = ""; - }; 7DBF81461E18ACE1B4BD971BAC841CF7 /* Frameworks */ = { isa = PBXGroup; children = ( @@ -21133,2309 +131,12 @@ name = Frameworks; sourceTree = ""; }; - 7DE0C67A34838EC0DFA24150ED3AD03B /* time */ = { + C9F6DDEE5D76F65BB478A349731F54F4 /* Targets Support Files */ = { isa = PBXGroup; children = ( - A232EE144505410341763F9EB7451C87 /* civil_time.cc */, - 9F47E17C62699EA95F99E7D628EDC292 /* civil_time.h */, - BBC953EDDD752A7AE8E97DFABA5D24CC /* clock.cc */, - CEECDDEE06D52B6CF871DDC2EFE96A13 /* clock.h */, - DAFE7175CE7DA983C7E26F30792C0BDE /* duration.cc */, - 2E4EC37AD5CF94BC831DB3FADAB021AB /* format.cc */, - 10E1F4D8EEA01F4EE3067A245DB84F62 /* get_current_time_chrono.inc */, - 78805CDED39A1B75118094B972E9AC75 /* get_current_time_posix.inc */, - DFBC05A37F4F3DB80E6C9AA362B5C2CE /* time.cc */, - CD40F471A44CB4871795E41BED3CDE82 /* time.h */, + 310087C345B86EEF25A054485E0BB5CB /* Pods-iosApp */, ); - name = time; - sourceTree = ""; - }; - 7ED49927BE53CB82BB70085DCBF0B9B1 /* BoringSSL-GRPC */ = { - isa = PBXGroup; - children = ( - 88E525E57AC4F6D6D49B2B6A8E893D62 /* Implementation */, - 8727109921C14DB0AE67A8389D22B4CB /* Interface */, - C821882CCECD9E35D7D10DE91E91DA96 /* Support Files */, - ); - name = "BoringSSL-GRPC"; - path = "BoringSSL-GRPC"; - sourceTree = ""; - }; - 7EE405CB67C797C8E5F60F535E187350 /* seed_gen_exception */ = { - isa = PBXGroup; - children = ( - 41672B98A8255E20F55CC81C990582F9 /* seed_gen_exception.cc */, - D2A15356298BCB0D3A917E36B5EA7370 /* seed_gen_exception.h */, - ); - name = seed_gen_exception; - sourceTree = ""; - }; - 7F1375581ADCD87D5ADEEEAC4B6286AF /* status */ = { - isa = PBXGroup; - children = ( - DCF42C8A775FDE69CEE82E922D86013E /* status */, - 0CE53C0DA3FA464A6EA9293534928DF6 /* statusor */, - ); - name = status; - sourceTree = ""; - }; - 814801EFB4C188CAB8F0BBBA460AAB51 /* str_format_internal */ = { - isa = PBXGroup; - children = ( - 67AC88401672AD0DC1A588A030A4C78B /* arg.cc */, - 2EA0FF97D96F7BF03649833B91EA20AD /* arg.h */, - 11BF9ADD9F2453A3CC9D7EE6AE8D1501 /* bind.cc */, - 1BBF3844FAF1D7CCCABA78FF41D836BC /* bind.h */, - F7D547DD535F6DEB05AEBCDC9899AF48 /* checker.h */, - F3B763DCF8CB08D84096801A966D1A68 /* extension.cc */, - 192A711206B2630A44D58A1E6F7A765B /* extension.h */, - 6C63ACCCFCD0CCC9EBD16D6129AABEC7 /* float_conversion.cc */, - 69B2911F143DE41B880832760F562B8C /* float_conversion.h */, - 0AC6F56A2FD8AB2FEE770005A53062D6 /* output.cc */, - 3025549F4662802E6E043C29EA116C83 /* output.h */, - D75F6B2620E0448875334D06E8AAC929 /* parser.cc */, - 03E5D973622DE685DEC76E0087E05473 /* parser.h */, - ); - name = str_format_internal; - sourceTree = ""; - }; - 851BC182CC3376C0E112356F27110444 /* Support Files */ = { - isa = PBXGroup; - children = ( - F9BA09B6927489C356F0D132675D480C /* GoogleUtilities.modulemap */, - F2D33ABDF24120DE8AEA47F7C580D698 /* GoogleUtilities-dummy.m */, - 7FFF8F8B755CAC2D34862950D37F0D3F /* GoogleUtilities-Info.plist */, - 5BF7660098B22650743132F0226AB30C /* GoogleUtilities-umbrella.h */, - 5D61F4ABE3847EF01C0A150DD9CB2283 /* GoogleUtilities.debug.xcconfig */, - 994B774AD45D41B56696B1B164B3CD04 /* GoogleUtilities.release.xcconfig */, - ); - name = "Support Files"; - path = "../Target Support Files/GoogleUtilities"; - sourceTree = ""; - }; - 857473C373DBBBAE4BF9948C99F29D3B /* cord */ = { - isa = PBXGroup; - children = ( - D79CE00C5F399529BFB44E3F7DC24340 /* cord.cc */, - E49B91EBADD885860BFBD5956A2B9BAC /* cord.h */, - 187C1A3E5C4CABDD233B58E6DDFC24B6 /* cord_analysis.cc */, - 10CAD5E37211F3AB267A47CCD83A7516 /* cord_analysis.h */, - 2CFC72481901EF1CF6CC0FAA9CA494E9 /* cord_buffer.cc */, - 382E90F0A87E29EDCDFC3252CB2B6EAC /* cord_buffer.h */, - ); - name = cord; - sourceTree = ""; - }; - 85F37E7F441CC1F63730E682742157AD /* Products */ = { - isa = PBXGroup; - children = ( - BF96B57ADE05E8909F823BDF6868B3E3 /* abseil */, - 514D7742C6CBB0BDBD9984AEE97DDFDE /* BoringSSL-GRPC */, - 81418C93A311F0492F62A8F88C3BD66B /* FirebaseAppCheckInterop */, - 43B1E4CD7B30B9FD278100133C2AC788 /* FirebaseAuth */, - E2B63D462DB7F827C4B11FD51E4F8E2D /* FirebaseCore */, - 148D0F9E8C7373FEAF40D800FC5F1BAA /* FirebaseCoreInternal */, - 92000153CD73F7FC2DBAB4AB708269F3 /* FirebaseFirestore */, - B43874C6CBB50E7134FBEC24BABFE14F /* GoogleUtilities */, - 1911113E0FBF13CFF9132E5FF7685228 /* gRPC-C++ */, - 9C7C87B5D0A6752AFA2642F1BCA967A3 /* gRPC-C++-gRPCCertificates-Cpp */, - B471867C535B02FA55D87E260F6480F8 /* gRPC-Core */, - C1998E0D8085221AD87F89B614C10E52 /* GTMSessionFetcher */, - 0A9F46A999C47653013D3AD854352507 /* leveldb-library */, - 06FC5C9CF96D60C50FCD47D339C91951 /* nanopb */, - B097DD7534E741D5C41838011D755842 /* Pods-iosApp */, - 3347A1AB6546F0A3977529B8F199DC41 /* PromisesObjC */, - 33D34D2210961B1CBFEC1D194B0AAB9F /* RecaptchaInterop */, - ); - name = Products; - sourceTree = ""; - }; - 86068B2D8B80D312C50BFCA53DBF74D6 /* Network */ = { - isa = PBXGroup; - children = ( - 7CFE2BA094AD9AE8F183EBAD632EB33F /* GULMutableDictionary.h */, - 8F331CD633F22585B4462B041D7C6F9F /* GULMutableDictionary.m */, - 499FE9B2FF9C133B079D8F52F5109B43 /* GULNetwork.h */, - E89619E53F05A25D4DA37D6047773584 /* GULNetwork.m */, - B102CC0816B9EAFE622314E6D2387DAF /* GULNetworkConstants.h */, - 049AC23984B57E37A029B5A18A2C5711 /* GULNetworkConstants.m */, - 2B4EF7D1D9B98233C513F62B76D216F8 /* GULNetworkInternal.h */, - D00AB63BCC5186AF5981A764662C132B /* GULNetworkLoggerProtocol.h */, - FF7EC7567DD1202920B1957CB8672639 /* GULNetworkMessageCode.h */, - 9769E01143F79CE7C4CBBFAEBE44E840 /* GULNetworkURLSession.h */, - 024F551F4A627FBFCE78E373F99F5779 /* GULNetworkURLSession.m */, - ); - name = Network; - sourceTree = ""; - }; - 8727109921C14DB0AE67A8389D22B4CB /* Interface */ = { - isa = PBXGroup; - children = ( - E78A65C63086E99EA695849D617A83ED /* aead.h */, - 244E092A553497D1F248B5FB13893A07 /* aes.h */, - D3BF5EB52E0DFC38A1DBF0C7336F7719 /* arm_arch.h */, - 09AF23878F67216BE2C4E0D604BDB0AB /* asn1.h */, - BAE032884A1B3DFC7B5C8EA43753BE97 /* asn1_mac.h */, - 53AA960E3E8C8CB8A6BF667D234082A9 /* asn1t.h */, - 298E941846B394F119C4DAD5BF26A5CD /* base.h */, - 34C42FF0416B8C107FBF9E77C4A64245 /* base64.h */, - 9E2BE82371FDAC1C2C07A492AED9D349 /* bio.h */, - 73B6E3E6C51398A0AE3903EA6638EC19 /* blake2.h */, - 7360766508120E8E8155A5906310D595 /* blowfish.h */, - A163AB899B8CB35AACC0FC9241C1D2EF /* bn.h */, - A92B78475FEC0A38FF26D0B1326DDA4B /* boringssl_prefix_symbols.h */, - 579A2429C6C7C7DFF8A90E17A9C23E1E /* buf.h */, - 91D12EFBB72810CBC71639806DD67C7D /* buffer.h */, - 558664D36082923D6E87CEB773269977 /* bytestring.h */, - B03CB1DB20B18AA82985C8183F6E1764 /* cast.h */, - E2CDD2CAD7BF8D3904FCB525D6896108 /* chacha.h */, - 59EF36BF4F79771B64C36DB8BBDD0920 /* cipher.h */, - E466B63531A69D143134218170383275 /* cmac.h */, - 8194AA320AB8FAD421BB90AC70767FFD /* conf.h */, - 79C0C6E9286973AAD930A1477B7F9D90 /* cpu.h */, - 89EC5C7C3F96252D5A3A3E9C5B53ED87 /* crypto.h */, - 6729B23B85A97CE38A810ECF62EB7A0D /* curve25519.h */, - 3411A1A42B2A46331D1100D65DC7A9CD /* des.h */, - 871D792CEFAB5610D9FE2D3B61840E7A /* dh.h */, - B26605088B2A2B0A83100A0FEC3A79C1 /* digest.h */, - CE90D8B6D6A4CC76FC090F64F7E6723E /* dsa.h */, - 5F0F918542AF47A0A5D64E15E43C5BB0 /* dtls1.h */, - BFD950FC833DB822B1DC3B5B7C4D70D9 /* e_os2.h */, - A09DE1080290FF60E871CD128A3781C8 /* ec.h */, - FA30B7E3AEA2E3020F37A3C84D2B3D04 /* ec_key.h */, - 93D0A2031131711A048901AB90D5BB18 /* ecdh.h */, - 36D4A2D5DB33A05913107137DE0BCF73 /* ecdsa.h */, - 749F0A1D30E33E0E339F5E0FAE846D63 /* engine.h */, - 2271A4695C9EDCE8D0CE18DD508FB57F /* err.h */, - 3AB2D2578787D1977C2A086623DF4E6D /* evp.h */, - DEC8F05DF24A0FFE32C6C26836CC2EDD /* evp_errors.h */, - 1C29221990192A22A718DC6094646990 /* ex_data.h */, - D4422107FC580D2844C9BB18D9F6C52C /* hkdf.h */, - 325C32E742636F03939C351FC1830DD3 /* hmac.h */, - 3B8ED7C0A5717A59310573EC17E1367D /* hpke.h */, - 69564087DDBD14EEBF809B204844C59F /* hrss.h */, - 59A55275A82EC3577A8D3E5E0C72691D /* is_boringssl.h */, - 95894B9A45619EDEB8D4467EAD2637D7 /* lhash.h */, - 798C4B151D551436547AB74554CCF4DD /* md4.h */, - 6545AE38DFE5BCD5EA3421121EC9E608 /* md5.h */, - C4F7C55FB495334E5FD1560D585965EE /* mem.h */, - 28095137FAD0FF653301E6FE3F465084 /* nid.h */, - 4042EBE7F65AF424E71FCA03CC332773 /* obj.h */, - 5F0893E574A1F0E0E5383E10AC78F47A /* obj_mac.h */, - B23AAD761EF0D909CE2A8A5E5454A766 /* objects.h */, - 224A9F761113832ABA61DBE075A08E9B /* opensslconf.h */, - D2B77739ABE06062E09E9D909642D93B /* opensslv.h */, - 37AE5488268F3775770C2248293FA676 /* ossl_typ.h */, - BB62C2AA60E865911D2E87B2236182A8 /* pem.h */, - F1F0E7D62B87E55F757D1D62E975CE27 /* pkcs12.h */, - 48290503A5BB8F5F01D63C7A13A116C3 /* pkcs7.h */, - E161C72FDB7217B077263E42319E2382 /* pkcs8.h */, - 73754E1FF526269575ADF5D491D5B8D6 /* poly1305.h */, - C906C0D8C324DF20573A0BDB06754FEB /* pool.h */, - 4B8F111B82846B568159073F077790CB /* rand.h */, - 1CEC2CB5E13A2A0BDBF79A9BCAC16540 /* rc4.h */, - 738776B6AB209E4658F5EE8069597D8E /* ripemd.h */, - 9972702880C9B730E47750CA3AACB066 /* rsa.h */, - 9D67DA9212FD03285EFB13587382309B /* safestack.h */, - 2B9712CF6CEEB8C86B40E7AC5BA07E98 /* sha.h */, - 602DF832695D428540A68EBCC1CB05DF /* siphash.h */, - EEE2A3C886CF68A2EEF0802CFD94F04F /* span.h */, - 23DC30A6F13758839F0A7B225B6E34BD /* srtp.h */, - 993AA317356A486F0CA104D0DE838092 /* ssl.h */, - 4B1EC8407D1F38484594FAB9262A7590 /* ssl3.h */, - A89BBF14588035900CC1C96427D7C9CE /* stack.h */, - F73E1D78FCC6D3C7F5A3AD1F0D762D54 /* thread.h */, - B15B9D94519D0FCDA83D340CD3D8F013 /* tls1.h */, - 139AF6D02A92BA34E5F403A7A92B5E45 /* trust_token.h */, - 85C6556189D5572177565DD94F6659A3 /* type_check.h */, - 48F47ADD365EFB1A2A6E9778EDD6AA55 /* umbrella.h */, - 273BBB9C7518ABE9ECC1856C3244B8B5 /* x509.h */, - 529F2132B01FC492077BC8A18DA09C7B /* x509_vfy.h */, - E38CE3D5AE58B7C80A5000EB5EC8DE1D /* x509v3.h */, - ); - name = Interface; - sourceTree = ""; - }; - 87673F4D3864AA080BAB8D4071FD0B6F /* seed_sequences */ = { - isa = PBXGroup; - children = ( - 9B0E87FC3B4CF8970CBF01049EE4322E /* seed_sequences.cc */, - 62C0DF30B6A036767B05313E8E340DBF /* seed_sequences.h */, - ); - name = seed_sequences; - sourceTree = ""; - }; - 88E525E57AC4F6D6D49B2B6A8E893D62 /* Implementation */ = { - isa = PBXGroup; - children = ( - FABD292CA2CA606D8218B3D8C9894EB0 /* a_bitstr.c */, - BAF074B56B4629C90FDC262746997573 /* a_bool.c */, - A488D54FFBC330077FBF21FD836C7E39 /* a_d2i_fp.c */, - A872AE21ECB2A584308F52D65B485D25 /* a_digest.c */, - 35C3478E58EF9BDAEBE26A644E68106D /* a_dup.c */, - FEC779D2587471697D299304F7A18E0D /* a_enum.c */, - 48890493A852412B48EE2155632A62DA /* a_gentm.c */, - 10AE08A07525149A26BFCFDB121E1864 /* a_i2d_fp.c */, - 498924F002E148C19F59782E5E42A1F3 /* a_int.c */, - EA748A455A0289CB5746A5C803901284 /* a_mbstr.c */, - 5CC42C060F544932394327771D03EE37 /* a_object.c */, - B300D937FD1D0D25C2525CBA31D19B92 /* a_octet.c */, - FCD770D6D7132322DEC042E74C7367EC /* a_print.c */, - 743F46C3D5B26AA01734985901489905 /* a_sign.c */, - B46483763E2857622D651C0D31200976 /* a_strex.c */, - 6EF89D92821E1E6ED51825B51B320284 /* a_strnid.c */, - 39BB54E277AB31BD264879FC69D21755 /* a_time.c */, - C61602970D93DC8CBF79F71EC6F565D0 /* a_type.c */, - F13C371FD182590CD1FC7A09A020CC4F /* a_utctm.c */, - 7EE33608D2C44C8E4F5F0D8A53C896E7 /* a_utf8.c */, - E5CD400681B024A9BAF24AC18DAF538E /* a_verify.c */, - ABC3F3E547423CFA297D0DDCC6814B75 /* add.c */, - A85E78AB97547B75BCEE618583AD6E4E /* aead.c */, - BC00455AC6C581B961898488144CC358 /* aes.c */, - C4A22F9579FDF7C8133D8EBA78901FCA /* aes_nohw.c */, - 0DE2E73D4603621B7AA680EB4199ACF2 /* algorithm.c */, - 9CC234F2439530D3E6ED871B8D6BB974 /* asn1_compat.c */, - 6F2B5796739CF1E7FBB02EE5E0690939 /* asn1_gen.c */, - 743688AFD27011B2BB26EB443359FF18 /* asn1_lib.c */, - BCF2BA1E65E730CC4EC7F816C7BA89E5 /* asn1_par.c */, - 07F82A1D332CA1B09252974C55DC728E /* asn_pack.c */, - 0F7906BB830F523FC37A0883E75FF6EC /* base64.c */, - 2F6975A74D5863F197D4D66923A86895 /* ber.c */, - 4FC17DECA4A5369AB8660F9A127AEAA5 /* bio.c */, - 4CA4F9A5994DABB86460BB8C3B5BA7B3 /* bio_mem.c */, - D11EA877B7F2112C14CF9B28899F60D0 /* bio_ssl.cc */, - 4FED8EFDB285A0A7E0152A20806369B7 /* blake2.c */, - BA326A30BDB0EED84429E3F711D2C5FA /* blinding.c */, - DC9E868AEA429743C699E1D2DF8EDA02 /* bn.c */, - D69EEF42A61B477CED29AA2AE5C2809B /* bn_asn1.c */, - 5E23E7230E1671507457BB8628145784 /* buf.c */, - 381827D7CE874AFD5179B42E152CC1F8 /* by_dir.c */, - B064133769A571103DA974108857368F /* by_file.c */, - 9C5B1C7F06A60345842A6C954ADCB41E /* bytes.c */, - C809735D523CCC344C53D51C8A4B73D5 /* cbb.c */, - 0577809A1D299D8FE9B6E7FFEB4D45AC /* cbc.c */, - BBB564522CC822792C9BE1624B9E443F /* cbs.c */, - CAB640F1935634B68B44B68F6BF39779 /* cfb.c */, - 8DEA50C2D4B505B88A4D348FBE5FE455 /* chacha.c */, - 62BDE3839255CDE399FFECF78A2EC3E5 /* charmap.h */, - 0F50E26714E64A7137B3C19A1FE0D7CC /* check.c */, - B4443DE8B664B517115A57B3EEDCA162 /* cipher.c */, - 5B99439A029E2DC329A7B5A7A4EDD9AD /* cipher_extra.c */, - 858854339B254E98CE39BB4BCDB511AE /* cmac.c */, - A9594DA8778FFE481253A96661820EEC /* cmp.c */, - 320B1179E34CB4024E5004CB3B9D6F8B /* conf.c */, - F7CA91DFDB014D10CD1EB422B269BF3B /* conf_def.h */, - 2047186A0C0844604CF3BDF0237A51B0 /* connect.c */, - 9946FA6DBF345A619B4D1E082F06617F /* convert.c */, - 57CE896908A53A5D74D475845DB39A8A /* cpu-aarch64-fuchsia.c */, - CF293A66E90E961F030B1B891B7AF548 /* cpu-aarch64-linux.c */, - A46870EAB67F7D85FB92B5A0E7562035 /* cpu-aarch64-win.c */, - 67AFD862A626ADDFAC91C835F3EEFDD7 /* cpu-arm.c */, - 91413E3AE1E69BB40C5DD5A94334F345 /* cpu-arm-linux.c */, - 559A054F40CF91467BADF1F1E2E432A3 /* cpu-arm-linux.h */, - B7A9179431821478CB4A742561805B54 /* cpu-intel.c */, - 2C3834A922DC0459067DDE0E105D774B /* cpu-ppc64le.c */, - 0A0A7EB76C1AFA667BEAAB49A2FE9B1A /* crypto.c */, - FACBC4367B030FE5B391590A0E6B9346 /* ctr.c */, - 34BF075FFDAF54CC4899F95E304AB3DF /* ctrdrbg.c */, - F216CB59752BA8794724D218A37530C4 /* ctx.c */, - 61F1B4D8F8EBCD0425109556F925ACBB /* curve25519.c */, - 0B2695022ADEC049C2EC78CC26BD764F /* curve25519_32.h */, - AA65A4B87E769EF917B30DB35A891ECC /* curve25519_64.h */, - FBA213433EBA04FA3ECC6FC3FB0908FD /* curve25519_tables.h */, - C1E64045A9C855533FA67EA5CBB232D8 /* d1_both.cc */, - D3062085B1798FAC16AF7C8453528058 /* d1_lib.cc */, - 7A06E548FF0CC1156FDC7971208ADEDF /* d1_pkt.cc */, - 78C1B6A66357E854B9307DE2D5F87DC0 /* d1_srtp.cc */, - C4B2DA00F24CA3A88B31D4F26F3F8B40 /* delocate.h */, - 3B4EA5001DF5A95AA069FB8283A85A92 /* derive_key.c */, - 2CB87611B5AFDB959DFD077808B4FF11 /* des.c */, - 9F77F3D49820E70693FDAD683689EF79 /* deterministic.c */, - 75C26F76DDF7736D5F71470DBDAD8BB4 /* dh.c */, - AD7290A378677F09E776020533165350 /* dh_asn1.c */, - 58D15552A3E54445716EDD63E55E2EF9 /* digest.c */, - A61A1B7A9F51719F32DADBB779BD9FF3 /* digest_extra.c */, - 4E3D10C2327C5C7A98767A5BE3071FCD /* digests.c */, - F943E1DB6B4DE81D36CBE1C3742D6062 /* digestsign.c */, - 8736B2B7B6E3C11BB6F2BDA957A865A4 /* div.c */, - 279D5CCBF8DD8518A716EC4F8E19606C /* div_extra.c */, - 27E612A472C523C503F785A151FC9232 /* dsa.c */, - 368C22818757BD00841F71BECA39CBE1 /* dsa_asn1.c */, - 9579AEA0C639344D1ACAE061089FB993 /* dtls_method.cc */, - 86B9C5C3A5119EC1E5888212FE0D38E6 /* dtls_record.cc */, - 0FF4608DF04A1BEDBBE67DCFA3EB2C7F /* e_aes.c */, - 48605680A04A6A06D364C18AEA49FACA /* e_aesccm.c */, - F09E060612D37CB20BC7D330825C6E66 /* e_aesctrhmac.c */, - F799C24ABCF793E28DFB7E5609241E05 /* e_aesgcmsiv.c */, - 63FFC879B10D32F3C74F42B3E11D067F /* e_chacha20poly1305.c */, - 3777DF72BAC7AA8E70608D3E05234AE4 /* e_des.c */, - 2ED7BE3720E0AEBB34D3F05F7D1650D9 /* e_null.c */, - 250CA429343997A73FF1BA52F6F12DC3 /* e_rc2.c */, - 261F26C1A618E7201D25CC088FEE5C67 /* e_rc4.c */, - 8768E293985FFDB7ECC6DE7F772D8920 /* e_tls.c */, - 465739B1B6CD8C59738290F3F0EF9275 /* ec.c */, - BE965D2D14C3172682E5E75EB4D38CE5 /* ec_asn1.c */, - D8AAE302BEB79ED68FF6B9CC96B79FED /* ec_derive.c */, - 6E4DC187A3C6E1D7B9A0397F0F399C30 /* ec_key.c */, - 94267E25916F43D7425266CDAD5D8DA5 /* ec_montgomery.c */, - D84AD88CB0289652AD0AB135D7A162F9 /* ecdh.c */, - 29609538FB95AE462553AC0324A5BFDF /* ecdh_extra.c */, - EA761F6527AF29892549BF05EF502954 /* ecdsa.c */, - E3556224A3970AA83A6D9EFF47FD791B /* ecdsa_asn1.c */, - E3A79B59FFE16B84C2ADCA787EE3D4C9 /* encrypted_client_hello.cc */, - 7A81ADAB7EA0CD77184B4A15DDCFC577 /* engine.c */, - C67523D886858CF1F62B1E0818D39362 /* err.c */, - 923841783C0151DC50C1AED63E4909B0 /* err_data.c */, - BB2052E02E093AFF6A14E94C2C94D238 /* evp.c */, - CB83D76D56579BBBADD73EC1BEE7CC69 /* evp_asn1.c */, - 39C1E7B3AB66A85AEB91EEFE7847AA26 /* evp_ctx.c */, - 068979B021F3FE38872390BBFF12ECE7 /* ex_data.c */, - 473CEE855C0450139FC80C3F4F3FA7DE /* exponentiation.c */, - A72DD36EAAF8B821F3802132B4314307 /* ext_dat.h */, - D7D82F0D1A66634D69610ABE7DE857B9 /* extensions.cc */, - 4270ACF9D8572C36B9895119689F73DD /* f_int.c */, - 87F5C780991D7B4F360D28A1B70C6306 /* f_string.c */, - D78CF9DC1ED1BACE399F3681EDFB9796 /* fd.c */, - FFF17CF68F1A93CBF429E4A09A7D2563 /* felem.c */, - F839E2A91CE80382B12B0F06E72096D4 /* file.c */, - DE069E6ED7D38EA0C4651CB578908DAA /* fips.c */, - 1AD4378580FE9A399CFBA8EE6182EEFE /* fips_shared_support.c */, - 41CF845524B4D03216B3E587FF11F5F2 /* fork_detect.c */, - 443E99F27A9B6F2B778BB81A9F04D53E /* fork_detect.h */, - 79DB4ECA77C596009A7AFD5099BE9029 /* forkunsafe.c */, - 0F08AB7795776C5F6BD73A55EEED4A3B /* fuchsia.c */, - 65484BA53ADB21B9354A1AECABAFF212 /* gcd.c */, - A8C7ED750C0FC6E3364CBF754A504CBF /* gcd_extra.c */, - 60D3BE4BA25C88023931632F22A02A29 /* gcm.c */, - 04E42307F08965EE6D44D9A9659712C3 /* gcm_nohw.c */, - 3018A45187382EF60EDC7D0826513711 /* generic.c */, - 7E31331647941860AE98099C796A3A07 /* getrandom_fillin.h */, - AB4AE245EC81A7D129C46D9AE9B81DF6 /* handoff.cc */, - A4F14108F3DADF1F966739BDA996AE37 /* handshake.cc */, - BB68A991482989B8EF2B042FD66AD8B8 /* handshake_client.cc */, - BD96873BC8C577FB6326156990E0FB40 /* handshake_server.cc */, - 73C5929AACA54CDDB5CB307EEBA725F4 /* hash_to_curve.c */, - CA0C5ACC7B0E8DD16F85D1D9727C871A /* hexdump.c */, - BE4D7C6247B2EBA18B5410010E24010B /* hkdf.c */, - 4FA00014B160F0B395455EE9B18DA7AF /* hmac.c */, - D8BC9C6F88F909F577BD345F6DBB06BC /* hpke.c */, - 4BEA3C12F6D38D3478C10DD89046722F /* hrss.c */, - 1F096285F1E2CFFB1BAE1DBD7FA0DEB2 /* i2d_pr.c */, - 5F22DE2FD8C5049C2446ADDD71014688 /* internal.h */, - B866F69741C9FF4A74D0A64591F03CB6 /* internal.h */, - DEFF5777043C076CB9A90CD54EC34832 /* internal.h */, - C09D10EF6C83D49AF260DC5F7313A8E6 /* internal.h */, - 022506EE4C4F2FC4C54187B3A8DB97DB /* internal.h */, - E73F026274DE9CA09BD13E67522C63CE /* internal.h */, - 149DF03C26022DEC6A0BB3329C2D3932 /* internal.h */, - 44E0887652C53813B7152574FD40C54F /* internal.h */, - EDB95363DDD5E8939C4889DF0FBC44FB /* internal.h */, - E8A1A3E644DC7315C56F47FBBC1C763A /* internal.h */, - 6610712D920973C1CDA4D107D969B88A /* internal.h */, - D54E9FFC1AA99B02DACABB7501948E36 /* internal.h */, - 4560AC8C4A0FBBD9C575F8DBE37D1948 /* internal.h */, - F9F21B0F979AA45826948010F270F3D9 /* internal.h */, - 65175563D9654EA9D6A6449CB1821E95 /* internal.h */, - BF65F024458FD5B168F862AB8F2A3C2A /* internal.h */, - AF43D43FFC187F3FC76FBE4C62ECBD62 /* internal.h */, - CA6CC875C1875CF542F5EC00EC7C49B1 /* internal.h */, - 890A94859AE094DAC6FF2DBDFC7E89FC /* internal.h */, - C34E9FE3035CB20012464087AEC1D846 /* internal.h */, - 19BE17B876B955A416B4318AAFD28C30 /* internal.h */, - 86E7CB4E12E01A21640549092E27EDAD /* internal.h */, - CE27F3353CCDE20EEA1967F59A73B2AF /* internal.h */, - 7367A46F3574E5BC0ACD2772358A2752 /* internal.h */, - 7160177A88ED22AABA4724ACEB368EB8 /* internal.h */, - 58134D0403E2A6A27BACFFDCE11206F6 /* internal.h */, - 52C08D56756499F2949727A978D74B60 /* internal.h */, - 6806EE93DA3A5F6092FA3DDE23A02A83 /* internal.h */, - 1806ECB9B1472EB77A01E6117300106C /* internal.h */, - CE8A826F9315D91424D47C1D36A58B48 /* internal.h */, - 84B3B8485E6D720F6C7280236233C2EA /* internal.h */, - 78E1723B3DD72C6BDAB63A2566D6BC6A /* internal.h */, - C56CAD6FEF4D5B0C413772E8CAED7FD5 /* internal.h */, - B06D149729259497190264A5BEFF6EEF /* internal.h */, - 7737457D1517E96773814F9AB4C5CE46 /* internal.h */, - 7E39E757FD0BFAB8F3CA056C8E641BE4 /* jacobi.c */, - 2F12C6F86E611F4C643014C1EC0FCB5F /* kdf.c */, - 4F986AD521AB6183B6760C59D28DB935 /* key_wrap.c */, - 23E6AAB4C16B77CD3CCB5FE80E354B13 /* lhash.c */, - 69CFD1307C912B9D47E120F558E4B0AE /* md32_common.h */, - AE4E1FD8D0B3217DF4D3446EFC25D5B9 /* md4.c */, - 003347B816C9863C2C9F6BC5CAB6D054 /* md5.c */, - 74C949B60CD86DEA88A6E37B0EC70FD6 /* mem.c */, - 32ED262357C53929A601DE949E124D2C /* mode_wrappers.c */, - 08EBFCBC0C18E57241F4E726DCF80B82 /* montgomery.c */, - 3812B343FB792033520820ADFBAFD132 /* montgomery_inv.c */, - D0F1323D76B57E1FC8B9EB16C6FF9BA4 /* mul.c */, - 079383B4BBC29ABB512059412E263624 /* name_print.c */, - 752AA4AF3911C891B9834E4887BEFB66 /* obj.c */, - 1218D61ECA8821C5D542D4C657DF8B47 /* obj_dat.h */, - EF26CB6E8AA2DFC4DB0752853BE3EEDB /* obj_xref.c */, - D502F95AFC03031B8BD32685C852BA96 /* oct.c */, - 237C2014E894CEA77D8DE38BC84609C4 /* ofb.c */, - 80FC628D1A20AB51A574B199CA15C5F9 /* p224-64.c */, - 9E4D1687B7689DE0DD19655342E3A4FF /* p256.c */, - 5A18A4B3C0859743D5C261E93B181286 /* p256-x86_64.c */, - A3B1EE468A2818746D586FEAEA120196 /* p256-x86_64.h */, - A7C76F815BA1ACCF51948FA141EE6306 /* p256-x86_64-table.h */, - AA6C548C2BAB51D70A6A45A8D0C335C0 /* p256_32.h */, - 93AE143FC736025CB9937AD2B30B1AA4 /* p256_64.h */, - 607ADFCCBAC72296AAF834D6CBA3945C /* p256_table.h */, - C25341CAA6390E004835751AB08740E9 /* p5_pbev2.c */, - 1FC348A7F26B3A78CD3EDE67ED7469AE /* p_dsa_asn1.c */, - F9E30025564CB9BE63DE329664C1B3A3 /* p_ec.c */, - 21DDD8B71F8DF9379C2C9044A1AD5BCC /* p_ec_asn1.c */, - AFC4B77FF9B690427B234AB4B10D3C36 /* p_ed25519.c */, - 0E3A10DA4563742DC7391E98ACADBA62 /* p_ed25519_asn1.c */, - C85064BC2B3396D92B62D9636C070D98 /* p_rsa.c */, - FF5E4D8426F06CB5231ACFB708B98ED0 /* p_rsa_asn1.c */, - E2C0C6DF4A520C0F64BD4AC9306CD774 /* p_x25519.c */, - 00BB305A9AF46FD9CD970D10D2DC3D84 /* p_x25519_asn1.c */, - 203ADC867E690929F957ED926E57349B /* padding.c */, - 903D130B9FF62FD794FDD89A3321E9A7 /* pair.c */, - F8281535998389FE890305C159FEF1B3 /* params.c */, - 2E28BBE6A5148634A207B89E3C1EF135 /* passive.c */, - D0F202E1075EA850F9C2E73F52B4FF5A /* pbkdf.c */, - 2F75B64E02CB5F326B83EEF622007BD3 /* pcy_cache.c */, - D4C41E2B96EBD4941576F71EBE9D96CA /* pcy_data.c */, - 1FD7FF5E6BBB4576F06A33F1CB622469 /* pcy_lib.c */, - C04788BE4509F2E027AC85E22D13D838 /* pcy_map.c */, - C10A2E942E2B7E29E898CCE3B7F2A8A0 /* pcy_node.c */, - AB48DAC69BE4905C847040BC118C4997 /* pcy_tree.c */, - 93DA2AAFB02711A35946504164108AA9 /* pem_all.c */, - 0337E27580348BC2BA7F890F50247592 /* pem_info.c */, - 5809F16E1565F6CA14FF9115A226C2B7 /* pem_lib.c */, - ABCC6D488CD6F5465384E1CAD633446A /* pem_oth.c */, - B04568BC7474E6043F7190D4D6941401 /* pem_pk8.c */, - CD01D16CCC21FEE2500C91275CC8792B /* pem_pkey.c */, - 6DFB44E9E14BC8C47F5C2DC9E1F521B6 /* pem_x509.c */, - 06F30910F336410569E55D073ECD4C8F /* pem_xaux.c */, - B11A83C87147CB82010BA8B14A17A16C /* pkcs7.c */, - 02F30FDA0B8D7B6B39C2D22885B93509 /* pkcs7_x509.c */, - 593056ABD00C208F10A56E3427D84A2C /* pkcs8.c */, - CDBC4E3B11C8751DA88B42305922FA7E /* pkcs8_x509.c */, - 6AD9E348E15D54BAC1AC120FF71600E6 /* pmbtoken.c */, - 1A8A044AF8C10F2D388A7764DEFDDAE9 /* poly1305.c */, - 6502B66701E14DD734858905A8F62A0E /* poly1305_arm.c */, - 034F4021FE6064A1FABBAEA00C6403F4 /* poly1305_vec.c */, - DBA7F52F13CB23728FE9C24D27A996E1 /* polyval.c */, - 28095245DA38E3692E1ECE20BEDEAD14 /* pool.c */, - B86CC9FC010BE5341AE85E8D9917285F /* prime.c */, - 39EABC4334216A0DDD5A81B7BF40C50F /* print.c */, - 0F34E3713446A1B7F4CD6EEEB1D4EB98 /* printf.c */, - C972D099DEF49A095E205A442C94CDD2 /* rand.c */, - A0441B0B6F0EE39BDE1C690CF87D53B9 /* rand_extra.c */, - 061483508AA99914CAF8A34833DF920F /* random.c */, - D3033DEC2E0AD711A8E8838BD221B258 /* rc4.c */, - F8B2BDBD40F3FFCE489C2369D566F3BF /* refcount_c11.c */, - 55149F7022F75A2FDB46F8740643388C /* refcount_lock.c */, - 8C424CD3ACB65E2A762CFAB11BDC4839 /* rsa.c */, - A123F5437BA27AE9E439579D89B314BF /* rsa_asn1.c */, - 3AD9DEC313F8CE490F8DDF1DC5DAC13C /* rsa_impl.c */, - D76EA98DFDC52709CE701A382BBE4154 /* rsa_print.c */, - E51A19381EB53E3EE3C4E891790B45B5 /* rsa_pss.c */, - 49219DC7A0D9981492CC7D8B488A3DE7 /* rsaz_exp.c */, - 20F4519D6C16A124AF79C1199D42EEFB /* rsaz_exp.h */, - A5DAFD3CFE50769E757F5D667AF4FA5A /* s3_both.cc */, - 47A8305E6A9E14C2635BAA90AAE38FA6 /* s3_lib.cc */, - EC81E633491AE5BD2651951FB564CE8B /* s3_pkt.cc */, - BD6D4268B2596D2A7512F128602E4628 /* scalar.c */, - 5E1843A17296FD38C7D38AD8FF0FAC5D /* scrypt.c */, - 7B308FDBE7E1A97A5BE54BCDA7760DF8 /* self_check.c */, - AF1F20D24A49CB3A1A6F9B6A5741B837 /* sha1.c */, - 489B3CE59D241BF44E0D80C4FC220E1A /* sha1-altivec.c */, - E66ECFCD913AEC91113EA54AC47495AC /* sha256.c */, - 2C4D580353877D237ABEDB948858B761 /* sha512.c */, - 05E57665ED127DA475D44158C9F39F56 /* shift.c */, - 405A39BF6061898F5A507AD2D187FEF5 /* sign.c */, - C7D3798235C443F1B456AC14F8E7E019 /* simple.c */, - E067E77436E8F63146D6A3E4583F54F3 /* simple_mul.c */, - 6694D89C132250DCEBF289F187424B61 /* siphash.c */, - 94DA34A697B449807BA291012F7C7B98 /* socket.c */, - 14FB2D8393CA37FB5E6380B640099BB1 /* socket_helper.c */, - 363D6848FA832967E80C1336837CB963 /* spake25519.c */, - E025FA592BF5119C8C521FBE1DAF40FB /* sqrt.c */, - 686883483813F592C61194D39E2972B8 /* ssl_aead_ctx.cc */, - 48B28F0E6B79393478B2468B4E240F90 /* ssl_asn1.cc */, - E175027F231ECB2626E8B04D26ACFD36 /* ssl_buffer.cc */, - 986C60D7547AB68B422D13509F8EDFAD /* ssl_cert.cc */, - A587C3C43E5633BE986D1736285F319C /* ssl_cipher.cc */, - 0CB37A7EB677EB90FFA69FA4F6CD448E /* ssl_file.cc */, - BEA2E868C6692EBB946FE99F0966AE3D /* ssl_key_share.cc */, - 3794EF5B2603668BC5F5F4D774C65E8C /* ssl_lib.cc */, - 7EBBF1669A85B83534B046B5B8950F30 /* ssl_privkey.cc */, - 53BF0ACFA3332B5020ECC2862EE12B66 /* ssl_session.cc */, - 4389A8F4BA3BE3B78651D056A413B8D8 /* ssl_stat.cc */, - 59677A49FF785B876C8D865B91CEC32D /* ssl_transcript.cc */, - F4129A29BA2B97B2F876F1C716F738A7 /* ssl_versions.cc */, - D5F6CA74E75A4988C4A995833C2A659E /* ssl_x509.cc */, - 8C7ADE38C5F3FBC0BDA9F33871BC3944 /* stack.c */, - 3FEFD01AD6F526A81D3B734BDB3AD046 /* t1_enc.cc */, - 9F6E7C8AEC0AFADFE3396C008AAFE8F3 /* t_crl.c */, - 89B80AD4F97A8246289BA11ADA12F794 /* t_req.c */, - 352CEF9C1FFB46CF0881CF7577763C4C /* t_x509.c */, - 6509F3F4EEB375FFEFC4DD7D6B0D36F5 /* t_x509a.c */, - 76FE6D3EF6BB0D862242967671862EF8 /* tasn_dec.c */, - 815D417A78A5084D6A23C2F7423B0AC6 /* tasn_enc.c */, - 4B0EBFAF80EECAF41BCCF91E669104EF /* tasn_fre.c */, - 7442ED3A651A4EC5B77AEECECC312F09 /* tasn_new.c */, - E4AA6D9A4E42B8AC77AEF5EF8F70ACAB /* tasn_typ.c */, - DD3F87E488F063E80C292D0405B28E15 /* tasn_utl.c */, - 9CF9051508690AE1C422D1DBC7745672 /* thread.c */, - D5B0DC95FE239AEB96C9D6FA5D39D508 /* thread_none.c */, - 5A6DB7A1DA911ECF9958B15032F751CF /* thread_pthread.c */, - 2B6CF1314A22C17D6CB51D986074FBF8 /* thread_win.c */, - A4B887E6EEB312E5EABD675FE5A73689 /* time_support.c */, - 212366507065017E4E43F942C17D425E /* tls13_both.cc */, - 199AF83A315BCAD46E1E612D27922C10 /* tls13_client.cc */, - C964136FA450E29CD17FC316B6B81186 /* tls13_enc.cc */, - 0AE60F82F70C6CB40ADF2B93118B646E /* tls13_server.cc */, - 9D0541BC23ABED005277B5EB1233DFB7 /* tls_cbc.c */, - FF975FBCC0880A23B459EB732EC2F7DA /* tls_method.cc */, - 1738FC80FDEF63C2FB7F3782C3C99FC0 /* tls_record.cc */, - D9F58945E636EFD97E15B109DF3768DA /* trust_token.c */, - 84C80F7E574416EBB12F83AB21D66BE6 /* unicode.c */, - 2860503C26A5DA2F0B1A219480BABDE1 /* urandom.c */, - AC4D8475979B94731553CF3718F2032C /* util.c */, - D593398B37C864CE9377508675202E43 /* v3_akey.c */, - A960A43C491A4200759DE4D6A2355A8B /* v3_akeya.c */, - F07BD3A85368A33DCA4019065EE2C1B7 /* v3_alt.c */, - 0415D3EED2BF6AEC5288CF80D2A19D22 /* v3_bcons.c */, - 1F80AD3BC9FFB908355FF651B0E9FAAB /* v3_bitst.c */, - 9744F2DE66F986F22E33B09468BE5DC6 /* v3_conf.c */, - F0CC929C3211D45D2D771A56AD4DD1BD /* v3_cpols.c */, - 3D4BDB3AFD0A321E3DD7D127E6117761 /* v3_crld.c */, - 330671DD8D31C61CE7777FBACC562941 /* v3_enum.c */, - 18526C213320164BFF5E7C5B7C186879 /* v3_extku.c */, - E66706627D793C7A0B365B8A075D50C6 /* v3_genn.c */, - C1998EA49015D214A15F9E797456C0EA /* v3_ia5.c */, - 608C3A3543BC52AF33520B50D1213221 /* v3_info.c */, - D601ACB9600068C505CF39F3E7E11526 /* v3_int.c */, - 8EF141D491924B08F34E88D960B9A6F9 /* v3_lib.c */, - 7537AD5783E3C9459853A2C1F73D2EBA /* v3_ncons.c */, - 274DAC7E14BE864825DBD4C86D78CD5F /* v3_ocsp.c */, - CD221A5EBFC7DB448FCE360B91865AA2 /* v3_pci.c */, - 4F0CC3773A16DF5ACA6C98DD1929579F /* v3_pcia.c */, - 9886F8D6793EB5A6D90E5F56681689F4 /* v3_pcons.c */, - CFA2DD62EB2EABA2EAA56173C1C2531E /* v3_pmaps.c */, - F5BA11E1B777B08457840889070680E3 /* v3_prn.c */, - 38D5B2B2D6554D4105B581C0B7174EEE /* v3_purp.c */, - AB78583279404F5C88D307D00A646E9B /* v3_skey.c */, - AAE83E33C1AAF30615809B215BFFC870 /* v3_utl.c */, - 9EBA6C6F6531B08FE1BF37DA58FA2B07 /* voprf.c */, - BF3A0595CAF1A22256145E688D7A5A81 /* windows.c */, - 8930948D9D5CF1ED27D395B1EDA92DC9 /* wnaf.c */, - 678A0A9D19CF0E40C86CAD173BF6392D /* x509.c */, - 1A3C947C609F3B0AD0A39538E07DB66A /* x509_att.c */, - 4D089AE32962EFFB68C08CC2F47C17EC /* x509_cmp.c */, - 18BA2C4148FF4903B3C64756224F4598 /* x509_d2.c */, - A9C17134E8217124BEC73B1E02F85930 /* x509_def.c */, - 2A3BC2B6833E24DB9708868535DC5558 /* x509_ext.c */, - 4EC20B669118BFD522D821D6CB0E5F79 /* x509_lu.c */, - BDDAC0502DBE8CFEA24C7558FE15AB41 /* x509_obj.c */, - 2FB6213803210C01FCBA55285F94A3DA /* x509_req.c */, - 0425F3E34C7B177BB60E6F39724B967F /* x509_set.c */, - 13CA1E9F39FC5295801EDDD032B80C65 /* x509_trs.c */, - 42639D986C862DF1254B51467DEC74B6 /* x509_txt.c */, - BF39A4D7D856EC041F3F67DA51C09C14 /* x509_v3.c */, - 246F5CBFA37B5BA4FE6897A4B605AA4A /* x509_vfy.c */, - 0767F443854EE11AEB1AE0E9F66A771D /* x509_vpm.c */, - FA8864B2E99CD5E757220C72A4F257FF /* x509cset.c */, - 9BD1478584A22F961A1BF76E5599F273 /* x509name.c */, - 3815A6BA42057C3F99842FA6B7823213 /* x509rset.c */, - 499957B0557ED6C50970E9BC59DAE30B /* x509spki.c */, - C0C8C8913539CDA263F4AF2FDFC7ECC9 /* x86_64-gcc.c */, - EF5960F8A3B8DB76B25E521476AF6E97 /* x_algor.c */, - 5A19369177954AD52FDF5B66226BB75D /* x_all.c */, - 3C54D928DEDBF85F1E48C687045DB0DF /* x_attrib.c */, - 7747AD59ECF81529EF80AB023ABA2232 /* x_crl.c */, - 7C6C8277D37F0DE15584B4195822F9EB /* x_exten.c */, - AE44FC55DB50C233E621EE8C33D2EBAA /* x_info.c */, - 2E01D681F72796048F614E01B39FAA2B /* x_name.c */, - 5613C337AA35BB54C1118672B3A575E8 /* x_pkey.c */, - E5A1DE4BFDA5B14E481B37EE53652152 /* x_pubkey.c */, - E022695BE2169CDE9B21D45337106BE1 /* x_req.c */, - B2EC5A53D980C125D4F0C459966566EA /* x_sig.c */, - 426DBCF93F06A2D81CC0547A49242F5B /* x_spki.c */, - 0819A5898230424794C1944D987B6AB7 /* x_val.c */, - DBEBF77680EC83F7C179F2E19DCF9361 /* x_x509.c */, - A1B2C3E8E92E1207FC1075E053AFE661 /* x_x509a.c */, - ); - name = Implementation; - sourceTree = ""; - }; - 8914E65FBE0630FFA0782B605FF1ABFC /* symbolize */ = { - isa = PBXGroup; - children = ( - EBD22B8BDB048726D64FBAAFA8F79F31 /* symbolize.cc */, - 30617105DB03B071497D2BCAA85CBFEC /* symbolize.h */, - B52C2F45E2557F39C51976497B8EAAAA /* symbolize.h */, - 680366A2B1EBCB97FC1D5185CB51269E /* symbolize_darwin.inc */, - 4FAAE301281B4502D94306AB89D80838 /* symbolize_elf.inc */, - E03A2AED69E6696CF60A1947CE49B9BF /* symbolize_emscripten.inc */, - 6CB7FD367506BBFE8EC1550725D493D5 /* symbolize_unimplemented.inc */, - EB78ED5DC25B9D2E1D5497D7B62C1330 /* symbolize_win32.inc */, - ); - name = symbolize; - sourceTree = ""; - }; - 89AF433F62CF35C3CE09015D567E7990 /* NSData+zlib */ = { - isa = PBXGroup; - children = ( - 42AB9B55E892FB51A7F21415CE890F75 /* GULNSData+zlib.h */, - BE5DADEED590E905C77F9CB5591C2EDB /* GULNSData+zlib.m */, - ); - name = "NSData+zlib"; - sourceTree = ""; - }; - 8BEA68BC63354ED38FC4593B933B7FB6 /* Pods */ = { - isa = PBXGroup; - children = ( - 72FBAFEBC62A4B49D547BACBE3C235A8 /* abseil */, - 7ED49927BE53CB82BB70085DCBF0B9B1 /* BoringSSL-GRPC */, - 3D743CA876DFF2CFC19FB9E3F02D70AF /* FirebaseAppCheckInterop */, - 0AD96DD9E58A478EC659B522DE45056C /* FirebaseAuth */, - CBEA266B810E0ECD91FE70ED178E8655 /* FirebaseCore */, - A99D929F872CE2D9CEA6225E02BD1E67 /* FirebaseCoreInternal */, - 62C51F39238981A3AECD66C346D7E121 /* FirebaseFirestore */, - 7B166BD8A54EA36F5A477A7EA53B0762 /* GoogleUtilities */, - 290A79B703885A1CD827706A4EDEE626 /* gRPC-C++ */, - 92217C425D1D8E4A6E0011A33C0A8E1B /* gRPC-Core */, - 0B804D08453D166D02F8922485733EFF /* GTMSessionFetcher */, - 914A65C9925037485FD4EAAC07332A10 /* leveldb-library */, - 97D0E43DB2AE9F28F551DF9906D11867 /* nanopb */, - D1ACABC1F117324728A8532DE271B249 /* PromisesObjC */, - 7034AD2D1E3D1DA011E0828FB5253B7B /* RecaptchaInterop */, - ); - name = Pods; - sourceTree = ""; - }; - 8DD50631929AFC94EEEB1C02B03EFFB1 /* endian */ = { - isa = PBXGroup; - children = ( - B0B663A73EA230116BB0CC33BEB1E461 /* endian.h */, - A7956C890CA8D02BDBF18721515796DF /* unaligned_access.h */, - ); - name = endian; - sourceTree = ""; - }; - 914A65C9925037485FD4EAAC07332A10 /* leveldb-library */ = { - isa = PBXGroup; - children = ( - 9DFB11D410DA0AB966F59CEC22756302 /* arena.cc */, - B590C877CCD070677A526E14A553AB66 /* arena.h */, - 872831EAA9A59AC69B0D7E2F29E40137 /* block.cc */, - D654589D2B7BA6F642EFE99831408557 /* block.h */, - 4814DD23E64C444E95AE02FE86E36EB4 /* block_builder.cc */, - D6CED0D63EC4CC614FEE9A3E71AA696A /* block_builder.h */, - 57A40B48F5F191F834C38D0559133007 /* bloom.cc */, - 45B0142DE952F1627CF2AFACF03990F9 /* builder.cc */, - 18BCC3A2772B3C874715414C19A4FBC0 /* builder.h */, - E9776BD4D0F9931260EA94CF57E1DDA5 /* c.cc */, - 56BCD9F86AFD02A8680D285E30551DA0 /* c.h */, - CEBEA58770D9B2070A1DD9E33285A678 /* cache.cc */, - A4C7429DFE1506B391E737C59B229CBB /* cache.h */, - 98A01535827CB8E74775B0CD2FC958EA /* coding.cc */, - 55664534FA5CEA84E23501867A8233A8 /* coding.h */, - 1AA6CA250C71F83169838147FD45AD3D /* comparator.cc */, - C5250BCB1D6CA849E4B4A8DA094B318A /* comparator.h */, - 75E2B1D8DB83BF29F092B5E6F23D68E7 /* crc32c.cc */, - E04D0699A741420496FFB8D186AB8A07 /* crc32c.h */, - F1C3373BAD109E46054FE53E56039892 /* db.h */, - 8C195AE2A264D3FC94B4721E8D6FC997 /* db_impl.cc */, - 83F2745B6782C6056C4F2234EEE0690D /* db_impl.h */, - 7F4F623D37630E1C91747D87B48A88E5 /* db_iter.cc */, - 370DBE5D5E689BFE5ABA6481CC90C7FC /* db_iter.h */, - F794199B9FF2C10FD9B8F1272A24333A /* dbformat.cc */, - A149C4194B8716206EBB246F45BFE527 /* dbformat.h */, - 1DCA68242C6ECF011E50B44F3FEF54D9 /* dumpfile.cc */, - BCB895D2E1B07A296B7F094F5358AE7E /* dumpfile.h */, - ADD4969D6D815F70337DC182DD83FCDF /* env.cc */, - F732DEB26E19EF8BEF2FF13131FD2338 /* env.h */, - 1BCB85E39B8709AB8B7E047AFE5D5447 /* env_posix.cc */, - 2B0DE2EAB81BD4306949AF194DA81B31 /* env_posix_test_helper.h */, - 2D0F02ACAEB1165A1B87A1A82EACCC1D /* env_windows_test_helper.h */, - E9817A1F4C42D2026D1B6459EB33B418 /* export.h */, - 4015CC6C7A2657E7A77D1BB4DAE345C5 /* filename.cc */, - 97CE042FF191783F04C7E53A2EEF0734 /* filename.h */, - F81F81178673EF57253255E5164BF4AB /* filter_block.cc */, - 956ABE74F2FC842119D1060E62492769 /* filter_block.h */, - DEC031706F1A948053DC00B43A1C1485 /* filter_policy.cc */, - E26C9890F315455BFF8147617B8CC0A3 /* filter_policy.h */, - 8D853E2C84D43EB18E0BD10DC7CC36B7 /* format.cc */, - ED73CFE96011D1E8EBAD13AADE9BA3D1 /* format.h */, - 6DA096DAFCC73206B78CF59627AA8E8B /* hash.cc */, - 7B0CB9BD9E8170799B5A8DC24922CC8B /* hash.h */, - 0DCFD715F6E82D6A1E3E029538CF0FAD /* histogram.cc */, - 87BCADE734EFA9986098AE5E3B9AEA40 /* histogram.h */, - 1762E9214AD1B7447408F9755D93BBD2 /* iterator.cc */, - 32E34A099A30234EF389724235213746 /* iterator.h */, - 03A33CB17BB2B707EFC6FBFE59298650 /* iterator_wrapper.h */, - DECEDBE55C2DDB2AE159D7325D384C4F /* log_format.h */, - C09C8AB3F05E0E0527A4D3A038E7C528 /* log_reader.cc */, - 1FFD6800917D68054C7B14ED82357771 /* log_reader.h */, - 3B7472FF5EB86A2EBB4614BBEB9A998C /* log_writer.cc */, - 893054A5C15F075FA41B57FDD5921EBF /* log_writer.h */, - 32BD28ECD693FF23ED3986A1F0E1DDA4 /* logging.cc */, - 3F0A3E8FF9497E386AD68B859A1566DF /* logging.h */, - 1527270284137C30928989B2ED726C0B /* memtable.cc */, - 7D04202FC32AAD86A4CF0BAA7BB993EB /* memtable.h */, - 1AC593ACF1A23DE1CFD15E9DB296B2E0 /* merger.cc */, - 474FEC55DA64E7732133B4A28D565818 /* merger.h */, - 95D9606B4E6C7D614CB6934E51455D3E /* mutexlock.h */, - 3824C1962AB1BC1EE6A2BDFE75BA4A86 /* no_destructor.h */, - 9234626C2196E30A0F3884645936B11A /* options.cc */, - 2DB95C1C3E98A9E39DAD46642CEA8E81 /* options.h */, - 6566A9B876C3FB9B41E9B77FA2169348 /* port.h */, - FC9EDC0D420186F1EB2BC36C29E2548B /* port_example.h */, - 6B1FE7AE82209D6637D07571CA0F7EAB /* port_stdcxx.h */, - D0F8D4D499C602B89DFB3350574E3327 /* posix_logger.h */, - 721ED1F77BB887CC1D81E681A9931E5B /* random.h */, - 53CCBA6B8BCBCA8BD2A8F39C33DB28FC /* repair.cc */, - CB7301C31E71B9CF229EED538E1EF5BF /* skiplist.h */, - E718061AAA1D23645FFB665A291A49AD /* slice.h */, - 08CFC83981C389145911B91A10E16899 /* snapshot.h */, - 8519B5F22D8B6E937D18D8467520D5C7 /* status.cc */, - 8F31210DF8106DF7B1674A5387208CCB /* status.h */, - 045EA26138D5685BF99ED1B0A8E48909 /* table.cc */, - 8C824D77D7F37525D1AA5EBB985A046C /* table.h */, - 399ED03BC404637B55C5EF41757EEAC9 /* table_builder.cc */, - 3E5FF95446D1DF5956622C8B460E18B5 /* table_builder.h */, - 47D69B97D5406D465A8A99DDCD6DB090 /* table_cache.cc */, - 08280339E4D147B796EB54AEB5130F2A /* table_cache.h */, - BC74598F4111AE48A9AB5653030849C1 /* testharness.cc */, - 197FC775AC7F9B944D4C143EC6AA9DB7 /* testharness.h */, - D78A423A547DD66CD091A24BF7AFEFE1 /* testutil.h */, - AE382D3C3EA64FFB32C2078EAC2FAB18 /* thread_annotations.h */, - 4B379C69A3F0C28D20D25AA29D1715B2 /* two_level_iterator.cc */, - B38A8CF708F3933C660CFE758F59FED8 /* two_level_iterator.h */, - 7E04463F8CC2A231D9041C1A32BFAA60 /* version_edit.cc */, - 89A37B88DCA67A4FC56437D76A3C606D /* version_edit.h */, - F512B566E0C061E1004C6ADE966570FA /* version_set.cc */, - D67F03FBA79E60E29EFEF85862D0D94D /* version_set.h */, - 81F07F542622C34DE7B68B3D00354D73 /* windows_logger.h */, - 49DA1EE9DBD89923A441D6F7E523E1CD /* write_batch.cc */, - B0C24668DBC4DFB82149DF483748390A /* write_batch.h */, - 75DBC83E2BA2E6FC2EB705CE87497EFE /* write_batch_internal.h */, - E2611D6D7F98952AC0CEF134C2A88B49 /* Support Files */, - ); - name = "leveldb-library"; - path = "leveldb-library"; - sourceTree = ""; - }; - 91A266EAE0A82EEA5566E68828665DD9 /* Environment */ = { - isa = PBXGroup; - children = ( - C7A1031A9D5DE7BBD40592CE991B393A /* GULAppEnvironmentUtil.h */, - 615D5ADB743B4244EBAD71C4B506214A /* GULAppEnvironmentUtil.m */, - 2A8A453018D8AE9C76D49B5914C40EA6 /* GULHeartbeatDateStorable.h */, - 4F11CCD4D3B1BBB32AB3F9357EF85359 /* GULHeartbeatDateStorage.h */, - 8B32620FBE5F15F4A3207A59D552A389 /* GULHeartbeatDateStorage.m */, - 0866A529FD2AA2239BFC2431DA9A9D4C /* GULHeartbeatDateStorageUserDefaults.h */, - 0251753A62C90D6B9A3E49686D9E3686 /* GULHeartbeatDateStorageUserDefaults.m */, - 353A7C68D6C4588F7CB2E33F969352F5 /* GULKeychainStorage.h */, - 541E3899767A5FECBDF151A718D4B7B2 /* GULKeychainStorage.m */, - 35AD402BFFA0EB939C0552B3FEA54261 /* GULKeychainUtils.h */, - D45518A97B1E1C3184767BD8E6A8E336 /* GULKeychainUtils.m */, - 654C4E40BD86A82A13A5F185A923EA57 /* GULNetworkInfo.h */, - 2ED2F950F249C0D4D90500EAD145B65B /* GULNetworkInfo.m */, - 0104B37091C693AC47DE79AA35D34CD9 /* GULSecureCoding.h */, - 66CBACC04E32CE70A8EF3C0982CE028A /* GULSecureCoding.m */, - F7F5AE73BF6E2A721496093579E84F54 /* GULURLSessionDataResponse.h */, - ED210BD64123997BDED35DC5866134E8 /* GULURLSessionDataResponse.m */, - C6950B776810277517D10A3C46CDFF59 /* NSURLSession+GULPromises.h */, - 95C7B5D771DFECB2F5186F09262613D7 /* NSURLSession+GULPromises.m */, - ); - name = Environment; - sourceTree = ""; - }; - 92217C425D1D8E4A6E0011A33C0A8E1B /* gRPC-Core */ = { - isa = PBXGroup; - children = ( - 61A411EB28452EF7231D9EE834B5A683 /* Implementation */, - AAC7F142B79858B49B585FFB3E24DC4B /* Interface */, - 13E83A5C01EE41110CD8AFB6F6304F37 /* Support Files */, - ); - name = "gRPC-Core"; - path = "gRPC-Core"; - sourceTree = ""; - }; - 92995BFF8ED02AD05143853E7023904A /* hash_function_defaults */ = { - isa = PBXGroup; - children = ( - E9CBCA2F7CCF7873C235AA7517B87F08 /* hash_function_defaults.h */, - ); - name = hash_function_defaults; - sourceTree = ""; - }; - 94FCBE827E4F2D150B7C09D835BAD966 /* Support Files */ = { - isa = PBXGroup; - children = ( - 561833220B4A8A47C02BFBAEB08A7D97 /* GTMSessionFetcher.modulemap */, - 98F54189A112D65896EC9C81D3733FE1 /* GTMSessionFetcher-dummy.m */, - C54B31C65C62A69D34235FE09EA45BA2 /* GTMSessionFetcher-Info.plist */, - D8EE76CAFFEF6479916A91D3A6064472 /* GTMSessionFetcher-umbrella.h */, - B099AE4E74E91C11F6415CA454B0665A /* GTMSessionFetcher.debug.xcconfig */, - 6953D1B0C47A36752B480C63D53F92A9 /* GTMSessionFetcher.release.xcconfig */, - ); - name = "Support Files"; - path = "../Target Support Files/GTMSessionFetcher"; - sourceTree = ""; - }; - 9557906FEB8D62D82FB4E1AEC0C7563C /* cordz_update_tracker */ = { - isa = PBXGroup; - children = ( - 2CD0F3AEDFF9D0F52F0CD48386F44BF2 /* cordz_update_tracker.h */, - ); - name = cordz_update_tracker; - sourceTree = ""; - }; - 97D0E43DB2AE9F28F551DF9906D11867 /* nanopb */ = { - isa = PBXGroup; - children = ( - 821137577DAEA4C7075A7C045529E49A /* pb.h */, - E109B17627DDC15CE11B11980E3B4543 /* pb_common.c */, - 8BE1B22595B00D49F90DDCB06D605521 /* pb_common.h */, - E095E0056BB1FA23991BDE1522D0FCFB /* pb_decode.c */, - B1B3C1C43E24BAFDC291F8871C0BD7DE /* pb_decode.h */, - 25DCAB504EC68CFA3E22BFF45F0F204F /* pb_encode.c */, - 60C84D094248B065E7CEE6F6A0CD1BF2 /* pb_encode.h */, - E7F0BF372198FBC1E8D2A4F6B6F80925 /* decode */, - 6FA83B6AC42FB562B5774F720A7AC1F6 /* encode */, - A34F455DDB1A116209E01975E13D197B /* Support Files */, - ); - name = nanopb; - path = nanopb; - sourceTree = ""; - }; - 997E74094C2C4CAA643ED94A0C1E36B4 /* cleanup */ = { - isa = PBXGroup; - children = ( - 51FD51F75DDB42A3A9B76BE91ADFDE02 /* cleanup.h */, - ); - name = cleanup; - sourceTree = ""; - }; - 9A49508C1741ED67BB71C28DF7715CD5 /* graphcycles_internal */ = { - isa = PBXGroup; - children = ( - 3DAF25A5933F55C9285B7AF56B85F8B2 /* graphcycles.cc */, - F0B2C4F706845DB3B64EF3AD5A17FEEA /* graphcycles.h */, - ); - name = graphcycles_internal; - sourceTree = ""; - }; - 9AFBDDA7FB3585F3537C5055B0F11237 /* hash */ = { - isa = PBXGroup; - children = ( - B42A414AE7026710408A2A62298D1264 /* city */, - 3CB51301DADBA0C9B26F20F4EAEC3402 /* hash */, - AE67760F8EA9AF4FD901075C060CD6AC /* low_level_hash */, - ); - name = hash; - sourceTree = ""; - }; - 9C467F32203DFE38A85D04E17AA4773F /* cordz_statistics */ = { - isa = PBXGroup; - children = ( - CCF241C45EC44BAF57F498C01A697084 /* cordz_statistics.h */, - ); - name = cordz_statistics; - sourceTree = ""; - }; - 9C4AEE64E4B206731F192DA2F73588E1 /* span */ = { - isa = PBXGroup; - children = ( - CA87D9E3C19C35A07A6EAB8A3590CE09 /* span.h */, - 02CCD7ECDB0F2D55A4F9279D35FF4B86 /* span.h */, - ); - name = span; - sourceTree = ""; - }; - 9CBC0FA2268E9D0528569237C9BACBCC /* stacktrace */ = { - isa = PBXGroup; - children = ( - D099C72096815AFA6C4589ABEB1DD498 /* stacktrace.cc */, - 5647BFEE8075FF69E7F5ACF7D1500170 /* stacktrace.h */, - DF3232B0650662692F09AA76FCEEA3A8 /* stacktrace_aarch64-inl.inc */, - 318C501DFBECF4348CBECADB26186D34 /* stacktrace_arm-inl.inc */, - 22B3497FF0239A23460FD10F6FFB3AB4 /* stacktrace_config.h */, - F4982E1089DAC5BB9C250EBF45E03A77 /* stacktrace_emscripten-inl.inc */, - D588211B948C15203FDABDD0CF5A5FF5 /* stacktrace_generic-inl.inc */, - 90D7736E94865F980E6231AEC7072DAB /* stacktrace_powerpc-inl.inc */, - FC62437D59875DF3D4930A076152D69B /* stacktrace_riscv-inl.inc */, - 2E16B574F95739FBFF8A149BA59B53A6 /* stacktrace_unimplemented-inl.inc */, - 266365B20E9CD9F0B66E131ACB113400 /* stacktrace_win32-inl.inc */, - 905A183262F24CC6250AD6680E587C01 /* stacktrace_x86-inl.inc */, - ); - name = stacktrace; - sourceTree = ""; - }; - A263BC963EF8AFEBB558105D9C96E287 /* Support Files */ = { - isa = PBXGroup; - children = ( - EBD240E7BEB417CE0F957687B58BC96A /* RecaptchaInterop.modulemap */, - 8E5A4A62A40CCF7F553E607246FCEC7E /* RecaptchaInterop-dummy.m */, - A8C56ACE961659F41F913171D22DCA6E /* RecaptchaInterop-Info.plist */, - DE11F1047F1D70AD984627D8530089DD /* RecaptchaInterop-prefix.pch */, - 4FC63B17115E7EB4C8F07347CC235F7E /* RecaptchaInterop-umbrella.h */, - C4EF6394E86DE3695DB3CEEDE1C1C3BF /* RecaptchaInterop.debug.xcconfig */, - 9BCBFBBF41D802F84C56B6ACA5974035 /* RecaptchaInterop.release.xcconfig */, - ); - name = "Support Files"; - path = "../Target Support Files/RecaptchaInterop"; - sourceTree = ""; - }; - A34F455DDB1A116209E01975E13D197B /* Support Files */ = { - isa = PBXGroup; - children = ( - 5586CECE0803689FFA4F34E2AC4F255D /* nanopb.modulemap */, - 08451941AC5AB55FE21585ED40E378DE /* nanopb-dummy.m */, - 808DADD1163D99D62CD2040A0951D7BA /* nanopb-Info.plist */, - 5C0B954A1904FC1BC267B4350E6E64CA /* nanopb-prefix.pch */, - 3BEF1AF9160BD729A275F0D55878D5D5 /* nanopb-umbrella.h */, - 9D0B3950112F97C7DCD91A31D55CB2AF /* nanopb.debug.xcconfig */, - 8504118FFBFFA549777E183BE8E53AD9 /* nanopb.release.xcconfig */, - ); - name = "Support Files"; - path = "../Target Support Files/nanopb"; - sourceTree = ""; - }; - A5813CB00F11F7D2711EC02B3E53BF13 /* container */ = { - isa = PBXGroup; - children = ( - F582DAD6A25A9B67645A1AD78C1FC072 /* container.h */, - ); - name = container; - sourceTree = ""; - }; - A71F0CA81E0C1D6E3501186B3BABF87D /* flat_hash_set */ = { - isa = PBXGroup; - children = ( - F6C2630C568BADFFB7F5E9B9BF4CF5B6 /* flat_hash_set.h */, - ); - name = flat_hash_set; - sourceTree = ""; - }; - A7D224AE158688F7B76B4EFB3430E2B9 /* bits */ = { - isa = PBXGroup; - children = ( - 0347A07F1D9D790A82C6ED088705C92A /* bits.h */, - DD0CEE86A51A959D825B8F764A44135D /* bits.h */, - ); - name = bits; - sourceTree = ""; - }; - A99D929F872CE2D9CEA6225E02BD1E67 /* FirebaseCoreInternal */ = { - isa = PBXGroup; - children = ( - 5281B3C90A0D05462C25AD26B78D7FB9 /* _ObjC_HeartbeatController.swift */, - 6D43760E05D0526ED2A8B72CDE6A350B /* _ObjC_HeartbeatsPayload.swift */, - 5300D7C68AB06FD3378D77E031FFAD13 /* Heartbeat.swift */, - D8D3AE45380DFEAECB3BA6A5B2FBD5E6 /* HeartbeatController.swift */, - 4A76AC70FA6B5188711B6BCDEC09AAEF /* HeartbeatLoggingTestUtils.swift */, - CF853DA8F3F25FEA0C49B382492050AA /* HeartbeatsBundle.swift */, - 314A227D9B39287AE8E10A79879B1050 /* HeartbeatsPayload.swift */, - 139D7D030A54A5A74CBA4A86CD427D61 /* HeartbeatStorage.swift */, - DC2F52A1C7842D2B32F4B40562BF57CB /* RingBuffer.swift */, - 4B7E7237991BD74BC55049495059B2C4 /* Storage.swift */, - 743A4AB186D2DB3138FD5A6741AE1E10 /* StorageFactory.swift */, - D79BBF8EA71DB81E2ECBC5F71B6B667F /* WeakContainer.swift */, - 539005BAF2546C7F889A06231739BA8C /* Support Files */, - ); - name = FirebaseCoreInternal; - path = FirebaseCoreInternal; - sourceTree = ""; - }; - A9B036C6E061C40AB4DD2ACF73DCEB9A /* container */ = { - isa = PBXGroup; - children = ( - CA1F0BCA60504CDAB4EE0A025A47A8FF /* common */, - 01EC9029442F81022F33F4D86B087E09 /* compressed_tuple */, - 2913C0D08B562AFBC1566EFEC633FB5E /* container_memory */, - 034DC4F14F312EF2E2771E5B11C4D2C9 /* fixed_array */, - 627F4F6387F81D3E4366E0D0491FB0B8 /* flat_hash_map */, - A71F0CA81E0C1D6E3501186B3BABF87D /* flat_hash_set */, - 92995BFF8ED02AD05143853E7023904A /* hash_function_defaults */, - 4FECB155673FEDE91A9117894452A90C /* hash_policy_traits */, - 3BB5CBAF59E89B4C3C36AB325E8C0644 /* hashtable_debug_hooks */, - 3EE3BC4C45D68F687F1332704754B934 /* hashtablez_sampler */, - 094ED11858ACD34A55F011214A783158 /* inlined_vector */, - 288CB2FF91F94796A9F37E102CD0D02D /* inlined_vector_internal */, - 761871B31A0D1EF8DC02A648DD9FE977 /* layout */, - 2003E3B10B7AEAFAAF82DBAFF8327A31 /* raw_hash_map */, - 199F49C81989A41CCC4ACA68E9D7BAFE /* raw_hash_set */, - ); - name = container; - sourceTree = ""; - }; - AAC77E5E74B6DD408CFF020A2A2EFB6B /* sample_recorder */ = { - isa = PBXGroup; - children = ( - 3AA6E176F35E2BC57CAF04250568093A /* sample_recorder.h */, - ); - name = sample_recorder; - sourceTree = ""; - }; - AAC7F142B79858B49B585FFB3E24DC4B /* Interface */ = { - isa = PBXGroup; - children = ( - 0B8DF3E2F22B6B008556B1DD76AD00F4 /* alloc.h */, - 86C110E4B87D4A8172FDE17B03F863C0 /* atm.h */, - E356DC4EF8E73F382000570D0CBE12AC /* atm.h */, - 720D29BAF8E0927620853047DC8314BC /* atm_gcc_atomic.h */, - 666C927E519CFBBC9CB01F7B0137F582 /* atm_gcc_atomic.h */, - B8A7DF3B1DFB1D310EDDB11F03A20D59 /* atm_gcc_sync.h */, - 325E0FC0BEB3C5BD5613692259DC18A9 /* atm_gcc_sync.h */, - C930590AC06A73A0B3686C8EC790DC70 /* atm_windows.h */, - F33905D91F86FF1AD248AA7734E4AEB2 /* atm_windows.h */, - 04B265A9EFA08526A9ADF091450CDB8E /* byte_buffer.h */, - 8FAADD74A4CEAAF0041BBE766FF7D54D /* byte_buffer.h */, - 7C4C48F5ECDAB450F34CAE2753C8EB7C /* byte_buffer_reader.h */, - 7F600549E4C3CAEA911C297F7263C803 /* byte_buffer_reader.h */, - CB5D0091CA8CB95E45FA1736CBB3231C /* census.h */, - 1CD2F0292B8E1ACA99BBDAFAE560D126 /* compression.h */, - 81AA2138E20060E7B193DCE068D5CBB1 /* compression_types.h */, - A34626575DFDE7D52F83F0AA88A3A41C /* connectivity_state.h */, - 308442F05C4D620147A8558452DCB40F /* cpu.h */, - EEFA7143837C97488674FDEAC8125984 /* endpoint_config.h */, - D99D39F258998421D7A1C6589A219C93 /* event_engine.h */, - FDF05055FAF2AEF32BF075AEAFF1F223 /* fork.h */, - 48846572A8C465521BFF0F2194EB9D52 /* fork.h */, - 01D371F82EFBA7961697C2A3F97C27F4 /* gpr_slice.h */, - AB55889357BD0B51C471DCF129DE7491 /* gpr_types.h */, - 4FCD21CE47988D7EB1ED3DFB211733DB /* grpc.h */, - 39F508108094F547D50CCE8E8ED241F3 /* grpc_posix.h */, - FF37696428EE1051ADDBBD9AE3B8FEA5 /* grpc_security.h */, - 148F8EF09D530248CE191A8B6D575D62 /* grpc_security_constants.h */, - 8811C842AD76140DDB7EEEF636AE8492 /* grpc_types.h */, - 661CA9BDF111176627DB5C230CBCD051 /* load_reporting.h */, - 9ADC4838B72C90F19E552A45DE8F0C47 /* log.h */, - CD64E9DF8BADDE0676DB065A2EC6360B /* log.h */, - E7CD0E83823EDDC865203CA0CD24DF32 /* log_windows.h */, - 3F95891C71213B1883A61B576E955919 /* memory_allocator.h */, - 9B3EBFC9319A4B2839C203FB73ACBEC6 /* memory_allocator_impl.h */, - 57F486DACB222167DF1C1CCEBD3A566E /* memory_request.h */, - 3D71BD54336B8B478F5EC751A285F9DD /* port.h */, - C9F1394FADFD9EE76F7E79149B926BB1 /* port_platform.h */, - 9C427FD5018B3CFA0ABE2C1747E25B59 /* port_platform.h */, - A7A23B7ABD1D59F3882FBE7ED91812A8 /* propagation_bits.h */, - B04E871C896FF4C4D8656751B122BED1 /* slice.h */, - 9D2EE1A9D111899F125AB479E38DBAF3 /* slice.h */, - FE604CAC0622697B1B0F7F5D17E9E9B5 /* slice.h */, - 4F0934EBA9CBCBBD3607760701C315AA /* slice_buffer.h */, - DFF142006B20473458FC13F34C3A6DD3 /* slice_buffer.h */, - 8E4A432438E0A11F90BE2B08951B2885 /* status.h */, - 30A7AD78C67962228AF19D3C62C8896F /* status.h */, - 2BB53E541D39B25721F425457B4999D6 /* string_util.h */, - 0263F571A4B0EFEE1AF6452C0E09133F /* sync.h */, - D241217DEE1757179523A5124F7785C3 /* sync.h */, - FD614FF5A204C9A46304C9B2FCD76F4F /* sync_abseil.h */, - FC4A72E07C612940809EDE591D1C940E /* sync_abseil.h */, - 1E24E05693D9DC449483756517BB1AEB /* sync_custom.h */, - 91BF4E6074A0720B29BEE759CEF640AF /* sync_custom.h */, - 11E3EB04FA5D3932C280E18008A2810A /* sync_generic.h */, - C237891B803AA0E37133C7C6F0325D49 /* sync_generic.h */, - 0864CA5A01B9210E75D570FE804711DA /* sync_posix.h */, - 1B17C3C2B832155CA5A0ADE96C472348 /* sync_posix.h */, - 23C8EE2D4BF4383E917F1E72CB0BA495 /* sync_windows.h */, - 27859DCED734889B65943F0CC7C714FD /* sync_windows.h */, - F14EA4A79F04D99144CBFE0787E816DE /* thd_id.h */, - 78F591500BE24B5FBAFEE4930FD4FBEB /* time.h */, - 9725ACBD4D543CB07FE0A3B3D941A259 /* workaround_list.h */, - ); - name = Interface; - sourceTree = ""; - }; - AD2EB733680CB9949EB2F928990072F6 /* bad_optional_access */ = { - isa = PBXGroup; - children = ( - 460D4A75DA76D45D9E41A2638CCCAF08 /* bad_optional_access.cc */, - 7486561260BC6EF2495B7F1101256252 /* bad_optional_access.h */, - ); - name = bad_optional_access; - sourceTree = ""; - }; - AD5EB8795EE53D65C8FD0F2BAEF9F2D0 /* internal */ = { - isa = PBXGroup; - children = ( - 5429BD3A57E4435D54B5E57F3721F8FC /* char_map.h */, - 9A3A0801808A9907CA9F3F2380A44003 /* escaping.cc */, - B50F571D4C6B41233971217B9CF0E454 /* escaping.h */, - 4AD540A8F4BE557397CBDBA98C01306B /* ostringstream.cc */, - 0B3CF4491472F38C5859F81F7DC14EA0 /* ostringstream.h */, - F2E245E1F2E2E131D7F20D5E71B55950 /* resize_uninitialized.h */, - 4157C0017850E2AFD4DA6BBA7B9F18B8 /* utf8.cc */, - FE9601343DBA66A3E6452AE34A8E9C22 /* utf8.h */, - ); - name = internal; - sourceTree = ""; - }; - AE67760F8EA9AF4FD901075C060CD6AC /* low_level_hash */ = { - isa = PBXGroup; - children = ( - 7FDDA46BD60DD27D9F313950C23BF62C /* low_level_hash.cc */, - 8427E458E2FFA55DF78F4A63F9C0B73D /* low_level_hash.h */, - ); - name = low_level_hash; - sourceTree = ""; - }; - B29A117B9DA1AEA0AA71FFF78AA6AAB5 /* nonsecure_base */ = { - isa = PBXGroup; - children = ( - E4884CAB7203FFDAF568C34AF1228BA8 /* nonsecure_base.h */, - ); - name = nonsecure_base; - sourceTree = ""; - }; - B42A414AE7026710408A2A62298D1264 /* city */ = { - isa = PBXGroup; - children = ( - 51C22FBE5E3F6217C474FC6962FF6743 /* city.cc */, - 47ED763C8062323E1B68212451AD5898 /* city.h */, - ); - name = city; - sourceTree = ""; - }; - B42E3920A8ABE6BFFAD8A6015AC1B6A5 /* pretty_function */ = { - isa = PBXGroup; - children = ( - B60FE234DAC8C841A1D7B482A81C468A /* pretty_function.h */, - ); - name = pretty_function; - sourceTree = ""; - }; - B4B99EDF566ECD27C83F4F7A2E9CD9E9 /* Support Files */ = { - isa = PBXGroup; - children = ( - 3496A53D41C46E8C76D1A18F1518B2E9 /* FirebaseCore.modulemap */, - ACD9F36B8B89E40BA619C3548BE1D1DE /* FirebaseCore-dummy.m */, - FB5EB14A6CD26376EEA1A4BF881BEFBE /* FirebaseCore-Info.plist */, - D7375A3ADA6615435BD64AB6CA000629 /* FirebaseCore-umbrella.h */, - F53700D14C8DA16328F48A96C39728F2 /* FirebaseCore.debug.xcconfig */, - 060A7153BCB590384738154F4EC45830 /* FirebaseCore.release.xcconfig */, - ); - name = "Support Files"; - path = "../Target Support Files/FirebaseCore"; - sourceTree = ""; - }; - B57672C92E641544F24F7F3B61D459F7 /* int128 */ = { - isa = PBXGroup; - children = ( - DCC25314E733AE2587AC092BB80BBBB7 /* int128.cc */, - 08B3811AFAFC25361E9E0A7FBB7C7FDC /* int128.h */, - 5220BA4693B0224BC4F12CF8D5D39683 /* int128_have_intrinsic.inc */, - 03CE50D6563B82561D831B251B9E65D3 /* int128_no_intrinsic.inc */, - ); - name = int128; - sourceTree = ""; - }; - B94D7768568A9992200DB461E8CF687F /* Frameworks */ = { - isa = PBXGroup; - children = ( - FD0F832DDAAB82A58EF27EBFD53C1024 /* iOS */, - ); - name = Frameworks; - sourceTree = ""; - }; - B9AD996D967A6474F3BC3DEB126E0762 /* debugging_internal */ = { - isa = PBXGroup; - children = ( - 4DA1CB1C91DC6BD9A8798976C00F3BFB /* address_is_readable.cc */, - 7DA007BA7B0B8B194EA631107E77EE06 /* address_is_readable.h */, - 31307B076E97E3677B561AE63CBA1D5F /* elf_mem_image.cc */, - 8D8B0177CF77D9CFF615706D581C270D /* elf_mem_image.h */, - 898A5CF6E3669F81B49981290EDBC7DD /* vdso_support.cc */, - 8D8108D8B644676C6E928A1C252614F1 /* vdso_support.h */, - ); - name = debugging_internal; - sourceTree = ""; - }; - BB400D55CC91AFC26D1089A3A62E7D06 /* any_invocable */ = { - isa = PBXGroup; - children = ( - 25B969A9A9A821E49E0DB1D89DA9305D /* any_invocable.h */, - 90D87CCF06818BEA988476B14CE8EEEB /* any_invocable.h */, - ); - name = any_invocable; - sourceTree = ""; - }; - BBE18F9347C3A4CCEB78CE1F9401FE2B /* internal */ = { - isa = PBXGroup; - children = ( - 1BBD94AD470918AE2E0EAE82735A60B5 /* cctz */, - ); - name = internal; - sourceTree = ""; - }; - BC4C6B68BA8734999235E2BFCA224977 /* algorithm */ = { - isa = PBXGroup; - children = ( - 4920415169AA73F0E84A679779069520 /* algorithm */, - A5813CB00F11F7D2711EC02B3E53BF13 /* container */, - ); - name = algorithm; - sourceTree = ""; - }; - BD4F35BCC1CE4389AA17BDF964A6CC59 /* seed_material */ = { - isa = PBXGroup; - children = ( - 7ACB4CC0D456E56101CC348D2DCB3137 /* seed_material.cc */, - DD6DE9EE970FC6B4FB439296B630A158 /* seed_material.h */, - ); - name = seed_material; - sourceTree = ""; - }; - BE1432B9867861F9B9080811B2D1494C /* compare */ = { - isa = PBXGroup; - children = ( - 2BB09620E3329C4697D1C8DF68E622DA /* compare.h */, - ); - name = compare; - sourceTree = ""; - }; - BE3FEAABF37A21608DC07296AB1DD284 /* Logger */ = { - isa = PBXGroup; - children = ( - A23E527884BF816168F3DABC2E28F8C3 /* GULLogger.h */, - 44EE63CF925FADD43746E9BDCFA0C4AE /* GULLogger.m */, - 0BA1CBEF3BB9C1082ACE420547EB9DD3 /* GULLoggerLevel.h */, - ); - name = Logger; - sourceTree = ""; - }; - BEB111468B32145465A5E3425273665F /* random */ = { - isa = PBXGroup; - children = ( - 84A9C03A9C314381842226B672C30D2C /* random.h */, - ); - name = random; - sourceTree = ""; - }; - BEE7364BE97AD6BC2AAFA3A3F4FAAF90 /* errno_saver */ = { - isa = PBXGroup; - children = ( - 8C4402D5341D22672D9FDE780779B8D3 /* errno_saver.h */, - ); - name = errno_saver; - sourceTree = ""; - }; - C1E0B58EBAAE00E05095C7F5C47E7AF4 /* platform */ = { - isa = PBXGroup; - children = ( - 831031F7036CCD0A97E949AD5CEACC34 /* platform.h */, - ADE3576C2771B9A21FDAAFCDAE113061 /* randen_round_keys.cc */, - B9C1D0132E95573FF582F483DAF2B64A /* randen_traits.h */, - ); - name = platform; - sourceTree = ""; - }; - C200FDDB2408257466CC1F047F90D433 /* atomic_hook */ = { - isa = PBXGroup; - children = ( - F85FE6920780DD093E151110B93BC095 /* atomic_hook.h */, - ); - name = atomic_hook; - sourceTree = ""; - }; - C2EB0D5669DE7A3308293C5D6D8F6FAE /* distribution_caller */ = { - isa = PBXGroup; - children = ( - A83BFE0718D50FCFB1CD02FE8B2EA6A5 /* distribution_caller.h */, - ); - name = distribution_caller; - sourceTree = ""; - }; - C370EECD058ABEF88CDE770B18632D67 /* AppDelegateSwizzler */ = { - isa = PBXGroup; - children = ( - 9B6EC0E30B096DC802D2AAE2C55019DF /* GULAppDelegateSwizzler.h */, - D46123D9E6A3DEE6CB3E306CB79D917E /* GULAppDelegateSwizzler.m */, - 0ED55A4E2EB87D1D2EC6B37F89CEB2E3 /* GULAppDelegateSwizzler_Private.h */, - F71EDF2DA4FFB0076919B09D78AA80CC /* GULApplication.h */, - 5A3917ED5CCDEAEC04D0490F77DC19F5 /* GULLoggerCodes.h */, - 1626579DD3A7EFE0F88A48D2C9F14B01 /* GULSceneDelegateSwizzler.h */, - 1F920C49AFE9E9A591BEE53A41863C71 /* GULSceneDelegateSwizzler.m */, - C8E66DBA6E2278EDB22B1572897EA96B /* GULSceneDelegateSwizzler_Private.h */, - ); - name = AppDelegateSwizzler; - sourceTree = ""; - }; - C697E00D3081727AE988C2D241461D5B /* any */ = { - isa = PBXGroup; - children = ( - 6E199E8664953B806DA63229D4B47818 /* any.h */, - ); - name = any; - sourceTree = ""; - }; - C6D44E667FC818C07E5F7D7D93A1666D /* str_format */ = { - isa = PBXGroup; - children = ( - 3BFD5B29978F033F0AEA351AB9470BD2 /* str_format.h */, - ); - name = str_format; - sourceTree = ""; - }; - C6EE4B22B4F58B72E0D9F686D24CEB0E /* cordz_functions */ = { - isa = PBXGroup; - children = ( - D375A4AA5D9E41785EA76FDD2736BBE0 /* cordz_functions.cc */, - B289C64090D6632B6C6BB85E9A040BC5 /* cordz_functions.h */, - ); - name = cordz_functions; - sourceTree = ""; - }; - C70A85B958DF893CFEAC486068AAA30E /* profiling */ = { - isa = PBXGroup; - children = ( - E6DEEA768B426866CE438488F0DA4C3E /* exponential_biased */, - AAC77E5E74B6DD408CFF020A2A2EFB6B /* sample_recorder */, - ); - name = profiling; - sourceTree = ""; - }; - C821882CCECD9E35D7D10DE91E91DA96 /* Support Files */ = { - isa = PBXGroup; - children = ( - 366152B858E875BC001D50DC9E5A3021 /* BoringSSL-GRPC.modulemap */, - FAB1C3A42E8EADD46AC7451600CD2921 /* BoringSSL-GRPC-dummy.m */, - 34D0D07D449E5133B6F9F2CAF5E3EB51 /* BoringSSL-GRPC-Info.plist */, - 6A0D5205704830E07C3EFFFAB46E5CBE /* BoringSSL-GRPC-prefix.pch */, - 151B3DD90EEF8B3F67E6A7EF68185BDD /* BoringSSL-GRPC.debug.xcconfig */, - 9A5457333A11081E18FA2A1C758D89A5 /* BoringSSL-GRPC.release.xcconfig */, - ); - name = "Support Files"; - path = "../Target Support Files/BoringSSL-GRPC"; - sourceTree = ""; - }; - CA1F0BCA60504CDAB4EE0A025A47A8FF /* common */ = { - isa = PBXGroup; - children = ( - 42D34499225FBE825CADB32FCF087DE9 /* common.h */, - ); - name = common; - sourceTree = ""; - }; - CA995544CB7C6839A3425DD47E9FCD81 /* Core */ = { - isa = PBXGroup; - children = ( - C6ACCEC076904379AE523C1A509EDC5E /* GTMSessionFetcher.h */, - 85F9CBCAE10FA908E60594BBCC8AC8BA /* GTMSessionFetcher.m */, - F98FABE335D60E76BC9CF8089E5A4D0C /* GTMSessionFetcherLogging.h */, - 9E2B71EB42B8967FD5D1D75AB263CFEC /* GTMSessionFetcherLogging.m */, - EAD6D720CFAEB3208B4B1D37AB3201E6 /* GTMSessionFetcherService.h */, - 39592733D5F67B93976E9E68975F9D1C /* GTMSessionFetcherService.m */, - 90325FF1BB2B0D56DA50309AADB0D377 /* GTMSessionFetcherService+Internal.h */, - A3A80F6F4EE1F4A421CF8B3930795462 /* GTMSessionUploadFetcher.h */, - 487B71059510806925E3175A83F23958 /* GTMSessionUploadFetcher.m */, - ); - name = Core; - sourceTree = ""; - }; - CACB5D2D9DFF9CBFADABEE77C7C9205A /* Implementation */ = { - isa = PBXGroup; - children = ( - 8F9143CDE90519AB42C652F71A040D17 /* accesslog.upb.h */, - 54EB8059BF382C70FD70EEBAD47B8B9A /* accesslog.upbdefs.h */, - D98B0B1364291A20272519B09E728D02 /* activity.h */, - EF53589CB5D78A98F3E32898B9D0B479 /* address.upb.h */, - 5A94685383E599EC13870BDEE0198082 /* address.upbdefs.h */, - 9596DC3803256B1C985B60FB241492B8 /* address_filtering.h */, - 28A42F16914161A6286E0EDE25C50C58 /* ads.upb.h */, - B1924A8540B5948CCCD6505E51B7E327 /* ads.upbdefs.h */, - 6AF76B41992473544AD1B8B7D23C31F9 /* alarm.cc */, - 52E5C10E762C42015A754510026EB4A0 /* alloc.h */, - 92EA783791A6255700D99F0EF89822CD /* alpn.h */, - E2816B4D12C694A24AF3924582465DC8 /* alts_counter.h */, - 4F9309A80B991B45C41D372EF7F02657 /* alts_credentials.h */, - E36841E7A85701ADF90619D125F555AE /* alts_crypter.h */, - 1842BC35A00C980B3160A6747CCCB0EB /* alts_frame_protector.h */, - 3C265AC8532D61B1CD13B91B87576FB6 /* alts_grpc_integrity_only_record_protocol.h */, - 029A52B57DE5EB5D739AC0FCE0EED0C6 /* alts_grpc_privacy_integrity_record_protocol.h */, - 0A013A714F4AED8C5DD374B85A646101 /* alts_grpc_record_protocol.h */, - C2AC0189DAAE21C15FC49FC9A749F448 /* alts_grpc_record_protocol_common.h */, - 351B2E3C11F7CC74ABB0F11C776740BC /* alts_handshaker_client.h */, - E5DC5E815A3969509838E48EAE618421 /* alts_iovec_record_protocol.h */, - AA5B1D1D0A643DB8CEB80159391843CB /* alts_record_protocol_crypter_common.h */, - 424D6FA6873DFC0C8CEC698D71B70784 /* alts_security_connector.h */, - 678756EB92B5901E3C557909700B5E98 /* alts_shared_resource.h */, - F0358DDDC5ED4B160F62181F272628D9 /* alts_tsi_handshaker.h */, - 88F25EC73453F84A6B3389AF26D36F5E /* alts_tsi_handshaker_private.h */, - D2D7040DC5A7FA0BEFF8B141CF2C6E70 /* alts_tsi_utils.h */, - D48DF17F9EAF85A53E7A9EF267D8E354 /* alts_zero_copy_grpc_protector.h */, - 2F9A4FE4ADAB11BFF4D07BDAC28193BA /* altscontext.upb.h */, - 7E44BC60564F2559251179498E12EAA0 /* annotations.upb.h */, - 2032DCC5B304C25D554D131E7EAA99CF /* annotations.upbdefs.h */, - B34D44E636CBAAD3043C612FCAB740C0 /* any.upb.h */, - 1CD401271C3860EF454268A51B4C91FC /* any.upbdefs.h */, - 173FEBB8CBBD480F37B2794415F76E3C /* api.h */, - EC23DFC8A8AF7E565DD21186A66EBA6C /* api_listener.upb.h */, - 7EC3E788B98B48709CD46214BEF89B27 /* api_listener.upbdefs.h */, - 7C19515CD9496842698B468836F3C687 /* api_trace.h */, - 224FBB78930502C92A4690575D668721 /* arena.h */, - 4EEE09F9719B9D20921FAB9F9B184F3E /* arena.h */, - E10387926F647BB9DDBE12A4B65DB06E /* arena_promise.h */, - 2913ED9CFC98345166BD46004FDB9F04 /* array.h */, - 2DBB683C00DC4D500F1E3FA4DAA22E55 /* async_generic_service.cc */, - B224191A057319667DF0E6A1CBD7D0A3 /* atomic_utils.h */, - 10B23199AFE7B3BEA038A34B76D43A53 /* auth_filters.h */, - 25ED2AB3AE777851175B427979248AD2 /* auth_property_iterator.cc */, - 89C6E2A45246954CE4696C02BBAE9E1E /* authority.upb.h */, - BA6B248A78ACF0D788AC72CE2FC38E52 /* authority.upbdefs.h */, - 6A3023C771A2D4C19AA78C8C5DD0F961 /* authorization_engine.h */, - A6ADDDBA64189266B0E7E571BFFCFA0E /* authorization_policy_provider.h */, - F0914F7F5460C0D3D62BF7416D32DD2F /* avl.h */, - EE10331B89000F8BF42398330720C39C /* aws_external_account_credentials.h */, - 95DB8C6DF9549EA9E92877446D9C0538 /* aws_request_signer.h */, - AFE270BCDA8048CA5B20BEC5BCA4B081 /* b64.h */, - 5A8532672CFBD96D3CF961AD06F617B2 /* backend_metric.h */, - B9B3DFBB12D28F9317CF324A89657824 /* backend_metric_data.h */, - 464A7D85D8AB25BD049351772D239605 /* backoff.h */, - 177DAEA4216A6CE5F8E42BA6E16AB9EB /* backoff.upb.h */, - F83BB5DD7DFD588350A0E1174D2F2C1C /* backoff.upbdefs.h */, - 42694FA75E2F6A63EED5401CD00C1EEF /* backup_poller.h */, - EACCFF242A450B2548A30BB8C80F76B5 /* base.upb.h */, - A7A414A53DBA93BAFFAD52C8AB702783 /* base.upbdefs.h */, - BFDAF4BC61A6DB8169F75C58AF273549 /* basic_seq.h */, - EBD654524DEB3AE452BAC741C6525356 /* bdp_estimator.h */, - D884B3BD252F16CAE2950D93B9C1E36C /* bin_decoder.h */, - 915CBB4C8E3DF85B5720CB4944C7FB30 /* bin_encoder.h */, - 5DB582511550650827F09433C9E85599 /* binder.h */, - 07935EA8F22AFAC027F34E5E3CB81D25 /* binder_android.cc */, - 72B799D7CF081A4F0F17D35FF74CADD0 /* binder_android.h */, - 33A88C7415B9C77919580468A27A29F8 /* binder_auto_utils.h */, - 561A2718AFFF8B6389B2BFC4D66CC8A6 /* binder_connector.cc */, - 39D949EA50CA8F9E6BDDBD4A26FF2769 /* binder_connector.h */, - C4608D907C436B88354273B77031B0DD /* binder_constants.cc */, - 3433683EDB408361D8D03D5683A9CA4B /* binder_constants.h */, - D0892E758BF3D06403494F7B9B718A96 /* binder_security_policy.cc */, - 5027D12C5A01C823EF016ACDC2223C88 /* binder_server.cc */, - BD9BAC017C5EF0EA3195A89371FB1D71 /* binder_server.h */, - E27CFE7E99A5B65F511B0173241A25A7 /* binder_server_credentials.cc */, - 0D48EEAB7CA7BCA59CECC34B0A589F33 /* binder_stream.h */, - 0A6EE1923D31BADA5E27B972CD911E31 /* binder_transport.cc */, - 8846655D53EF79DF7810F861DB129C2E /* binder_transport.h */, - E86590AAAF5E98E26B6123D6AA0894F3 /* bitset.h */, - 9CE7982D4FAE4829DC26AE3BF3E24C8F /* block_annotate.h */, - D8E2E460771447000D79434A75C8505E /* bootstrap.upb.h */, - D11AFC4F7281A4FB709BD97F8A6D5158 /* bootstrap.upbdefs.h */, - 411E840D505791211DA2011F66A84A06 /* buffer_list.h */, - 95D1B5F8323CAC1E42ED70309D6EFBBA /* builtins.h */, - A4CDF50E87B24FE0CBD4882020F45498 /* byte_buffer_cc.cc */, - 16196582E5C5D40C0D157F0BB8D35BBE /* call.h */, - 344ACC36B17FC8167067E434D8405371 /* call_combiner.h */, - B50709D7BFD8B79913FC9ADDF0C80491 /* call_creds_util.h */, - A93317B5FC473C4C08B66C151A1349FA /* call_finalization.h */, - ED3C7320E80D98E06BE49BC216051792 /* call_metric_recorder.cc */, - 254259009904437260472692D35B1947 /* call_push_pull.h */, - 91C87991687926E42F3A2F6676B593F3 /* call_test_only.h */, - 00C6704DCCCD6335315E13B45707908B /* call_tracer.h */, - 8C15C272B5C4DAAA2BE416AB48275ADC /* cert.upb.h */, - B0D66B5C0FD6D8CAE0035E3F9AC0733E /* cert.upbdefs.h */, - EF91967570044091C2A4037BEAA4D19E /* certificate_provider_factory.h */, - 81D16BCC8091077027780C7A49CD622A /* certificate_provider_registry.h */, - 9069C6857E78A10833895731C135A115 /* certificate_provider_store.h */, - D2A73AEEDBF1782817A5B4787517F511 /* certs.upb.h */, - 539ABCC72228C715467E75FE10A31D6C /* certs.upbdefs.h */, - 2FAEEFFF1D96A6D1A7DB9564B24F3163 /* cfstream_handle.h */, - 913F64102EF1A9950DC5DFE664C3DDCB /* channel.h */, - 1B2F8B601960C5232B9ED3108E1D50FF /* channel_args.h */, - 83F728CDE206600531C8D2129D28BD4F /* channel_args_endpoint_config.h */, - 74D7F480294415E5454C2A8DB654303B /* channel_args_preconditioning.h */, - 35E898B12A207112DB0853AE3275B0C3 /* channel_argument_option.cc */, - 0FE744B15AE82C6DC1054FCE0EF8EED0 /* channel_arguments.cc */, - A3A3BB5145813C69CE03F98D951F5089 /* channel_cc.cc */, - EF3EDBE0A8B29F73FA855A701E907317 /* channel_create.cc */, - D69F161511A9048C68CDD7EE2E0448FF /* channel_create_impl.cc */, - B414BCDF82778AF6AEDCFD8241619875 /* channel_create_impl.h */, - 20A4907F772C4293D9F29BC95E41C1B3 /* channel_creds_registry.h */, - 8C6A1F7BA835D53098452869706572F8 /* channel_filter.cc */, - C086BE95C999C4502FFD2A48512E8A58 /* channel_filter.h */, - DBD12F2280D499DFAC19BBF05F91DF88 /* channel_fwd.h */, - BDC629D461FB5C7939453610137521B1 /* channel_idle_filter.h */, - 4894CEC24ED81D6A849FF3D735356CFD /* channel_init.h */, - 9055BD3085E59795884A5FB6A4090F38 /* channel_stack.h */, - 4BFCF47DE994E304571FAB4557D74ED4 /* channel_stack_builder.h */, - 71D4822EF1AB4BA6BDC5D95395236A78 /* channel_stack_builder_impl.h */, - E244AB962170375248B1E3D35BED0501 /* channel_stack_type.h */, - F2C41CD3CD7F030E3FC54836E9B909C7 /* channel_trace.h */, - 3D5CF40EE7AD60D5023793ABD71D8D0A /* channelz.h */, - A7FDC40B27C34AEE930A9E902411346C /* channelz_registry.h */, - C242FF702C027D94383C1DBC3CBADA06 /* check_gcp_environment.h */, - 6F26CD13BAEDACE19DE844F05CD88E89 /* checked.upb.h */, - C8F9BD48AED4FF4EC42CDE0F45E6C48E /* checked.upbdefs.h */, - A1DD04A14CE0817D4680052076AFB65C /* child_policy_handler.h */, - B7BA602B8ABA36FB78E050D701AFA340 /* chttp2_connector.h */, - BAE09CAC8D64864773B942C42AECA757 /* chttp2_server.h */, - 4DC81F445E70B55FF44852E0A692D918 /* chttp2_transport.h */, - 8BC80525CCF79271C5C8B1A58A3CD6E9 /* chunked_vector.h */, - 49B1D643AF51D3C998E932D069B17407 /* circuit_breaker.upb.h */, - 8879FF114F646378D6353C355300E510 /* circuit_breaker.upbdefs.h */, - 4862B1E05E14E6DAA2870C9F290C2DE6 /* client_authority_filter.h */, - BDC4760CD0AFFCB86CD0AC1F1989C9C2 /* client_callback.cc */, - 55C2F375DFC523DF473B83E3BD26B18A /* client_channel.h */, - 7F92C856A59D62760DE32F1288F77A1F /* client_channel_channelz.h */, - 2320BAE9A767F4158C5A2B3815D00EA3 /* client_channel_factory.h */, - 2B70582C4EE06B2F4DB75283093713F0 /* client_context.cc */, - 9483CF2D3633D4A65FDCE72C29D9A3F4 /* client_interceptor.cc */, - BC610BD798B675B7AB8EFA4A20EDFFBB /* client_load_reporting_filter.h */, - F00AA832B7F043897DDC2F8EDACEE8DD /* closure.h */, - 136FE94A85B992DAE7F4E82436E5B3B4 /* cluster.upb.h */, - BAA8919C86221AA163397E164C7E7443 /* cluster.upb.h */, - 01EA2295B3803A3BAEA2498211FD9D5C /* cluster.upbdefs.h */, - 09E776A4A87E067224D392D2A2C43C0B /* cluster.upbdefs.h */, - 80F70BF806CE44CA998F1BA1F64C86AB /* clusters.upb.h */, - CE98F97EDE314F0ECE7A6CB802EA2D71 /* clusters.upbdefs.h */, - 0F6516A370559F3696FE839653B24473 /* codegen_init.cc */, - 66FF31333A00D1CCF92B7A56582111B5 /* collection_entry.upb.h */, - 5570AB8FE5E3E47A62CC39563159EFE8 /* collection_entry.upbdefs.h */, - 53DDA015F3A789693A8A38FB380474B4 /* collections.h */, - 2BF4588309DE5CD6475039ACC15D12CB /* combiner.h */, - 0A0CCD0F14D2B262C384C2A7A09C71BB /* common.upb.h */, - 6BBF3EF9AE9CB9587CE4EFEAFDEAC08B /* common.upb.h */, - 409E713A61C962A168AF3B702C1E9B5E /* common.upbdefs.h */, - 29F3AAFE1C57026B4889429C58EE7A25 /* common.upbdefs.h */, - 97989B741B4F436258246282CB32B5EB /* completion_queue.h */, - 55F11C5F7973DBA687B26BEF19DB834C /* completion_queue_cc.cc */, - D716CAAD51AAAC24816F01ECD8E4895E /* completion_queue_factory.h */, - C931BBD1054EB919B3359D742C0417E6 /* composite_credentials.h */, - AF382EF6840FA526675A7CABD667963A /* compression_internal.h */, - CA5FFAB144207DF2E74DC466FFCF6FB7 /* config.h */, - C11215E6720095E129DC3BFCBC99FD34 /* config_dump.upb.h */, - 444BE1385FA3DEC4EFDA000A2A73B075 /* config_dump.upbdefs.h */, - AED0B8E01D505F3709886D52684EE68F /* config_dump_shared.upb.h */, - 42B765F8AC321C2481AE576B5F714863 /* config_dump_shared.upbdefs.h */, - FEC2B325C6194885028E0EED01110199 /* config_selector.h */, - AC0CD3651DEF80AFDD5CA8E923B2F7DA /* config_source.upb.h */, - E10A46004BAC723BCFA4A70A47C3F1B3 /* config_source.upbdefs.h */, - 9571519B462BAFB1775DF31A4958FA56 /* connected_channel.h */, - 8A5B9F81F54EDA54277587E30E47A190 /* connection_id_generator.cc */, - 6735B6C3344D159A3FE8C55D29177ED5 /* connection_id_generator.h */, - 1482EA741A890385794839EA2CF8107A /* connectivity_state.h */, - 97A8B6A71D866E223B119390FC306B89 /* connector.h */, - 9004A695FBA223A06055F99A886D4754 /* construct_destruct.h */, - 68CB1F72DF917BC3B040A6A9B16022B1 /* context.h */, - 722220320CCC5D15E0B999E405B1E9AB /* context.h */, - B84ACEE18054587361CB4101FD8E5E28 /* context_list.h */, - AD066F04F8319E8B9845548928A99F15 /* context_params.upb.h */, - CCB2958F6F7D8A67E45E8BFB64E8FED9 /* context_params.upbdefs.h */, - 986662053D5F252238E4520FE5B38F18 /* cookie.upb.h */, - 628C96061E1534AD017000BA1E3336BC /* cookie.upbdefs.h */, - 29E5210F43DFB47F6E3158630C96DD2C /* core_codegen.cc */, - 14A49D5AC98299B72F170D4107A58485 /* core_configuration.h */, - D3404BE51F98EEF2353171792296D24D /* cpp_impl_of.h */, - 4D4ED0148A27A92C2483C269BD5549AD /* create_channel.cc */, - 082558C5C19C348FF00FFF8ADA6C91BB /* create_channel_internal.cc */, - 91EA8C3BA5D0333B7E2F3976816531AD /* create_channel_internal.h */, - 7359680098E536BB7359CC7B1E667E05 /* create_channel_posix.cc */, - 3EADB00A7F92A434ECB62E508C4C1ED2 /* create_default_thread_pool.cc */, - 677EBD26018DD4F0935B9C7D8A9B371A /* credentials.h */, - DCDA8341F1F227B9A398B385A35FC568 /* credentials_cc.cc */, - 0F078356C759B45AE2D465538210B802 /* csds.upb.h */, - C3C2BE33AAF01FCCA0A4154693B2D576 /* csds.upbdefs.h */, - 84A4F3F91B2C9D52ACC491186DE3BA54 /* custom_tag.upb.h */, - 3340F1EFB30DF475E91F8448CC0D12CF /* custom_tag.upbdefs.h */, - 43597551198F0566BC64DBA14F992D76 /* datadog.upb.h */, - E1965F3D6268AD7BAC76ADA992A3BC54 /* datadog.upbdefs.h */, - 2C4BF08538BF564BE1A81112221DDE88 /* deadline_filter.h */, - A785FC692ECB00E4071B90DDBF6DBEDC /* debug_location.h */, - AD102AEB5C4E3A23B73D64E4B4E8889D /* decode.h */, - B478E5287CE2DF7E3CC1F33E266C74B5 /* decode.h */, - 6E16A03CF7448FBAA9F0083B7C8370D8 /* decode_fast.h */, - 7A67F4ADED1D8EAE12E545FF2135B2CA /* decode_huff.h */, - C6723A11E9B669C82AF46A31D55C16B6 /* def.h */, - 47965232E48917F41362BCA0E50826A8 /* def.hpp */, - CAE79D362F367389D47EEB66B9BA5638 /* default_event_engine.h */, - 0516547BB153B89651DDB0CADA3D6E7A /* default_event_engine_factory.h */, - 681A185F19E0F02CB112009600E9F9B9 /* default_health_check_service.cc */, - 796F416D6CCC7BC4CEC63082B6931C3B /* default_health_check_service.h */, - B61959DBB0F6AA639E23D8205FB46A4E /* deprecation.upb.h */, - 677B40C1A4115D44A0302A4F88C3C27E /* deprecation.upbdefs.h */, - 5D271EFBB7265BE0490BCAE13329CE7B /* descriptor.upb.h */, - 57B9BF3CF08822683DDCABC109ADD823 /* descriptor.upbdefs.h */, - 3E80C3622404D773E90B3F164B70C3B3 /* discovery.upb.h */, - F25DC0FC565A224A06B6AFAA464034C7 /* discovery.upbdefs.h */, - 2073F50B0FAF1F4D0E37DE1766BDCB54 /* dns_resolver_selection.h */, - C87994181FC0239F0402A13AE7CBDCF2 /* dual_ref_counted.h */, - ACFC142DFC406C2332224C832F68BB8A /* duration.upb.h */, - 8BA9D1BCE1A72B46CF4B8526ABA1E33A /* duration.upbdefs.h */, - C2412C2A3DE452FC48580DA2AE379834 /* dynamic_annotations.h */, - D36CE396F016FDF4D6C77741982FF14B /* dynamic_filters.h */, - DF50BEC38AF2EC847F9659CCFED5AD89 /* dynamic_ot.upb.h */, - 2995219B51B72201A5CCC6D72F5C69B0 /* dynamic_ot.upbdefs.h */, - A4DE606B4FF60CEDC3C63BB99C4AE170 /* dynamic_thread_pool.cc */, - EAA8888AC538FD9D7890A3687BDDDB31 /* dynamic_thread_pool.h */, - 9BF4F99F51D9A856CF7C7A082BC0411E /* empty.upb.h */, - D8CF7C8B1E6ADC4E5F75D68482B743CA /* empty.upbdefs.h */, - 284E07F713CE39C11E3DBF8D704B1D29 /* encode.h */, - DBF7F5424980678425CAE8B733E6707A /* endpoint.h */, - 2D56127644C72E2FD0CCEB3AC015FE17 /* endpoint.upb.h */, - 2E2C52ECE094E306EF5F0FB83EBEC007 /* endpoint.upbdefs.h */, - 1EE3EC4FFD844681B8CCFE55C0898981 /* endpoint_binder_pool.cc */, - 3E21D04A398C9A1C5EFC27FAA6DD00C2 /* endpoint_binder_pool.h */, - DACA094CFC3924389DD0F0FFBED9939C /* endpoint_cfstream.h */, - E304231909E187742B9610BD30582326 /* endpoint_components.upb.h */, - A611E9F99015DD53907500A2E3D508C0 /* endpoint_components.upbdefs.h */, - 0E5D14075BB50A7D87701A672EBC9444 /* endpoint_pair.h */, - 56271BC0CD53E6791C9B8E20E0CB73D5 /* env.h */, - AB2850FB9853861A0558E11F6C64924A /* error.h */, - 0B1205A5AA2B18BA0CA094E864D8268F /* error_cfstream.h */, - C8EF21AE6BD70BA1C29767FB9060DD93 /* error_utils.h */, - A5C816D318C5D37C3F05B39D62C3794A /* ev_apple.h */, - 3786B216292DD72574530A53CDE63061 /* ev_epoll1_linux.h */, - F3BAFE02740CB2591D3364FECCD9E42C /* ev_poll_posix.h */, - 1E959A7D1ABD4C9B0C831B21AB593CD5 /* ev_posix.h */, - F89B1E7217556C8058C1B1492B6DD6D1 /* evaluate_args.h */, - A443B97D8CDBA2CEB758E38AB2A0E487 /* event_service_config.upb.h */, - 4CB302D376AA289CC2E13FDC9BD2D0C7 /* event_service_config.upbdefs.h */, - 6B229F9D273A132F29D455BC26A14F10 /* event_string.h */, - 13B4BBFDD69B0F7BAADB4D65F659A97E /* examine_stack.h */, - 2848F4F17649B517CB956FFC47DC5FB0 /* exec_ctx.h */, - 41F4B8E09D1DF8576BE40DCD9EA1B2B4 /* exec_ctx_wakeup_scheduler.h */, - DF9248F8632D47E65700F68F120F89A2 /* executor.h */, - B9AA54733A43D1423F46810E3F2B9D47 /* executor.h */, - 2A554462DB74083987B93EC6EE500BB4 /* experiments.h */, - CCBED0E7B64E2480AF72F56A4A4DA665 /* extension.upb.h */, - 5578B99147B7935FEED758D90B000502 /* extension.upb.h */, - 5515FF80F48EFE037E28FEA13CFA3436 /* extension.upbdefs.h */, - FECFA730A80621E7DB12C564525649FD /* extension.upbdefs.h */, - 2FAC688AA5AB810052F128AACBE1289A /* extension_registry.h */, - E8BC8950CF0E6BF62C84F441193AB580 /* external_account_credentials.h */, - 0BACE8C27F28BDAAA4BA94FDBF4D48FC /* external_connection_acceptor_impl.cc */, - AD59B65829EA51515373573B12B1F26E /* external_connection_acceptor_impl.h */, - 50364AA3C7DE7E4E42D2A8708F52F0D1 /* fake_credentials.h */, - 223C3024FDFE60D37016A63F6FC82BA5 /* fake_resolver.h */, - 58E5F9881F917BE0F51C8DE05FCE722B /* fake_security_connector.h */, - 1642B1ACAD9E3ED5F07F9FC9B17C2D13 /* fake_transport_security.h */, - 38E257665B0ECE3EE3E6E3FC9A355908 /* fault.upb.h */, - AF8D1B8F7ED5D0D45A63EFDFB00C336D /* fault.upb.h */, - DC2153613327B730E31849A0E7E3978B /* fault.upbdefs.h */, - A31DE3B1E7A336F231F7F2247652A4DF /* fault.upbdefs.h */, - F60EA2893EE7CECD46335B2320B8D9A7 /* fault_injection_filter.h */, - E3CF1DAD73C89C7040B184A50B1014BF /* file_external_account_credentials.h */, - 05C30974CC0A6B3414D949618B032940 /* file_watcher_certificate_provider_factory.h */, - 031494DA595E537CBDC40E389CEB0D38 /* filter.upb.h */, - 71CBA075A30CC6A9B5F327E0ED9EB95F /* filter.upbdefs.h */, - AF10B33C822A9966AA391F128E3E64CA /* flow_control.h */, - E5DF0D65B706CB3AEE1D5CE8B4432A02 /* fork.h */, - 69710F8E722FA67AA07F795BFE22C367 /* forkable.h */, - 39D20BFB3E98C05B1E42DEB6C4EF9DCA /* format_request.h */, - 4F3DA4917DD71C8B8A0BE1DBD8AC9E2A /* frame.h */, - 4DFDC825C68BEFF359AB77D63963DA3F /* frame_data.h */, - 266F84D62EEA081B815444F92DF36788 /* frame_goaway.h */, - 87AEB60D43C2547DBCCA459222582EA4 /* frame_handler.h */, - B35983469D31AEDCD7C27AAB48A6D5E3 /* frame_ping.h */, - 02A83991F374E71998EA0408354704D2 /* frame_rst_stream.h */, - 83CBE129F5D534768D4E8452DFA15CD6 /* frame_settings.h */, - 2F9356B36BD2E56055BBD884C65BCC1D /* frame_window_update.h */, - B10C8DDDF1F26579129C69F16CD8DE3B /* gethostname.h */, - E0510B678915413BEE59D289B8272894 /* global_config.h */, - A8E438A2D1EC2135495CEE14C1854BAA /* global_config_custom.h */, - 85C872B9D5139BA1DF0ED9F149B13434 /* global_config_env.h */, - BA5CD05E3208B39C9E786F4AABE2A978 /* global_config_generic.h */, - AFF59EFE45D095EC84DBF7E430E571FC /* global_subchannel_pool.h */, - B736A889F53EC91A2B35712B25CCEAD1 /* google_default_credentials.h */, - 75C66052B609A65DD80D56D52385135D /* grpc_alts_credentials_options.h */, - BBC2242A329A3AA67E982773975AA260 /* grpc_ares_ev_driver.h */, - C8622210E6CD5A198731B7CFC1989CA1 /* grpc_ares_wrapper.h */, - C1AD48A333E26FFA1823649866494797 /* grpc_authorization_engine.h */, - A4BA6300457AF16415E6C78C3FD82B33 /* grpc_if_nametoindex.h */, - 24C03425FFD8A3CE623463821FAB28EE /* grpc_method_list.upb.h */, - B049DE461AA1CC94A072979096BE57C9 /* grpc_method_list.upbdefs.h */, - CF28EDD4A8C16D5FA2A5334AFBC158D3 /* grpc_server_authz_filter.h */, - 5FFDBA3DC6A285E9AE3E4A59FA86D5FF /* grpc_service.upb.h */, - 3FECB813F2A9EB49EEF492BA92C86824 /* grpc_service.upbdefs.h */, - 4C320D5290B6783F300E8614462C946E /* grpc_tls_certificate_distributor.h */, - 2EFF8483796509D020B74F203A79C806 /* grpc_tls_certificate_provider.h */, - 381A3485DDA7E4F2E64C3127D0E847FD /* grpc_tls_certificate_verifier.h */, - 17F65555FFC0386F77E3593BC9E87342 /* grpc_tls_credentials_options.h */, - 19BFDA34A5393E1F5CE1D6E761BAA658 /* grpclb.h */, - 7A975C29D1C091CE98CA0DD58F266FE1 /* grpclb_balancer_addresses.h */, - 0C10BF10D5BDF891B6B35151DC10D2A9 /* grpclb_client_stats.h */, - 1CB7C53AC46E13F5F5F946BA6080DB57 /* gsec.h */, - B55E618971BCAC5BD107FA2401098156 /* handle_containers.h */, - FAF7E5DB0839CFE9EC781F97C8AFF047 /* handshaker.h */, - AFDF165D1B7F5B1692B5114842AAD1F1 /* handshaker.upb.h */, - 139E6A898F396ADD0382390D071FA6F9 /* handshaker_factory.h */, - A95749CF760FA5CC0AAF95B5249DB9F6 /* handshaker_registry.h */, - 8D0FDD6996E0E4699B1071F1F2F9FEAB /* hash_policy.upb.h */, - D6376C70990502E9AB8F64641BF2D03F /* hash_policy.upbdefs.h */, - 5F3800C8FCB9B8F81FECF69F59AC7AA7 /* health.upb.h */, - D7C12B9B63B58E03CDCF04954F3C9F42 /* health_check.upb.h */, - 74A7D590E09F3AE855E4BCB46D832A02 /* health_check.upbdefs.h */, - 5D552113FF9E586AB23A27E8E4EFB64B /* health_check_client.h */, - C2275F8533F3E3E0BBA39909FD04563C /* health_check_service.cc */, - E6A272C5CCAC0A3DF3925E19ED0B39EC /* health_check_service_server_builder_option.cc */, - 33D32CF9DD8FF148548D1DB3F5F6BFC4 /* host_port.h */, - 9C1AFCB9A8411B20F1D6034A95257D48 /* hpack_constants.h */, - 7FD49E5A4AAE8B9CAB8BFF4FBC86B3A6 /* hpack_encoder.h */, - BC4204713C26DB397A8AAC24089CC49B /* hpack_encoder_table.h */, - B367AE0FD2DF019465999B0AB60B270A /* hpack_parser.h */, - 5522275A83A2EADD2BC0674F6A044070 /* hpack_parser_table.h */, - 92DA656D05D7F7EA7AAF5DB9CFBE8A20 /* http.upb.h */, - 77560720BEAB55E6B81274E02C204A03 /* http.upb.h */, - C0D79936BA25E779C2F4E378A8DA5B8E /* http.upbdefs.h */, - 6639E77A5114D12B8C11237BB1CE9F7E /* http.upbdefs.h */, - 52C0C161BF0634F95CFBB58486010B0F /* http2_errors.h */, - F8E99FF62420723DE95F7778C21149FA /* http2_settings.h */, - F4ADFCC0C49CE3161F33A0EBF1C560AE /* http_client_filter.h */, - 0D92DB675527154DE80F59642D7A61F3 /* http_connect_handshaker.h */, - 138C85F2E2FBD194C63B8E3AC8B59609 /* http_connection_manager.upb.h */, - 0D9940E9ABA90994FDA72E1ED2DBB8F3 /* http_connection_manager.upbdefs.h */, - AA05F56DBB63581A22057AACB9767BF1 /* http_inputs.upb.h */, - F4B0D6D086A465BD30BA7402D497718E /* http_inputs.upbdefs.h */, - B0B311825D9BA02B9A506BCC2BBD5CB0 /* http_proxy.h */, - 7BD30968630904054326F045A4E67DAB /* http_server_filter.h */, - 746B021D9784A2252490A4C64CC51995 /* http_status.upb.h */, - 2AFBB0E023D5D7D4335EC10B3DAA2E88 /* http_status.upbdefs.h */, - 29D1C34FC7947809E87213616C12289A /* http_tracer.upb.h */, - 8E01E7F74394EC112630BFF4E89E8EAC /* http_tracer.upbdefs.h */, - 9A0AA813EE7C101BAF26F320C0C28892 /* http_uri.upb.h */, - 7A46730BB1779DECB9DADF5F99C8043C /* http_uri.upbdefs.h */, - 909DDA92FEAD88E6369056CC5E1D4B25 /* httpbody.upb.h */, - E6E248615E4DCE3DCD24AC35677A4249 /* httpbody.upbdefs.h */, - 528CEAAD4E90587ABAB45EDD96C0B9DC /* httpcli.h */, - F4CE3853A857EFCBD5352B9F289DD353 /* httpcli_ssl_credentials.h */, - 8D549777CD84CBAB4CF0DDAF063CA817 /* huffsyms.h */, - 54A02406232C8593A4CD231CBFFF9EF4 /* iam_credentials.h */, - B6EC01A4C798811DD73CDE4FB1F74608 /* idle_filter_state.h */, - C56A4EF2680A1388E08E912698C3D039 /* init.h */, - 83BCBD8913368A4D7D627ABC388471BD /* init_dump.upb.h */, - EDCEE61CD3587D7EE03F0775F3CA9716 /* init_dump.upbdefs.h */, - 9700E39B5C094BD84430EAB572665FDD /* init_internally.h */, - 0A0870967A6B71036DA6AC5642402C26 /* inproc_transport.h */, - 46C99CB910DC4D335D3B72EC7EDFCE51 /* insecure_credentials.cc */, - 77D42D6840037D4539C5FF947541197C /* insecure_credentials.h */, - 51BA01EB872ACBA9D90695E399E8BC9D /* insecure_security_connector.h */, - EC674551ECDC7FA70C3E9C4267482DBC /* insecure_server_credentials.cc */, - F85DE9BF32D8BA891F129029BC36039C /* internal.h */, - 0B78422793D3D90DC6C812587B5B826C /* internal_errqueue.h */, - 2B8EE286B52565E3BF9E6AE3C75897CA /* intra_activity_waiter.h */, - 4A3BBBFD49DE0B7746308EA84E91E66B /* iocp.h */, - B2E865DE3AFE2C120A9B6CC307EE7E3D /* iocp_windows.h */, - F09371D8E1BDC697CFBDB94012B76BE6 /* iomgr.h */, - 8354E6BBB5B8A3E785119E033C2760AD /* iomgr_fwd.h */, - 209DD28460CC2D690016A18981695D8C /* iomgr_internal.h */, - 1DC5F2082BBD8CF6A0D6619BCA254C8A /* jni_utils.cc */, - E8DC3D839B8CC36E6D01312BF46C9412 /* jni_utils.h */, - E75D00358011D9CF92780BAB8E8F1F83 /* json.h */, - 14C1624B89A6149ABC322C5237980C8B /* json_args.h */, - BA7EADCF4E0861466B2E0F7DD9C6EFB1 /* json_decode.h */, - A37408BF6A75E1D7E40AD112CEEEE18A /* json_encode.h */, - 9C8AEB3336DAA85F1BE33A4478950EDF /* json_object_loader.h */, - FE9D702E233466F09D9CD2490AE6DCD7 /* json_token.h */, - C1F8550FF099F093E51C3BDF4A0F798F /* json_util.h */, - 636A1D63408A7783FACE3FE5377D7D62 /* json_util.h */, - 8F4EE9F5A1D5223ABF5B9850905E82F1 /* jwt_credentials.h */, - 9312C96DC21ACDBA4B7BC1892CB6EA04 /* jwt_verifier.h */, - C7CA61CFA9CC4EFA297770FB89E14C65 /* lame_client.h */, - 33664FDD4141A7A76BA7C6B80E5B2234 /* latch.h */, - C6F57F507A6E16FB3791725C5CBECBE9 /* lb_policy.h */, - 37F0476FE3695902968717FC48DDA17A /* lb_policy_factory.h */, - 897042239EB3DCA0DEDBB17D1D5F3FDD /* lb_policy_registry.h */, - 833C815FB9F330DD0CCD40F832505A7F /* lightstep.upb.h */, - 70F9723A8FED976CF0866ADF9BD27168 /* lightstep.upbdefs.h */, - D9EB568045DD790BEE70377C14E931AF /* listener.upb.h */, - B6D9D636FF397C68E6B0CF8DEF9245C0 /* listener.upbdefs.h */, - 091869829B459C88E13334F509715B47 /* listener_components.upb.h */, - 5A6111432424CD3F01FD6FB5E3A39986 /* listener_components.upbdefs.h */, - 78EC62E7F363C18CE7FB247C3A45D100 /* listeners.upb.h */, - D4D0B6AEC023331FAC1735EE543DF7AE /* listeners.upbdefs.h */, - B125F20B87F5BEE037AE4C8889A59085 /* load_balancer.upb.h */, - 346080040C30E4053AA2A7299F46A5C2 /* load_balancer_api.h */, - 31C2BCBDB222630431F638FACF0F9414 /* load_file.h */, - 15A1BE303BDB64B96512334CC58553FD /* load_report.upb.h */, - 7EE6FA028BB605D92790816C975472EA /* load_report.upbdefs.h */, - 0DF917ADF93C02952787C083C0950012 /* load_system_roots.h */, - 4BE4B22FC4440CF7E4A38053BB7519A8 /* load_system_roots_supported.h */, - D884D988617672049A1922CF12E24247 /* local_credentials.h */, - 586943017A008DAFEAFE5AB044FEB5FC /* local_security_connector.h */, - 9327E2DFDF1E55E93E51E2EB2D5BEB30 /* local_subchannel_pool.h */, - 34EA51FCBBBB11B0131384466FFD70A2 /* local_transport_security.h */, - D8AA4D3FF56DE7C182CD080A13F596E7 /* lockfree_event.h */, - 220CAD286B49150C1CCB39A6B7D19735 /* loop.h */, - 7E6B745239A77C69FAAE1E10D51FE138 /* lrs.upb.h */, - F0DF1A41CBD6C7A2A4A10ECFD854F084 /* lrs.upbdefs.h */, - 1A7778C4F025CB8202CC7F27B276FE39 /* manual_constructor.h */, - 545AD2F6F656B8D054032F185659B4DD /* map.h */, - 7E653BFDE8DE075AA70ACDF346590386 /* map.h */, - DE8D18979C6AAECAAA42F4068F348F60 /* match.h */, - BA255B3C833C4C12426FB784CBE2F7E4 /* matcher.upb.h */, - B11A1CF3CCE7F3FC0135B12A8E7AB678 /* matcher.upb.h */, - 9EFD21302FE8780F575F437E76D5E0E2 /* matcher.upbdefs.h */, - E6325262776E75174B9DA7B9C2B7007E /* matcher.upbdefs.h */, - 5E64D0B8B12B69B0C836CA639796945E /* matchers.h */, - 7502A837CC53F38AAD8556DFB716330F /* matchers.h */, - 042271FB2B2387217FDD272A332FE6E7 /* memory.h */, - 825D8B270ADAEB8E8B610CE88F6D0DFB /* memory.upb.h */, - 4BC4D6BBC1F78503A39459F50DD1BAB1 /* memory.upbdefs.h */, - 74229C80A51CEA8CCD70BE0FA15B3856 /* memory_quota.h */, - CBA1CC04E7A5513BC868E42A02EA993B /* message_compress.h */, - 08667D3F0E5175D52340FA95B8A52300 /* message_compress_filter.h */, - 22ECEDC0ACF605625183D0EBEC36F1A9 /* message_decompress_filter.h */, - 4D36AF9EE5791B878E4BA43E2C34234F /* message_size_filter.h */, - 2A4F60BAABA2723922AF3791A7AFC5D8 /* message_value.h */, - 396D0E09EB10E85067B861A943D52CF3 /* metadata.upb.h */, - 9AEB08A55A2FF9FF722C548609176A1B /* metadata.upb.h */, - F13D20ED03E9841DAC9C84E812DD3B39 /* metadata.upbdefs.h */, - 4649E9244A05EE1F42822D58A3559E3F /* metadata.upbdefs.h */, - 24C06396F64238BBD1E2DC57621EA8F2 /* metadata_batch.h */, - 523794809B51B648FD57064BA081DC90 /* metrics.upb.h */, - D957A4380785E239ABD643AFCBF2E17F /* metrics.upbdefs.h */, - 6CD1D59E8BA58964FE2EEF693368181B /* metrics_service.upb.h */, - A4C7F687737E0863C1664AC8F6B58258 /* metrics_service.upbdefs.h */, - C5E9743D4AEF90449ABE247424A8F86F /* migrate.upb.h */, - 4A7B922B3A183E563A5A2E361D2F73DE /* migrate.upb.h */, - 74DE2F57D7262CB92985AD1FF806B49B /* migrate.upbdefs.h */, - 659FEFDE9FF9E10D9A33FBC1DABF8FB8 /* migrate.upbdefs.h */, - B8DF32DF83D1D095D3DADF7C0541353D /* mini_table.h */, - 42293DF2129D34926EC4828CE92E6912 /* mini_table.hpp */, - A2340583FE1D961F4BB2F5B02FC39D52 /* mpscq.h */, - 76B70E6BBB8BA139078B677FB12B6838 /* msg.h */, - 64F75CB8AD8FB246982389E337AB7450 /* msg_internal.h */, - 3AF63EDD6806BF6A876B63EA55CBA64E /* murmur_hash.h */, - 7E535D616BFB308C5B02F22AD0EE1B2A /* mutex_stats.upb.h */, - 2BCC60AE22AEC1BDBEEB1812F8CD2131 /* mutex_stats.upbdefs.h */, - 24E16C567C345BC163E5396656A8160C /* nameser.h */, - 833D776E22F65AF548485F069A406C39 /* ndk_binder.cc */, - EEC1B76CA7CDC02026B54E4E2CF13CD3 /* ndk_binder.h */, - FCE3BBBBF2008B1FFAEE2EF21D1D4BCE /* no_destruct.h */, - 0FF30A4123BEAC65003F342CEC6FE777 /* node.upb.h */, - 570D74242F34E9983FC76E8429332A46 /* node.upbdefs.h */, - BD7DE0A7F2233E31D3BEFCB227B715FF /* notification.h */, - 0CC8FEB777ED475C57683441DCC2299B /* number.upb.h */, - D2346A851A8D274E0726A3ACED92086D /* number.upbdefs.h */, - 9CD77B11F6F6E0D6D6FDD5D323643BBA /* oauth2_credentials.h */, - D41F648301FF4FFF2569B300D443EC70 /* oob_backend_metric.h */, - ED18B67A1053473A48D5F9CD5AF528BF /* opencensus.upb.h */, - D624E16D6ADD7DC3DE603ECB83906BFD /* opencensus.upbdefs.h */, - 5E7E4014E5A3344D8A08C0FA2F80FCEC /* opentelemetry.upb.h */, - 2EE8E21BA32861296FB6B8FCB845190A /* opentelemetry.upbdefs.h */, - 6A6EF1E314E936D183FC23458DFE21DF /* orca.upb.h */, - 120DE169485F7E52A03A57057AE8A10F /* orca_load_report.upb.h */, - 6ADFD13245789236FB1886911D21E92F /* orphanable.h */, - 682A4FC28DC3D3C3CEFBBB4E0D43CD6D /* outlier_detection.h */, - 327583D1AE50D855A5DC66860F098F72 /* outlier_detection.upb.h */, - 0F618F5684F180033349C90FCDC87A68 /* outlier_detection.upbdefs.h */, - B47C2D69E0434365A4BE655BCC7F355F /* overload.h */, - DC57842BE8C900E9F93A3705967815CC /* overload.upb.h */, - 9432E5FE27C1CE4C2665EFA503DA413C /* overload.upbdefs.h */, - C696EDE0BDCE8052D82F55490A08DB80 /* packed_table.h */, - 48CE49C03EE094E4D3931D0F06DC696A /* parse_address.h */, - D75CBA9AA71EC8444D8E502366C231E3 /* parsed_metadata.h */, - B89FF6A5B7AA3C70DCBFF568B92DFABA /* parser.h */, - F30ABE59C7AA770983E2028F2D16DDBE /* path.upb.h */, - EE3349D76C260DC8862FA0BA21E82D68 /* path.upbdefs.h */, - C70DE610B652B0BC84B7971098EA83C3 /* path_transformation.upb.h */, - FE3CFA78AF13AB77CD8C1CAF9DBDA77F /* path_transformation.upbdefs.h */, - 62FA72B7577675E21A9E83DC6185D589 /* percent.upb.h */, - F395F8D79F57649DFC66E0C99EDA7BF9 /* percent.upbdefs.h */, - 3C4F1074A58B80D18F3ACCE466B237F1 /* percent_encoding.h */, - FA7CA1669C3F392E7F6749EB19AC4389 /* periodic_update.h */, - DFF27E375A3323376AC18DC40F9B8761 /* pid_controller.h */, - 3D1494E98F37D17D3FCBC3C238573961 /* plugin_credentials.h */, - 7861E0AF527F94E380FBD0B0C77150D5 /* poll.h */, - 8FE410580CDA5934CFB1CEA886F1F482 /* poller.h */, - A5EE704383DA9A5204931F226D0887FA /* polling_entity.h */, - D8412D9A52A20CC9C5F2A71CCDA54E26 /* polling_resolver.h */, - 762C8F07AACD976E8C989F77F571079A /* pollset.h */, - B7C3000EA46587728528978ACF048E10 /* pollset_set.h */, - 0B3115FB24152FFA95CA7917CD2F9ED1 /* pollset_set_windows.h */, - F91B93F17DD3F4F3DB3813463EC4E57A /* pollset_windows.h */, - 8C4A149D171AFA29986FD92EAAF3CE09 /* port.h */, - 122E87EF55AA4ADE54F922C772FDE9AB /* port_def.inc */, - 4173C2AB943154E8F5FD8DE826DAA61B /* port_undef.inc */, - 73E0ACE81F5F02D8DB09D22EC59D48A5 /* posix_engine.h */, - 8666497C2AD25B79CB7C9A3751F90311 /* promise.h */, - 561368502117315E1C8C52B9F44F8750 /* promise_based_filter.h */, - 2C9FD610C0A93C16EB93688CF4A8259D /* promise_factory.h */, - BDA5E4E514C83B4080FD1C9F615C1286 /* promise_like.h */, - 67AFE159430D49510A65B94BAB6602DB /* protocol.upb.h */, - 76CDFB2232C2A0DB66E7A61B309A0923 /* protocol.upbdefs.h */, - 67AD21C2EEA09C3B798CD0AD50610930 /* proxy_mapper.h */, - 55B36CCF75E31146A3418F3C8397AEA0 /* proxy_mapper_registry.h */, - 648DB80FB60129CA418F4346506E0F4D /* proxy_protocol.upb.h */, - 0018130066E6249C128D55F895B2BB0B /* proxy_protocol.upbdefs.h */, - FB6C7492955F5B9D7E1C21ACB1F7B4AE /* python_util.h */, - 13CA3ADCC25F6A6286E6FD7DCC900368 /* quic_config.upb.h */, - CCBA53384179788957D9FEDAAD78A656 /* quic_config.upbdefs.h */, - 7C6B1B0D746462EF9C3B17F1935779CC /* race.h */, - 26E37CF61271230304E3FE3E5625764F /* range.upb.h */, - 86041FC67937CCFD550726ACF722A663 /* range.upbdefs.h */, - 60E97D2B0FBDFF885802A1B8ECE2742B /* ratelimit_strategy.upb.h */, - 5E07B9C1678C91623B18DB42D63B45C3 /* ratelimit_strategy.upbdefs.h */, - 1518A275EF5F14FE540310B7DEAB1853 /* ratelimit_unit.upb.h */, - 3F875EF5A8C7D0F1203F455C6888424A /* ratelimit_unit.upbdefs.h */, - A207A2984BAECC3DC2A18FD3F003D75F /* rbac.upb.h */, - 4D890AB1006AE73CD3FAF69FE7B83F30 /* rbac.upb.h */, - 0C7CF553C3EC5774B65491A421FA840B /* rbac.upbdefs.h */, - 81AC9E6107EE9351C13FAC2DF6C9D7A6 /* rbac.upbdefs.h */, - EFD9D4BBA3833E2F30730C16D57E41C4 /* rbac_filter.h */, - E77B4D66F6075235B8399BA732A8B39E /* rbac_policy.h */, - EDC3268A11BAB8910C0B456E264503E2 /* rbac_service_config_parser.h */, - 1C087812611DD789464B8293CB08C565 /* ref_counted.h */, - F6F312F259E87EC85B91F7A939B1B468 /* ref_counted_ptr.h */, - 5144E0B838F00F833911BAAFAEE6D784 /* reflection.h */, - D804FD736B1C64446935A1966AEC30DE /* reflection.hpp */, - FE23A05FF59693CF8924948AFB73B907 /* regex.upb.h */, - 592900DA030AC4A58A4883B28D648DBE /* regex.upb.h */, - BF43040B37F96134C4166D7CCA8CCD29 /* regex.upbdefs.h */, - 348763B349FB3F41AEBE8E7B5A6CA1D1 /* regex.upbdefs.h */, - 385605BD39CAC22DBC84D88F0A42DC7A /* resolve_address.h */, - 93FD06B4F774E91B657616EB576AE8B7 /* resolve_address_impl.h */, - DCFABC7B0A109ED157376A4007E12140 /* resolve_address_posix.h */, - 0F47CA234DE2F4DEA3B22F1B83CA00EB /* resolve_address_windows.h */, - 352F9E41B868B9B610A5B0D14B6A34F5 /* resolved_address.h */, - 1F11F8643585D41931E1577B6B6525DD /* resolver.h */, - 0B4F5E6C381AE1487BF4F78354B290E5 /* resolver.upb.h */, - 084247E0555A377384C1F32187EC33E0 /* resolver.upbdefs.h */, - 75606B314D67942B56C36F7DD4A70B06 /* resolver_factory.h */, - EAA01727A243EF6136E41EBB402E4A78 /* resolver_registry.h */, - B62755F71D0CE6A48F9F7F4D18DFB853 /* resolver_result_parsing.h */, - 7CF9C3C087CFA7A8AD1B20EC33C89758 /* resource.upb.h */, - E22400E2C3B291528F27D2FC946B3B9A /* resource.upb.h */, - CA0795DE4A8B195D345BD674EDD26A0B /* resource.upbdefs.h */, - CD88BEFD5553ACC70C70722D7BF14851 /* resource.upbdefs.h */, - 458D7BD629B76E935D350A42D8DA7F51 /* resource_locator.upb.h */, - 296422C02CECC591E78F70EA82EAC54E /* resource_locator.upbdefs.h */, - 70E75CFB34BB17695D4A4C128671B513 /* resource_name.upb.h */, - AF55C01887CED688C392979A7DD55F79 /* resource_name.upbdefs.h */, - 936DEAE0DDAA100CB54678057411E09E /* resource_quota.h */, - 0C7BDD2CB05AADB06C3868BEBB2FC798 /* resource_quota_cc.cc */, - EA0A644A6BB640FF063BC68B3227136A /* retry_filter.h */, - FB7BCBDAD672580F386A1B6B8EBBA620 /* retry_service_config.h */, - 78D0500A48D763997049704814D5FC00 /* retry_throttle.h */, - C16B783CCDF675B2068FC1A52AB09D53 /* ring_hash.h */, - 03A419906CDB4D0A8F5F17D59C294D63 /* ring_hash.upb.h */, - 9205C24B2F9D4090414E476A661067F8 /* rls.upb.h */, - 52FCEA7EC52A43FDFEFFA090EF7DD356 /* rls_config.upb.h */, - 91831D44DBD7E8C63116361B4F889A01 /* rls_config.upbdefs.h */, - D45D22553C3851EB16BA74482301FA4C /* route.upb.h */, - B394F632311E2F073055B60834F021DA /* route.upbdefs.h */, - F2F27E2C8D76E032A5D4645E115F9716 /* route_components.upb.h */, - C13C90FDC55076EE7DCDF8671941AEAD /* route_components.upbdefs.h */, - A6BC67CC6919CFE6542F8FD649405150 /* router.upb.h */, - EC4D635B0901B8E654F574D03D4FD14B /* router.upbdefs.h */, - F3379AEDD0A5256B9B8A5922BB0A28EA /* rpc_method.cc */, - 8DCD8FDB6C0B0A668BDEB79033E83308 /* scoped_route.upb.h */, - 7E790E8D4079407D8A687C10752C12FF /* scoped_route.upbdefs.h */, - 1F13B65A25AAC2D139846A8BD9C33817 /* secret.upb.h */, - 2E12FEB335A336F84686E4A888FC8497 /* secret.upbdefs.h */, - AAF2A787394A072E8F8444BEDEEB7AC2 /* secure_auth_context.cc */, - 9E0D54AA93EC0E6C62683A9577A8968D /* secure_auth_context.h */, - 936CA9C5F7CD89CA3CE009BEE806660C /* secure_channel_arguments.cc */, - 96246B575B396E4724AE5E9533113307 /* secure_create_auth_context.cc */, - 6E27283994C5D70B1CBC78AF005A2F17 /* secure_credentials.cc */, - 1C804E76A5EC6FA9CC2F80A0523C6546 /* secure_credentials.h */, - 1721A8FBD82F65B6216C583121EA9086 /* secure_endpoint.h */, - 83A73567740F89D06423328B8E1997D6 /* secure_server_credentials.cc */, - EF625C321A84FB0EFA2BDEEDFBA52FA0 /* secure_server_credentials.h */, - 19C4F5543656C428F09D47C6E17FABA3 /* security.upb.h */, - 077EFF9F3EF59167E0DEB42E51E3E93F /* security.upb.h */, - C1574DE6547C8374619C026FE8A0661E /* security.upbdefs.h */, - A8D2EBDBC6DB283DC7EDE9455670FED6 /* security.upbdefs.h */, - C8A61EB9E8ABF4F52BAB3A399E68166F /* security_connector.h */, - 5C9EB4B6A882977B31E8F54C0FA991E9 /* security_context.h */, - 46A1A3F35E5D70C2DD82E1F1B67BC469 /* security_handshaker.h */, - 605D983B33DE71B5BCEC0C12B68F0569 /* security_policy_setting.cc */, - B308F0294D589DF651EB712562FF1C15 /* security_policy_setting.h */, - 04D1C1A69D8DCC157CDE20761C3A9864 /* semantic_version.upb.h */, - 79A0C919A26E9A21266195C5A67FE6DC /* semantic_version.upbdefs.h */, - 60103051EB2FC1ACA6744A519E613995 /* sensitive.upb.h */, - 0A1C06D8F0A57548FFA99DCC4FACA98F /* sensitive.upb.h */, - 2EBFEB9706D13970EED7D6DED48D25C4 /* sensitive.upbdefs.h */, - 8B69B44ED2929E2569D2F2EB8BCD760D /* sensitive.upbdefs.h */, - BBF9D82CB030E0580E8E813B97B78C07 /* seq.h */, - 72DA0ABB75ADE5F14CEAD7713867A0A8 /* server.h */, - F4AB0837D6154CD500F86D65966EC78D /* server_address.h */, - CDB237D93D58DA037C3FA09CC826A6D7 /* server_builder.cc */, - 9908DE44E9BAE5A0BAB5FF183534CCB8 /* server_callback.cc */, - E6566312956BAB549CFCA7039FDD6FE4 /* server_cc.cc */, - 9BC8E2C28C2B3D831E81B3F03B2D2B79 /* server_config_selector.h */, - C07580054B2150B2EA47F849C6ACF105 /* server_config_selector_filter.h */, - 452E303343CC1BBDAB931785FCA37A86 /* server_context.cc */, - 66BE8DF3EC4C835B625C0E96B49E1971 /* server_credentials.cc */, - 515F33D7B56AC9A5FEABF5D7D834CC05 /* server_info.upb.h */, - 30A2CB414B944153384BA5FAFF9D2270 /* server_info.upbdefs.h */, - 7A66EF6DCD556BE49D7DB10697036E72 /* server_posix.cc */, - E7CD78EC04F62235CC090B79192B34BF /* service.upb.h */, - F03AB99DB75B087CA03DAE5446FE6764 /* service.upbdefs.h */, - 53F87ACAEF4603F1B0FDD6364456AEA6 /* service_config.h */, - 5A9D748A72C5EF3D4D0D6FDAD619166B /* service_config_call_data.h */, - 9CB12FAFC8CD35E09D681B64D0A5E2B9 /* service_config_impl.h */, - 38AFFF99F7E583F7A5049E6FE6826FB0 /* service_config_parser.h */, - 11B297C02EEA2400F5DEB2B561B9AD67 /* service_config_parser.h */, - 6B9D2CCA84E9768DD64ED2302D0DB06F /* single_set_ptr.h */, - A72E0E9E243C57737901FE4ACF35D259 /* skywalking.upb.h */, - A310544C60E5C221BF27C5CE95CC0CFE /* skywalking.upbdefs.h */, - 954DE2846E6D97CCB538E7A20E709212 /* sleep.h */, - 31538717DE44174F76E7921728F0ECFF /* slice.h */, - 27F655A7BC1E2925D46BAD3740135D3B /* slice_buffer.h */, - 08937DD8CEA1E5C6D1FFD7BF2DAAC6E6 /* slice_internal.h */, - A5AAD1B37ECC49505758A64FDF845AA2 /* slice_refcount.h */, - 6499ED3474FFF05C0E5B27761D1C05D5 /* slice_refcount_base.h */, - 4F0708D2CB74F4243A26E9D51244D42F /* slice_string_helpers.h */, - 30F5F23419385F4B50AFEF1B5CA651E7 /* sockaddr.h */, - AA8EA63598435068637EB92513E25E03 /* sockaddr_posix.h */, - 0AD5A08171A428E537C2520CD5F311E9 /* sockaddr_utils.h */, - 0ADE706F501C583FD117E2F804E2B02D /* sockaddr_windows.h */, - 7B104D9BB962879A60523880A0C8E931 /* socket_factory_posix.h */, - 8FDF86A9CE9EDBD7959EFAA5E87473F0 /* socket_mutator.h */, - A600817231945A583370FABE0FC9D9BF /* socket_notifier.h */, - 3BCF691DC99C8D9743A3AA74FF645890 /* socket_option.upb.h */, - 70D5EA727A8D7BA42C15BA41689F03B4 /* socket_option.upbdefs.h */, - 19ABBF7577C67551946CD8EF27D02115 /* socket_utils.h */, - 94BD6B76CE97E7FE1C34B8D46A71A2B3 /* socket_utils_posix.h */, - 5C706862ED66421F97CA47041AED9E69 /* socket_windows.h */, - 951C01D89D181CE3D71436E82A8CF70A /* sorted_pack.h */, - E1623AD4E106EF42A12BE6F4A8926843 /* spinlock.h */, - B5FD1CC94C881524E960128E42768BC7 /* ssl_credentials.h */, - EE6CE92A5E94BB910E4A068B8A7F7A9B /* ssl_key_logging.h */, - 6A50FA6F08C5FDFDD0B8AC25C59EE9FD /* ssl_security_connector.h */, - CADB821EEF7B32DC74157BCDEF6A9342 /* ssl_session.h */, - F3C81E35007D1F699291632281EB5C27 /* ssl_session_cache.h */, - 148E95C321C2475B0E99E04EB4B11E5F /* ssl_transport_security.h */, - 10B2E2A67BFD5580AC1757E458797646 /* ssl_types.h */, - D9C2CB7E5361E2775C6B4AB803907453 /* ssl_utils.h */, - E1BCB43F5ACED0B2A69428E1E0C26355 /* ssl_utils_config.h */, - 6EFDBF5DA1A166873F6C081E2010E6BB /* stat.h */, - 2DEFEFBC6DA2130ADB90992ADBA6042C /* stats.h */, - F721AC5581D35C86FFD072B5144336D1 /* stats.upb.h */, - 2FBFB689B8154175D5E4803A6C1F5C57 /* stats.upbdefs.h */, - 0769F7D0C203DBB52262FE517299C863 /* stats_data.h */, - D080E647D2209B72DE97459F80395894 /* status.cc */, - 113864E342C765136F0D5A56B210FB09 /* status.h */, - 4C28D633474CF61599409602163AB165 /* status.h */, - C2996EAF4B42FE90D8D845220A93C79B /* status.upb.h */, - A3E3233D995B2BC8E7817318911B7B70 /* status.upb.h */, - 7ADD54AF90C2C87BE9129B46B64BDEC8 /* status.upb.h */, - 29E5C156BBAD95179DEA6EFA2CC24305 /* status.upbdefs.h */, - 2FFCF45E8C2CC492873013C2661F5E3B /* status.upbdefs.h */, - 74F2EF95FDEF519CE85D84228040B69B /* status.upbdefs.h */, - B0D6BEFD9528010EECB07970CB425B0E /* status_conversion.h */, - A10CFFEC42056D53EFA828DD8DDF9758 /* status_helper.h */, - B1C19B402B6BD2FE38CAB50FEF085788 /* status_util.h */, - BADB32D388C4921A668EDC5E1DA0AD17 /* stream_map.h */, - D825C55CBD86EDE548F326999266D7F7 /* string.h */, - 23E140B7B8465179F585CC67FB7ACC7C /* string.upb.h */, - 8D0CA8486581ADBC2362788F8FBD96DC /* string.upb.h */, - 186E07F8A9CA37AFC47C52BD0872617C /* string.upbdefs.h */, - 8D37120699B40C0605266C112A938644 /* string.upbdefs.h */, - 276AE43E74DBB5BE91261C42A21F1DFC /* string_ref.cc */, - 1C42BC7313685B7674C0A791D2A72E38 /* struct.upb.h */, - 61C198A4B5670386EC74AA48413C6D88 /* struct.upb.h */, - 31BB11A7E6D72A36B63D01368E38939A /* struct.upbdefs.h */, - A501483E8B822A0B814FC13801F2C284 /* struct.upbdefs.h */, - 8C9331B71B158937C138EDF9DCFF23B7 /* subchannel.h */, - 54C25DAA2253A55609D9120E82A6957A /* subchannel_interface.h */, - 1995FCF1B624CAA490E946B40CCD18FB /* subchannel_interface_internal.h */, - 00609AE4E4C3184533D744B9A30CC431 /* subchannel_list.h */, - CAF8524A716D611F8A5581F107F52FBD /* subchannel_pool_interface.h */, - C6BB651F60B4112E1C9DC2EB8FC9970F /* subchannel_stream_client.h */, - 75DD5BF8D95AA27C2637D80816D3A30C /* substitution_format_string.upb.h */, - 36BB80B8E1EA2FF2786F608B078DA8EF /* substitution_format_string.upbdefs.h */, - 9D0E86CEBDDB31540D17980B39256929 /* sync.h */, - 98866ABCB9191514A9F591B7FAC0E62B /* syntax.upb.h */, - C512AB1E093E5AD78494F964236C3508 /* syntax.upbdefs.h */, - 487BA1CB8FAB8A6FD229DD996EF9AB9A /* table.h */, - 082E49181F163988C9DB0E41034DCB96 /* table.h */, - 7EF3F6E397FCEB3E72052EA27B3F13FC /* table_internal.h */, - 4DCA0588686078EBF559251C99D85422 /* tap.upb.h */, - FDC357D9B2DA0DC945D813E7985E2DBB /* tap.upbdefs.h */, - 6747F980D1FB521C984E987FE2A1DD62 /* tchar.h */, - 3C7AD5BF274896C2D7B990B777A63999 /* tcp_client.h */, - 59915C66E81FA26B40805A8DB514E1F2 /* tcp_client_posix.h */, - A0AE58AE062E9DC688231F1E586A8F04 /* tcp_connect_handshaker.h */, - 2B097773EB8859DC62C5F211C7FC588D /* tcp_posix.h */, - 9A89AC2EAC9A7D029B95EFF11FDACC7B /* tcp_server.h */, - 655F0313FE586FC42B0F470D7F116EB7 /* tcp_server_utils_posix.h */, - F99A33B60C6433761912B85D85A09CF2 /* tcp_windows.h */, - 84DBC34CB824C9FDB85E6A78932C4484 /* text_encode.h */, - DD10F7256FDD72CB5B38A204933FDEFE /* thd.h */, - 9F4D190F3C75B4879C3B3478C0264BB1 /* thread_manager.cc */, - 270A610065256330E8535BA38ADAE627 /* thread_manager.h */, - 028AB0B787DB2506AFC3C767B60CE71D /* thread_pool.h */, - F5BB523CA69AC1EACC5F432980DB8766 /* thread_pool_interface.h */, - 5FC82169E23A83F404FC9210514B4663 /* thread_quota.h */, - 0475F33986AB736E29D0789982EBBA3F /* threaded_executor.h */, - 425D58437AF65185850AD1738BA6E4ED /* time.h */, - 43276600EC6EAE64185A8F8A6263CA00 /* time_averaged_stats.h */, - 8A19B8C20DA4CA4B9B522E9C73E7E500 /* time_cc.cc */, - D4BD0B25405CDF3E185B7EB2C11AA568 /* time_precise.h */, - 4B1407F033A3518A8532DD705304F466 /* time_util.h */, - D58250B67622E0885735B8E68B74D8F6 /* time_util.h */, - 5DA515DDBC6DB17BF5D9035F8FCF91B6 /* timeout_encoding.h */, - 81FF50584EEE39E0E1601504C2917C96 /* timer.h */, - 00E070AF0A0D570AA32BCF71D39C1C4E /* timer.h */, - DABA218AAD32FCAF1F69EE2E9395EBE1 /* timer_generic.h */, - 6382414CC02CB218E2363A66E296F53B /* timer_heap.h */, - 340B5E56498E6EF7492DAC663857867E /* timer_heap.h */, - 3BACF8DCC4AB40857D5741211D1E5EE5 /* timer_manager.h */, - 910C67E60889CC19B7C747B9B9025E07 /* timer_manager.h */, - 8A312DABDC0469C0664D6E045F608BF1 /* timestamp.upb.h */, - BF67D8E88F34C35D3AF370D64825472F /* timestamp.upbdefs.h */, - B64911E21E17884C2A0DE1DAE27AECFE /* tls.h */, - A174B32346BC7E5E49B52038764DE210 /* tls.upb.h */, - C3305968FF0543665BC614A27723F5BC /* tls.upbdefs.h */, - 80ABAE17CFDAFA8A6FC6E016036E6549 /* tls_certificate_provider.cc */, - B304F7BD214B7464DA74D25E193436D5 /* tls_certificate_verifier.cc */, - 00A259C3A6174660FA72514B4A203212 /* tls_credentials.h */, - 6DD3829D0B6F243C9BE2C6414DD5B1BD /* tls_credentials_options.cc */, - 4FD27341A0A00B409A56F98B50F74B70 /* tls_security_connector.h */, - 4305DDACB736A7FA28EFA8562BA8204A /* tls_spiffe_validator_config.upb.h */, - EC5F3AFDE0651C5F2482CF9FFB8310CB /* tls_spiffe_validator_config.upbdefs.h */, - 8FAB184EDFF10B625D62C6DD4F6E019F /* tls_utils.h */, - C28C366BC02EC0B45971B167642AA847 /* tmpfile.h */, - B71CF98D12C01499736E4252929498F4 /* token_bucket.upb.h */, - 82C9B6412B8932479735E94CC934DDCB /* token_bucket.upbdefs.h */, - 6A87E9C209C3BD82B43A7A406C094F41 /* trace.h */, - 32C86FED17DD95F9B7C6B6E64438F05A /* trace.h */, - 14AFFEA6D12735FB4196FAFB7E399C3F /* trace.h */, - 5AD05BF198C92840A113BB63ABB626A7 /* trace.upb.h */, - B4506DB31A7BECF90EFC74D9C93C44AC /* trace.upbdefs.h */, - C423E40113C2313E3E064E1040D13D49 /* trace_config.upb.h */, - 306175127D60E11E57515EB8E9BCF1B0 /* trace_config.upbdefs.h */, - AC3504771F4D31B13FEC676FAD30D6FA /* transaction.cc */, - CDD188B4285D6A22E5D5B80A604D57A1 /* transaction.h */, - C2E088B258034C4DDF834BD794150DC7 /* transport.h */, - 080A8157D303DB6C82C6A918214DD169 /* transport_fwd.h */, - 32D2E6A16B9A52394281683B7706D5EC /* transport_impl.h */, - 507D4D4C69EAA3402BC276141C61F415 /* transport_security.h */, - 702960BEF13540BFC2B118960A714A34 /* transport_security_common.upb.h */, - BA9B9EDCF29D7FD22271CB4ED3E858A4 /* transport_security_common_api.h */, - 3E604C81CA7C7A49D8494A10200E5BB7 /* transport_security_grpc.h */, - B451B4E67EE6BF7C0840828CC0B131EF /* transport_security_interface.h */, - B69D17F3254FA6BC4751F424967D265C /* transport_stream_receiver.h */, - D823691EBC3A2A72DFAA8EEE1089B7F8 /* transport_stream_receiver_impl.cc */, - 2A91BF0679525A06A66682783F9DD8C5 /* transport_stream_receiver_impl.h */, - 045D682F705DE385F3D68839734D5F7D /* try_seq.h */, - BEF81379C1125C914DABE47F631A3E5B /* tsi_error.h */, - 781A9EE810CA2662BE472692A5214E8B /* typed_struct.upb.h */, - A0E95C733269FFF7CEFEAC57EE5F5AEA /* typed_struct.upbdefs.h */, - 73904E35E3272E4B4F32DEF5EF36419F /* udp_listener_config.upb.h */, - B6E08BC63095ED074431E520176CAC4F /* udp_listener_config.upbdefs.h */, - DA32A10DB6DD5193293193AF26A75732 /* udp_socket_config.upb.h */, - C1CA4D9AB57BCCF6939312976EB4046F /* udp_socket_config.upbdefs.h */, - F1E9C750906F68CBC1F36E60EBB506F2 /* unique_type_name.h */, - 9C1845A415116CF020FD93791AEDD185 /* unix_sockets_posix.h */, - 0C4BED0ACBE8292203F54DC3EAE6A267 /* upb.h */, - 9B460F58BA04917250F264D5CB0014EA /* upb.h */, - 892B3166A4777892545AD11693713149 /* upb.hpp */, - FB56314023FEFE8D7BEB0975EF14AEED /* upb_utils.h */, - 9A408115164A172F3148FAFFAF54D060 /* uri_parser.h */, - F70D4DDD4E03477375B2623017F8D993 /* url_external_account_credentials.h */, - 993B7D504BEA09B730554F884D0A6336 /* useful.h */, - 4A2BC83680056E5E24FD01A22FCECCD3 /* utf8_range.h */, - 65155D084FBE12372CBA1E8DA86CC4A9 /* utils.h */, - 1BB50308DCB51A0A5C426E4A32A8EE8E /* validate.upb.h */, - 3E4BAFF6F02A834FB12A45458BEC9303 /* validate.upbdefs.h */, - A8D0DD280B143554F2857DC8936CCEB5 /* validate_metadata.h */, - A1742B7852233B3BE66B19852EEA8C8D /* validate_service_config.cc */, - 2D71D6CA4DF4585FBC6033687F37E0A1 /* validation_errors.h */, - B3138F21581DC0670575757E42970322 /* value.upb.h */, - 4630CCD35443096D1E2FEEED400B0C29 /* value.upbdefs.h */, - 24CA1050C14DC6980DC2AD21A288BEE0 /* varint.h */, - 74EFCA2DF419196BC78BC76A2B6E0B2B /* version_cc.cc */, - D9D5761B1CE7AF87935B073653B703A2 /* versioning.upb.h */, - FD746BFD80A5E85B5D0273E5A13A3AC3 /* versioning.upb.h */, - 17485351CF313B46A05549E8FD2DC7DA /* versioning.upbdefs.h */, - A115D02F9E655A9AD1CAEA47F2ACC61D /* versioning.upbdefs.h */, - E844888B644DF497E4517D69113F6341 /* vsnprintf_compat.h */, - 882FA820A914F9DB47B274DBD324DB86 /* wakeup_fd_pipe.h */, - 27A9E6A0806AF85250E525868F402413 /* wakeup_fd_posix.h */, - 43473412FF8B04FB6CDF0EBA049B58F1 /* win_socket.h */, - C346FB307EAB43E4890CD3B08C48FEBB /* windows_engine.h */, - CBC31EEA38EDE4AA625C923A3F2EA18D /* wire_reader.h */, - F1A1D7DC3E8AE3C71CCDBCB96406AEE3 /* wire_reader_impl.cc */, - FA63B277E7E03FF01AAF88D44D696294 /* wire_reader_impl.h */, - D113D84DF0155F3528589F888FC9E10B /* wire_writer.cc */, - A6BC8DBB3746C8D11AF8FC08B11F99BD /* wire_writer.h */, - 08399C9C3F27E53366882DB35ED50185 /* work_serializer.h */, - 5B685F791560C3DC98995CBC0FAE3369 /* wrappers.upb.h */, - 1E1C9FD5EF1187307DC346C3FCC240A2 /* wrappers.upbdefs.h */, - F10A4554F7A5BB1826B7D655C53D7B49 /* wrr_locality.upb.h */, - 3A77CACF24E2E68E9FE8D4A93DF64164 /* xds.h */, - 54F6335D179B673204FEAA39B5D88F7A /* xds_api.h */, - ED85B398BCA394C5CAC493A176806EF2 /* xds_bootstrap.h */, - 77219182BFDEF6186E5BC5DB15F3CD6D /* xds_bootstrap_grpc.h */, - 28A15E10BAACFA7CBF7DE5D45A81919E /* xds_certificate_provider.h */, - 4DE350BCAB150FD0C901C800523B0F62 /* xds_channel_args.h */, - 01D0E5674F05545B5552AA408D4A478B /* xds_channel_args.h */, - BDF943B7A09E38058DA9A9B22C24FE6E /* xds_channel_stack_modifier.h */, - C64C3CBC9FDC946919B982478C692E19 /* xds_client.h */, - E9BD16718BBC907203D2A917F8413F87 /* xds_client_grpc.h */, - F2DCA550A82D165F78F645482A91E00B /* xds_client_stats.h */, - B4BD71324832E53F4E39287E93D70953 /* xds_cluster.h */, - 2BE5A8A0969AB2C5BCA16A49B7DB030A /* xds_cluster_specifier_plugin.h */, - B75E4169D83E141C565BBCBCBD9FEBC6 /* xds_common_types.h */, - FC77134EB051265501BF65EC2F3BE4A4 /* xds_credentials.cc */, - 6FA47BDDF869028EF54071F0C5696B47 /* xds_credentials.h */, - BEF813D74DFC4C59AFA9BA042DD9ACEE /* xds_endpoint.h */, - 032E3A2530C69F7CEE12F5F16AC3AB63 /* xds_http_fault_filter.h */, - 051B374A3FE406984A474A5230AB898B /* xds_http_filters.h */, - 9FA1B513CD394CDC8478B730059E1409 /* xds_http_rbac_filter.h */, - 3F5790C6D4AA210C8AE0821F86AB2270 /* xds_lb_policy_registry.h */, - 1345E13BA4FDBB3AFFA68283018BDF09 /* xds_listener.h */, - 338C41D1810425B51CE75208980BD225 /* xds_resolver.h */, - 304C032D2BE426AA583E780E60E8D0D4 /* xds_resource_type.h */, - 0E64860B290C852337A2A5932B52373D /* xds_resource_type_impl.h */, - 4927744B72E21892CC18EFA818CE3E71 /* xds_route_config.h */, - AC8AC73E3AFD7B618E391654E911B0E8 /* xds_routing.h */, - D09A90F68983DFAB4F7132A6AD9C9CEE /* xds_server_credentials.cc */, - 71F8D8801DF0CED87D136EBDCF27594D /* xds_transport.h */, - 10D6B330AF38EF6E0473A1D898D0581E /* xds_transport_grpc.h */, - 0548C87ED687A4B5A91049F19F9B237D /* xray.upb.h */, - 705AFF135185C9A6F901F184A2232449 /* xray.upbdefs.h */, - B5E71F87BD6147B0ACDFF286973E25B0 /* xxhash.h */, - 9B6426BB091FEC3121191B22CFD06518 /* zipkin.upb.h */, - 6C9B8D4D905A6C0BBB20FB6A1F4DDA97 /* zipkin.upbdefs.h */, - ); - name = Implementation; - sourceTree = ""; - }; - CBEA266B810E0ECD91FE70ED178E8655 /* FirebaseCore */ = { - isa = PBXGroup; - children = ( - BD3B5A3389E890060AA5312DAFC38BD9 /* FIRAnalyticsConfiguration.h */, - EBA0D2779EFE92A09DF5EE5B8DA769C6 /* FIRAnalyticsConfiguration.m */, - 0946FC2DF4D5FDB95B1C7EDB92A11A4D /* FIRApp.h */, - BDEBB779B477D84368ABA56B12C63F83 /* FIRApp.m */, - C954E279229A719F98B3AF78ED6E2450 /* FIRAppInternal.h */, - 4D8EB38A995B5AF22AF854DE8AB8EA09 /* FIRBundleUtil.h */, - 69C61FF6745919F7D8F5093F81A37A72 /* FIRBundleUtil.m */, - 81254AEBF64CAAEABF9CE39E14A1F6E8 /* FIRComponent.h */, - 528027506D85A397F6562989C0C2F59A /* FIRComponent.m */, - EEA56E65FAF348D729981017A5F14C67 /* FIRComponentContainer.h */, - 642BEF8EE7132285CFAA9EDF81B8E84A /* FIRComponentContainer.m */, - 9D63E56A12BA8266A2FE25DF52DD4602 /* FIRComponentContainerInternal.h */, - 00C832DBA6BD9A4E192A90F2731ECA42 /* FIRComponentType.h */, - FF20D92329942D51EC5773CB25AD6BE1 /* FIRComponentType.m */, - 057F035ACC2998725CF70C872F4790E8 /* FIRConfiguration.h */, - 2B2D414CA7624F038046DDB7FE5ADCB4 /* FIRConfiguration.m */, - FAA87742812B17126B4DAB52086E00B5 /* FIRConfigurationInternal.h */, - 6F8CB18879EC98AE843656870383C5D8 /* FIRDependency.h */, - EC41380911574852C9C8C724B19989F4 /* FIRDependency.m */, - 6D5212585C96DE98714922B74EF543B4 /* FirebaseCore.h */, - B35637FBB9E159D0CE8786B3B384B9B5 /* FirebaseCoreInternal.h */, - 7BC78361E2418972309D5F09D5C14A3C /* FIRFirebaseUserAgent.h */, - FDE0DE004BED00EA46222108331A7C6F /* FIRFirebaseUserAgent.m */, - 901859CA44FE775E9DA45F0D436FE4C5 /* FIRHeartbeatLogger.h */, - 02ABA4F510562E5E7622ABAA7CCE5DC2 /* FIRHeartbeatLogger.m */, - 06798116C4E7B8499CA6A421EFA54594 /* FIRLibrary.h */, - 047277A00655CDE380B5780A009C2CA0 /* FIRLogger.h */, - FCDB429977FBFE702FBAEEBDBC12BF65 /* FIRLogger.m */, - 272C40603E0783146AB87E36FD410B4F /* FIRLoggerLevel.h */, - E5613AE04DD9A8188293551C4FB93DDC /* FIROptions.h */, - F8FCF19FB737BB4F5D7E00C9FA1F0112 /* FIROptions.m */, - DDE1AF07776869A16A9FABA838FA5754 /* FIROptionsInternal.h */, - 626ACD30A6B524FE908495C4DEFE5EE9 /* FIRVersion.h */, - C33649CF93677841818A64DDB69DA564 /* FIRVersion.m */, - B4B99EDF566ECD27C83F4F7A2E9CD9E9 /* Support Files */, - ); - name = FirebaseCore; - path = FirebaseCore; + name = "Targets Support Files"; sourceTree = ""; }; CF1408CF629C7361332E53B88F7BD30C = { @@ -23443,286 +144,18 @@ children = ( 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */, 313FE5FE915A4A924C55AAC02A910D61 /* Development Pods */, - B94D7768568A9992200DB461E8CF687F /* Frameworks */, - 8BEA68BC63354ED38FC4593B933B7FB6 /* Pods */, - 85F37E7F441CC1F63730E682742157AD /* Products */, - 11C970DEAE48C6D0282DFE54684F53F1 /* Targets Support Files */, + D210D550F4EA176C3123ED886F8F87F5 /* Frameworks */, + 1F86AA6785DF34AFD5A71790761717DE /* Products */, + C9F6DDEE5D76F65BB478A349731F54F4 /* Targets Support Files */, ); sourceTree = ""; }; - D1ACABC1F117324728A8532DE271B249 /* PromisesObjC */ = { + D210D550F4EA176C3123ED886F8F87F5 /* Frameworks */ = { isa = PBXGroup; children = ( - 23E482D3CC9190C930BA642306292C63 /* FBLPromise.h */, - 9A66A991AFDA73024CA4A83E8C419108 /* FBLPromise.m */, - 1FC764A39A8FE7D34672ED38C9EAA10D /* FBLPromise+All.h */, - 1FF793B9627F482170B778D0008FA182 /* FBLPromise+All.m */, - 3073966C67600A5F83E0808ADFC8CFD2 /* FBLPromise+Always.h */, - 88414E1C0DFD595D44CEF5FF5C6E38FA /* FBLPromise+Always.m */, - 98F3546FA89C5563049C8DDFD3987A8E /* FBLPromise+Any.h */, - 28FD5E2CF767D85250B386948985D0BA /* FBLPromise+Any.m */, - 1F85AC87B6B1AA44555EE31427B6CA0D /* FBLPromise+Async.h */, - A27F4C00F2AD8F30F5DC0B8435E3B604 /* FBLPromise+Async.m */, - 7769E0E7742F21A2C08C647ADAA55AE2 /* FBLPromise+Await.h */, - B9CEAD2D3F762055E985F204DA523806 /* FBLPromise+Await.m */, - 38FC2742B4198EFD796D9BA5C3EAEE8A /* FBLPromise+Catch.h */, - 9ADBA98D7CD5EF4000C9201DC41DD158 /* FBLPromise+Catch.m */, - A7921AFE336345CA7A451D685B145835 /* FBLPromise+Delay.h */, - 64A38D50022AC8327753F04316558DFE /* FBLPromise+Delay.m */, - A0D6F30A1027F876001E369F423D2CFB /* FBLPromise+Do.h */, - 2E159FB0F890470CE0468CA58CD19B20 /* FBLPromise+Do.m */, - 152D6F8B919BBC43A50DCDBFBB9DD0C4 /* FBLPromise+Race.h */, - 6D7333B2081D82C8BA9F5E1CF0A69AA3 /* FBLPromise+Race.m */, - E478955BCA73AF89E2A24E9016E72E34 /* FBLPromise+Recover.h */, - A2851D59348D115D65B81B680B1C5F91 /* FBLPromise+Recover.m */, - 9C0FAA708D3C1C36DC535530C3EDA4CA /* FBLPromise+Reduce.h */, - 79709D5E1343CAC8CC88A7D66F06F15D /* FBLPromise+Reduce.m */, - 910FAB6E3C21C0E2C2674AC3C15DA542 /* FBLPromise+Retry.h */, - 2A4A215704866E10D9865AF9387F25FA /* FBLPromise+Retry.m */, - 87AE9EFF3CD25BE35F438224784E372D /* FBLPromise+Testing.h */, - 59D62B24DC860D53550EFABCF1159A6D /* FBLPromise+Testing.m */, - 8D2578513CB6EEA16F28F9B0B4F36BD4 /* FBLPromise+Then.h */, - E15B41845B38D1923F989BC14A2A7621 /* FBLPromise+Then.m */, - 658E2E2D689692259EBE738972B52BB2 /* FBLPromise+Timeout.h */, - 1B8A5C27DD761FCD7082FFBDC70E736C /* FBLPromise+Timeout.m */, - EAA6B469339FF8B3EBC771E2F8E21BBB /* FBLPromise+Validate.h */, - B478908D138FC80D3F1A294EBDA76D04 /* FBLPromise+Validate.m */, - DF3CDC560364BA1846587C4052FEC4DB /* FBLPromise+Wrap.h */, - 73C9FA249A5F6F6BC7427B9F84A0E7EF /* FBLPromise+Wrap.m */, - 65B152465368906722D6829E6B49574F /* FBLPromiseError.h */, - 9C7AF2791725107CFB962B4EB8EFD66D /* FBLPromiseError.m */, - 7EAEA332AD600D2E333B9191954B32ED /* FBLPromisePrivate.h */, - 2410B066B2D0EE6C2450765410C2ED56 /* FBLPromises.h */, - 7BF40FC913B922AFC2CCE90FFA8DAFD2 /* Support Files */, + 578452D2E740E91742655AC8F1636D1F /* iOS */, ); - name = PromisesObjC; - path = PromisesObjC; - sourceTree = ""; - }; - D3EAF368332BBA8DF692482ACC87E461 /* traits */ = { - isa = PBXGroup; - children = ( - D01EF5D6975F05F6DCCE20E325E16661 /* traits.h */, - ); - name = traits; - sourceTree = ""; - }; - D3F103CFF1699E6E00C05D17E2A4388C /* time_zone */ = { - isa = PBXGroup; - children = ( - C422C7895336F0FEC0037B4ABAC6E2F1 /* time_zone.h */, - 83E7DD1707FE6C7B1F53FD828397DEDE /* time_zone_fixed.cc */, - 9969F035A2907BA0E98792F1005BFA12 /* time_zone_fixed.h */, - 5F1347A6ACE5A7FFDE80F51E86B62AF9 /* time_zone_format.cc */, - A20FBD5D589AD4A3822ED6AFDF1FCF48 /* time_zone_if.cc */, - DAC3411B948A79F674993F64945111A7 /* time_zone_if.h */, - 8E89AEDF61E0BE66CD6E77AD4034898C /* time_zone_impl.cc */, - F8FEC4047D05C7FCD280CF5F87630BC6 /* time_zone_impl.h */, - BE09BEA995DAF5B5208088E2154007A9 /* time_zone_info.cc */, - 7D6F6587E2B9773CD8F2E3860F8BE665 /* time_zone_info.h */, - BA0E0886274B5593711AB4FF4BE3FA1E /* time_zone_libc.cc */, - ACD7B53A86A9AED4476EEF2050FD6B2A /* time_zone_libc.h */, - EE4811E5DB8598D3186D040D1177052B /* time_zone_lookup.cc */, - DC43BA3F886A7C912B2885C3E8AD6FEF /* time_zone_posix.cc */, - A2FBB82FC4992CA4C6AD9D537DDBB59A /* time_zone_posix.h */, - 1023D207CA9A892BC0F1ADF3F866AC62 /* tzfile.h */, - F224930808921BE4F210A6CCAAE592EE /* zone_info_source.cc */, - B0B59AFDC6C12D9FA86D8AA989D3C521 /* zone_info_source.h */, - ); - name = time_zone; - sourceTree = ""; - }; - D562D753C324B57A9BBBBF3BBFBD248A /* Reachability */ = { - isa = PBXGroup; - children = ( - 50AF9E86FF5C2CDFFCF1D849A09DA1D2 /* GULReachabilityChecker.h */, - 77B5513277BC5822D463B69ADC95F8AB /* GULReachabilityChecker.m */, - 0AA43F5227C5ACB14CA49123563CA91E /* GULReachabilityChecker+Internal.h */, - ED819F8683D5B8DB1299BF7148BAC0E4 /* GULReachabilityMessageCode.h */, - ); - name = Reachability; - sourceTree = ""; - }; - D913505A9F0372568F43B2BFA9FE5EE6 /* distributions */ = { - isa = PBXGroup; - children = ( - A2900DB0FAEF91A2665F824BF2CA8E05 /* bernoulli_distribution.h */, - 9DB099F422DEAE5C9819AC7ADB0AF1B7 /* beta_distribution.h */, - 17D95BE4C8D51C1E086ABF442672DC9A /* discrete_distribution.cc */, - 9E9255E30DE5392E33A0227FBF7BA275 /* discrete_distribution.h */, - B845BB5213F2A9ED12CDE34590DA2ABB /* distributions.h */, - 6F9F39A2395BB25D92BACA14424B978C /* exponential_distribution.h */, - 60F65B0E1AB5434E5FD6A5EDE06D8198 /* gaussian_distribution.cc */, - DBD5D1A7A6FF8951E79D73FBF5F9FFDF /* gaussian_distribution.h */, - 667E24C6A2AA29ABD2E5C1924C33B6F4 /* log_uniform_int_distribution.h */, - 3D4AE8F8BAE1ED57A44D83971C250970 /* poisson_distribution.h */, - 859BB94E68D3ECA7149DE29BA6B59C5D /* uniform_int_distribution.h */, - 1AB7C208B5F419F1ADF907917C8EDDAB /* uniform_real_distribution.h */, - 88D392182C0832BCEA0334B0DCD6F074 /* zipf_distribution.h */, - ); - name = distributions; - sourceTree = ""; - }; - DA148C6D839D785366462D067F5CE27A /* wide_multiply */ = { - isa = PBXGroup; - children = ( - 0E19542F1435FD16914CCB6487A661A8 /* wide_multiply.h */, - ); - name = wide_multiply; - sourceTree = ""; - }; - DA82EC904692126E1E84E8979D27C127 /* random */ = { - isa = PBXGroup; - children = ( - D913505A9F0372568F43B2BFA9FE5EE6 /* distributions */, - 22E8D78B1A4308B797736AF602D61EE3 /* internal */, - BEB111468B32145465A5E3425273665F /* random */, - 7EE405CB67C797C8E5F60F535E187350 /* seed_gen_exception */, - 87673F4D3864AA080BAB8D4071FD0B6F /* seed_sequences */, - ); - name = random; - sourceTree = ""; - }; - DC3237F19D7564B10496F271B1D0CB76 /* uniform_helper */ = { - isa = PBXGroup; - children = ( - 96E82519BC47272FA3E2117D8958D8AA /* uniform_helper.h */, - ); - name = uniform_helper; - sourceTree = ""; - }; - DCE6E46898AF64445AC96243F277F346 /* civil_time */ = { - isa = PBXGroup; - children = ( - 39CA2812BFD62B232487F55ED0915306 /* civil_time.h */, - 2AB5C82DE51F53DC758CDC53327096B3 /* civil_time_detail.cc */, - 3FB8A10139A04EDFB7C1D53279E7647A /* civil_time_detail.h */, - ); - name = civil_time; - sourceTree = ""; - }; - DCF42C8A775FDE69CEE82E922D86013E /* status */ = { - isa = PBXGroup; - children = ( - 01B83F8319266F0CB5F003D7EE703C95 /* status.cc */, - D74BED51A47FDC2F8564D6C2B1022C74 /* status.h */, - AE1AEDA0D286A91F35AFB762DB76FEF4 /* status_internal.h */, - DF0C326E369849C5A63D04E3186BC3AA /* status_payload_printer.cc */, - 6BAAF94F7474841BC5D09A557640A7EA /* status_payload_printer.h */, - ); - name = status; - sourceTree = ""; - }; - DE0F76EA71C7954FA4E1ACD8B29D02E6 /* functional */ = { - isa = PBXGroup; - children = ( - BB400D55CC91AFC26D1089A3A62E7D06 /* any_invocable */, - 1873F6D05880265FC7B47974984BD025 /* bind_front */, - 50082CAB67909D4F7E2289BABECBDA61 /* function_ref */, - ); - name = functional; - sourceTree = ""; - }; - E0B4AD3852F01CB702BC05AD80275A28 /* cordz_update_scope */ = { - isa = PBXGroup; - children = ( - 21C95DAB370F06245ABB72AACC88EEB7 /* cordz_update_scope.h */, - ); - name = cordz_update_scope; - sourceTree = ""; - }; - E2611D6D7F98952AC0CEF134C2A88B49 /* Support Files */ = { - isa = PBXGroup; - children = ( - E6422FBB67A95365AA8D224D2006DF11 /* leveldb-library.modulemap */, - 1326DA35ED700A0AD3AD884629AE89EF /* leveldb-library-dummy.m */, - 19FC241E6FF167DCF943DCB2DA505EEA /* leveldb-library-Info.plist */, - 319704F9A36EE4F96D23648FA6317B7E /* leveldb-library-prefix.pch */, - E14D924058E8A29436C3435693CC0FB2 /* leveldb-library-umbrella.h */, - 6F854111D4B5B60E7F3AB38CF52F8906 /* leveldb-library.debug.xcconfig */, - 76AD3B0135310ED70382F4F5D51541E9 /* leveldb-library.release.xcconfig */, - ); - name = "Support Files"; - path = "../Target Support Files/leveldb-library"; - sourceTree = ""; - }; - E2A11124C6BBAA28608A574AD5CDFEB1 /* malloc_internal */ = { - isa = PBXGroup; - children = ( - 5BE3EC3AC7EE796933EB91AF442728B6 /* direct_mmap.h */, - BA2E64DD32858C304968AD7F988A66F1 /* low_level_alloc.cc */, - A42C86430500DABACD590D16FE79A2E6 /* low_level_alloc.h */, - ); - name = malloc_internal; - sourceTree = ""; - }; - E6DEEA768B426866CE438488F0DA4C3E /* exponential_biased */ = { - isa = PBXGroup; - children = ( - BFB367A192FF65F971BBD18084894380 /* exponential_biased.cc */, - AFC43F118AA2CD9ACEF0DB3854781958 /* exponential_biased.h */, - ); - name = exponential_biased; - sourceTree = ""; - }; - E7F0BF372198FBC1E8D2A4F6B6F80925 /* decode */ = { - isa = PBXGroup; - children = ( - ); - name = decode; - sourceTree = ""; - }; - E839F810F3F2E5D96A14288E61FDBA3C /* utility */ = { - isa = PBXGroup; - children = ( - AEAC7A743D481BAE51F0D1CAACC0B82F /* utility.h */, - ); - name = utility; - sourceTree = ""; - }; - E91824CB73E95E5555AB5982A99AA5FF /* Support Files */ = { - isa = PBXGroup; - children = ( - F88682CD8145C299F6601426DFD34054 /* gRPC-C++.modulemap */, - D7263343A2CE8318439FA335E048B22B /* gRPC-C++-dummy.m */, - 0CB06F6DB7D63425784D848F9657E0AB /* gRPC-C++-Info.plist */, - FEB52A8FFB592D31FA115844F19DC186 /* gRPC-C++-prefix.pch */, - 47C519F120B972BAA62C106CDD15F9B4 /* gRPC-C++-umbrella.h */, - 210E6F0DC6674F29050A77F49C6C2687 /* gRPC-C++.debug.xcconfig */, - 309555DFE023C00AB4D7AB6290E3B0BB /* gRPC-C++.release.xcconfig */, - 2C015E5FA9579AD3C108A5110433DC31 /* ResourceBundle-gRPCCertificates-Cpp-gRPC-C++-Info.plist */, - ); - name = "Support Files"; - path = "../Target Support Files/gRPC-C++"; - sourceTree = ""; - }; - E9EFA77693440E96FB50DD0A9218AE38 /* debugging */ = { - isa = PBXGroup; - children = ( - B9AD996D967A6474F3BC3DEB126E0762 /* debugging_internal */, - 7BE01C05B72615C3FD3696B7D4D3CBE6 /* demangle_internal */, - 9CBC0FA2268E9D0528569237C9BACBCC /* stacktrace */, - 8914E65FBE0630FFA0782B605FF1ABFC /* symbolize */, - ); - name = debugging; - sourceTree = ""; - }; - EB491A9508742955B0FDEF33615A86EF /* time */ = { - isa = PBXGroup; - children = ( - BBE18F9347C3A4CCEB78CE1F9401FE2B /* internal */, - 7DE0C67A34838EC0DFA24150ED3AD03B /* time */, - ); - name = time; - sourceTree = ""; - }; - EBAF3676601B81DDE3677E38D07BD5EE /* randen */ = { - isa = PBXGroup; - children = ( - A83557986C46459181FF25BCD04D1EAC /* randen.cc */, - FA68B73040DF565D7EB1F0E6E7858688 /* randen.h */, - ); - name = randen; + name = Frameworks; sourceTree = ""; }; EEF3277DCE2E4B31CF76A57AB68C2BA1 /* shared */ = { @@ -23736,3450 +169,33 @@ path = ../../shared; sourceTree = ""; }; - F1583F2CFBD9B296DF5661B990FCC4DA /* base_internal */ = { - isa = PBXGroup; - children = ( - E78FBB22C6A320607961BB36F72F8943 /* hide_ptr.h */, - A662F9880184B8E8543950427DF18DAD /* identity.h */, - A3B6B704338E1D9AB7E752CFB91F4C63 /* inline_variable.h */, - 40AC164038E11F2390A9FB94AD128995 /* invoke.h */, - 82ABCC9E75A060497AF35665C90ED606 /* scheduling_mode.h */, - ); - name = base_internal; - sourceTree = ""; - }; - F202852F90108C1884DC20717CE9E4C3 /* dynamic_annotations */ = { - isa = PBXGroup; - children = ( - 0140638BBE5441051DE83716D249E419 /* dynamic_annotations.h */, - 0269E7C1031CBBABBD46E7ABBC01BE03 /* dynamic_annotations.h */, - ); - name = dynamic_annotations; - sourceTree = ""; - }; - F272F26889963C5E30ED6364B7093873 /* pool_urbg */ = { - isa = PBXGroup; - children = ( - 440C4807CB381042D513B5686E592430 /* pool_urbg.cc */, - DDD0ECC2DFF834BA66AF17E2A60A69A2 /* pool_urbg.h */, - ); - name = pool_urbg; - sourceTree = ""; - }; - FD0F832DDAAB82A58EF27EBFD53C1024 /* iOS */ = { - isa = PBXGroup; - children = ( - 6E336DC2534E1E69B7828F6012B874C6 /* Foundation.framework */, - 4D1F60313EDE14B0F8C5057996F65A9D /* SafariServices.framework */, - 6FCE3F16CF48113A9FAA51D9302C4AF0 /* Security.framework */, - 3B7879FD2FF62773440D4069832105C3 /* SystemConfiguration.framework */, - B8D4E74E7B09B3F7B88716B6D21DF50C /* UIKit.framework */, - ); - name = iOS; - sourceTree = ""; - }; - FE17CCD01291FEB9F79FE8855EAB82C7 /* variant */ = { - isa = PBXGroup; - children = ( - 5C8DB9B69197BB9C109C319C1AD91FD6 /* variant.h */, - ACFF85EC359F9CD76D234DBD92933B9C /* variant.h */, - ); - name = variant; - sourceTree = ""; - }; /* End PBXGroup section */ /* Begin PBXHeadersBuildPhase section */ - 028FB205E9509FE633D68BC560F460A6 /* Headers */ = { + DA71CB665A4F7860DB550FAA48FB6AD2 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 4FC6881BED250873B37AD0687ED34F68 /* accesslog.upb.h in Headers */, - 9515A3EFF5BFA3EED82E4DEDE57A97E0 /* accesslog.upbdefs.h in Headers */, - A9C2D910A2DE45BE4FB2A3D0394625CE /* activity.h in Headers */, - BB1127D384BBAE46187E344845F44C47 /* address.upb.h in Headers */, - 4D3226BE26E5FAD6D06D25FFF8374D42 /* address.upbdefs.h in Headers */, - 200655848B759115FABBA19C48B6EDA7 /* address_filtering.h in Headers */, - 4F53D5D29A3106F3F210782A06843A90 /* ads.upb.h in Headers */, - BADC004E5566865D260E0B26D186F64F /* ads.upbdefs.h in Headers */, - 4937D7BB3D1516496BBE419EDB740D2B /* alloc.h in Headers */, - 5645A455828597F7C5BCE5818B3CFE25 /* alloc.h in Headers */, - 1E5A83DE94BD19B1E006B26DF607047D /* alpn.h in Headers */, - C5434CF743479FE1AAB25C53CBAEC27A /* alts_counter.h in Headers */, - 39B20FF2FFEE6BEF6D3631139FDDB2F9 /* alts_credentials.h in Headers */, - 80103674F5C945C1C4075D1E5B99D77B /* alts_crypter.h in Headers */, - 625ABC8C2A3A5A040C16BF504907E044 /* alts_frame_protector.h in Headers */, - F2C5E906101B1FFEA9BBF720FC51F9F0 /* alts_grpc_integrity_only_record_protocol.h in Headers */, - 5F8C0A88974E91DC860F704614A26543 /* alts_grpc_privacy_integrity_record_protocol.h in Headers */, - 6010F619559BC110199343636EADB961 /* alts_grpc_record_protocol.h in Headers */, - 589556A1035EDEF74A0DC8E66DC8C5A0 /* alts_grpc_record_protocol_common.h in Headers */, - 7DA86CC0EF64BA4B948D16CFFE2B60A9 /* alts_handshaker_client.h in Headers */, - 6F492660F70AA308869B2B322414C0E5 /* alts_iovec_record_protocol.h in Headers */, - 38C34C1E58EA03FC8E23B80F80946001 /* alts_record_protocol_crypter_common.h in Headers */, - 2A4792614D9646077A64E0EDBF545F69 /* alts_security_connector.h in Headers */, - D325B176752ABC44A29A4DDF215032CF /* alts_shared_resource.h in Headers */, - C02FD5343C89734D46ECC32B74F14D28 /* alts_tsi_handshaker.h in Headers */, - 0B190F88ABC234D4EEADE2836E47561F /* alts_tsi_handshaker_private.h in Headers */, - 05FA5B56BCDE2EFB8887D2FED48FC2ED /* alts_tsi_utils.h in Headers */, - 61831427BB23A585BF5977D253EF44B7 /* alts_zero_copy_grpc_protector.h in Headers */, - 2AE2DA938F11063B930AB683E9A52D3D /* altscontext.upb.h in Headers */, - BABEC22348D47D66DE02F64451424568 /* annotations.upb.h in Headers */, - AEB71260EDD5A8264F0706347F955AC9 /* annotations.upbdefs.h in Headers */, - 2488D3A229F8FC1F04A2CD13A1C67E35 /* any.upb.h in Headers */, - 95501B9777316AD07E6B785150D3171B /* any.upbdefs.h in Headers */, - 91AC5C54838A03386F44976A5E379D07 /* api.h in Headers */, - E7F79AD07E2702617A18278FC8A6D1E1 /* api_listener.upb.h in Headers */, - 3BC88C0156384BC8A3816EAED5E0B64C /* api_listener.upbdefs.h in Headers */, - BCF904820E3688D015DCFB1E1B2AFF82 /* api_trace.h in Headers */, - F97A9F5AC2F99C384E343BC24F401B76 /* arena.h in Headers */, - 11ADC20F268E57A6CD79C3646B36E74F /* arena.h in Headers */, - F210B6A4E20A613E10BD3436B6DBE3C7 /* arena_promise.h in Headers */, - 8B7FBB548B2056D6D5650862B9B8F8FA /* array.h in Headers */, - A54393EA2A3FB4F96D47FFB8C5BE850C /* atm.h in Headers */, - 705084F1E85278128F60B75D2DEE7CD5 /* atm.h in Headers */, - 6AAB00295F3915100B2FA1B9440221ED /* atm_gcc_atomic.h in Headers */, - 2BD31AA3193EB2CA26CB55819C574D7D /* atm_gcc_atomic.h in Headers */, - 0CDF49B28667344FD9BE273364BC2E3A /* atm_gcc_sync.h in Headers */, - 11E26A706CF6FF9EF6C770A5EFCAD699 /* atm_gcc_sync.h in Headers */, - 33769D79163E2A123F040B24B65D09E4 /* atm_windows.h in Headers */, - CEA28DA0BD5BF72410128F64A93EC1D0 /* atm_windows.h in Headers */, - 46DEBC6B46C108F176E6FB0B20369915 /* atomic_utils.h in Headers */, - D3B2F05104AB63182588A2F80AEA807E /* auth_filters.h in Headers */, - EC9A2B3CFD07B86FC29FAFB5016CB94C /* authority.upb.h in Headers */, - CD7325949822FD08AD57C0D5979F9496 /* authority.upbdefs.h in Headers */, - 7CFB53E44051AB4343D32576B1E84958 /* authorization_engine.h in Headers */, - 1F1D649A8CF85803EF14B8D1BF6B087F /* authorization_policy_provider.h in Headers */, - 21531BB3D35F8626DC6A6EE867D004E3 /* avl.h in Headers */, - 40378E96C8D663B248558B0A1BFDD596 /* aws_external_account_credentials.h in Headers */, - 0A3BA1C3991779C29DF59701214D309D /* aws_request_signer.h in Headers */, - 711842EF5DCD0C4A970183DD06BA3C65 /* b64.h in Headers */, - 5B33131EA9BF1482429CFBA910DC2477 /* backend_metric.h in Headers */, - DB26277C69D779F2E760C6C75FD9C94B /* backend_metric_data.h in Headers */, - 3972F4236D0633B95D15220634990BFE /* backoff.h in Headers */, - C508CA610DC3775B7910F127E1B7FEE3 /* backoff.upb.h in Headers */, - F1A17BA09C86E68331C1CD26C616C7A0 /* backoff.upbdefs.h in Headers */, - DB4D0E2E6ABAEA00AD4FFA9530AEF72A /* backup_poller.h in Headers */, - 2C64F2EC92B8E1463C2AFA531DBD8B8B /* base.upb.h in Headers */, - C81FEB7834F851E28594AFD46D5FD433 /* base.upbdefs.h in Headers */, - 5618D4C383379A1AC554B71C2A96C771 /* basic_seq.h in Headers */, - 96432A7D39633F0BEB9617ECB59CC393 /* bdp_estimator.h in Headers */, - CA47E5D4B0199D00571EB7D0FEA61BC6 /* benchmark.h in Headers */, - C9B353192FD4A7574C5FCC92E67EC49C /* bin_decoder.h in Headers */, - E0357A77AC407BABD5A3E613209B2D72 /* bin_encoder.h in Headers */, - A36C7597FD62234A7FA11714018579D1 /* bitmap256.h in Headers */, - FDABA14691C2A8038D808A74A0C5332A /* bitset.h in Headers */, - 313B5E940C9D6B2D7FDB9E59F5A55999 /* block_annotate.h in Headers */, - B5F7D0749571ECFDB50BF83284031A31 /* bootstrap.upb.h in Headers */, - 99DDC95E2DDB1FE9C1DD7D029FE99A57 /* bootstrap.upbdefs.h in Headers */, - 2DE3F6B7271D752A4E770C63BB301F37 /* buffer_list.h in Headers */, - 3280FC526D996B3C2BE62FC1EFD9422A /* builtins.h in Headers */, - 5946AB85728A882F6A685E47AB242A97 /* byte_buffer.h in Headers */, - F6102B31A820BEFE0E55680D2896FD4F /* byte_buffer.h in Headers */, - E6046D1E436161F971D5955921D01220 /* byte_buffer_reader.h in Headers */, - 79D07D8EF04EB4AE29B2B9FACEBB574D /* byte_buffer_reader.h in Headers */, - BEF905C6C7163917B49B856E0723C97B /* call.h in Headers */, - B34CC3BFBA0B4BCD022EC7BAEEB3D963 /* call_combiner.h in Headers */, - 8206D46979E9C41732FAF6DCC71FA1BE /* call_creds_util.h in Headers */, - 0DDB7C43640555A333E81424DCF791D7 /* call_finalization.h in Headers */, - 13F4455AF598E8DA76CE69196333A490 /* call_push_pull.h in Headers */, - C35B910577FB83530E26ADBE5C30982F /* call_test_only.h in Headers */, - C9B9DCD761673A29DC4ED8D3970A2424 /* call_tracer.h in Headers */, - 414995D2CB4E3A2472C8341D9D784781 /* census.h in Headers */, - 77218CDD4D39276CE8B0CEE8797D4C42 /* cert.upb.h in Headers */, - C1967EDCD22AEC8B8095C86B0C26CBDC /* cert.upbdefs.h in Headers */, - 9D6569919B9033218BB043C17DEF58CE /* certificate_provider_factory.h in Headers */, - 04112E4F99BB7F6F68F0E87B671E7BAF /* certificate_provider_registry.h in Headers */, - AE53405D37C0CAF35F706C0E972EED21 /* certificate_provider_store.h in Headers */, - 812BB07E2042DC81355A23F0F0BD23EF /* certs.upb.h in Headers */, - BA8105D9427F448DD99C099BF91315C2 /* certs.upbdefs.h in Headers */, - 94F27BD1940A0672F09147C5A661076D /* cfstream_handle.h in Headers */, - CF9F2858BD51E0E2A41933EC100F0B4B /* channel.h in Headers */, - CD4052EF79AEEED5185653910F8FEF9C /* channel_args.h in Headers */, - 38DAB6896B2988126000A0EA8D6ADBB0 /* channel_args_endpoint_config.h in Headers */, - EB0058DCD63EA71EAD8EDFDCCD3663E8 /* channel_args_preconditioning.h in Headers */, - 14BDB52A020676FECDAE6BDE51F112B5 /* channel_creds_registry.h in Headers */, - 77FADAD9A122AD80F1AC3B794EEA1312 /* channel_fwd.h in Headers */, - 7A060326BBA5C00308011EA49C3A2F6D /* channel_idle_filter.h in Headers */, - EDE7D23862C54C21D8279FAF2CBD7893 /* channel_init.h in Headers */, - 48CC0D304F36B12B73A6A3BB3D23E9A3 /* channel_stack.h in Headers */, - 545CB4047D796AB7E9671ECF368378AD /* channel_stack_builder.h in Headers */, - 9E5575788405CE393292593E852933A8 /* channel_stack_builder_impl.h in Headers */, - 470D0637EF9121D88C1680F5B6AD2D54 /* channel_stack_type.h in Headers */, - AAFBBE9A75A5BDA1A4F7D30DBD20D79A /* channel_trace.h in Headers */, - F3BCD91999D9296EA9B529FA37AD741D /* channelz.h in Headers */, - 06FBE71AF4CE85B9E712088B34E58382 /* channelz_registry.h in Headers */, - 08C74F636398CB141EAEE7E6F367DFB1 /* check_gcp_environment.h in Headers */, - 252D18F82CB40392B3FF160DFC51F8C4 /* checked.upb.h in Headers */, - 44C59EAEEE15C9CF19F457EECF85BDAD /* checked.upbdefs.h in Headers */, - F498A771BF7685AFFFD924C3877A3554 /* child_policy_handler.h in Headers */, - 67F8DEB8780F6A9596CE0116DEE6944A /* chttp2_connector.h in Headers */, - ED9EA0D29B51CA3CDE90D79D859782BD /* chttp2_server.h in Headers */, - E8BCF4F20919985A45754D4683A1A043 /* chttp2_transport.h in Headers */, - C880ECBF1D57964845A7FA88886CB126 /* chunked_vector.h in Headers */, - 44DBA375E28B69A18E38203F0A587871 /* circuit_breaker.upb.h in Headers */, - A169219036DBE79C43D61EB4B566C638 /* circuit_breaker.upbdefs.h in Headers */, - 925DA47282CC3A73610854802DE531AD /* client_authority_filter.h in Headers */, - BFEC2D829667843901691588084C301B /* client_channel.h in Headers */, - 50FDE90EC67D2DF49B1DECB43C64EC5F /* client_channel_channelz.h in Headers */, - D3C80333F222A01DEDC6B79679E068F7 /* client_channel_factory.h in Headers */, - 28BF48AE8594AAAAAE4476FE52E25E65 /* client_load_reporting_filter.h in Headers */, - A7D4D9E663E2E84100E24D588BC39A1E /* closure.h in Headers */, - 4790F9FABC98A9841A6C1DFF437BE46F /* cluster.upb.h in Headers */, - 213508C832F15259C0E01DDA0010CF95 /* cluster.upb.h in Headers */, - C6B4A4AD6DDC2C3044B471510418E99B /* cluster.upbdefs.h in Headers */, - ED1270586AF87FF0BC2B4A8D0C7FCD64 /* cluster.upbdefs.h in Headers */, - D50E6BD0592491077B89FEAA68074F50 /* clusters.upb.h in Headers */, - 33FE2EDA808CBDE7837F131D1675C25C /* clusters.upbdefs.h in Headers */, - B3D6C7524B5E8F23F5FF674A2DF95C62 /* collection_entry.upb.h in Headers */, - E5823BA9C40BB6A515C5C422D70DC3FB /* collection_entry.upbdefs.h in Headers */, - B19120B99DDEC75D25FA65325B560424 /* collections.h in Headers */, - 6F6BA247BACF1682E43A99CCB47F144F /* combiner.h in Headers */, - A4055A00B528BAC90E63401EB2EA9F23 /* common.upb.h in Headers */, - CA3D83EB64FA6BA56232E889F0AB826B /* common.upb.h in Headers */, - D32D09272746A76379255FD65671E19F /* common.upbdefs.h in Headers */, - 5444CB8C823BE866006D93E88EEE2BD2 /* common.upbdefs.h in Headers */, - 5B26682CC3B96C2A0A493C91509F39A9 /* completion_queue.h in Headers */, - A72ACA7801DB82799337B0C02A0B04A8 /* completion_queue_factory.h in Headers */, - EA60163A34BE55BF0F39CB84FBA92A6A /* composite_credentials.h in Headers */, - 7127978608E5CEBECD370D5C01A61D1D /* compression.h in Headers */, - 73081B275DA6B860BF79AFE491F7B852 /* compression_internal.h in Headers */, - 9C895CB310AF707F1989F69235BFD100 /* compression_types.h in Headers */, - DBE993CAA3953235DC52E6F4EB46F0FE /* config.h in Headers */, - 0A48F551965D27612A7D98545CFD5D71 /* config_dump.upb.h in Headers */, - 096C9BC944A080F38C31617A76439EE7 /* config_dump.upbdefs.h in Headers */, - 8AEFF79D247DA2B79CB19050CEE032A0 /* config_dump_shared.upb.h in Headers */, - D71CC46305E0F6373B17CC8C6AD1435F /* config_dump_shared.upbdefs.h in Headers */, - 774A232CC1C3504F9CCCA7630348769D /* config_selector.h in Headers */, - B266AD9E8108D6CF8A1F8F1866BB5FE9 /* config_source.upb.h in Headers */, - D763CF22EF06EEE19F14A9B42356B29F /* config_source.upbdefs.h in Headers */, - C47DE0D313D36B21D86C50F0BFC868B4 /* connected_channel.h in Headers */, - 73822A245EB4D593E8E133C9BDF287E2 /* connectivity_state.h in Headers */, - DEB864419FA62CFBFAA922E4095CFE28 /* connectivity_state.h in Headers */, - BD722763F352E1E72CA79947A3CD39A2 /* connector.h in Headers */, - 4B99586D77F9197D0C8844FD6F65B1F7 /* construct_destruct.h in Headers */, - 4903B6D6D5B22948287F4809EE69698B /* context.h in Headers */, - 3855A970FE1CBA66B8DA82EA326AD2BD /* context.h in Headers */, - BA21632C2FF338B5AABF52274FDCD25F /* context_list.h in Headers */, - 01927659B134C647769A09795D0FFF70 /* context_params.upb.h in Headers */, - FD543E49A0E0A691B8B8CD44E31217B7 /* context_params.upbdefs.h in Headers */, - 443844EC8CA28195F33666BD63986550 /* cookie.upb.h in Headers */, - 6192AA49CE9B59FD2CB423E7F392AE9A /* cookie.upbdefs.h in Headers */, - 5C04F0A842027EC65BF90991C57E67D2 /* core_configuration.h in Headers */, - 369C9442439CA80031D34DF36CAC0231 /* cpp_impl_of.h in Headers */, - D43EC1E57A14AD43864A1736676ED21C /* cpu.h in Headers */, - 0A0F0D54734E38BCD2CDECD3AC44F145 /* credentials.h in Headers */, - 9A1490ED8A3A83CB3D19C836EF179A83 /* csds.upb.h in Headers */, - B4315CCF86FEC7C6CFA2141B0E8A5D8B /* csds.upbdefs.h in Headers */, - 247A677A6471E5B89C7BA034B736BC19 /* custom_tag.upb.h in Headers */, - CB6EE8B318889185096B00CB7AAD9234 /* custom_tag.upbdefs.h in Headers */, - F20067B2BFA65BD5B5E7116F51C9B67F /* datadog.upb.h in Headers */, - 2D54BAF9A24AE90562D5F85B3FF60BC8 /* datadog.upbdefs.h in Headers */, - BA695031EB11CF2E559412C98D6B4205 /* deadline_filter.h in Headers */, - 15D6D72BDBD79772119E81A22DF4E627 /* debug_location.h in Headers */, - 6CBA37D712BB4C0223B0E56CEFDC94F0 /* decode.h in Headers */, - 60DA14211013F2C44597BE5C8B40F5D0 /* decode.h in Headers */, - 4CF83799DACE523B392F31E4F9751500 /* decode_fast.h in Headers */, - B5C1A9C528ECA6CA4E374E14018457FB /* decode_huff.h in Headers */, - F05B4280835E87A31771DD12EB1DB217 /* def.h in Headers */, - A96621210E21E9E581F7D2E972B6DA42 /* def.hpp in Headers */, - 34E60EE3E23DCAF09A836AB643DC1EE0 /* default_event_engine.h in Headers */, - E0C629A3BBBF6C371E7AE9BA94EA368D /* default_event_engine_factory.h in Headers */, - AC2F6DB82AF22B0C81546BAC275581D0 /* deprecation.upb.h in Headers */, - 2A8470C8EB113DEE482E9ED1761A00CD /* deprecation.upbdefs.h in Headers */, - D989E90822B525E632DA7057FB9A2328 /* descriptor.upb.h in Headers */, - 0D295B6F8CD189749306C73B8D5D5C3C /* descriptor.upbdefs.h in Headers */, - 4F6DED527AA94BA80233748E221DFCDF /* discovery.upb.h in Headers */, - A4CAC5120FD017A0D76D8F5AA98002D0 /* discovery.upbdefs.h in Headers */, - 471A5452CE87BD6EE6C917D7ADF26273 /* dns_resolver_selection.h in Headers */, - 7C958459E8E0538349B5311156C8FB8C /* dual_ref_counted.h in Headers */, - 6E5335699E4777038FE9AE4F890811BA /* duration.upb.h in Headers */, - 3F9A8841041EEB09030E1F66742B8F40 /* duration.upbdefs.h in Headers */, - 275A20821229A2CA4EF680F8DC0DEF68 /* dynamic_annotations.h in Headers */, - B10C8CFEE30F8C079498284E8CF38CD8 /* dynamic_filters.h in Headers */, - CDB35E639603446C2384AFC590A701BE /* dynamic_ot.upb.h in Headers */, - 87B2EB0D505DCF61FD663D0406CE053C /* dynamic_ot.upbdefs.h in Headers */, - 42EABF048018DFD1FC2B89E272B7C4DC /* empty.upb.h in Headers */, - 96803E865B8136B9A551FB2AD4FB900F /* empty.upbdefs.h in Headers */, - 377062D8145FBAED7ADD405FDD36CE95 /* encode.h in Headers */, - BAF647A0C4319697837AF208B06096AD /* endpoint.h in Headers */, - 4DD9CACFA11A5E9DB876287433DA4149 /* endpoint.upb.h in Headers */, - 9779300A3C4588C0B3793C0EEAFA0696 /* endpoint.upbdefs.h in Headers */, - 9289F8E3132DE62DD3BB989B5AFD53F7 /* endpoint_cfstream.h in Headers */, - EF64B486946796CDB1DF33204AF58C1B /* endpoint_components.upb.h in Headers */, - 955331FEB3BA431CC45EAB46D5F700E4 /* endpoint_components.upbdefs.h in Headers */, - 63B2E274D2ACB5AB5DC3480D0AA080D8 /* endpoint_config.h in Headers */, - 6168F119C19A6D6454FF934DD89BA2DC /* endpoint_pair.h in Headers */, - D9EB64D4DC1BAEF04C91438834CA426C /* env.h in Headers */, - 315B0F8329543736500E9FF3F1297434 /* error.h in Headers */, - CD8A0DA5FF16D9B274B2ED7965A20B64 /* error_cfstream.h in Headers */, - BC312462C9F8418357DDDFCD09BD4F36 /* error_utils.h in Headers */, - F33A86BDCFA6131FD039D79074111E2C /* ev_apple.h in Headers */, - 541F970C4D9A80A7EB9166EAD9163B10 /* ev_epoll1_linux.h in Headers */, - 7BA63EE7F5B449084652D98966404963 /* ev_poll_posix.h in Headers */, - D3D8D008E8411E0866128DAF34EEC24C /* ev_posix.h in Headers */, - ABA5276F5E9C51CD889D581BBEB11F1F /* evaluate_args.h in Headers */, - 07DF031BFA65F28994881FA4C7B62FD6 /* event_engine.h in Headers */, - 50CC25A00F98694336308928E6B12909 /* event_service_config.upb.h in Headers */, - 382DEB0C3094E07CA4934F54034CED83 /* event_service_config.upbdefs.h in Headers */, - 757BF579175044ABF5DE4BB6F42B2E21 /* event_string.h in Headers */, - E42A17CCDBEBFB5A0C0C736A44B723F9 /* examine_stack.h in Headers */, - 0F00C7EB072C1A204BEC12943C2DE472 /* exec_ctx.h in Headers */, - 8AD1E30E333906BE0C8C86F604AFBD2B /* exec_ctx_wakeup_scheduler.h in Headers */, - 28BFEC91F949A42EBDF64B3B474793DE /* executor.h in Headers */, - 287232145125209EB88D98138C0B844E /* executor.h in Headers */, - 53D155C5554F76F08ED956BDC02D71B8 /* experiments.h in Headers */, - C6A21FF48935722E3AD557EE5B58F9F9 /* extension.upb.h in Headers */, - C8A2DF4219E0D42723D67E98452AA653 /* extension.upb.h in Headers */, - 22BB1F1F19F8212DDBA9D178AAA12F2F /* extension.upbdefs.h in Headers */, - F7B552D679AF2D9EDA7ED559A7325337 /* extension.upbdefs.h in Headers */, - 5AA9D88525AB06F315E305A688018CD3 /* extension_registry.h in Headers */, - FA30B1173BAE503DD55BDB6DDBAC14B3 /* external_account_credentials.h in Headers */, - 64429780BCDF62EFFB3027AA6CC3509C /* fake_credentials.h in Headers */, - 66876D3A1205CCE15BA894CAA5D9C5F8 /* fake_resolver.h in Headers */, - E4E1A5059C671099D7A8D76315DA001A /* fake_security_connector.h in Headers */, - 8B54A5B7743B565D9599088DCF8B21C0 /* fake_transport_security.h in Headers */, - 3463978EF164D8A2136CE8304B8C9ED6 /* fault.upb.h in Headers */, - 8686CE79EDAAC9EB391693D2006496AD /* fault.upb.h in Headers */, - A772CDCFD6874CC17272ACDFE8070833 /* fault.upbdefs.h in Headers */, - A61797B32B3EE0632C7D6AA18D39925B /* fault.upbdefs.h in Headers */, - 9551DCDE0743751C4E22C398BEDAF3D4 /* fault_injection_filter.h in Headers */, - 995C5F0593DFB56AB9B8B3B6A34E71B3 /* file_external_account_credentials.h in Headers */, - 98420B658AB8F380163307AD8E81E367 /* file_watcher_certificate_provider_factory.h in Headers */, - 1CFC535B7F51437D83E0665151456CB8 /* filter.upb.h in Headers */, - CC3C1D907FB74EF59C3679248496B661 /* filter.upbdefs.h in Headers */, - 6DD0431568FE4A781680D0B3D4C63D49 /* filtered_re2.h in Headers */, - 3BCDD7181F4045AB5A6F0E4B42442BA8 /* flags.h in Headers */, - 28E6B5A47170A902AFD75BAB1CBA6895 /* flow_control.h in Headers */, - 61CD2D55D06BD91B446EA4ED3B1A5304 /* fork.h in Headers */, - E9B100A99BDF515BE4A0D69C280F595D /* fork.h in Headers */, - 46CD06FD10FBFDA2728BED3932F1156E /* fork.h in Headers */, - 774B3FA3CFA793471FE838643C177645 /* forkable.h in Headers */, - 921CFC3E7039A017EC32351401BA1B9E /* format_request.h in Headers */, - 039F0C0DA8427AA0BA3A102D1C77A233 /* frame.h in Headers */, - 4BF69BFBB3D62E8709293DE11E7BA1DD /* frame_data.h in Headers */, - 4BDABCDAD0F901634A981BC2EB851B15 /* frame_goaway.h in Headers */, - FF13E62E967EB0A72DAA5EE88BA8FBA4 /* frame_handler.h in Headers */, - 118646AEBE91A1D28F0CEEC485846F31 /* frame_ping.h in Headers */, - 141BA400E1CCFEF386945E84875099E9 /* frame_rst_stream.h in Headers */, - 252F184E690A38BFAB62A488BD3BD732 /* frame_settings.h in Headers */, - 21E38327BDFAFA041E239768A0E17386 /* frame_window_update.h in Headers */, - 51ECC1435FB717F34DE5EEFE855710E3 /* gethostname.h in Headers */, - 66ACF3F19649F4116636BA79E1A6D2DF /* global_config.h in Headers */, - F95460C8D6E8F58892421FC881A51E18 /* global_config_custom.h in Headers */, - 5D85FD2B9DE0287E26A50369425D5C5D /* global_config_env.h in Headers */, - 448344AF591C828E9AA44AC11DBEA137 /* global_config_generic.h in Headers */, - 03D8435020395630ECD7F105CA87172A /* global_subchannel_pool.h in Headers */, - 6B2D1FF65C8CCDF2D938D918879616AF /* google_default_credentials.h in Headers */, - FE8304EDBB76A77373F295577426DFB5 /* gpr_slice.h in Headers */, - 99B831F3A48C23B08FBB67A704089782 /* gpr_types.h in Headers */, - E8178BB893DEB0CAEE6F950AFB05B076 /* grpc.h in Headers */, - 90B1A3919C0B53D0804C781BCEAB2764 /* grpc_alts_credentials_options.h in Headers */, - 868653BD2A46C13A0D24FAF1212A97EB /* grpc_ares_ev_driver.h in Headers */, - 5F6F2A34CBCA73AB974DBB95A147DBFB /* grpc_ares_wrapper.h in Headers */, - 62E2721B3DD6288AD2203B45802615F3 /* grpc_authorization_engine.h in Headers */, - A39EA39A033513861C58CF5290E37A01 /* grpc_if_nametoindex.h in Headers */, - 3A5E64EB84D23CA41B9956EF1B1396DA /* grpc_method_list.upb.h in Headers */, - 204CC361DF81E54839125D35B30E17AB /* grpc_method_list.upbdefs.h in Headers */, - 6D8FF2A68B33777EBC1D687BC485C707 /* grpc_posix.h in Headers */, - 30A8B2A7B94DAF6AD6ECDE93CD77980B /* grpc_security.h in Headers */, - A469F55201EF63B6700A76C8B694B94D /* grpc_security_constants.h in Headers */, - B552121C3711ABC2C42E61283E818B3C /* grpc_server_authz_filter.h in Headers */, - 404F1D3EFAAD8D59108193345D7285BB /* grpc_service.upb.h in Headers */, - 9A98EDFEB1188F3E3B7B9A698F034C91 /* grpc_service.upbdefs.h in Headers */, - 1396D8F25CB2458D2922B0D79E84BD63 /* grpc_tls_certificate_distributor.h in Headers */, - 70A50052EACB7206FCA1C339080AADEE /* grpc_tls_certificate_provider.h in Headers */, - DBECDFFC37A4CE217185A7EDFDDF7C1D /* grpc_tls_certificate_verifier.h in Headers */, - A32C0DDCC3636CCA83CFFA1829945F63 /* grpc_tls_credentials_options.h in Headers */, - 1BAA8F7F08155FA6E0F028031376AA7A /* grpc_types.h in Headers */, - B2E15B8BA7AA33318DE8EBE2DEB9824A /* grpclb.h in Headers */, - C642C0FCFF8E0BCBC24B0B5C2B55C1E9 /* grpclb_balancer_addresses.h in Headers */, - E342F9217B550F0FE601BA261E6BF0DB /* grpclb_client_stats.h in Headers */, - 4CC9262140DF8218E24EA3A6D620B271 /* gsec.h in Headers */, - B4E622F6EBB5D8F2A9B3D9B226A1CA80 /* handle_containers.h in Headers */, - CE66931248F9A2AA83096CF272CFFE9B /* handshaker.h in Headers */, - DB07F1505867F831B5ABDAF2D597BE0E /* handshaker.upb.h in Headers */, - BE9505DE0CF46D305AD0F1F616F5C622 /* handshaker_factory.h in Headers */, - CCADB393AFFAF0A26BA00F05B82C3CDE /* handshaker_registry.h in Headers */, - C666208DAC339850248EE9C3F6990343 /* hash_policy.upb.h in Headers */, - D712E4FB02A3397F8ECC26F7955F201B /* hash_policy.upbdefs.h in Headers */, - 3C5A177388184DB32294B67ACB894D0F /* health.upb.h in Headers */, - 7176DB6A79D285CFE2E61B78E29A5016 /* health_check.upb.h in Headers */, - A0B2A9575E251C2147F8660DCBFDA332 /* health_check.upbdefs.h in Headers */, - 94A0FE171B0DAF7D8D7D0124FD911576 /* health_check_client.h in Headers */, - 5ED6FD5079AD97B4A0BDFF01F907C912 /* host_port.h in Headers */, - D5F2C0653D524D51AAC9D798A2DE7818 /* hpack_constants.h in Headers */, - 4D2FA8FFE2A3293DF2CC5B97422DBA49 /* hpack_encoder.h in Headers */, - E5376C54AB96A0E3F8F6CC635F8E52BB /* hpack_encoder_table.h in Headers */, - 062EE735A565A6FD8C01FD3F9D0B5A61 /* hpack_parser.h in Headers */, - E40F51862432EFDDD6BD3F392F8BCC83 /* hpack_parser_table.h in Headers */, - FB6DA782BC6D9BE3F8B4DD9F7805803D /* http.upb.h in Headers */, - 7F473DC7C637DCBCB4431571390D499A /* http.upb.h in Headers */, - AD4E12B62FA5165CAF11C5E4DA1ED787 /* http.upbdefs.h in Headers */, - B3929C88A923D6128CBA6159A431E2FB /* http.upbdefs.h in Headers */, - C195748012B715B13F24103382803532 /* http2_errors.h in Headers */, - 9F7F55F3A6E20813835819EB5961113A /* http2_settings.h in Headers */, - 0D3A9FB3878C12B6FC4C5806A61AA4FE /* http_client_filter.h in Headers */, - B8EEB4FAFB391F02CC8DE97B102941B4 /* http_connect_handshaker.h in Headers */, - 88BC6B8EF774D22C135B11F7FD25AC71 /* http_connection_manager.upb.h in Headers */, - B10251CCE8422BAF3F188C56A47FF4ED /* http_connection_manager.upbdefs.h in Headers */, - C581099EFB4B504E89780A0AC28B8872 /* http_inputs.upb.h in Headers */, - E701C62F6299384A7112D88A60BD6003 /* http_inputs.upbdefs.h in Headers */, - 51E87B120B2241445F945FA7C2FE2601 /* http_proxy.h in Headers */, - 2B0884277250376D6A654C3F37523BFC /* http_server_filter.h in Headers */, - 770B2036116B9357F62F2BB43F5618F9 /* http_status.upb.h in Headers */, - 24DDBB36CB3D112A1993B0AA99F07C51 /* http_status.upbdefs.h in Headers */, - A18FB572EC7A10B53C79181A283E2B0F /* http_tracer.upb.h in Headers */, - B9422AB24B2F3A238064C12C6BB2406B /* http_tracer.upbdefs.h in Headers */, - 016EDD3A0E29DEBB2E3D4A2B19EAC0BD /* http_uri.upb.h in Headers */, - 6906A91814B02E38971DF0924C57BEA3 /* http_uri.upbdefs.h in Headers */, - 7DA43A8208FBB8CF4038B46EE9E3ADB6 /* httpbody.upb.h in Headers */, - BF16E6219D7636C23629BB173EB89244 /* httpbody.upbdefs.h in Headers */, - 6FC088B23F5EEC21212352F3357E0CBC /* httpcli.h in Headers */, - 8E7A5728CA1248684AAF47C818541A08 /* httpcli_ssl_credentials.h in Headers */, - 9E6823C8EF820AA5349AF7959F44FB16 /* huffsyms.h in Headers */, - B73F2305686CAA8EF0600A84B9221477 /* iam_credentials.h in Headers */, - D812043C6B8E299CD28EA4D2EF260E4B /* idle_filter_state.h in Headers */, - 4C36715A4E6090F777F774BC5AE1B07E /* init.h in Headers */, - 9892C237B98DA9D354BE97323FA429C5 /* init_dump.upb.h in Headers */, - 187A5FC5970D9613A394EF5A17000E1A /* init_dump.upbdefs.h in Headers */, - 4E5EE0E568BA49BB7597961516B7B4F2 /* init_internally.h in Headers */, - 8189ABE1A8A95E994F97F2052D62179C /* inproc_transport.h in Headers */, - 7A33EBE56752BB70267C7AE04E4DD8FE /* insecure_credentials.h in Headers */, - 7871A404420AD330BD8967DF04C0801E /* insecure_security_connector.h in Headers */, - D1B8B671D9F2B640895740CB578F793F /* internal.h in Headers */, - 88CAF16E6BA06515308E17FD98950D9E /* internal_errqueue.h in Headers */, - 2852A71DA54E54C11D2F4C5E597287E5 /* intra_activity_waiter.h in Headers */, - 7D91A9B133FACC511F14D7DC941733CE /* iocp.h in Headers */, - 04F1EEC671E038B78C50A06AD1315F8B /* iocp_windows.h in Headers */, - 2CFDC3AC3393619B446976FF57F98733 /* iomgr.h in Headers */, - 900865FFA823CA4756C5E2E94D1E4E7F /* iomgr_fwd.h in Headers */, - 8663FF01C07AEC5475B36406F9CC8620 /* iomgr_internal.h in Headers */, - 33F0035F526A28306AC323088D2C7BC9 /* json.h in Headers */, - 811876CE2EC9281142DB1003B26DD633 /* json_args.h in Headers */, - E40F887E58A35E4E1B5012CE646F6804 /* json_decode.h in Headers */, - B6828994FDA3CCABBF9A40612ECE37B8 /* json_encode.h in Headers */, - 3AE2AD9E0F3A8D0A00ABC260D2687B17 /* json_object_loader.h in Headers */, - 2B974F238650D429DFD642E97D39A47E /* json_token.h in Headers */, - E8632F3B55DFDA05BF0E69A221CDA76C /* json_util.h in Headers */, - 06AB76A92C9AAA0915A7C0C76567FDBA /* json_util.h in Headers */, - FBE0AF1651A27B5BB5B8E8698F8112B5 /* jwt_credentials.h in Headers */, - 3B73B33F6E862E01C8A1B412DABBE9F6 /* jwt_verifier.h in Headers */, - D175C48BBC9A626C5C100280FAAB7A27 /* lame_client.h in Headers */, - FF94B21B449F85084D991DDED455E218 /* latch.h in Headers */, - E3A78D2850EB665FB5B4930B0B3C35A2 /* lb_policy.h in Headers */, - F535E85FB755CEEF19F3D45E3BDA4EF5 /* lb_policy_factory.h in Headers */, - 779BF5072E64B16793863983057FD656 /* lb_policy_registry.h in Headers */, - 4AC1A62C31F243D376746259CECA93A0 /* lightstep.upb.h in Headers */, - 049C59A90D4C4D990F2051C21D9093DF /* lightstep.upbdefs.h in Headers */, - B7344B2C1FE9BE2C32FA047FFA2ECB0F /* listener.upb.h in Headers */, - 720CFA7E595E9A5480146309EEE455F7 /* listener.upbdefs.h in Headers */, - 98378D741E409EF4DC5BC4E33C1AD36D /* listener_components.upb.h in Headers */, - 545F9AE8F353BB2699BA61332E40F984 /* listener_components.upbdefs.h in Headers */, - E849E226869673929465C2A3C43B9D71 /* listeners.upb.h in Headers */, - 29E3FDBF0579966943AD37D30698A1B6 /* listeners.upbdefs.h in Headers */, - 24A4E46679E546B76A52324B47E3C6E2 /* load_balancer.upb.h in Headers */, - 946E041A152ED157A0D90AF2D174267F /* load_balancer_api.h in Headers */, - 467E3B7995364E681600AA3A737C7AB1 /* load_file.h in Headers */, - 70C4C46212877F939EADA5A225EB35EF /* load_report.upb.h in Headers */, - 240DEC935DB3FBCFB2BA66C1973FE381 /* load_report.upbdefs.h in Headers */, - 2558381DA7AF453CC62FD6592E70FD76 /* load_reporting.h in Headers */, - 53456482206E24BD61304ABB1B28082C /* load_system_roots.h in Headers */, - A2C986CE7F155D82D57426CC43931666 /* load_system_roots_supported.h in Headers */, - 22C46D4051BBD826776408B96F2C1645 /* local_credentials.h in Headers */, - 0323A159C9335E8961B056FFC9D77684 /* local_security_connector.h in Headers */, - 7162EB80EEA99499FD1C567207F9A928 /* local_subchannel_pool.h in Headers */, - 8EB42A4C7AA15F61162C00CDEF526F97 /* local_transport_security.h in Headers */, - 405B61BF893B344F8AF54B9EB091D08F /* lockfree_event.h in Headers */, - 60C3D0F6282B38E97018AB063367EAE5 /* log.h in Headers */, - 8C5F87B6530BDACE6E76E55AFFCCFB8D /* log.h in Headers */, - AD631FDA82890E7F48E4C3AA27042CDA /* log_windows.h in Headers */, - CB02A18160130A5D8CEF2016CA94F8E3 /* logging.h in Headers */, - 23BF86B7290C1805D677525F73601370 /* loop.h in Headers */, - FDECB1FE21EBD74CFBA3474E3F769FF6 /* lrs.upb.h in Headers */, - CDFAA4C5C5F839DDD57BB98147EEE594 /* lrs.upbdefs.h in Headers */, - 6777B41B24AADC94E4450C7DA3F29C26 /* malloc_counter.h in Headers */, - 56193C8047894BB6611364334462F6F1 /* manual_constructor.h in Headers */, - 73FC992208B584B876251BE031801494 /* map.h in Headers */, - 3DAD18ECC9CA7A881E8EB624D552ADB0 /* map.h in Headers */, - E4D183E9A832799E5127A01A6C27D2D0 /* match.h in Headers */, - C743B764901F145A471C761491B78EA7 /* matcher.upb.h in Headers */, - 96D5082847D67788238932D14B155F49 /* matcher.upb.h in Headers */, - 951E2415BF6E83A34B5711202C6CAED8 /* matcher.upbdefs.h in Headers */, - 8C7068892D759C99EA1833FF7A965758 /* matcher.upbdefs.h in Headers */, - 18AEE739BB711912A713F5B69A5A8254 /* matchers.h in Headers */, - 4455BEC8D1A94AD58E0DBFCC7311E32D /* matchers.h in Headers */, - D9A2EA16E50C797B89CBEFA33102BFDA /* memory.h in Headers */, - 089F54E25FDAE55720AE0DE71D673A23 /* memory.upb.h in Headers */, - 1759D3E6A1699A446DB3D0BA2C4CF7D6 /* memory.upbdefs.h in Headers */, - 9520FB9968D7D3122EF6E05961F799E5 /* memory_allocator.h in Headers */, - 6291095143D30EF3EBDEB682FFE97478 /* memory_allocator_impl.h in Headers */, - D774B6C1F386E849072D87F81D92414F /* memory_quota.h in Headers */, - 643F3C0BF4D48CFB4FAB5E44FE64525D /* memory_request.h in Headers */, - 31EB25D551A64BD9EBDA0298F08B8F01 /* message_compress.h in Headers */, - F3D05A4E6DD1B048A01D46D6CC10D326 /* message_compress_filter.h in Headers */, - B03E3130C4FBC3A1C210D1789C9C76D6 /* message_decompress_filter.h in Headers */, - 82EB8E70B66F82EE2B5E5D39854AE583 /* message_size_filter.h in Headers */, - 478E4A3806909F50C94672FA82D76F50 /* message_value.h in Headers */, - 2D6488FCB3A813824774B48672E72304 /* metadata.upb.h in Headers */, - FF6129AB474887FC8984BA6EE61B7EB0 /* metadata.upb.h in Headers */, - 22452452E07699F67B3F134AC572A169 /* metadata.upbdefs.h in Headers */, - ADC66238E73437568EE1F80D3748B89E /* metadata.upbdefs.h in Headers */, - 42E085D975591C383B7ED3B75672A29A /* metadata_batch.h in Headers */, - F7F7479D97D847B8ED353F0C78019A09 /* metrics.upb.h in Headers */, - 31C47293C257A9363FC5F69C721EB205 /* metrics.upbdefs.h in Headers */, - F7A86D5BA8A900696D17CE5DB05E7CE9 /* metrics_service.upb.h in Headers */, - 3697586631F0BD0C48741F25EB2C3E30 /* metrics_service.upbdefs.h in Headers */, - AD5091CDE5B67032FC5CDD73078EB261 /* migrate.upb.h in Headers */, - 121BD89B4F2AD942D6794A71C6840F31 /* migrate.upb.h in Headers */, - 45BBB99262B82FBA93EB296013741845 /* migrate.upbdefs.h in Headers */, - FA66EDAA1380010879D5F0CE9C16DFC5 /* migrate.upbdefs.h in Headers */, - B6E104AA1AA971922A48E23D0AF894E1 /* mini_table.h in Headers */, - 7C6AA2C564B806AC20B6881E3EE5DEC9 /* mini_table.hpp in Headers */, - F2FEB5A461759FE36E0EE8F474FEA8D5 /* mix.h in Headers */, - 3751831DE520871E2EC531B97306EEA5 /* mpscq.h in Headers */, - 2B6C78B7903EFD264C741DD5FFE6E801 /* msg.h in Headers */, - 3ABDE44A054CC8D3124E969656E05A7E /* msg_internal.h in Headers */, - B1C08AB778A75503BA89B292F943515C /* murmur_hash.h in Headers */, - F157DBBA1160A053009DEAE43BA49A2C /* mutex.h in Headers */, - 14BF6D35D1ED6CBD26BE7B20B6444FE1 /* mutex_stats.upb.h in Headers */, - 352FCFBFA1003CBD674721078E4323D3 /* mutex_stats.upbdefs.h in Headers */, - 5903EAE2FAAD6E0608B1E1800022D11F /* nameser.h in Headers */, - 9C9F7778A51E639CDE45C48E1BE120F0 /* no_destruct.h in Headers */, - F7D8BACABFD383367486406976FE5778 /* node.upb.h in Headers */, - FE6DB400F051214A52BB68F2755D94D4 /* node.upbdefs.h in Headers */, - D803E2B26C9F78107743484AFDA20BB5 /* notification.h in Headers */, - 4BE1ED805F2A59F3AD74AF8E37A81730 /* number.upb.h in Headers */, - AB009568588DDEAF1CDD83137FB34B2B /* number.upbdefs.h in Headers */, - 75F0F443A48196D7FFD5318A9827AE6F /* oauth2_credentials.h in Headers */, - A967A0A32EF56D792C087A0E18E8B2F6 /* oob_backend_metric.h in Headers */, - 80514EE492AC9E52ACFF603E53F2D5BE /* opencensus.upb.h in Headers */, - 9EE54793382BA04A0234240E4FBF709F /* opencensus.upbdefs.h in Headers */, - 5B6239CB266EB13A149B4971E91F475D /* opentelemetry.upb.h in Headers */, - 0B661844307BFF17C601DD838580C169 /* opentelemetry.upbdefs.h in Headers */, - 2C19430555D910C3C081365C8B8A24E7 /* orca.upb.h in Headers */, - A3F4F506BD2454EFDD7A86435430A637 /* orca_load_report.upb.h in Headers */, - 5C4DD6DE742477D29AA387E894E01528 /* orphanable.h in Headers */, - 9A5BCFA659D90C1B660830A821760912 /* outlier_detection.h in Headers */, - 100F87B37FE5D11A2A4036825B414100 /* outlier_detection.upb.h in Headers */, - 71A4DBC01AC62ABE8DF50DDD62BD14AB /* outlier_detection.upbdefs.h in Headers */, - B58B76E7E7433D5F9FA7784E3CD1EAC9 /* overload.h in Headers */, - 7D4DBC32A773737412F49D6E0B313F49 /* overload.upb.h in Headers */, - 019B20CF7503B53C39F21F016B3DF06A /* overload.upbdefs.h in Headers */, - 9B7E037DAF83B229623F5138D3E02FA9 /* packed_table.h in Headers */, - 640D057C992572B3D852FC260D62B777 /* parse_address.h in Headers */, - BB858F69BA265BC386F9CE28D099B90B /* parsed_metadata.h in Headers */, - 7B47BBE13C646A85657C842DB44C8802 /* parser.h in Headers */, - BEC90C46D9B40EF820AC70952A4F25C2 /* path.upb.h in Headers */, - 738CBD93DB86302AB4494D9B3F1061C2 /* path.upbdefs.h in Headers */, - 15CFF7158AF4701A15C67B1DE041807F /* path_transformation.upb.h in Headers */, - F322D97097A0825F42A332A77404C337 /* path_transformation.upbdefs.h in Headers */, - 30BC3121C9BA05DCC4237F1255FCE756 /* pcre.h in Headers */, - F73E7C1303C819A1DC4DD8B61D7D220C /* percent.upb.h in Headers */, - 12263868AB8D1264313037AED026556A /* percent.upbdefs.h in Headers */, - C4340E480A05DBBDE09D6DD6F2DFD218 /* percent_encoding.h in Headers */, - B53F768CAE4165527579DEB60FCE73C0 /* periodic_update.h in Headers */, - 017BFBD1194107F3ACE27023D44348D0 /* pid_controller.h in Headers */, - 1F85045541BE957EAECBD9A8AF511514 /* plugin_credentials.h in Headers */, - 813DA38622BBE78124981CE32FCD4189 /* pod_array.h in Headers */, - 3D45F98948F5B59EE6EA0136DDBDCC3B /* poll.h in Headers */, - 0AB708A3A9642E0627C01D0D15853D5C /* poller.h in Headers */, - B0CD877BD90F773E97933857553A0799 /* polling_entity.h in Headers */, - 28FDB15489FA50FC923DEB1D7F9A1ED9 /* polling_resolver.h in Headers */, - AD1ADD5AAEDCFF0E7368A3B9426827E8 /* pollset.h in Headers */, - 085E9EF41748C0D957C2DC677E621214 /* pollset_set.h in Headers */, - 2A52EF88BA25B36B3257D7B217C4DD5B /* pollset_set_windows.h in Headers */, - B2745F541268D796C58434E4BCB5BC47 /* pollset_windows.h in Headers */, - F6AF871A9B55003BB8944610C40E5836 /* port.h in Headers */, - 0986C0FE63C587AD6F872C2496F69639 /* port.h in Headers */, - EF34CE622022D4F1BCFA03FCEC186DDF /* port_def.inc in Headers */, - AD610A6FCB8A721EDABD909223205AA3 /* port_platform.h in Headers */, - DEFB0FD4CB9BBF121B1CFA21F54FA857 /* port_platform.h in Headers */, - AA8E6ECC916F2EE0D106DBB0FF7E91A3 /* port_undef.inc in Headers */, - F350D5D18C203001418A87FA8BCC9560 /* posix_engine.h in Headers */, - 99C54546AF6150A49DB0CD38B7C63D37 /* prefilter.h in Headers */, - 47F8EB044609ECA3BE29DD37BC15FDB2 /* prefilter_tree.h in Headers */, - 9AF250A778B66534340412AE724D9EC4 /* prog.h in Headers */, - 6F377B419C03FA3C94359A645EA0F581 /* promise.h in Headers */, - 5AAA7E94E3DDC843B43D018E0C8E5B7A /* promise_based_filter.h in Headers */, - AFBF83B65424C713F52DB5E092B8FB7E /* promise_factory.h in Headers */, - 4993E32F7AFC4D3F08FAE15AA2605679 /* promise_like.h in Headers */, - DCA8DBA089E44B38FC2D8FA995D435D7 /* propagation_bits.h in Headers */, - 3DAD46A55509420ECAF2C2FBA920A4AB /* protocol.upb.h in Headers */, - 07EF818097977102454B5B7747B24F24 /* protocol.upbdefs.h in Headers */, - 5B0DB4DB08208047A2105000566300B7 /* proxy_mapper.h in Headers */, - 15D112ED64E36F0A70F13C3701BE4484 /* proxy_mapper_registry.h in Headers */, - 3BA31D703CAA0CD2F5C0D8608D1C3CF1 /* proxy_protocol.upb.h in Headers */, - 45DB56E4F390574678F5E1270D3D88A1 /* proxy_protocol.upbdefs.h in Headers */, - A83687CF5268EFA55A31981C77C3CC63 /* python_util.h in Headers */, - BA11746EDF1DB18E70DDF9E850F43004 /* quic_config.upb.h in Headers */, - EE4F752DF3846DD86B40ED3605D9DC0F /* quic_config.upbdefs.h in Headers */, - 3DE9D962B740DBD79B3A3151B19C8475 /* race.h in Headers */, - D7937341D60FCA5F47ABA67B8F66FC74 /* range.upb.h in Headers */, - 5F90036D652A58C3B400E015F20327BE /* range.upbdefs.h in Headers */, - E20EF31F8139655AFC6B545B63E42324 /* ratelimit_strategy.upb.h in Headers */, - 35A3219EDB70F29C5E51095FABC7E9CF /* ratelimit_strategy.upbdefs.h in Headers */, - D31F803B41D883A290B38576EB9F82E8 /* ratelimit_unit.upb.h in Headers */, - 316654C22F962BBE71DA111D82650747 /* ratelimit_unit.upbdefs.h in Headers */, - 609A6597AAFCF609A9ADAACB9B1B01AA /* rbac.upb.h in Headers */, - 888FCE63FCBE0332B521D8BF7FD275C8 /* rbac.upb.h in Headers */, - F24C199979A33DDDA0A5B4AE4B63CE2F /* rbac.upbdefs.h in Headers */, - 53AFA2B28703BDF929BD36C62225584B /* rbac.upbdefs.h in Headers */, - A5B95C4418258F793D799C3E39943E0A /* rbac_filter.h in Headers */, - 137F0F809BD7B0F25BBEEB511324288A /* rbac_policy.h in Headers */, - 15B6DE16C317754312CD5E705071970E /* rbac_service_config_parser.h in Headers */, - AB322AF38BFBB64D4095239764A6F559 /* re2.h in Headers */, - 56A7620DAC410C2BED8A0E3BEAEB1C63 /* ref_counted.h in Headers */, - 2EDAED7CFC0FD5CD4748AB981016DD7A /* ref_counted_ptr.h in Headers */, - 8DD3FB9FE741C923A29493FA9291FB7B /* reflection.h in Headers */, - C47853C215F96D2DD3DE17BAF52B62F0 /* reflection.hpp in Headers */, - D1CD5092A12D9973AD980A77A4A2750B /* regex.upb.h in Headers */, - 0F467038D733F57C8983483A72547C6C /* regex.upb.h in Headers */, - E0C880D70C407E18980AD469B28131FD /* regex.upbdefs.h in Headers */, - 5627D1235F68DA84CB76DE4559CDA470 /* regex.upbdefs.h in Headers */, - BD27CB280FF9C546C396F5AE03E12B36 /* regexp.h in Headers */, - 2A3C5D3A1C159FEC3811E2510A23A406 /* resolve_address.h in Headers */, - 707742A7C352DC6F5420B6EA31176AAA /* resolve_address_impl.h in Headers */, - E652183DCE72663EE2FF40A7543A11E5 /* resolve_address_posix.h in Headers */, - 798AA4E69000808B06C0F33EF21F703A /* resolve_address_windows.h in Headers */, - 8323C90F8284C17E4A663A6A5EBDBCF2 /* resolved_address.h in Headers */, - 83FE83A08DCA3973FB5A73DC82CDC420 /* resolver.h in Headers */, - 35DF255FE0963857BE75B85071D79361 /* resolver.upb.h in Headers */, - C8FCA77A3708C38807483AEEA89432BF /* resolver.upbdefs.h in Headers */, - 3730DF9096CAA59C27A856E02F636DC8 /* resolver_factory.h in Headers */, - D1D744C9D0B54527B6D30037CDB90179 /* resolver_registry.h in Headers */, - CFC25E236E208804FB99942C81CA5B81 /* resolver_result_parsing.h in Headers */, - D7E378F670230586E355DAD6F39FB0A7 /* resource.upb.h in Headers */, - D26DBF2A266AF23A76D46F85A6D04D06 /* resource.upb.h in Headers */, - FB0019363F900ABAEA9E777223BC44EB /* resource.upbdefs.h in Headers */, - 7F4C685A862FD447AD9C96E2438F8B18 /* resource.upbdefs.h in Headers */, - 930602529D5BC05245C4158D4C293F4A /* resource_locator.upb.h in Headers */, - FCB9214694EEBAA438A3861B03F4103E /* resource_locator.upbdefs.h in Headers */, - CD0C62DB42711A1B8DDD5407EE6E8F73 /* resource_name.upb.h in Headers */, - 6A1010843FDC7B638B045FCBFB08B15A /* resource_name.upbdefs.h in Headers */, - 99DDF92DAB1D4900D950E68BC09F8809 /* resource_quota.h in Headers */, - 39686F5EE31F886631D8F364071CD7CD /* retry_filter.h in Headers */, - 835E3D2498166A2CB8D298A1BCACA8D8 /* retry_service_config.h in Headers */, - 8B2460A58797F1FD4719044997DDD2D4 /* retry_throttle.h in Headers */, - 114A1454C07D30EEB8B3F9791ECC2FAD /* ring_hash.h in Headers */, - 87875521827209989FB75A8C2BDC501C /* ring_hash.upb.h in Headers */, - AE589A064357A629A83FE804D4E77573 /* rls.upb.h in Headers */, - 1794096BE04B7719DFBC425E04A46DA5 /* rls_config.upb.h in Headers */, - 6FF23413461011E9664F6647F317E3F9 /* rls_config.upbdefs.h in Headers */, - 3DDDCB44D297155B9535155945BB4716 /* route.upb.h in Headers */, - 10F2F36DC2DFBDA2EF3E8EA37FFA7B7D /* route.upbdefs.h in Headers */, - D47E133ABB3026F3C8FA53AADAA85238 /* route_components.upb.h in Headers */, - 45612DF2D2CA632FF3CD53C18806ADC1 /* route_components.upbdefs.h in Headers */, - DE5E76D8B149026A1B415EF9776A3BE9 /* router.upb.h in Headers */, - 5E1D9233845166E18D40D68305888A54 /* router.upbdefs.h in Headers */, - 407EB85A692B63B3ED064E4ED9AB4B5F /* scoped_route.upb.h in Headers */, - 803EFF21595AB40C1287A1510238E1B7 /* scoped_route.upbdefs.h in Headers */, - 81202C834C5E50C048243CE1F3C6C9B8 /* secret.upb.h in Headers */, - ACE7B21B192B7C0D8AF682755366E001 /* secret.upbdefs.h in Headers */, - D402555EDC60B10B5568F783A0B92B03 /* secure_endpoint.h in Headers */, - 3E16DA416B8ABFBA7E1BDDCEEF6FC478 /* security.upb.h in Headers */, - 0EBF3590ABB612A02F379D7E6AE61CD2 /* security.upb.h in Headers */, - 6192D40FA174F54245DE9CB7E6C8FD60 /* security.upbdefs.h in Headers */, - C5DA303F9DE7C9B192BD805580BA2CB9 /* security.upbdefs.h in Headers */, - F51A1ED20534B5F052F993FF73E0CB92 /* security_connector.h in Headers */, - B2D64536A3306EBFA015C1A410219EE2 /* security_context.h in Headers */, - DA28741F16B2774371F753B05F691DCE /* security_handshaker.h in Headers */, - 3C203B3FBC35DCC39EBFECF5F71B6432 /* semantic_version.upb.h in Headers */, - F6DC386C34AD14B6BE75CD7B4EA3CEE6 /* semantic_version.upbdefs.h in Headers */, - B52E99C393C5C404D8B4FC98AC6E6C7B /* sensitive.upb.h in Headers */, - 28C554E84B197C1A48D2B54BD92F2474 /* sensitive.upb.h in Headers */, - 425F7F07E149882B7A44E26D8C2823E4 /* sensitive.upbdefs.h in Headers */, - EDAA93C3564147A3996DB7428814BB6F /* sensitive.upbdefs.h in Headers */, - 02B74FC4AA516D028A9F14E5D4DA662D /* seq.h in Headers */, - A8CDCD35CF141593C68C4C139DF79100 /* server.h in Headers */, - 9D222100143F3C60E8F8BB6EE5BEEA86 /* server_address.h in Headers */, - E18BDFA3958F85D91B1A0F33C8A1039D /* server_config_selector.h in Headers */, - BB17895C4892391269A8A1E7A40A66B7 /* server_config_selector_filter.h in Headers */, - E5464D5E1811EAF940FC0E3A3AE9958E /* server_info.upb.h in Headers */, - 33C2F63D5F846E95CC751D9848B3261B /* server_info.upbdefs.h in Headers */, - DEB9E5028EB06FEE52363C2C3E18F0BA /* service.upb.h in Headers */, - 8F27459016915C58979DB49B15566687 /* service.upbdefs.h in Headers */, - 1928C52AC3B97F29A607FF3FD722D869 /* service_config.h in Headers */, - E8BC8BE34D41BCF758BC3E175A2BED04 /* service_config_call_data.h in Headers */, - BA51824FCACA7F9562C66BA0416EF726 /* service_config_impl.h in Headers */, - 95CFCF40955C2224154A31562A249ADC /* service_config_parser.h in Headers */, - EF07CA226EFBF40FB9ABA5BC801D68E7 /* service_config_parser.h in Headers */, - B0AB462A84CE8C383AAFE0138BF5FCBF /* set.h in Headers */, - F404186F33270B81874A0C32494A65A1 /* single_set_ptr.h in Headers */, - D02AF2BADB7492AFA65453AB33828400 /* skywalking.upb.h in Headers */, - EC9685BBD26BD6EDB95DF4F107E24826 /* skywalking.upbdefs.h in Headers */, - B321AD704F84D6810312F35755BC6EA5 /* sleep.h in Headers */, - 0EAD627898F9EB363470EC4B0BAF0575 /* slice.h in Headers */, - EE7B9B4B734C08C09923972F8DBB5021 /* slice.h in Headers */, - 8BEEFF9340FF73FDDA80A7F5A980F5F2 /* slice.h in Headers */, - F4F4B8392EA680C455B8DA9C3136C38A /* slice.h in Headers */, - C6E5D216CEE302693F3933667ECB9FF5 /* slice_buffer.h in Headers */, - D0A682DF81940CF6329C88F7D321216A /* slice_buffer.h in Headers */, - 3FF641A04A833F53D52EB59F974CA074 /* slice_buffer.h in Headers */, - C8FA008FA899BC0010A8B186A7D4C553 /* slice_internal.h in Headers */, - 1DD9E2B4C96E0C5A768B273996357DA5 /* slice_refcount.h in Headers */, - 9790B37090A15C8B19027E930D1BA86E /* slice_refcount_base.h in Headers */, - 1F944DD95D802A5585358F808F58E256 /* slice_string_helpers.h in Headers */, - 7A8E59165C1D0F3E0C1E9DEE529126E4 /* sockaddr.h in Headers */, - 41375FA28892A4A1D64ED34434A642A2 /* sockaddr_posix.h in Headers */, - EBACCFD72011A10FEC9814568C2A0B79 /* sockaddr_utils.h in Headers */, - 7E6EB6DD5D3790F7BEE7D1580EE0CEFC /* sockaddr_windows.h in Headers */, - A3F972824ADDB6DC0077C172FAA15419 /* socket_factory_posix.h in Headers */, - 1BFC3C850A065917A3225068D2023A92 /* socket_mutator.h in Headers */, - F0D3F4EBBB181D88CE3271E13220DE42 /* socket_notifier.h in Headers */, - 822151D0CD155DFF357A8C1424F039C4 /* socket_option.upb.h in Headers */, - 9E7D9BE6A38A8F6C3DDBD25D19625AE9 /* socket_option.upbdefs.h in Headers */, - 405DD4AC71FCBADE9FFF998D6A967646 /* socket_utils.h in Headers */, - B6F30F8CAFB2DBA825D489262E53E79A /* socket_utils_posix.h in Headers */, - 7FBC88A2786C500ACD6A98C0CBF97F1C /* socket_windows.h in Headers */, - 42DCBF79F6F24757C634CA653B117D15 /* sorted_pack.h in Headers */, - EC35F8B72DFBF7752E4A7289EC31C26F /* sparse_array.h in Headers */, - DCB368AFFDC74806C9FDC5144EEB629B /* sparse_set.h in Headers */, - 781B275843181F3B4A579983F6D75F3C /* spinlock.h in Headers */, - 3567C9CC00D305B840151FFB256E393C /* ssl_credentials.h in Headers */, - 3353BEBE6895B310BDD16B1579BE9ACE /* ssl_key_logging.h in Headers */, - B4848DE26B734E53725911DAE230AB7E /* ssl_security_connector.h in Headers */, - D34899E07AE5F232CF2D8C2AE1927CED /* ssl_session.h in Headers */, - 54A4EBD008D3FB198D27C27CA9F70B38 /* ssl_session_cache.h in Headers */, - 6AB294ED274FC8E22B282BE2DBD2E37A /* ssl_transport_security.h in Headers */, - 656536C899CD25BBE759DE76E740002F /* ssl_types.h in Headers */, - DFEDD8D54121CDE11CA2E214D7B4F7A8 /* ssl_utils.h in Headers */, - 7B07557C03D82C1F98AC5076F3B82952 /* ssl_utils_config.h in Headers */, - 34241E4ABFCF647E96A40008B9446C5C /* stat.h in Headers */, - 34FF3B3478B120030B0AADEEA2FF2BD7 /* stats.h in Headers */, - 3E876A75D18E0CFB52295D875982DFCF /* stats.upb.h in Headers */, - 75A432BF293415CC7B4A92C4899F0FD8 /* stats.upbdefs.h in Headers */, - 8720694652FF0DE4B34E602CF8CBA6F5 /* stats_data.h in Headers */, - 4C66D8406AFDCEACC8194350740F74B9 /* status.h in Headers */, - 36E35676FB1FB1938DAD1AB95C39DDC3 /* status.h in Headers */, - EB181DAEF9EBE26A6C9673253C439328 /* status.h in Headers */, - 32CDBE567D2E9A0CA981668767D09E81 /* status.h in Headers */, - 6E4DB93464C7F21E87B24321EDC3D4F8 /* status.upb.h in Headers */, - 39A295B2E18191A033E0C575D5FE06A6 /* status.upb.h in Headers */, - 7A6A6EB9AB5FB85F665B0CD0934C3F8D /* status.upb.h in Headers */, - A94A19737B2B73DE5D1EB5279B0F4D8C /* status.upbdefs.h in Headers */, - 3A787DAD4D64D02CD15B086E39BCC8EE /* status.upbdefs.h in Headers */, - 683FDC5A6C0BD62B0ED48AD88AB100E0 /* status.upbdefs.h in Headers */, - 94EEB88F91BFA782F8B0E3FA18B31117 /* status_conversion.h in Headers */, - 878BA0F0C37EABEC243F2CB197189E08 /* status_helper.h in Headers */, - 32E515AEFCB7A22BFB7EC3244DB129CE /* status_util.h in Headers */, - EF2E1508A36B6EB9E9EB57128F13574B /* stream_map.h in Headers */, - 8F0EA91E3BC7CEDA162ECD80A9D02AA9 /* string.h in Headers */, - 73154F783A92B82E994115107A03D2BF /* string.upb.h in Headers */, - 252E0D66EB8CDF80D2C7A7CE72E6226C /* string.upb.h in Headers */, - BC788FC1F0F56CBB7DFF773D22D3467F /* string.upbdefs.h in Headers */, - 3EE8192C54B4E3E3760023FC0C83CB26 /* string.upbdefs.h in Headers */, - E4B15D9BD33A6DF7502523942A596603 /* string_util.h in Headers */, - 4F85582ECD208964AC162630694F1AFF /* stringpiece.h in Headers */, - D84A391561BACFD0F59D3BCB5ECF7736 /* struct.upb.h in Headers */, - 9B3E2BAE38DBBBFF69A7AB8B5D1D93EE /* struct.upb.h in Headers */, - 836A5F81FB31C620B7F29CA5815A0202 /* struct.upbdefs.h in Headers */, - D9D2C4E900637E6BA4A28202B1E6FC99 /* struct.upbdefs.h in Headers */, - 136B5FA1B61F4DF2ED1DB9397E1223EF /* strutil.h in Headers */, - 96B58427A98D2819421FD7690CAF7A6B /* subchannel.h in Headers */, - 640B0933C117043B634989CFC2B750E6 /* subchannel_interface.h in Headers */, - 2E895AD0EE4CA17EF941BCD0046FBA26 /* subchannel_interface_internal.h in Headers */, - F8FB8E771EBCB27664E38B6DE0BE6B08 /* subchannel_list.h in Headers */, - 3C5DC238AFB09721FFA06CB18197D59E /* subchannel_pool_interface.h in Headers */, - 081126C69E552FFD51CC6EA506DCCF13 /* subchannel_stream_client.h in Headers */, - 473A7BF02B0A342705D3103C0825F7D4 /* substitution_format_string.upb.h in Headers */, - BE8D4A14BF6B7B53FCDEB045C55AC3A6 /* substitution_format_string.upbdefs.h in Headers */, - 0A8F2F8ED73DDC0F5C70EC9C3D393715 /* sync.h in Headers */, - 31170F212754E132B07B6041839F1258 /* sync.h in Headers */, - E8F49CEB29DFF3E47B9F10F2BD259EF6 /* sync.h in Headers */, - D7B91F6DA3BEF75B9345D26BF56606B1 /* sync_abseil.h in Headers */, - B8915618EC4ABC4FEAAD61EE41B908A3 /* sync_abseil.h in Headers */, - E0936249D98A01F41411AB09F0FA5F41 /* sync_custom.h in Headers */, - 0EDBBAD590AF9F23146FA248310DD5C9 /* sync_custom.h in Headers */, - 8BF74BAEBE90AD52032C579D0B349602 /* sync_generic.h in Headers */, - E2C5AE4BEB5122BDDEF00453D7820336 /* sync_generic.h in Headers */, - E6C5A186911F907BB79BAEACD814BC41 /* sync_posix.h in Headers */, - 58319DB1E609684DC0DA55048F6FF17C /* sync_posix.h in Headers */, - 2153CF30F2F5596EE2572BC5106A21A4 /* sync_windows.h in Headers */, - DB572CFAA9C583978F1429CF6E4EE522 /* sync_windows.h in Headers */, - B2F9DE266E93E1D28995CAA3204417D4 /* syntax.upb.h in Headers */, - EDDEFD97C6FB05762BA6EAEDB561C4A9 /* syntax.upbdefs.h in Headers */, - 84E6613EF5D46A09E75426B38F96CC61 /* table.h in Headers */, - 95777A732778BE89AD23FCB371C1DADE /* table.h in Headers */, - 28C1420B942E1E43191159FCA466F0B3 /* table_internal.h in Headers */, - E24A2B5F3D2240D523B1F6E90097FA4B /* tap.upb.h in Headers */, - B723AE76974903691AFA8167D01FDA86 /* tap.upbdefs.h in Headers */, - BB707155C4392823714C02D27858B0D0 /* tchar.h in Headers */, - E7A4747B81A1F79613173718CF8A7EFC /* tcp_client.h in Headers */, - 12DA19DD12A93CB2E3E968B136B02155 /* tcp_client_posix.h in Headers */, - 89DF4C08075B409A05EFC139DBDE5AAD /* tcp_connect_handshaker.h in Headers */, - 1596BE90314F596FA90C7D0A72A7865D /* tcp_posix.h in Headers */, - E26D26901A6CC6C30892432EF34A4FB9 /* tcp_server.h in Headers */, - D902CA2646371DE5BF3BAAF9AA869F1F /* tcp_server_utils_posix.h in Headers */, - F915AE5E0E9F40566826C7EEE94BEF80 /* tcp_windows.h in Headers */, - 2960FA6E3925898E9EF43D581F67CA75 /* test.h in Headers */, - 92D90EAE3FE8D7DDFEAD6E3CF678C1D3 /* text_encode.h in Headers */, - DFA715F2B45EB93003042E407C3FD562 /* thd.h in Headers */, - D911D2387ACFF48044DF6DCC6623873C /* thd_id.h in Headers */, - D0AAC8D33DFF264924BEE27A50539ED1 /* thread_pool.h in Headers */, - C75D047E9B4460C58732C706BF2A6DBD /* thread_quota.h in Headers */, - 204F91E5A07B4D948580B7BD83E6682E /* threaded_executor.h in Headers */, - E7A1A0A07DFA0A71C7D5D5655D6972EE /* time.h in Headers */, - 52B6AF3F6159B6A4D8908E554DE1B591 /* time.h in Headers */, - 629FF45F06C71645E029B06131595B54 /* time_averaged_stats.h in Headers */, - C41F33CA1861A9DBC0C081C1F973F0EA /* time_precise.h in Headers */, - 29AD0D3EC70BE8B69283F9D81BCAC320 /* time_util.h in Headers */, - 5AD68D024BA20E41337DDDCA2FA10140 /* time_util.h in Headers */, - 781AD22B811DF7A1407659C5DC646E4E /* timeout_encoding.h in Headers */, - E461F0E0038FCF5ACE09766202161080 /* timer.h in Headers */, - BC61285B7368F96D1F1F36A07D17EBC3 /* timer.h in Headers */, - CD07A87704682599BFF6D593D791BBDA /* timer_generic.h in Headers */, - 3316A8574DA37FC01133A01ABE33D817 /* timer_heap.h in Headers */, - 450BE1CCEBA48F373CE03411015DA886 /* timer_heap.h in Headers */, - 4F5109BD29A94E71BF03BC562D66BA15 /* timer_manager.h in Headers */, - C2B63672DA7DB66E0A781165B58A746D /* timer_manager.h in Headers */, - 217912D80295CC5CD7E829BAB6D9AB52 /* timestamp.upb.h in Headers */, - 49B948666E7F3D6A235A7A169D14771D /* timestamp.upbdefs.h in Headers */, - 65DD91459F741E75CE82EBD50C1195E8 /* tls.h in Headers */, - 69B356B08E5FBD5525921685C3526910 /* tls.upb.h in Headers */, - 0881612FB13F152DB2368E442E1BBCA0 /* tls.upbdefs.h in Headers */, - DE2C7BF1C1CB526699D8F2D26F5AEF1D /* tls_credentials.h in Headers */, - 234F3A98CF0CBCEFA19EAFC859599D1B /* tls_security_connector.h in Headers */, - 68DBE9872FC65EFAADC3A37D54FB76F3 /* tls_spiffe_validator_config.upb.h in Headers */, - EE2A476DA42D3C8F9CE040E24185D69E /* tls_spiffe_validator_config.upbdefs.h in Headers */, - 55F697285C2C310975012D8B1A6A4DB9 /* tls_utils.h in Headers */, - 477C4BD80FCE06B85EFF386C079CD464 /* tmpfile.h in Headers */, - F253D31EC837099C48E24591E3BB8659 /* token_bucket.upb.h in Headers */, - 394245BC95D8D5CB99BE05D02E8F5A9D /* token_bucket.upbdefs.h in Headers */, - 32F9C1372EA0E99A2E821694C9476BB1 /* trace.h in Headers */, - C049104E3436F08843C1902F7AAF501A /* trace.h in Headers */, - 7774DE83C627214AAAE877F750973F71 /* trace.h in Headers */, - 9763C7454B8E9885A7E92E6E6E7F8E4C /* trace.upb.h in Headers */, - 9813B3D498C7ECBD7E75819513A27CCC /* trace.upbdefs.h in Headers */, - 144B632CBFB1BBCE70528A460015A7A3 /* trace_config.upb.h in Headers */, - 1CA5E2007C211D1E2D696B11AA3C330D /* trace_config.upbdefs.h in Headers */, - C9686CA46BCCC69911CE489B4CE20C6F /* transport.h in Headers */, - DABA0A7B2794F9B422B608A62E798FFC /* transport_fwd.h in Headers */, - ABE7481183A07928F259D9593F3D4776 /* transport_impl.h in Headers */, - A55B0B239A59F8F281FF5CEC35ED6444 /* transport_security.h in Headers */, - D28D7CED37C341C79574C0464B0EE2C6 /* transport_security_common.upb.h in Headers */, - 6E55BE0956154920C601EB8856EF76D6 /* transport_security_common_api.h in Headers */, - 74BA0647994FED68BEC4A7B7ED9C41ED /* transport_security_grpc.h in Headers */, - A5239EC9B7DC664B78D53E34F1DAC5EE /* transport_security_interface.h in Headers */, - 7AD49F610D8C7A4BA40EA688F2B39DB1 /* try_seq.h in Headers */, - 20BAE330A1792842B23924E82291725B /* tsi_error.h in Headers */, - 26FF072BED1FD98712A6F4F862485814 /* typed_struct.upb.h in Headers */, - 818A9A47D98A4D53A1B8326C7E259FE5 /* typed_struct.upbdefs.h in Headers */, - ED992874330618D54C2174A7DCBA9519 /* udp_listener_config.upb.h in Headers */, - 63B4D303CA2940CD58DD6CF9B3184CEB /* udp_listener_config.upbdefs.h in Headers */, - 35F4B29C3B5134DECED4815A974634BE /* udp_socket_config.upb.h in Headers */, - D0D1A7E02D9D1486C68F3CE8EE96BBA4 /* udp_socket_config.upbdefs.h in Headers */, - 706C224DF9C51FF713A874D8C99F7368 /* unicode_casefold.h in Headers */, - 83AE50527CA904102C6AF828AA76407F /* unicode_groups.h in Headers */, - CD07C622B272388683757FF6D1F9CD7E /* unique_type_name.h in Headers */, - D822520B589483E3E1B7F0CE4415C854 /* unix_sockets_posix.h in Headers */, - 4ACD9FFB8EB34BC7E00AD4DBFEF51450 /* upb.h in Headers */, - B93B32215815D6D4212E7F5678330274 /* upb.h in Headers */, - 5E92147BDC906A75C8BAA61B807416F3 /* upb.hpp in Headers */, - 9339432A735801D275B8CD7EC9625C26 /* upb_utils.h in Headers */, - E36FAC4F77A198FA83E2ECC7753A726B /* uri_parser.h in Headers */, - B5AACE617FCA997C852ABE2226102599 /* url_external_account_credentials.h in Headers */, - C9CD04D3538AD4AA155701F3153B443F /* useful.h in Headers */, - C2C7883BEAF9AABBA2C7961135180EC0 /* utf.h in Headers */, - AFCE26F692461D0D1DD0D6FCA3437319 /* utf8_range.h in Headers */, - FA57696C1A982A0F0B59251D9D978A34 /* util.h in Headers */, - 7571A98714672EF7748664456F8971BA /* utils.h in Headers */, - 47E92EAF5CD845887330AE8F11A41D68 /* validate.upb.h in Headers */, - 69729BC007C7799BB1FB3C6E963DF80A /* validate.upbdefs.h in Headers */, - 46744D772B177388A5753D3E87EDACCC /* validate_metadata.h in Headers */, - 3CA09D68F0645BC95B0A18673233D6A9 /* validation_errors.h in Headers */, - 373F896FA0BE94A2C0903D7DE5B36B62 /* value.upb.h in Headers */, - 13ACB9AC10EDEF3E9C6789024EF36154 /* value.upbdefs.h in Headers */, - 039CA1E9B6A2351F6BE1C84616AF4A4C /* varint.h in Headers */, - 3156D0BE8542CFAA10825724CEB07711 /* versioning.upb.h in Headers */, - F1FB43EDCDC1C18D127040E47A96445D /* versioning.upb.h in Headers */, - 7EC4D67F8C9229C28CDF5A0AA9B654DE /* versioning.upbdefs.h in Headers */, - 0B244B389913FA66474715132FAB3A0A /* versioning.upbdefs.h in Headers */, - 10FDFCBC766D8C930AFEA1F122BAA689 /* vsnprintf_compat.h in Headers */, - A7E103C27DB7F4F470B046CF1EED8446 /* wakeup_fd_pipe.h in Headers */, - ED2E7123F916C7E33869CA5AB2451A18 /* wakeup_fd_posix.h in Headers */, - 93240AC8DDA992E9B733F5085C14AC62 /* walker-inl.h in Headers */, - EB543E686FD9B78D2F0028140D05C4D7 /* win_socket.h in Headers */, - 86FC9D29151769DD3A00883F868AC7E5 /* windows_engine.h in Headers */, - D5F70EA8C7B093EA61FAAC0AF1A62EE1 /* work_serializer.h in Headers */, - 2F6D830A040D272D96B4BBA4D298EFBB /* workaround_list.h in Headers */, - 34ED6C09174BC7A63128BBD19AF05A34 /* wrappers.upb.h in Headers */, - 2BF7059D8006B97E4F72418ADBBC2A71 /* wrappers.upbdefs.h in Headers */, - DDAB7368DD88996DCB19CE0479B21484 /* wrr_locality.upb.h in Headers */, - DC3E33121842527AB5E324BE3419C0D4 /* xds.h in Headers */, - 9F994227B8BFBE031092BB10A190F9E4 /* xds_api.h in Headers */, - 47A16FE644F9F5FA1597B4AA0351D4C3 /* xds_bootstrap.h in Headers */, - DD4EBFEDF780B438F538DEE37777B69E /* xds_bootstrap_grpc.h in Headers */, - 46AD663BB707BD604F0FF93AEB246253 /* xds_certificate_provider.h in Headers */, - 6FF0188B40076CF347312B2CF7C7C8BD /* xds_channel_args.h in Headers */, - A52D3892FD2AF609BE9EECB91B94701D /* xds_channel_args.h in Headers */, - EB0FB17505CF8DD79A453F3FF75EC9CE /* xds_channel_stack_modifier.h in Headers */, - 90FFD469CF031E48DE5F8792A6F99914 /* xds_client.h in Headers */, - 7100FA46ED1A8403FA6311A7F0DCD33A /* xds_client_grpc.h in Headers */, - 58D3BF28875E2DD7888E28DF757111CD /* xds_client_stats.h in Headers */, - D8EA23A6C0E956D61FFC0A17694303B9 /* xds_cluster.h in Headers */, - D53143650479EFEABBB3FD0CD211D7CC /* xds_cluster_specifier_plugin.h in Headers */, - 5D93C99077824CCC90EB4E5E7923FA57 /* xds_common_types.h in Headers */, - 97299EF0C03D62F80D3A09D056F75D08 /* xds_credentials.h in Headers */, - 081246F69A0BB0661CA7DDAB0007535E /* xds_endpoint.h in Headers */, - 95284BB96204D3E4E9EB7296A255B4BD /* xds_http_fault_filter.h in Headers */, - AFF909164563F2519FB4C4719F1E7D26 /* xds_http_filters.h in Headers */, - 801F274A094D478329C6086EC617655C /* xds_http_rbac_filter.h in Headers */, - 1658D3A37C4286B88203E05A01243144 /* xds_lb_policy_registry.h in Headers */, - B5E4A023044726EA6311DF25B9419DD1 /* xds_listener.h in Headers */, - CA7E778A761F056C9439769746F4923C /* xds_resolver.h in Headers */, - 9AF135EB777E365D3E4024175D0A7E0B /* xds_resource_type.h in Headers */, - C32C0948830015F0476B64EE366614D7 /* xds_resource_type_impl.h in Headers */, - 266CF0635188928A6133DE4B1B959BAE /* xds_route_config.h in Headers */, - 20B37F9D676B877C25F66CE09A3DB583 /* xds_routing.h in Headers */, - DE52160DC53D77D1EA12593A6069AAC5 /* xds_transport.h in Headers */, - 4BBAEF8418A21E75BDDE5029CD9458E8 /* xds_transport_grpc.h in Headers */, - 53E4E1499404FE2C935CFF39524DCE8C /* xray.upb.h in Headers */, - 2B08A8F1A72287159144A11DCE1059DF /* xray.upbdefs.h in Headers */, - FEFA81CF8FD8A0CBD3647DE7D69371C9 /* xxhash.h in Headers */, - D0B9A3692B2CF686209538E2CD5DB6A6 /* zipkin.upb.h in Headers */, - 0EE63A6CC5B9995449C8671D06149210 /* zipkin.upbdefs.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 118D872CF9A78EFD8280B80966D87226 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 1F2FBAF11DC13D6A701475ED0DC6D6D1 /* arena.h in Headers */, - 99B9F43386A4AD53842AEAC5AADD2211 /* block.h in Headers */, - 0C6E37A644B20B6D0B2D4C148020BC5B /* block_builder.h in Headers */, - 165AF1DA9AABCA5355B0E6D835133DBD /* builder.h in Headers */, - 8F7E98AAA84F9E7CC5FB90745B211C32 /* c.h in Headers */, - 6E8A1A22CE63020316F0D0B119A22748 /* cache.h in Headers */, - 08178B7EDE2F59407B34EC555F946640 /* coding.h in Headers */, - 15B14EF8E7FD549E668E17DFD3469A39 /* comparator.h in Headers */, - 2D0160192619159ACF30FCFF1B7EBC25 /* crc32c.h in Headers */, - EDD9FD256A488F5DF3346B159675F7D3 /* db.h in Headers */, - 564DDBD994F62959596091F67A226FD0 /* db_impl.h in Headers */, - E7D017F7104B4D1DB24C6644AC370859 /* db_iter.h in Headers */, - 0DFA10EF9F7FE623B14E16474AA35A27 /* dbformat.h in Headers */, - 18218BEA26803223B7E0FA4E8957C195 /* dumpfile.h in Headers */, - 075CFB67A9148CCEBEAD3C2E3A45C708 /* env.h in Headers */, - CC2E8E258DA00549AC9403E3483176E7 /* env_posix_test_helper.h in Headers */, - 5894A763B7D3836CE32A01BDA6B8F71E /* env_windows_test_helper.h in Headers */, - D37EF87C7910FD62765BA0AEBB00FD8A /* export.h in Headers */, - A65B384FD6C698C712575F3C2EB2311F /* filename.h in Headers */, - 57D493FC7A9247497129494A6ED77413 /* filter_block.h in Headers */, - 87BB4FA9FBFD67F3E765DC1C32BEC171 /* filter_policy.h in Headers */, - FE17608405584C358F6505A6CCA51DB1 /* format.h in Headers */, - 32E3A560EF6ECD5A8C46450690CCF571 /* hash.h in Headers */, - A862C26A62B6C46DD56FA228746843D0 /* histogram.h in Headers */, - 107E378948DF85C39DA9A6C203C3FE14 /* iterator.h in Headers */, - 50C10EBC4A4C9DF06131B041498CFC40 /* iterator_wrapper.h in Headers */, - A4CFECBFAAD49A4B5EC36B2C7C83FD7D /* leveldb-library-umbrella.h in Headers */, - 76A052C206797544516670A319007933 /* log_format.h in Headers */, - AB3982DD6A388E34DDD9069374058579 /* log_reader.h in Headers */, - BC9BDDA4773F1D1F45FF0B896C48A104 /* log_writer.h in Headers */, - 6B7A109057F46C70006C4D283E2236A6 /* logging.h in Headers */, - C90957B97CAA89197C3FE6736702CECE /* memtable.h in Headers */, - 6DB60BB1EDF863209D6E20A2B5B9543A /* merger.h in Headers */, - A005470A98F97842FF26122BB344B727 /* mutexlock.h in Headers */, - 61EDBEB90F48F66A4DC299515C980D58 /* no_destructor.h in Headers */, - E11DCAAAE8875AB9C5B4982500AC951D /* options.h in Headers */, - 556C22E804C2093A10010C2821E072B0 /* port.h in Headers */, - 8B62679C328AEC550C004579FF59F684 /* port_example.h in Headers */, - 3BAF7527CBD68411B19E40F70CC3F8F2 /* port_stdcxx.h in Headers */, - FDE024117BAECCF767987379A8BC9805 /* posix_logger.h in Headers */, - 55AAA72520EED44B1E8024AD26CF6AA3 /* random.h in Headers */, - 4C7731B6EE0C1D5E13E104C2853834A4 /* skiplist.h in Headers */, - CBD156F29B3DA6F010EC87AA413C5185 /* slice.h in Headers */, - F86C5A86AF1663E309EE0471DC2954E6 /* snapshot.h in Headers */, - D66C3D30B51C1174E7A38EA401AB9E33 /* status.h in Headers */, - C7B5CCBAEEBF60921CF96484A13F90F1 /* table.h in Headers */, - 88AAABA6BD5907AB84118418B572E04C /* table_builder.h in Headers */, - AFE05AA888DC170CC1C70940059CF566 /* table_cache.h in Headers */, - 8A1B2680E61B792C4A6BDA8B3F3987E2 /* testharness.h in Headers */, - 1EDFC3228D09656D11BF345B7213AB10 /* testutil.h in Headers */, - 58D95520FD312D7C9BEAC6169AAFB683 /* thread_annotations.h in Headers */, - 0C4F1A42416D1124EE99988500F08D56 /* two_level_iterator.h in Headers */, - A8672641BBC88CD12ED0FAF8B06C6FB2 /* version_edit.h in Headers */, - 688A41F11DBD23AB10EC788768A4CF01 /* version_set.h in Headers */, - B78E2BC0695CCBB8DEBC8CEBDE3CA54B /* windows_logger.h in Headers */, - A80F08A044D51A993E79F398830D2551 /* write_batch.h in Headers */, - 6F8571F0AD34D68AB3C15102A8359E13 /* write_batch_internal.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 55624B897337F7DC5BE9832F16F1F175 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - C9395092FB58C2EEF39F29470AE6AE1B /* FirebaseCoreInternal-umbrella.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 63EAEEE7E98503A624DFEB19BA80BE11 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - A99210C43E25AB6B0A66266BF47643EC /* GoogleUtilities-umbrella.h in Headers */, - B4A7CADD336FD4E43B2AB7749B445F2C /* GULAppDelegateSwizzler.h in Headers */, - 611063C3B3D0E374C6667BDB7705DA70 /* GULAppDelegateSwizzler_Private.h in Headers */, - 51B94F6C57E62239494B66AAA4303351 /* GULAppEnvironmentUtil.h in Headers */, - CC9B3DF7FAC2C4C40B3EC7F4AB4CA7DF /* GULApplication.h in Headers */, - BAFCD3530DDF288443B6E11829E7B83A /* GULHeartbeatDateStorable.h in Headers */, - 579D64FA95A3490976567E534BBE1A06 /* GULHeartbeatDateStorage.h in Headers */, - 50A66E917DBCE6EFBA9EF2794493436F /* GULHeartbeatDateStorageUserDefaults.h in Headers */, - 89ACC1E096D5B9B20F2ED920E0D898C7 /* GULKeychainStorage.h in Headers */, - D2A0C2DC43C7C302A0D09D02CBA57373 /* GULKeychainUtils.h in Headers */, - 7106852F0CB6A3D5A2E42B99212C2302 /* GULLogger.h in Headers */, - D8572CC574FE5E181623358FB74CDCA3 /* GULLoggerCodes.h in Headers */, - 39C712DD09E3C7EE213A8DD869F69168 /* GULLoggerLevel.h in Headers */, - F362B4129E4B66CE10E4BF1293E2C757 /* GULMutableDictionary.h in Headers */, - 9DC736FC0B5D13EC0C53E5E0740D019C /* GULNetwork.h in Headers */, - 6798E7426E73FADF84D29CDE03667B0E /* GULNetworkConstants.h in Headers */, - 8AF28441CA409A65ED2C255FBCDD6AC8 /* GULNetworkInfo.h in Headers */, - 76B486D65A841BCD3128ED342273B003 /* GULNetworkInternal.h in Headers */, - ADCF1B6576F524C11A11E01003A76A34 /* GULNetworkLoggerProtocol.h in Headers */, - 4BF44B30A3C2E5B0BEFF60D23F7D1EE5 /* GULNetworkMessageCode.h in Headers */, - 05CCBF0B501B9733A7BCF48B897F4FBF /* GULNetworkURLSession.h in Headers */, - 663146D952C581BFF34098EAEE4348D9 /* GULNSData+zlib.h in Headers */, - 1D4941587E28943EC86847105CB5B8F5 /* GULReachabilityChecker.h in Headers */, - C0B14044790DA3EF75554622854F78ED /* GULReachabilityChecker+Internal.h in Headers */, - 70EF8A09DED934C3CE6A2ABD0E9A9246 /* GULReachabilityMessageCode.h in Headers */, - 7982D8A1857F7233C4BC6EE0A8549847 /* GULSceneDelegateSwizzler.h in Headers */, - 0054756BE527896DED242636C6FC7353 /* GULSceneDelegateSwizzler_Private.h in Headers */, - B892E283AC0E5F2C81CE42EBDCD26E20 /* GULSecureCoding.h in Headers */, - C6A7B7ABDDFF4CA34C93FC091FDDCA8F /* GULURLSessionDataResponse.h in Headers */, - A65BCE865C70982B508FB21F7E355382 /* NSURLSession+GULPromises.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 716A9D5CB1ED239E02E542D695057FA0 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 3AC07AD407906DC07A358C21AC230766 /* Pods-iosApp-umbrella.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 748320462568078A367200257B5283FC /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 0391AFA8D94BA20D69056BC0448ED390 /* abseil-umbrella.h in Headers */, - 833989F339B05A7C59BC675B44B1A16A /* address_is_readable.h in Headers */, - 6A3E42C7CDEB009174F2758A2F256425 /* algorithm.h in Headers */, - CAA7CEE708BFF4224161D3F96797D8F8 /* any.h in Headers */, - 765A67A44C3E931C60E7B4E17D3B4920 /* any_invocable.h in Headers */, - 684099BF6564EFDAF6401E271CA5FA7F /* any_invocable.h in Headers */, - BADB641F5DDE94A104B2F5F445521E54 /* arg.h in Headers */, - C249BFBF2EA1DADC042815770C4EA29C /* ascii.h in Headers */, - 537278A170C521CD2B2BD037048455C9 /* atomic_hook.h in Headers */, - F7E4940153962ACB14ECEBDFC3C7C713 /* attributes.h in Headers */, - E482DD0371A8187E6802758BB44FF70B /* bad_any_cast.h in Headers */, - 7BEA31209574C3E8A852A68A4A5BFECD /* bad_optional_access.h in Headers */, - 5FAC3D3B5D018253A780F1A437FAA075 /* bad_variant_access.h in Headers */, - AFCC3EBBAE4A242D7A0DFC2057FAC0A6 /* barrier.h in Headers */, - AB3C7C9045DA52E85EF6E0845A83F0BF /* bernoulli_distribution.h in Headers */, - 98FB2E6D0AF99CF0B660F12D4D1811DD /* beta_distribution.h in Headers */, - A65BED4DDE670185B9DFBFC86069615F /* bind.h in Headers */, - 5F5065B77E41DEE594302F3B98891A1A /* bind_front.h in Headers */, - 352A850B7B983C21DD141991EEF5DCE1 /* bits.h in Headers */, - 0060277AD5FD035C8169EE3967CB0AAC /* bits.h in Headers */, - 3256CE096219C90937CE042CC713C779 /* blocking_counter.h in Headers */, - 35278D2378329B9C8CCD8710226A659A /* call_once.h in Headers */, - C7B614DBB6B943C512DC9B7F4645ADA0 /* casts.h in Headers */, - F289AD51036FAD12CB4C89D03A7538F3 /* char_map.h in Headers */, - F5241850E187486C86DC2F2BE91FC83F /* charconv.h in Headers */, - A8BD3694F738C674202F912E712C1008 /* charconv_bigint.h in Headers */, - BC055358E5E859F8E8933618C9C4157A /* charconv_parse.h in Headers */, - 9CC2E4262ED4DCAED0C8A71482971341 /* checker.h in Headers */, - 5177E1FA83954A478FFF0580E38C7A77 /* city.h in Headers */, - 5E07B7930114266D8C7B61EFA4C27086 /* civil_time.h in Headers */, - D6B6998FED3FB30FD1CE95046BB2C4C1 /* civil_time.h in Headers */, - 6C24E2F71D2F349A0CE1DF2D2573C403 /* civil_time_detail.h in Headers */, - C4FAEE0345794927256B15264913F4BB /* cleanup.h in Headers */, - C7E569F0A1AF4C0A2D5D266B08DFA8FC /* cleanup.h in Headers */, - 2495F57FD1BC15250C6B647AA8362390 /* clock.h in Headers */, - 87707E083758ED3B28EB92208ACBB46E /* common.h in Headers */, - 82CEC4F700692639BD2B8234ED7D2717 /* compare.h in Headers */, - BE54DE3EC7417851536F77B0F2021554 /* compressed_tuple.h in Headers */, - 49A96E64549B511D83FBD634D15E26CA /* config.h in Headers */, - F0FB9C369AE6BB7423AA418F5348F39A /* const_init.h in Headers */, - AFD601FCA0FAF990C2B5177EACD25B5F /* container.h in Headers */, - DDE01459ED9F66A80EE3B13B03C84D70 /* container_memory.h in Headers */, - BC595F00D3395F7DB572B12A311CD5DE /* cord.h in Headers */, - 5D369233385CEE733A80BBBE59BED1EC /* cord_analysis.h in Headers */, - D2B8C9D5145650961F75E5993149EA51 /* cord_buffer.h in Headers */, - 076B73B934311850C5C98E1B58732FD7 /* cord_data_edge.h in Headers */, - 889218079C835ADC583015D73A365690 /* cord_internal.h in Headers */, - AF2B4FF56A533B48B14BA95CB4B42006 /* cord_rep_btree.h in Headers */, - 20F5809C7D54579FA45465E447FD7EE4 /* cord_rep_btree_navigator.h in Headers */, - 2999BD051F02E3C982CAFBAA1FE51771 /* cord_rep_btree_reader.h in Headers */, - 38BE4D3BEC6BDDF1216EB73CD74C1066 /* cord_rep_consume.h in Headers */, - B055F6F359CAABD22368827D402425BF /* cord_rep_crc.h in Headers */, - 32A0A4D44ED8208360452352EC632D22 /* cord_rep_flat.h in Headers */, - 45116F654B3820C4083B91730A8AEC5D /* cord_rep_ring.h in Headers */, - 7BA0A915A17A0F9619588F8982515B1F /* cord_rep_ring_reader.h in Headers */, - D93E96408F4C2CB7F00A48BC97ADC885 /* cordz_functions.h in Headers */, - 5C6E32572A006B0BB4A2E84E5D8AE1C6 /* cordz_handle.h in Headers */, - E62042A4B5AF32A33D5B09C4A41118B9 /* cordz_info.h in Headers */, - C4D971E16BD078F749460E7C2F019AE5 /* cordz_statistics.h in Headers */, - D23D9C355D480865EC897ADB58E75D88 /* cordz_update_scope.h in Headers */, - 294CC1BA7F8FA672125F905E46933655 /* cordz_update_tracker.h in Headers */, - 1FA835D2EF6A3849E30EE653EFDE4995 /* create_thread_identity.h in Headers */, - 468212EF81994A1A233D1AAFCE717659 /* cycleclock.h in Headers */, - 0AD5EF299F3CE67D2B1646D4EF3067E6 /* demangle.h in Headers */, - E927C5EC06B784AC51BE537453C8EAFA /* direct_mmap.h in Headers */, - 8AE7B55FED69F7E3EF6254C0CD47EEA0 /* discrete_distribution.h in Headers */, - 6CCBCF4868D7897520FCA5BB5C8F0AA8 /* distribution_caller.h in Headers */, - B3BEF84C8A9F6593D981341630A811B8 /* distributions.h in Headers */, - 8587B3A7E9158E27A3E756F06AC4F305 /* dynamic_annotations.h in Headers */, - 36401BF48805BB2F3E2714B6C4F0B24A /* dynamic_annotations.h in Headers */, - E9D11A8A70E10593199A99089DFAFD16 /* elf_mem_image.h in Headers */, - F32037FCB1CB5E81E67871D2799FD151 /* endian.h in Headers */, - 873C0F2360E38D1D9612B3DE59D838EA /* errno_saver.h in Headers */, - 8D4FF1FCC85F494F1D89B778BF69BE7C /* escaping.h in Headers */, - 9ABA84DD9F9F9C7737A91994A3BA7A61 /* escaping.h in Headers */, - 1E9F1510C735962381BB3E257EBEB637 /* exponential_biased.h in Headers */, - CE61FE322C816D353CAC4DB64A64A6AB /* exponential_distribution.h in Headers */, - DE47E1BC731D2F6808B23294BFA0C2F1 /* extension.h in Headers */, - 9553284E6339299195F8A25BB83DD72E /* fast_type_id.h in Headers */, - 5FDA021264699C25344917DF01008EE3 /* fast_uniform_bits.h in Headers */, - 6E2241B64D753D84D9171A14747A967A /* fastmath.h in Headers */, - F68DEEB968647D59ED3200C3A8E8526D /* fixed_array.h in Headers */, - 02713998D8BCDF149AB6019C7D9273FE /* flat_hash_map.h in Headers */, - 5D4D0467B7B631E194A3696C378EE24B /* flat_hash_set.h in Headers */, - E7005B8B668B8E0A16527C64FD414F05 /* float_conversion.h in Headers */, - 8CB41BB60AEB3F6FF0408581955E8260 /* front_binder.h in Headers */, - 9D7F346D56E1B525CA86AE8CA718E367 /* function_ref.h in Headers */, - 22D0160715B09ACE3358AD7489B090A0 /* function_ref.h in Headers */, - 93C653380E35F0C85E653DBB3837287B /* futex.h in Headers */, - B1011C1CBA1C6A50F4C5FF814589377D /* gaussian_distribution.h in Headers */, - DE8BAD26668128AEA1448F46AB3DBD88 /* generate_real.h in Headers */, - 6A988D070165C292ED748D8B083C421A /* get_current_time_chrono.inc in Headers */, - D5E8BA4EC52EC7632D51691B64DCDA34 /* get_current_time_posix.inc in Headers */, - 5E4D3FCFC056425A711F31AE41F4D750 /* graphcycles.h in Headers */, - 7E20F2082530C8B291FE241B7CADDF33 /* hash.h in Headers */, - 403F6E7CEE60C96A0849052D5566A4CC /* hash.h in Headers */, - 32973017845214775D507D59A6EA86D6 /* hash_function_defaults.h in Headers */, - A293A7A1C861391FDC66D5844C3DA327 /* hash_policy_traits.h in Headers */, - F9E8964DE373ACF2D3DC7A58E230B133 /* hashtable_debug_hooks.h in Headers */, - AB89F4C1019196747BB421DD0CDD7E13 /* hashtablez_sampler.h in Headers */, - E5E0891ABB1779C89EA52A010094AA37 /* hide_ptr.h in Headers */, - 56E9B04EB3E5E96C69579750EC42F5DD /* identity.h in Headers */, - 2CAC0BC3532655CA613C5140B78CAAC0 /* inline_variable.h in Headers */, - 982ACABF7FA2A19C7710422C9294CDEB /* inlined_vector.h in Headers */, - A90319855692FFA7DCE4D917CE4EF38C /* inlined_vector.h in Headers */, - 3C6B30BB56EF2D39B03B30F79F64EBFA /* int128.h in Headers */, - 843EBC6A485D559C7A5FE84D1DE32F6E /* int128_have_intrinsic.inc in Headers */, - 5F39ED6E97236C75B3FA6BFBF56386A1 /* int128_no_intrinsic.inc in Headers */, - 6C2C2F2B037E3FBBEDDE1F6BA1F7D650 /* invoke.h in Headers */, - 8D18D6B378317CA2018662D1F2BA2249 /* iostream_state_saver.h in Headers */, - BD6FFE28E7860E49D602886A54FC9954 /* kernel_timeout.h in Headers */, - 2B765D56525968D1FFBE1385D1CE0A81 /* layout.h in Headers */, - BCA2F5701048E6FB6665AA1E85271159 /* log_severity.h in Headers */, - 7058F3847B27AD12E4767A08DDCC562E /* log_uniform_int_distribution.h in Headers */, - D48EA20DDACC084052B9F25F9B156B92 /* low_level_alloc.h in Headers */, - 09A6195547BCB57F26991415E8FCDF14 /* low_level_hash.h in Headers */, - F020F38CB5CCD07FAF56CCF5D5033908 /* low_level_scheduling.h in Headers */, - 2585F20137FCA86F45FC3811B4524F87 /* macros.h in Headers */, - 403F223F71E6E7B75EAC81C0E89A1B8E /* match.h in Headers */, - DB712EA84ADCE620CF6E160720502FE5 /* memory.h in Headers */, - D83B44D85D45478B260E414DCCD49D3E /* memutil.h in Headers */, - CCB1EAFC2AA064C3626E0C74A89498B8 /* mutex.h in Headers */, - 845CF5B94C6815A08E7518AAEC9D3103 /* nonsecure_base.h in Headers */, - AC958ECACE4390F9C46612185A835BA3 /* notification.h in Headers */, - 8C3C0143CD6D84D70EC8C76A00A2427E /* numbers.h in Headers */, - E2ACCD9864DDEF76329424EF87BAAF6A /* optimization.h in Headers */, - DD7E09C407269E55D005AEF1A4DF7E24 /* optional.h in Headers */, - C60762FA865F2D015AF82A2A0FFD880B /* optional.h in Headers */, - A30256A5FECCEA4ACA96B1CDC36F6AB9 /* options.h in Headers */, - 9F8925810B8CCA6E3109C11BEE47BD99 /* ostringstream.h in Headers */, - C627425035126F3D41AB86DDAFCEC8E0 /* output.h in Headers */, - 5302083D2ACCB218E537DC1C12E26480 /* parser.h in Headers */, - B4684123155F249D04A73D74D1762C3F /* pcg_engine.h in Headers */, - DD2AD95E527403BE71BC7F55E5D56E87 /* per_thread_sem.h in Headers */, - 0E82E4772BEF0519BF0A996898D6A957 /* per_thread_tls.h in Headers */, - 0E8141F1613AB051C7E3EC325B64276A /* platform.h in Headers */, - E2D217825487CC550B9AD4F1B0848557 /* poisson_distribution.h in Headers */, - 9F1952A6A4D7589F12E965E72ED342E1 /* policy_checks.h in Headers */, - 9FE4A3CAA98C37D1E05D1DEDFE21133D /* pool_urbg.h in Headers */, - 02290B0A5EC9C935D00D55940C48D883 /* port.h in Headers */, - 32E5752545643F0C19F531F1A2E3C786 /* prefetch.h in Headers */, - D67D59EEC5471F9ECF6D94C1C7D3EECF /* pretty_function.h in Headers */, - 47B0DAC83913F604EDF58D9D371DDA91 /* randen.h in Headers */, - 7A037BF2A7051B537BB43E0ECA875D77 /* randen_detect.h in Headers */, - 882BA104401824F99A6E769E3893176D /* randen_engine.h in Headers */, - DDA78E350F7E5D530C636C20F27E3FF8 /* randen_hwaes.h in Headers */, - 1CDA2A94EAACF03CE955E826D7BD51D5 /* randen_slow.h in Headers */, - A9FB21D59BC08CA0A715E64354FBE9E9 /* randen_traits.h in Headers */, - 1C42B420D9E1FD88FACAF40209ABC60F /* random.h in Headers */, - F46FB6A6697D3AF8853DD2B11F2A42A1 /* raw_hash_map.h in Headers */, - 2CCB89F55A520210394F6C2FB89F88F9 /* raw_hash_set.h in Headers */, - 9532868CF7B0DD24CE0D4ABE87B6AC4C /* raw_logging.h in Headers */, - D9EE15D8C73814D883FBEA6A87CA8EC4 /* representation.h in Headers */, - 64CF0C6A3DD40DB1374B30BB9D918085 /* resize_uninitialized.h in Headers */, - 0CD54766E8B109EE039880F8AFA9353E /* salted_seed_seq.h in Headers */, - 91745C5A8BAE246656F8C24F18820631 /* sample_recorder.h in Headers */, - EC4CC2D30BA4555A7F72C52673E0B4F4 /* scheduling_mode.h in Headers */, - 2DA618756B84B5DCB8ABDB1B80FB7231 /* seed_gen_exception.h in Headers */, - 54CF2C67ECF928EF03777E5FCB46A3B3 /* seed_material.h in Headers */, - C4C714D7FDE98CDA8E173BEA5B76FAC5 /* seed_sequences.h in Headers */, - E56540139D52BDEBA526D6B76FE227D5 /* span.h in Headers */, - A2BF3ECFF8D096B0FEBD8D8DF4C014DF /* span.h in Headers */, - E0E490C2A592ECEB2A20374F60C38CCE /* spinlock.h in Headers */, - FE67BCA2297972ABB270A789EB8EC319 /* spinlock_akaros.inc in Headers */, - A8F9913AE637D82A4A1048DE2A656924 /* spinlock_linux.inc in Headers */, - E45B2FCB2F9A1CEF66E8DBB057386A30 /* spinlock_posix.inc in Headers */, - D6CB657038B6CFA9F1DC72329E6DC75B /* spinlock_wait.h in Headers */, - 641283C34F071C82D11B48AB246AA735 /* spinlock_win32.inc in Headers */, - 0596C09A7F14F25A80AC042943FA400F /* stacktrace.h in Headers */, - 66267F8EC1B89CC08AE4FC2A76E6898A /* stacktrace_aarch64-inl.inc in Headers */, - 71B2BB6B8E74E8AF2F12D59EAE9B4A32 /* stacktrace_arm-inl.inc in Headers */, - 29826125B545F2B31E47F92F3B351D9C /* stacktrace_config.h in Headers */, - 6EE519616E320456F7CDC38A26475DA3 /* stacktrace_emscripten-inl.inc in Headers */, - 3E9C7D1E472F00CC990FACD402775F28 /* stacktrace_generic-inl.inc in Headers */, - 0438FA78DBF97FDE2B0DAEFE02A58F52 /* stacktrace_powerpc-inl.inc in Headers */, - 98A21F938FF7D49F1D5D9FB029790249 /* stacktrace_riscv-inl.inc in Headers */, - 1A776CBDC11F5376126699EEB65E765F /* stacktrace_unimplemented-inl.inc in Headers */, - A6E6C514E849F5975B85416DC253C015 /* stacktrace_win32-inl.inc in Headers */, - 515601966CE8E8133B66C7F90DD79731 /* stacktrace_x86-inl.inc in Headers */, - D056123CF2E864416C6A96773E4D8220 /* status.h in Headers */, - 51285E4DAB2D33DE116DDF54357DF7EF /* status_internal.h in Headers */, - C92DAD1C8AFC370DA938B7F8772355BF /* status_payload_printer.h in Headers */, - EDC890DF614751A0C8DF83DEDB349158 /* statusor.h in Headers */, - CD95C0238F19260CD3FA19F74AA8031C /* statusor_internal.h in Headers */, - 98AA906D97F381F759EE01A578B1A965 /* stl_type_traits.h in Headers */, - 7C3A06692E4ACB76194F7E99F024CB13 /* str_cat.h in Headers */, - D573108F415651FC27D0919B9386CA3B /* str_format.h in Headers */, - 2AF8AECAEC4E4FDCAC73F2ABE4155215 /* str_join.h in Headers */, - 8771ACA2B1DBDB87FDDC2EF979DE606A /* str_join_internal.h in Headers */, - 93F99454BC35F73F61B2376758788F07 /* str_replace.h in Headers */, - 0F1A4DCBD9D577E648D95A3BFC2F1C76 /* str_split.h in Headers */, - AC13B4F8F5FDE7061180A387AD025FC5 /* str_split_internal.h in Headers */, - 7ABCC3AFD0CCB8865FDCC2110219D60D /* strerror.h in Headers */, - A5A5F67E624898D6AEA4230A5A498824 /* string_constant.h in Headers */, - 2DA87657BDD4B210EBD27D4652F56FD0 /* string_view.h in Headers */, - E7756A42DF51ED1AD4AA5A9686B3CF67 /* strip.h in Headers */, - 7E1F9096BE0ECB203417414295C03B9F /* substitute.h in Headers */, - 76642F2098964E2660B75BA491AA374A /* symbolize.h in Headers */, - 7D3552626DD5159DD8AEF255FAE91C67 /* symbolize.h in Headers */, - EB3F6A89E52980AB5914E06731188C74 /* symbolize_darwin.inc in Headers */, - 9540134A714110D2CF9D6E8EB86537BC /* symbolize_elf.inc in Headers */, - 5605AE6BD48CB3EB6817070CD4AF1AB5 /* symbolize_emscripten.inc in Headers */, - 628B65AAD2E8AC1426F710DFBAF3DA4C /* symbolize_unimplemented.inc in Headers */, - BF9E94543F49C68E56386EEBCBF654EC /* symbolize_win32.inc in Headers */, - 017144CF3108AB4859B76F6618AB92CF /* sysinfo.h in Headers */, - 3F2F67315FCD95A986BA6E1B0FF748F0 /* thread_annotations.h in Headers */, - 69DC47BBE19E3A05189F4D42B8E7C0EB /* thread_annotations.h in Headers */, - D11B90B41C043695A3E09E9780FA7328 /* thread_identity.h in Headers */, - 5745A0F166C539CBDC781A43B6D03661 /* throw_delegate.h in Headers */, - E49EF4EBE7BA9C5F5321B23D867C2E92 /* time.h in Headers */, - DCAF5B9F8620154B279AEF98801F56A0 /* time_zone.h in Headers */, - 21AE845BFE1308253E8602DC7E5FF1B3 /* time_zone_fixed.h in Headers */, - 1C045E23C714D37EFBB7E9A2242350B7 /* time_zone_if.h in Headers */, - 9508C0C1C7D4FC5336F90DF1531027F9 /* time_zone_impl.h in Headers */, - D01D6350A3CF7192406DE46DD8A85B37 /* time_zone_info.h in Headers */, - F5BE733B8685A85C8884AD73EE8F7E4D /* time_zone_libc.h in Headers */, - 89184047B47896FF9C61F88B7228F615 /* time_zone_posix.h in Headers */, - 2B96C44D6E27BB679BE38D281D33F70B /* traits.h in Headers */, - 82DC0D0FBD097DC568D21FD47A3D155A /* tsan_mutex_interface.h in Headers */, - DBE2DEA558D4D111300A5A980CF86EED /* type_traits.h in Headers */, - BE4DCC8D174531F28588C6F4D08D5512 /* tzfile.h in Headers */, - FE0632EA85F68526BA5D454D8ED5D104 /* unaligned_access.h in Headers */, - 28C3C339A23E9597D336258B1C9A26AB /* uniform_helper.h in Headers */, - 8658A183E4A621051A8A4548E3327929 /* uniform_int_distribution.h in Headers */, - C4435FD091DE84DFC620E28DC3474529 /* uniform_real_distribution.h in Headers */, - D665CA4ACE04C8F9DFE048732AF2F7FA /* unscaledcycleclock.h in Headers */, - 2BDF0D87C9435DA213620055DF13E313 /* utf8.h in Headers */, - 9B88FA74ED4528EF007113C7691FD604 /* utility.h in Headers */, - AC86C6A254C9C4B30313F6C438A4AF7E /* variant.h in Headers */, - 62CB56A996D868F3562BB6CEDEF41F9B /* variant.h in Headers */, - B626D73DF704A130C49B3478B2D8C8FA /* vdso_support.h in Headers */, - 3A86581FA8B9E286DD827CB9560CB4F5 /* waiter.h in Headers */, - F073F43D8579BB6A3893C06078D5BC55 /* wide_multiply.h in Headers */, - 3BCC3A9D0330DF4AB316F4C3BB64FCCF /* zipf_distribution.h in Headers */, - 2A28CB7C6BA6AC5FB5CF8D5F013CBCAF /* zone_info_source.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 8EFBB21B2A919D0B644542A51122574B /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - EFF11FA7920B88E14AC8C7B994AD8EA9 /* accesslog.upb.h in Headers */, - 4834BCF202FCC3749AD9DF439A9C7E4B /* accesslog.upbdefs.h in Headers */, - 9E1DFADCE8D4136810EFF3F506469713 /* activity.h in Headers */, - 08283EBCFB47A68406BFF1DD7250F78B /* address.upb.h in Headers */, - 1332B14BBFE891E5FD9458AFA5F4BEDE /* address.upbdefs.h in Headers */, - 5EF6C727F6354D84CCC1BCE27E573593 /* address_filtering.h in Headers */, - 3F065987B4AC7BCA27025A1635C7FCA1 /* ads.upb.h in Headers */, - 965214065506A24D541E6166C1B838EB /* ads.upbdefs.h in Headers */, - E473025437521384E455A4E17EC53674 /* alarm.h in Headers */, - 3BD7AECF7222F934CC7D81E8D5E47FD2 /* alloc.h in Headers */, - 6D5C78BEED44E39D1181C7163B9A6439 /* alpn.h in Headers */, - C92FC4EA7BF3C782F30749D61C2676B9 /* alts_counter.h in Headers */, - B92D2C437BB4C24F6921183CAA4FCCDE /* alts_credentials.h in Headers */, - 66F984099B6F57127967350CEA18D5F1 /* alts_crypter.h in Headers */, - DEECDD478845A553F6F8052D71B51972 /* alts_frame_protector.h in Headers */, - FF725CEF1FFB4514B7FDFEB687BCDC7F /* alts_grpc_integrity_only_record_protocol.h in Headers */, - 19B3E588B1ED83483C2B9AB6048EB2DD /* alts_grpc_privacy_integrity_record_protocol.h in Headers */, - C2DB19C21AB026CD54B530704F0381AC /* alts_grpc_record_protocol.h in Headers */, - FBFB52E5EFD87BB9FC19D58EF3F385F4 /* alts_grpc_record_protocol_common.h in Headers */, - 41516D7D094AACADAE127EA97F40CE0C /* alts_handshaker_client.h in Headers */, - D7C88A7908035290B0FF8088A95A7D27 /* alts_iovec_record_protocol.h in Headers */, - ACD69A94407940195418C963547A3157 /* alts_record_protocol_crypter_common.h in Headers */, - 6EF43F3835B5751E2FA3EE7A54004E84 /* alts_security_connector.h in Headers */, - 6BD29A7D240A11A7E2C6D094A3648357 /* alts_shared_resource.h in Headers */, - 7660DC8E04765A8E1F71F07F9B108D18 /* alts_tsi_handshaker.h in Headers */, - 53235DBF73108FC027BF7B9B5858EDA3 /* alts_tsi_handshaker_private.h in Headers */, - 4487864EF61F1476C0FFD5E542A4ED96 /* alts_tsi_utils.h in Headers */, - 247109C5A4727A2299E52D07037F359A /* alts_zero_copy_grpc_protector.h in Headers */, - 2A5124BA246FB0250924DE33F58F09DA /* altscontext.upb.h in Headers */, - 2EEC791DBE5F22B6C8B5FC45EDFEB3DF /* annotations.upb.h in Headers */, - 908466932BC2D856D9BC3256E4B9F7AF /* annotations.upbdefs.h in Headers */, - 4DD7FA5D6268544120B8E956A24645A6 /* any.upb.h in Headers */, - 2C95AFF9020F19F6D8398B6A6C7D1DF4 /* any.upbdefs.h in Headers */, - 4CCBAF9EA3619BEB2BCA0DE1ED0EAC4C /* api.h in Headers */, - 098E4A786BF33FB3B97FD04EC6191185 /* api_listener.upb.h in Headers */, - 41BA470A8E8FE8EC1D1D7A2BCCD66BF4 /* api_listener.upbdefs.h in Headers */, - 37CE81214194CAA8904CADD0D6C5B249 /* api_trace.h in Headers */, - C0577ACC610C9086B14FF789BDFBE7B6 /* arena.h in Headers */, - 7CDC6FFF953B41AA0417AC77088F1435 /* arena.h in Headers */, - 71F67463FC60996F43B0026CFBEF515C /* arena_promise.h in Headers */, - C2782F01D245F30307297CE116D1F916 /* array.h in Headers */, - 4B62DC39D12C13F6F6AD89C84FBC83AB /* async_generic_service.h in Headers */, - 1DE28C57A98B363C0F72308E9C2B42C4 /* async_generic_service.h in Headers */, - AA718A7EB07EA9C37271A6DF824B34AE /* async_stream.h in Headers */, - EA77330D30BEF7C3DF2E5BE0C8B16828 /* async_stream.h in Headers */, - F48EB74EA0F9D67999CC3E4F525FA8AA /* async_unary_call.h in Headers */, - 51142F3FF3E2FABB089BFE54418DB565 /* async_unary_call.h in Headers */, - B4F66FE4A298C9A0B2CFB4D8E5C0B824 /* atomic_utils.h in Headers */, - CEE045EDC3A8134D46222CC4DF487A88 /* auth_context.h in Headers */, - 1B32547CB2A472E077A0A0D9E9FDF4B7 /* auth_context.h in Headers */, - 0ADE9BE834A20A74044F7290ADAC7BF2 /* auth_filters.h in Headers */, - 4EAC9FC6119DC49EF0E5F1A6C23CAE10 /* auth_metadata_processor.h in Headers */, - 6B7DD402A00791252E37E617D301FC02 /* authority.upb.h in Headers */, - CA46FB3802664C37B040512394B5AA19 /* authority.upbdefs.h in Headers */, - CE21633F19BF9BED2B32C9C6EEDAE5DB /* authorization_engine.h in Headers */, - 063E4FA9C10BC55CFC711B9678B5D528 /* authorization_policy_provider.h in Headers */, - F8D94C64232927B2F893F032D913AFC0 /* authorization_policy_provider.h in Headers */, - 62782F2CAB6EDD0D3507176F9A007E2A /* avl.h in Headers */, - AB9A57A70EA1CB8F5AF4EA65F4B5C4F8 /* aws_external_account_credentials.h in Headers */, - 57EE6D248A848E7CD1773D2F0869E512 /* aws_request_signer.h in Headers */, - 3CAF58384650B34D5A8BAD9C59154B44 /* b64.h in Headers */, - 76B51AB206D9D0FEB91ADC2B90B1BE16 /* backend_metric.h in Headers */, - 66B6E603FDDF4486C6C0AEE4264806E7 /* backend_metric_data.h in Headers */, - 761FC6874C63D5FAE6AC15EA3141D1E6 /* backoff.h in Headers */, - CBA36E75E9C89343DD64C92CDFEA2716 /* backoff.upb.h in Headers */, - 51AE0E42378ABE963D306F871FBEEC73 /* backoff.upbdefs.h in Headers */, - C4CAFB864C8E9ABE2D7E9AA5931C1BD7 /* backup_poller.h in Headers */, - F2CE37D871D2BFEEDD1DD72594A430AD /* base.upb.h in Headers */, - EFD0380407B2B3D00CB632E5CD07EBC4 /* base.upbdefs.h in Headers */, - 8918C4EA6F148F0CC441CB28B959A3BB /* basic_seq.h in Headers */, - FE0414EA04F2FAA4AEFB157F7E09B507 /* bdp_estimator.h in Headers */, - AED91842BB398E22F7880601C955983D /* bin_decoder.h in Headers */, - 9FFE9DB932389638BAE8D50B3CF984FA /* bin_encoder.h in Headers */, - EDF872424E4D2F7ABCA4C5A625E5272D /* binder.h in Headers */, - 7C1C1A4B11E15B18B6437B3BE74D789A /* binder_android.h in Headers */, - 76C0B317CE78FF9DB3E848D054B54FF6 /* binder_auto_utils.h in Headers */, - 465DB1F83AD00F4C823FA0FD46B36527 /* binder_connector.h in Headers */, - B8B93D543D0026687F772C88F38B1380 /* binder_constants.h in Headers */, - 675D6F8C36F9C80D9C5C1CDC923D312A /* binder_credentials.h in Headers */, - 8110C3EF445E4FFE14A3A8C1C583E551 /* binder_security_policy.h in Headers */, - B7229C33805C661660C26AA2A4F8CCAE /* binder_server.h in Headers */, - D3AB79EAD0226FF626951464259476DF /* binder_stream.h in Headers */, - 1BA1F3AB1612CA8DD201A47BBA70CA12 /* binder_transport.h in Headers */, - 01C1A238137829C760598C901725AD3F /* bitset.h in Headers */, - FEE569C751A48F21AE72843A0587EC07 /* block_annotate.h in Headers */, - D3D10CE2C902FE4D7A7FE7EAFA6EC313 /* bootstrap.upb.h in Headers */, - 3B6FFFC704D3897EA9F43B971A8C48AC /* bootstrap.upbdefs.h in Headers */, - 2630AF0D526AB1DE86E1990D93CD7D78 /* buffer_list.h in Headers */, - 12FA09703924796745221083EDEDE201 /* builtins.h in Headers */, - 519DA6ED661C7F13FB8E75E8EC92E549 /* byte_buffer.h in Headers */, - F68F971133D9B27BBA2DC2340B04B8A6 /* byte_buffer.h in Headers */, - 3F6BE6FC5982FE2FE700520753EF3D30 /* call.h in Headers */, - AB2CC62CD57E67193D4E543ABE33188C /* call.h in Headers */, - 4BDD8941A466D83E64E541EAC25C193E /* call.h in Headers */, - 9AA46D199210013EA5A64F8543C18A24 /* call_combiner.h in Headers */, - 75B759FC2F13B68415C2B5AA37B0DCF4 /* call_creds_util.h in Headers */, - 16CE42E8C8ABAB7F3EAA239BFAEDDBC5 /* call_finalization.h in Headers */, - 518659ED6066204EA74F2ED1391DE25B /* call_hook.h in Headers */, - 1C4EC4F054FFBFF1788B2B2A69CF1320 /* call_hook.h in Headers */, - C223A2CD4AEB4F7B0A2E74A6C3280754 /* call_metric_recorder.h in Headers */, - DE84E040E6E419779CB350A0337ADCD9 /* call_op_set.h in Headers */, - 1EBB57C07AFB605F1E5073C225BD9D3F /* call_op_set_interface.h in Headers */, - 559E5195F1AAAF7440C6497BB0EABAA2 /* call_op_set_interface.h in Headers */, - 609A6524FC8ED5E0636D73411CD87E84 /* call_push_pull.h in Headers */, - 0A1BD66E4C853D11D2221CB6EF638003 /* call_test_only.h in Headers */, - 04F0F9A594FA597D89B3F252701DD232 /* call_tracer.h in Headers */, - 515A48F9953C41DB5A3D9974EA911625 /* callback_common.h in Headers */, - 563491B5440C7E1B6E6FCDDB91097625 /* cert.upb.h in Headers */, - 8266F5E3AAF87742C791BAD26E57EB87 /* cert.upbdefs.h in Headers */, - 0D20CE6E68D4068F28CE79A86D702180 /* certificate_provider_factory.h in Headers */, - EBBA955D680A539D9C6D1578706A2E0E /* certificate_provider_registry.h in Headers */, - B552A58845909CDDEBFED3D0C6C43351 /* certificate_provider_store.h in Headers */, - D69EC5BA78902646E16F4627E0F9C98E /* certs.upb.h in Headers */, - B39CDFDF47A0C7D9614407BD83D2D213 /* certs.upbdefs.h in Headers */, - BEA2218A8EFA46D01CF8E8ECC5A19C3F /* cfstream_handle.h in Headers */, - 38463AD31E7922C11F5E3019B015339B /* channel.h in Headers */, - F0B579901FAC294132378473FCE3B541 /* channel.h in Headers */, - D0575163ED37390567EE2DB1B2ADA720 /* channel_args.h in Headers */, - B0395CD9F2BED18D0ED4EE83BD0DC752 /* channel_args_endpoint_config.h in Headers */, - EC19BB0264A1AB0BC1085A87C7F47ED6 /* channel_args_preconditioning.h in Headers */, - F3C6E4532316B621209C00F5275F1D93 /* channel_argument_option.h in Headers */, - 360AFF4E8E70C777DEF5E2D2973BAF34 /* channel_arguments.h in Headers */, - 34822BBEF5671B167919A18E35E67F6D /* channel_create_impl.h in Headers */, - FECD3B6628FF9C4D46E77A267D8097D0 /* channel_creds_registry.h in Headers */, - 45202DA43BCA512F1CF666A3C517A331 /* channel_filter.h in Headers */, - 560B50D1F2007427ABC7714F96D0BFFC /* channel_fwd.h in Headers */, - BDE8FF2E71EAAC5568C9B51C0D549484 /* channel_idle_filter.h in Headers */, - FD7C74A706A2CDD40CCAEF773F3A7101 /* channel_init.h in Headers */, - 68CBA41B74F14B5B13804203F36CF0BF /* channel_interface.h in Headers */, - 36F3E51EBE4DF5181841EB3987062E31 /* channel_stack.h in Headers */, - 3931F54F587CE142AD694F027C934B75 /* channel_stack_builder.h in Headers */, - 4C653CB72276B74C1A24E9B253E3E81B /* channel_stack_builder_impl.h in Headers */, - 526F5B1AC3EF7695057C15B37A2D6583 /* channel_stack_type.h in Headers */, - 7B2FC06B6FB615AFC5C277E8ECCCA7CD /* channel_trace.h in Headers */, - 9F6B308CADF428A625198DC8400E6151 /* channelz.h in Headers */, - 033B43E7D29924D1FD901FCFADF57D8D /* channelz_registry.h in Headers */, - 21695455A56FE1FB53C6A7D0B95E21C5 /* check_gcp_environment.h in Headers */, - FA5CF6CFA24B3127C6CE83338CA72C34 /* checked.upb.h in Headers */, - 2261B66672A958AA3E51344D932655D7 /* checked.upbdefs.h in Headers */, - 634E9193C837C228F6FF274919C6A160 /* child_policy_handler.h in Headers */, - BEB2F96342D9BB9A2CFA9DCC607E169A /* chttp2_connector.h in Headers */, - 995069848438ED9DF8E86CC0D5A8102E /* chttp2_server.h in Headers */, - 85C60ABAEF7DCF3BEE81517D888095CE /* chttp2_transport.h in Headers */, - 12C11F2DC464C311B8C326A723EDEF13 /* chunked_vector.h in Headers */, - 4485B55870113D1D7939F3CB4B81802D /* circuit_breaker.upb.h in Headers */, - 0EE5A052DADCE4240A70B4F5670CEF70 /* circuit_breaker.upbdefs.h in Headers */, - 1E18CCD59432F8C0BABF8CEB9F45CF77 /* client_authority_filter.h in Headers */, - 68A774395A0537CC3DC00B47E31CE248 /* client_callback.h in Headers */, - 8889C7FF7D6BDCAFC8551DDD7A2EF61C /* client_callback.h in Headers */, - 08168C417EED249899D9427CDECD7104 /* client_channel.h in Headers */, - 2165A460718E72EA12C8D38F4717312F /* client_channel_channelz.h in Headers */, - 0A1055746106EE9882F0B720D12F5407 /* client_channel_factory.h in Headers */, - 16FAB6AB40626066E70657EB267D9CE2 /* client_context.h in Headers */, - CDC2FC9F8564542B444120E90F8FD49A /* client_context.h in Headers */, - 53FB87EBB03660C026D20A496968EA60 /* client_interceptor.h in Headers */, - 935E41C156E0E4CF6031613B327AD7C1 /* client_interceptor.h in Headers */, - 80860D425EA46B2E9CC99FE1786F976D /* client_load_reporting_filter.h in Headers */, - 99DCAECC2FC9257DFDA13D13E3759097 /* client_unary_call.h in Headers */, - 6110FCACB76E56270A92C8DF9B31149F /* client_unary_call.h in Headers */, - 1111A4B73011E0CB21B1E42059EB6886 /* closure.h in Headers */, - 55D1697CA0FE776C54177A232663B7A2 /* cluster.upb.h in Headers */, - 4B9D525F3CEEBEF7910F4245773DF2B7 /* cluster.upb.h in Headers */, - 8DC5B56722C06E845F90BA2B01760FEE /* cluster.upbdefs.h in Headers */, - 891B2DAC219DB1930B1020D477F5F58A /* cluster.upbdefs.h in Headers */, - DE3E9E63F4B81451D3AD57DD24589202 /* clusters.upb.h in Headers */, - 14F003737F56A55DC206ED5E6B772661 /* clusters.upbdefs.h in Headers */, - A0BFE842E5236465813F672230CD6D8E /* collection_entry.upb.h in Headers */, - 2E4AA68502701E9327DE6B84F0A47AEA /* collection_entry.upbdefs.h in Headers */, - 3DE44FB5B6808792B0840D5D52F8B5D1 /* collections.h in Headers */, - 48D76501737087A33E1C576FC0A333A7 /* combiner.h in Headers */, - 2E29F144997223594A05A10908C341D6 /* common.upb.h in Headers */, - F9532D21F18766401DF364BCA8B2015F /* common.upb.h in Headers */, - B1B1174A078D18ED281B55D4C4903AD7 /* common.upbdefs.h in Headers */, - 874DFD503F70475988D2D42B50142849 /* common.upbdefs.h in Headers */, - 98E1C3EFC95C958E7EE920DEADF20524 /* completion_queue.h in Headers */, - 5F334B9F2A12EDC0CB03D8F14F4D9998 /* completion_queue.h in Headers */, - 71910438833ECBEFA8CF4FE476F83E40 /* completion_queue.h in Headers */, - 168B98BB915BC3EBDC429C147432E072 /* completion_queue_factory.h in Headers */, - 20BBADBBCB74EBDCF8C3B90DB66DAC4D /* completion_queue_tag.h in Headers */, - B8B1005E7ECF21202B936BBC59042B00 /* composite_credentials.h in Headers */, - 24AE39461A1B0D149052288A54C359B8 /* compression_internal.h in Headers */, - 219F2E72A1BB6C7DFF78FF8F91E8660A /* config.h in Headers */, - 137D4B9201E68D36E3B768C4E42E2BD7 /* config.h in Headers */, - BE185C57D62F6D4952F8CBAE0E8AF7D5 /* config.h in Headers */, - 55DD3448535A708B56CBF9A0BA696B21 /* config_dump.upb.h in Headers */, - 0A6A3D190998AA16733940EA75CC65AC /* config_dump.upbdefs.h in Headers */, - 4BBAC6B1EAF3F89159784A5125B7FD5E /* config_dump_shared.upb.h in Headers */, - 8D18340EB936BCE70AE672FB9610995D /* config_dump_shared.upbdefs.h in Headers */, - 059045E649306A9EBE7D82B9CE400E33 /* config_selector.h in Headers */, - 91CF153C4624FE9D0A51616C92AAF24E /* config_source.upb.h in Headers */, - A2E4691AE588A88B97EE2EB5758B5F5B /* config_source.upbdefs.h in Headers */, - A49F63D26FD90FB243BE29F1C5E32F80 /* connected_channel.h in Headers */, - 20B675A46A6AE4F6C417D5347327CB3D /* connection_id_generator.h in Headers */, - C1F16999B59CA019E41FB76BC90E2AFD /* connectivity_state.h in Headers */, - 41F83F61C7689EB59EA68F6C1FC54533 /* connector.h in Headers */, - 66FAE80565DFDC77EBFA82335C47234A /* construct_destruct.h in Headers */, - 62899B81CAA5331542CC7106944F02BA /* context.h in Headers */, - A59552FB4180D2DF8FBA000DC88E2372 /* context.h in Headers */, - 9236D00A060E6ADB9D14C7CCBB937F4F /* context_list.h in Headers */, - 25F4FA1DB594441A273E36B30DCEC3C0 /* context_params.upb.h in Headers */, - 11C41DE0AA3DED8D4BFF17BBDD150957 /* context_params.upbdefs.h in Headers */, - B79BFB7963453EC3E278345B91851607 /* cookie.upb.h in Headers */, - 90E9FB6B40A27942A0A0389410ABB537 /* cookie.upbdefs.h in Headers */, - F7DB591D1D55DEB3F4FDFEFB6A2B5FCE /* core_codegen.h in Headers */, - E01DE74EE91B34AEACEA5F32F009E0F7 /* core_codegen_interface.h in Headers */, - A3AE14480A0B2B2D79A36E6DBFE61661 /* core_configuration.h in Headers */, - AD376128A2E5796D3770061B0FE0AB22 /* cpp_impl_of.h in Headers */, - C3C602A1F8CFA18EC88E5AB74A52F6A0 /* create_auth_context.h in Headers */, - 8134448A0C310714D2113D3EFD0B346E /* create_channel.h in Headers */, - BB73B8F3135A93FA75DEC90943E070BD /* create_channel_binder.h in Headers */, - C3551E8467B691D490A42240192ACD1C /* create_channel_internal.h in Headers */, - E42E91C67F364ED8757DBA0AC11F0349 /* create_channel_posix.h in Headers */, - BB838CA74C4FD692948571C59F544854 /* credentials.h in Headers */, - 5B39A7FCE7C56E1EE9ECD5434F31C6C6 /* credentials.h in Headers */, - 4FA1A7EE966F4178779E68B63720591D /* csds.upb.h in Headers */, - A7EF58F1EA8F000FE63E9AC5790B51B0 /* csds.upbdefs.h in Headers */, - EA33D8B6E23EDDE1F0F076A63AD06CEE /* custom_tag.upb.h in Headers */, - C44C66792B0843F0CC439E6FC868E8FD /* custom_tag.upbdefs.h in Headers */, - 7F059043E68112AD8E0B4885A819E282 /* datadog.upb.h in Headers */, - 6D3554F7E4F172A4BC4AB693E7A96E90 /* datadog.upbdefs.h in Headers */, - 18F81F88D631ED119F832240F14A9877 /* deadline_filter.h in Headers */, - 416D2674339AE87D24B29FDD649BDFE9 /* debug_location.h in Headers */, - A86E1C599404354EE8C9465AFFFB589C /* decode.h in Headers */, - CD808109A5C71CB24CA032AED2374845 /* decode.h in Headers */, - 3E30E1A109CACAB285DA6D2426ED825F /* decode_fast.h in Headers */, - 9EA355687B528CCBC33D4F3C713EF3A3 /* decode_huff.h in Headers */, - 31FF62CF7DB3497D3E4673AE63A06F2A /* def.h in Headers */, - D5C149026BCC3CEEB7C896E1DADA74E2 /* def.hpp in Headers */, - 4EAB1C5D53B9AC9EABF1FC977D4C2674 /* default_event_engine.h in Headers */, - 392838D27DD6D95FBCA0CB455A3283CE /* default_event_engine_factory.h in Headers */, - 7C83857F40DF5B92E9C8C394761D1C9B /* default_health_check_service.h in Headers */, - 06F3998D610DA8730151E7FE7286F174 /* delegating_channel.h in Headers */, - C18100D72D10770B7EE0AA2900A32A09 /* deprecation.upb.h in Headers */, - 522EF5BA642CA37E228A919C50DFEE40 /* deprecation.upbdefs.h in Headers */, - 764ECE7D3CD87C03851A94CA96D92201 /* descriptor.upb.h in Headers */, - 83B4CEB2EEB8ABBCA0FCE6C9E7FA1F54 /* descriptor.upbdefs.h in Headers */, - 8A1B3EB2FB52F95CB407DB88F89EB004 /* discovery.upb.h in Headers */, - BAF475A301D52915C05CC37109F6ECA6 /* discovery.upbdefs.h in Headers */, - 4829CE20ED8A25B48B60A93BAD846B22 /* dns_resolver_selection.h in Headers */, - 1179D50815C38DF045C8316B29563967 /* dual_ref_counted.h in Headers */, - A93A35CFC25F438E3FFED61CE2822426 /* duration.upb.h in Headers */, - 8AC1632C9B6ECEF4E3D4EED8CA841343 /* duration.upbdefs.h in Headers */, - D4F5C33076816E2D7D48976B3593C7BE /* dynamic_annotations.h in Headers */, - 1AFD1A4BCBADCA1755E2DF910B73FDDF /* dynamic_filters.h in Headers */, - 2719D8CDAF14878DA4A5635300473149 /* dynamic_ot.upb.h in Headers */, - E228C9A899A3885FA79F74E5DD85DF8E /* dynamic_ot.upbdefs.h in Headers */, - 5108C3477DB73F2F0A1651B7C2A7621D /* dynamic_thread_pool.h in Headers */, - FA749A4872272967085A83C85A6FA678 /* empty.upb.h in Headers */, - 09B176D41C00008110E6A6601E10283C /* empty.upbdefs.h in Headers */, - 7EE6B57CAC793BFDB3B170E23B894E02 /* encode.h in Headers */, - 03FDF2D2F706911EEEED680AEA17E179 /* endpoint.h in Headers */, - A94845CD7A495257004F3BF5D62A2E64 /* endpoint.upb.h in Headers */, - 4250BDF85DC837326E141C306772B1D0 /* endpoint.upbdefs.h in Headers */, - AB0E88E6159F76E58851F2A9566270B1 /* endpoint_binder_pool.h in Headers */, - 33B288169E10FEA86909178AD0ADBE15 /* endpoint_cfstream.h in Headers */, - 7B6D7719D687339040EB392C27B742CC /* endpoint_components.upb.h in Headers */, - A66B53C8AC9181581237284BFC652FEC /* endpoint_components.upbdefs.h in Headers */, - 3EBEB932E7FB5BFF0759ED145EB9D2EF /* endpoint_pair.h in Headers */, - E7A326DA2D2BAA5C1CAE32C0C1666452 /* env.h in Headers */, - A874C8708AA61D7F0EB6E23FA5B638FA /* error.h in Headers */, - 76E94D8C9DC6108716B61016F14A7127 /* error_cfstream.h in Headers */, - 0B54DB2700B8A04B3416618D83524F10 /* error_utils.h in Headers */, - 43FF9043B1919C1480E999D0E09352D0 /* ev_apple.h in Headers */, - EE0936EFF808A511B4B19F917F92831A /* ev_epoll1_linux.h in Headers */, - FCC75598A5E23106B788C4CACB8026FB /* ev_poll_posix.h in Headers */, - 69DF07B81A084EF1D1C6574C8DCC2C78 /* ev_posix.h in Headers */, - B475BB372DCB7E44AE8704F655C9AF93 /* evaluate_args.h in Headers */, - EEDDB973328F07DB814738A3B5D72A0C /* event_service_config.upb.h in Headers */, - 3C3EF4A014F9CF1F6A4A5700C0274BBE /* event_service_config.upbdefs.h in Headers */, - 3C80152DFE6E94F5D106AE744667489F /* event_string.h in Headers */, - BFA35259B30704EBFB6164C669FEC897 /* examine_stack.h in Headers */, - 89D30D56E226B4B97DE9FBE7ACA19BEE /* exec_ctx.h in Headers */, - 57E76B09B036CE005AEA4BB5CDB59E35 /* exec_ctx_wakeup_scheduler.h in Headers */, - 9EEFBCB14180C6F1C73C8B80964470B4 /* executor.h in Headers */, - 7D14F1970702D0C2322FB1C4CB1364FE /* executor.h in Headers */, - A806FD55A8319997CDA747597B3723D2 /* experiments.h in Headers */, - 253011D848E2934D05A7F9C2FFEE9161 /* extension.upb.h in Headers */, - 92BCBD221411384F6C6BCC6C9C89145A /* extension.upb.h in Headers */, - B1B4CD4C6CC54709115C8CCC08EC6B79 /* extension.upbdefs.h in Headers */, - D0E8452B5637BCD567A6DF5BD4A8D3C1 /* extension.upbdefs.h in Headers */, - 5089C83AB0D0A258D5999C0C08AA18CB /* extension_registry.h in Headers */, - C32B2839415A89CE8C32FB4600A2DFF0 /* external_account_credentials.h in Headers */, - 9E748B08A17FBDA5961665AE51AB582D /* external_connection_acceptor_impl.h in Headers */, - 26FED990194872686057463B3CA28397 /* fake_credentials.h in Headers */, - C22A4666831FA1223DAFA0A4E744D714 /* fake_resolver.h in Headers */, - AAEAEF36DCD65EF62B2FD73E01867D42 /* fake_security_connector.h in Headers */, - 8E3C68EE157B879F3439367D38B6E151 /* fake_transport_security.h in Headers */, - 95FF7DCE83B3827F394C9335C6392EC1 /* fault.upb.h in Headers */, - 7FDA9DD98C0A19214932D1CBC7A20457 /* fault.upb.h in Headers */, - B03EAE82A982CF82143EE6BAEDB9BFCD /* fault.upbdefs.h in Headers */, - 60069FD9AEE99F528F3D4B31F7067B69 /* fault.upbdefs.h in Headers */, - 15A761859FE0954AFC0747601B804AEA /* fault_injection_filter.h in Headers */, - 6C78E73BDF7289439C09FCAE65C38117 /* file_external_account_credentials.h in Headers */, - 79BCE12B283F2C8CE657D0FF64E5863D /* file_watcher_certificate_provider_factory.h in Headers */, - E14E7884B488DA6A9BCB5A6B8737A7CB /* filter.upb.h in Headers */, - 608F4292458259C1E55443AD326C6709 /* filter.upbdefs.h in Headers */, - 292EDFDF632F4531A1B0052B8DBD1F24 /* flow_control.h in Headers */, - CCA6863FC7A18FBA939BD64536B50C5D /* fork.h in Headers */, - C248A2FA0D04B0BF161BB3FA0C6058BD /* forkable.h in Headers */, - 377383FFF67FA8AD51FBD78D897A9A36 /* format_request.h in Headers */, - 7B4FF4E2A029E947095596D99E77D0ED /* frame.h in Headers */, - A49F44887975A68611F3047079752D69 /* frame_data.h in Headers */, - E30CE1E18C5C3DCD2E6A985B824D5DAF /* frame_goaway.h in Headers */, - A28E86EA729F1F937699E81109DB03E5 /* frame_handler.h in Headers */, - 35B3D78BE434D08C3E53AAE8FCFE9032 /* frame_ping.h in Headers */, - 09D3E52CD3AC4D073F899661F540EFC9 /* frame_rst_stream.h in Headers */, - 4F3CBDB9B029DF3E8FAB542D0161B22D /* frame_settings.h in Headers */, - 7481C0483EAB18F95BFD7359354E20ED /* frame_window_update.h in Headers */, - 1B68F512ED998D9ACDC2E3506B6B22E9 /* generic_stub.h in Headers */, - D708C0B0D3AB7B569050879915068E2B /* gethostname.h in Headers */, - 339D409737B6E17DFF1C97CA1BAB15ED /* global_config.h in Headers */, - 280E26B35F40742DE6938DBF75CDE723 /* global_config_custom.h in Headers */, - 3554D54FB23EACE1A32678A989A5791D /* global_config_env.h in Headers */, - 5992CD21B49BB44E200D138AFC1B8A4D /* global_config_generic.h in Headers */, - BC9B0493D60F9E051957EE160BF95FAA /* global_subchannel_pool.h in Headers */, - DA3BFD78BAA3921ADAF1C2901FBA24EB /* google_default_credentials.h in Headers */, - 182222051FD8CEA315E80DF86A6FDBC7 /* gRPC-C++-umbrella.h in Headers */, - B307FFF17B5C55C1CCC85BB02C1F0642 /* grpc_alts_credentials_options.h in Headers */, - FA28BCC4D73E6294B93F950FFF52E691 /* grpc_ares_ev_driver.h in Headers */, - 9A5DC0A9489CEF6EA017FAC9D39BA856 /* grpc_ares_wrapper.h in Headers */, - BBC98777DE85277AD6E3F737DF49674E /* grpc_authorization_engine.h in Headers */, - EB95A4B9CBDD93391A0A591F5E7A8CEB /* grpc_if_nametoindex.h in Headers */, - 2DE96DCE0B18805FF89A93584D47165F /* grpc_library.h in Headers */, - CBA07855EB5D58B896C05158405A2935 /* grpc_library.h in Headers */, - 92229CD527423BE44B068392A672660F /* grpc_method_list.upb.h in Headers */, - 8284A7D7DBF32B05B0EAB4DECCFC2BEF /* grpc_method_list.upbdefs.h in Headers */, - 8FD84B863AF093067778B550DAC68CD8 /* grpc_server_authz_filter.h in Headers */, - 3EF104647920E71C4D1A50D1E59F7990 /* grpc_service.upb.h in Headers */, - 6D84A0E438188B20C0FD4A2E04A655B7 /* grpc_service.upbdefs.h in Headers */, - 8223272A4BD892958FCCA1B508546857 /* grpc_tls_certificate_distributor.h in Headers */, - F7BCF59E04BAC7DB5A138E35D5295F59 /* grpc_tls_certificate_provider.h in Headers */, - A76A606CF7135E717561DEFFD6D5840D /* grpc_tls_certificate_verifier.h in Headers */, - 4FADA08DC3181FCBB4741E424452AFA7 /* grpc_tls_credentials_options.h in Headers */, - F43C44996AC360F6EF2E324A4560BC01 /* grpclb.h in Headers */, - 118C557022613CD354BBC0684EC3A8BB /* grpclb_balancer_addresses.h in Headers */, - 04950E12EBAF33407DA228A7E4B2F4A9 /* grpclb_client_stats.h in Headers */, - 6A55FD67F65371F927158E6319A14EE1 /* grpcpp.h in Headers */, - 6681E2FEC98B420F7D22BB9F9285D91A /* gsec.h in Headers */, - 72DF1AD7F5B999F24EBC4C7BB2090DD9 /* handle_containers.h in Headers */, - DE39B7A92594CC9D99BD879682F3E06C /* handshaker.h in Headers */, - A90BE563F4B5462C22752D741ED2067B /* handshaker.upb.h in Headers */, - A84903E6A23B17C4FCA8AC390E0B5639 /* handshaker_factory.h in Headers */, - 803453B600E8E86711372D5C5B76193C /* handshaker_registry.h in Headers */, - 9653C8C590B13EEFBABCA41407311478 /* hash_policy.upb.h in Headers */, - 62FB21555DB81543BF6B516E32CF43D8 /* hash_policy.upbdefs.h in Headers */, - 5D3859E9AEB890F8CD9E757041F1B3F5 /* health.upb.h in Headers */, - 17C14CF70D515A2659D1075FF99B5A1E /* health_check.upb.h in Headers */, - 16D9554918C1B2779869F8C711FEA1FC /* health_check.upbdefs.h in Headers */, - 29E3BFD527F564039175BD1004B96FF2 /* health_check_client.h in Headers */, - 68ECA9D0B6DFD47715487AF28B92D93E /* health_check_service_interface.h in Headers */, - 28D436AF187D58780E8C57AE04F48545 /* health_check_service_server_builder_option.h in Headers */, - 9A8220A34862F2C8358955516670D5C6 /* host_port.h in Headers */, - 02E6121874C16F128330CF339C259DC5 /* hpack_constants.h in Headers */, - D1712543FF055233C0E4FAAE489E53F6 /* hpack_encoder.h in Headers */, - 4D98AE2984B5ED38426FE5274154A980 /* hpack_encoder_table.h in Headers */, - B55AD09663DE301BBCA454469C9CEC94 /* hpack_parser.h in Headers */, - 7D364E50FF143C58F2D3F348CC86C225 /* hpack_parser_table.h in Headers */, - CBFD8DE068CC4D1C1F2B0EC8A26E95A9 /* http.upb.h in Headers */, - 31D3893A9E9CBB2F5C78611AC3C5D6C0 /* http.upb.h in Headers */, - 18D890B1BA6055E800AF4282A13E6F33 /* http.upbdefs.h in Headers */, - 289073842B30E1931760818C9BEDAF4A /* http.upbdefs.h in Headers */, - E29323CCBD5C236D62DF2DBA1AA74129 /* http2_errors.h in Headers */, - AA14DF8E3F38B64358E15AC24A6F5C01 /* http2_settings.h in Headers */, - 81A7708539BBDBEF5472E2697746DE32 /* http_client_filter.h in Headers */, - 002280169670C4EA8E6098FFCD9D57C5 /* http_connect_handshaker.h in Headers */, - 9E941FE2BB9587C4EE0DB7196167EDD7 /* http_connection_manager.upb.h in Headers */, - 1125F40B3876452752B26A43030419E7 /* http_connection_manager.upbdefs.h in Headers */, - 1157B49E016A8FBBBE21DF689173D34C /* http_inputs.upb.h in Headers */, - 9DF3B7F34D36071FC1868D68E5D03CED /* http_inputs.upbdefs.h in Headers */, - 356C8C7FCC64F9992476114F60BCF7A5 /* http_proxy.h in Headers */, - 0C0E46C1779C8202E10A693A7AB94C2D /* http_server_filter.h in Headers */, - 524E74B61BCCD51070908C55C2516A0E /* http_status.upb.h in Headers */, - 996D8743D51906C38C7939F41742DC96 /* http_status.upbdefs.h in Headers */, - C92BA75D0880734172B1CC73C9D11FAA /* http_tracer.upb.h in Headers */, - FFBA48A08CAD3C80CBB2A8C005C5AEB4 /* http_tracer.upbdefs.h in Headers */, - 6DCBC7D5B79AC55C49FC31BF483902AE /* http_uri.upb.h in Headers */, - 9270D3D4285FB30C45018547CA5A19F2 /* http_uri.upbdefs.h in Headers */, - C78B782C7795ACB10D5E53A66AD885F1 /* httpbody.upb.h in Headers */, - 6FD6B9D1A04E963D199DD76093F0A3F8 /* httpbody.upbdefs.h in Headers */, - D1766C3721D6CC7241A03752D3DC7183 /* httpcli.h in Headers */, - A4951399D8D426C93145A7E650FE600B /* httpcli_ssl_credentials.h in Headers */, - BA2FC034CACA94F4E03982C5DF9862B3 /* huffsyms.h in Headers */, - B2E2924AD09D89D6645DF7609C572A31 /* iam_credentials.h in Headers */, - D9828CF1D2AC5F1A94E025226C077E60 /* idle_filter_state.h in Headers */, - 13B6619ED6AEBDF2454C48C498372A86 /* init.h in Headers */, - 9EE0922A0FCEB97A2BD5DDEAE289A1E6 /* init_dump.upb.h in Headers */, - 236D220029CF23C8A9AED1211BF8D706 /* init_dump.upbdefs.h in Headers */, - 0B6E05E9ED5F977911C876A4602F8194 /* init_internally.h in Headers */, - 6D73E4C97F5FB75AD9606E4A8F594DDB /* inproc_transport.h in Headers */, - 296A7D84DE2D215EA55C21F0B1C6FCC8 /* insecure_credentials.h in Headers */, - E3A070A50ABC1FA97669722F4964CF28 /* insecure_security_connector.h in Headers */, - 93D0B170AE320DD97924D0DCD17F4061 /* intercepted_channel.h in Headers */, - 65669F8C2CCCA1102E313D15F6908F4A /* interceptor.h in Headers */, - 18AFF6037ACD19B5A87DFC99A0D709FE /* interceptor.h in Headers */, - 9EF6ECAE26257189BEB5E3A14A61DEEA /* interceptor_common.h in Headers */, - 0857EE4335E4CAE50C5A27E7C8770BA4 /* internal.h in Headers */, - BA2C06F053977BE17F629F1914DEFAF6 /* internal_errqueue.h in Headers */, - 76B12374ABA16E1E19AE2F35627AAA06 /* intra_activity_waiter.h in Headers */, - E6FA526BAA2EB10F2AEB012E5295BD9E /* iocp.h in Headers */, - C71CB889565D628D908EA2B06448C91B /* iocp_windows.h in Headers */, - B9423E458A73233BF6CD7D25A3B5604A /* iomgr.h in Headers */, - A5C29288B25782DADDF2478D885A9548 /* iomgr_fwd.h in Headers */, - 0226F0DA5D252F430280B46FA6CAD630 /* iomgr_internal.h in Headers */, - B4482EB5AF047C4C3297A4997FEADC46 /* jni_utils.h in Headers */, - C18E4574BA28E777E6168DA8126B95E0 /* json.h in Headers */, - 3301FC083CD7776D8D7542C32FD78DA8 /* json_args.h in Headers */, - 921B9D38191FACEB91CD334D3CE6AC6B /* json_decode.h in Headers */, - 206691447753BA7552187CB7CEF8B605 /* json_encode.h in Headers */, - 5E44DED72AD1A3EDB94FAAE8DF923E64 /* json_object_loader.h in Headers */, - 05257621AB531A08E8E3C7294EFD596A /* json_token.h in Headers */, - 988DC76A06A84D2ED2F973521DF7BAA8 /* json_util.h in Headers */, - 6165297D5D5E2793EDA43FB44A2D7351 /* json_util.h in Headers */, - 977D31A09C777FB682BBBFD9CDF96B08 /* jwt_credentials.h in Headers */, - 70F2CE2341EBF51AF75A284D4F787FE0 /* jwt_verifier.h in Headers */, - 61FFC075895CF72E36B483B639C5254A /* lame_client.h in Headers */, - 1353C1B590669DC13BD1039CFAE17FEF /* latch.h in Headers */, - 2179B066E3F95DF433F3417D23D02E53 /* lb_policy.h in Headers */, - 42B3DC48C3A0E39C84399740E5F775DC /* lb_policy_factory.h in Headers */, - 084779C04646C8F32FEA1F72BB308FB8 /* lb_policy_registry.h in Headers */, - D2279ED2F718D987A837FF3ACB82CAEC /* lightstep.upb.h in Headers */, - 3151259B453D8014EAAA7BF6FD408204 /* lightstep.upbdefs.h in Headers */, - 57C43F30D05C288CF50F36B4F6DB6064 /* listener.upb.h in Headers */, - F68CD913BA38F5D76D7B3DB1506B5972 /* listener.upbdefs.h in Headers */, - 0A23197308D3F82957CDD6F85F5049E7 /* listener_components.upb.h in Headers */, - 2DBB7B3E9336A8BAD8AE7F24CCAEFF3C /* listener_components.upbdefs.h in Headers */, - FF039E8A009E0D4877A82920ACD408CD /* listeners.upb.h in Headers */, - B1CFC69AD97F8D3D3C3DD86988E1D88E /* listeners.upbdefs.h in Headers */, - C0063994A6BEACBC003E341DEEC2B7AF /* load_balancer.upb.h in Headers */, - CE4E6576FC60BF109FE184B72D0766CE /* load_balancer_api.h in Headers */, - 47DFDFD5CAB84394FD6F6C9238F47B19 /* load_file.h in Headers */, - 5F9181F262E8A23B49B20D9FCC631869 /* load_report.upb.h in Headers */, - D4F8392777B05906CAF9265417F3ADD5 /* load_report.upbdefs.h in Headers */, - 97ECB5DD3903CA2F2C04AD9C827D9345 /* load_system_roots.h in Headers */, - 36AB73496379DB9342769F23CA2ABEFB /* load_system_roots_supported.h in Headers */, - E20DA75CF9F5C5CC4BA91EFBC1CC9A92 /* local_credentials.h in Headers */, - 30B1BE0FC27681A2D496875C884ADA91 /* local_security_connector.h in Headers */, - 388355DFC912530D42D68EA957D54FC2 /* local_subchannel_pool.h in Headers */, - 494839BF1A6305338DC5A6F9FFB35BA1 /* local_transport_security.h in Headers */, - BB2042B99B27C761FA76800A774A55A6 /* lockfree_event.h in Headers */, - 501F071843EE7BA397CCC7DAA7D9C0DE /* loop.h in Headers */, - EF15414B166A6F3F19EDF8D0C972C5F2 /* lrs.upb.h in Headers */, - 78C3E379DB1E0881CF678A839E96BB67 /* lrs.upbdefs.h in Headers */, - 466CF769303DF14E89DD5B14FF88C641 /* manual_constructor.h in Headers */, - 060680804EA789521894B41B5348D925 /* map.h in Headers */, - 8F4D8CC488E65911B6F0A059A5C27F68 /* map.h in Headers */, - CEDB2F3A32C17F0E5CD71A5AF9B58DAA /* match.h in Headers */, - F009B3EBC06C72C8F1E145054E5162C0 /* matcher.upb.h in Headers */, - 3BB3AFA864BB18058858B3EE0144792F /* matcher.upb.h in Headers */, - DBECC3A78B635228EF3DD5CF33722F00 /* matcher.upbdefs.h in Headers */, - A83F3ACD736B1FC02EACAEF8C3BAB2A7 /* matcher.upbdefs.h in Headers */, - C15567D0CA00B89E77FE18DE915009F8 /* matchers.h in Headers */, - 9D2A3EB56059D465B3DA2886DB57C942 /* matchers.h in Headers */, - 64986C35F3AD10F8401A5D678D1BADB4 /* memory.h in Headers */, - 0622DB18D3FF69B12D0F4CFA6354C701 /* memory.upb.h in Headers */, - 10AF8836945810FA3816F6956F523AF1 /* memory.upbdefs.h in Headers */, - CACD11064391AD8DC1719A17EA6AAF78 /* memory_quota.h in Headers */, - 4CF724FF31B8A3D742272F4104019401 /* message_allocator.h in Headers */, - AADE288A09829CB5CE2B9F40F9A2DCEE /* message_allocator.h in Headers */, - C3920E4C6C12803DF29CBCBA546F9D2C /* message_compress.h in Headers */, - 764CDF584223E3F315A12AE547DA3188 /* message_compress_filter.h in Headers */, - B9F0B4A7A1E009A6EC35B62825EBEC11 /* message_decompress_filter.h in Headers */, - 9655B2812D20B2F1FDE5ACA05C710BE5 /* message_size_filter.h in Headers */, - 118E810C5ECE4B4A55D66E9798026D54 /* message_value.h in Headers */, - EC5DAF492736D85112E3F67B1F9F85DC /* metadata.upb.h in Headers */, - 8760BBB31809EF34062ECCF9CE5FCFCD /* metadata.upb.h in Headers */, - A34C224525C2A5DB498789E9D86F9FA1 /* metadata.upbdefs.h in Headers */, - 59C842326ABEFD0796863C060FA33791 /* metadata.upbdefs.h in Headers */, - 0913D2C34DF02DAEC40B32E93D908414 /* metadata_batch.h in Headers */, - 8069F9EA98276BF5F982854C985AE330 /* metadata_map.h in Headers */, - 30FA29FE5139C62B84AC767B706A8A42 /* method_handler.h in Headers */, - 658CF2AAA9CC36667D0E1DF84644047A /* method_handler.h in Headers */, - 373B818398454E4FD80516F85E8EED74 /* method_handler_impl.h in Headers */, - 875ACEBA13D954AC225C513400135FCF /* method_handler_impl.h in Headers */, - 9DCC78D309B16341A3E526B29DA8EF7E /* metrics.upb.h in Headers */, - E59B82040BFF9CEFE12F3ABFC00D06A3 /* metrics.upbdefs.h in Headers */, - E68294AC5B36B8728C446BB992AEAFE2 /* metrics_service.upb.h in Headers */, - 6B985A4989B396694AAF396BEAFB3C04 /* metrics_service.upbdefs.h in Headers */, - 15A8C3D3C6C0A0C5124F175F0CE68012 /* migrate.upb.h in Headers */, - 68FB8777DC44DF69BD6893A4011079B4 /* migrate.upb.h in Headers */, - 77596741512A33A3967FA5566D0A8FF2 /* migrate.upbdefs.h in Headers */, - B620E39CD95DDCEF62D2A4C2C19CC207 /* migrate.upbdefs.h in Headers */, - 6631B549BB5B8970883C11C72C209558 /* mini_table.h in Headers */, - 1D075A0864271B579194D648633CA54F /* mini_table.hpp in Headers */, - F8E4D3B38855161BBE2A4532CD03DC6E /* mpscq.h in Headers */, - A782010CFA039842FE609F64D3CDFDD2 /* msg.h in Headers */, - F8A4DFC6C3990253DFB2DC5D2041B3C2 /* msg_internal.h in Headers */, - 3813ED6CC519A46B801916745B076B8D /* murmur_hash.h in Headers */, - D52818F1E5C1E6D769A0195F611259E5 /* mutex_stats.upb.h in Headers */, - 13FBCEA002F71D07CB3095E6995C60A8 /* mutex_stats.upbdefs.h in Headers */, - 4BABDCC3413B6F37683E536EDD2A10B6 /* nameser.h in Headers */, - 0B19D4E631F997D3F81F2A7F70EBD519 /* ndk_binder.h in Headers */, - 5BC96C08F0C70D9752E08D246112F727 /* no_destruct.h in Headers */, - A126A9E158604C62BEC6D5F4225872B5 /* node.upb.h in Headers */, - 333D19EE791C21AF87D0164B6C704A7D /* node.upbdefs.h in Headers */, - 4C7CBBA0526A92BC9EC9B4F65A371BA7 /* notification.h in Headers */, - 113C4F62D3B5DDEF035FF71680764A70 /* number.upb.h in Headers */, - C7F944171B41DC1F36D994357F6E48A5 /* number.upbdefs.h in Headers */, - 792DDA0F0CE44CA8462B0C614F93C4E0 /* oauth2_credentials.h in Headers */, - 591C718785018BC1B5834BCC3D4C8C7D /* oob_backend_metric.h in Headers */, - CB70EEB41986D6E75530C2E26F6AB27C /* opencensus.upb.h in Headers */, - 94AFFCF10F04B3843828E17E218E7AD9 /* opencensus.upbdefs.h in Headers */, - 8F7A22F4D622C569BDDA51B04E2AA527 /* opentelemetry.upb.h in Headers */, - 87BA8F8BE9C449FD29B21037C83A3179 /* opentelemetry.upbdefs.h in Headers */, - C3B135934B786329B692A33C64D2D5B9 /* orca.upb.h in Headers */, - 42E5B0F7856E30BA7B5E3B143FF0876D /* orca_load_report.upb.h in Headers */, - 509E58B8D9DB562312C41DE4755161E8 /* orphanable.h in Headers */, - B6FE8638B340DC15296E645B054B0F75 /* outlier_detection.h in Headers */, - CF6B574F3BE64A43559ADCB19DCA9975 /* outlier_detection.upb.h in Headers */, - 79EB518BFDE3C75E8991DFC912468FE7 /* outlier_detection.upbdefs.h in Headers */, - 92D8747AD6D0619AF2F2B71189476331 /* overload.h in Headers */, - D308EB9E67038FA189DADB4FC6E53CEB /* overload.upb.h in Headers */, - 384AE55890F83BB63F89E5F03710D229 /* overload.upbdefs.h in Headers */, - D5BB28E7F6918F75EC386BA3FA88D0D2 /* packed_table.h in Headers */, - E919D25A6D493B6CAE9FA2C5CAC424F5 /* parse_address.h in Headers */, - 2CC7E7D44AE02142631C9EB2B7CA8CE0 /* parsed_metadata.h in Headers */, - E327590D615F0432A7486F96279D831B /* parser.h in Headers */, - 7B6C199FB56D104AEA8ECB2D6196FD8F /* path.upb.h in Headers */, - 8A04407107AE8B5314740136D9D4A33A /* path.upbdefs.h in Headers */, - 285895EAE8524ED4A82A281FEE1AF579 /* path_transformation.upb.h in Headers */, - 238BADA363A7DFC001C3FBA386296E53 /* path_transformation.upbdefs.h in Headers */, - 774DD38A7020D621B3B7EC6EE9FEB753 /* percent.upb.h in Headers */, - 014E055A3B799CC8EB55C63E2CFD412A /* percent.upbdefs.h in Headers */, - 4F3AD4C6E054A6D7CE0FC549211F0944 /* percent_encoding.h in Headers */, - D8E84C7A0E0333B311E47C5FD3CD261C /* periodic_update.h in Headers */, - 7234B760B7F19DD21D1E58D847C2CCDA /* pid_controller.h in Headers */, - 8ECD6E93C27E33CF885882E3E86D282D /* plugin_credentials.h in Headers */, - 192D015AA92B940D6320E531409C2388 /* poll.h in Headers */, - F3386C43469BB2DF06F8CCA413169173 /* poller.h in Headers */, - C8A4831AE13199A7CA8CE523C07AEDE3 /* polling_entity.h in Headers */, - 0347581A956820D144DC04D69CA8BDA7 /* polling_resolver.h in Headers */, - A3C5DE265FA2645E6E791E4CDA3F48DC /* pollset.h in Headers */, - BC5265B3AEA8216017CD113BD0649263 /* pollset_set.h in Headers */, - 9E825C4F03B5355C2B500823639946F3 /* pollset_set_windows.h in Headers */, - 933A3FE5DE7E3AA8E8DD0F7651B4BAA8 /* pollset_windows.h in Headers */, - F79C9F122ABE934D22433B522B2C3E48 /* port.h in Headers */, - 31132810B7C37E75A3AA5666E4B42ECB /* port_def.inc in Headers */, - 1B1C0478AA329BA9059AF7E8BCFBE4D4 /* port_undef.inc in Headers */, - 732349237FCE44A1D611FAC667CFF2F5 /* posix_engine.h in Headers */, - FBA8E36128679C86C3957F85AD22963B /* promise.h in Headers */, - 4ED9923CF83FDB6ED6A77E6333E472BE /* promise_based_filter.h in Headers */, - AC9F229B39AE63C79FAA99DBED658EC2 /* promise_factory.h in Headers */, - 4A0207AEF761CC7181659445074B6A19 /* promise_like.h in Headers */, - 4B76227E8BA913AAC71EA5B7F1CF42FD /* proto_buffer_reader.h in Headers */, - F5E05AC124C0E9B638BE9E9C896AA19D /* proto_buffer_writer.h in Headers */, - A13C3EA6EF64565992646E2E5170D3C8 /* protocol.upb.h in Headers */, - D7BC81636DF99714E29BECE3CB8E7070 /* protocol.upbdefs.h in Headers */, - E873D786744E9BB6625A0D77FE0ECCD7 /* proxy_mapper.h in Headers */, - D69467AD5D3126122E89C1AE875252DB /* proxy_mapper_registry.h in Headers */, - A22F0FAB8524C202BA438A71CF1587AF /* proxy_protocol.upb.h in Headers */, - 58D8AF82C7A192FB93581614A922829B /* proxy_protocol.upbdefs.h in Headers */, - A76EAD654BA93FFFD61D389D37E1F1C4 /* python_util.h in Headers */, - 913F3E3893672B3FAF22DB08A800D073 /* quic_config.upb.h in Headers */, - 6EAEC0854D8592702CC1F932231E7BE3 /* quic_config.upbdefs.h in Headers */, - E540A2F4B993DA0F94C8607F1B83AC3F /* race.h in Headers */, - 24D1D41D3476A6158EFC42AD9825839B /* range.upb.h in Headers */, - 49608C3069068D38FA9AF97ADDF61FF3 /* range.upbdefs.h in Headers */, - 67881F690FECF80222E7BB78FC564DC6 /* ratelimit_strategy.upb.h in Headers */, - 32968FF364ADB819FC7396557AF1E675 /* ratelimit_strategy.upbdefs.h in Headers */, - 30FDA6B73968ACBACAAE6A186750D717 /* ratelimit_unit.upb.h in Headers */, - 3FA323058B263522DB64156FDF4DD930 /* ratelimit_unit.upbdefs.h in Headers */, - C7E546DA9956280FDF3909F0BE32081C /* rbac.upb.h in Headers */, - B36D7566842D316811B1ABBC13F19E4D /* rbac.upb.h in Headers */, - 712C3BDC16844B1EB8DF33CAE2326C39 /* rbac.upbdefs.h in Headers */, - DF9FA16027A4160392ACA1998B5EA68A /* rbac.upbdefs.h in Headers */, - 40AF9AF77C59B5993BD38B6F1CE1384D /* rbac_filter.h in Headers */, - 8DB458A1B98B4C9A092D2C9A7E447771 /* rbac_policy.h in Headers */, - 088F2B7DF6D10ABF2A2AB3FB242E27C9 /* rbac_service_config_parser.h in Headers */, - 49F71AA85F8EE4F79A918A363FE1DFAE /* ref_counted.h in Headers */, - 8D63CDDA24D8C4F6A961AE8A57CD499B /* ref_counted_ptr.h in Headers */, - 2E6299DB825DF694D8CF4135D223D39A /* reflection.h in Headers */, - F96E90BD250A5AA7DF74645E47017E65 /* reflection.hpp in Headers */, - 55999674FD9DD58809C1F64F6F626F8C /* regex.upb.h in Headers */, - 469B028C93E66C86319F680B9DE42E20 /* regex.upb.h in Headers */, - FCAB50B0664260B8F4031D6B3EF4CE22 /* regex.upbdefs.h in Headers */, - 844DBDDEF360B54BBD4D46823AF29F2D /* regex.upbdefs.h in Headers */, - E927DE4E487314C016E32AAEFA5A96D2 /* resolve_address.h in Headers */, - ACD11358DD5999490F66F98B35BED960 /* resolve_address_impl.h in Headers */, - 40ECE21F19CAA66BDC3B070D584E98CD /* resolve_address_posix.h in Headers */, - 1BB622A13F85519BD733BB912F7937BB /* resolve_address_windows.h in Headers */, - F3E91EA737D318F6496EF7778C0F11B3 /* resolved_address.h in Headers */, - 519446B5A91C7BF04AD621E5D900FB6E /* resolver.h in Headers */, - C1BE61EC55AC185A8F6133A7435CA45B /* resolver.upb.h in Headers */, - 84C6C24FF355B977A59CC534DA465E91 /* resolver.upbdefs.h in Headers */, - 352152D5C986529D8C3685CA5CB2E650 /* resolver_factory.h in Headers */, - 6BF6B396CAF8EC04E4F9B7501E710FAA /* resolver_registry.h in Headers */, - 383C4C51DB205DBCA5B7235DE8D52A9F /* resolver_result_parsing.h in Headers */, - 8668DAEC92C625F5A31B7CF13ACA65C0 /* resource.upb.h in Headers */, - 5863EDBD8B02EBC7110ACB1D867BE8C2 /* resource.upb.h in Headers */, - 9667EDA195BE99D5937CFE06ED510D9F /* resource.upbdefs.h in Headers */, - 7C06B22996E33966AC8C48DAD49AD593 /* resource.upbdefs.h in Headers */, - DC83EF66B016E73B424E1AC9D98295F1 /* resource_locator.upb.h in Headers */, - 7561D162D7836E69ED2E3D96E46C1EAD /* resource_locator.upbdefs.h in Headers */, - 319B6B4E4A245130AD97A11FDFE3A499 /* resource_name.upb.h in Headers */, - F7329DEDF86741EE51D66E27D982E80A /* resource_name.upbdefs.h in Headers */, - C85FEF359FEAEF27D89927744F5B71EE /* resource_quota.h in Headers */, - 500CC1877838F2B4EF2CC8881D8E0A76 /* resource_quota.h in Headers */, - C72E1969DEA020C64B48489C517D6949 /* retry_filter.h in Headers */, - C72D7A11F28CA9BC6EF1CC3B79B3E3F5 /* retry_service_config.h in Headers */, - CCDAD221B4D3CB465C4E904E226F2B5C /* retry_throttle.h in Headers */, - C7A408B98BA316D956014F5FC3ECF4B6 /* ring_hash.h in Headers */, - 6194B030D5CD60A81C1453CACEA1099A /* ring_hash.upb.h in Headers */, - 1C19B48A755D1986E78D86118B168F14 /* rls.upb.h in Headers */, - 2E918DDE4F8743160C921EF72EAA8451 /* rls_config.upb.h in Headers */, - 8185694D8A8CC04B7A3E68884841088C /* rls_config.upbdefs.h in Headers */, - 82D450312376ECC2E2F566D4BBF46514 /* route.upb.h in Headers */, - 9254824AA95C9F2493C8C0E6FEEA9BE0 /* route.upbdefs.h in Headers */, - BA6F925CE3D8E27A231C793C1C381F9E /* route_components.upb.h in Headers */, - 3A1E57E97CD3CB5464D8229E0F3D840D /* route_components.upbdefs.h in Headers */, - 8BEA8658CCA9227A73290E963B88B198 /* router.upb.h in Headers */, - 0A2B24A71BBC6F590C764FBF7462ABF2 /* router.upbdefs.h in Headers */, - 2FF3C0F987D4F78016F0B7D250C835DD /* rpc_method.h in Headers */, - B471D9B41137EFFC69A0E865D11281D2 /* rpc_method.h in Headers */, - 474706BCA25EC4EABA684B66D9689CDD /* rpc_service_method.h in Headers */, - 2B1AD45BEC3C2D2CD37A81213E28AF93 /* rpc_service_method.h in Headers */, - 783E45BC87D0369B97511CF0C25CA41B /* scoped_route.upb.h in Headers */, - 8E751D5B6E850D3E5F7D3359D6F90944 /* scoped_route.upbdefs.h in Headers */, - 17AF82D237C6FF715E504B1681C32D4D /* secret.upb.h in Headers */, - 57CDA3E352BBAC36FF3E02049F62F6F0 /* secret.upbdefs.h in Headers */, - B092A97301436F731BB6F24CB4A832AF /* secure_auth_context.h in Headers */, - 508216062274CE3C48BCAE37436F4430 /* secure_credentials.h in Headers */, - 91AA4BAD1B1E070FE47ABDC1C7DA0771 /* secure_endpoint.h in Headers */, - 8DCA37728D70B8A920110F95860B7229 /* secure_server_credentials.h in Headers */, - 66635E0D7CFE3E7C7DAFA960721AABB8 /* security.upb.h in Headers */, - 98494DD577EFD19FB6B6139F15E72572 /* security.upb.h in Headers */, - 8529B2F3A2A74448117FA271A8230E96 /* security.upbdefs.h in Headers */, - CC9F57C0D9E8E44CF81764BD721CFFB5 /* security.upbdefs.h in Headers */, - B683A85925F920162BD958A54CAAC1F3 /* security_connector.h in Headers */, - A85BF792E748369521B2677ED47A917A /* security_context.h in Headers */, - 3E1DFFB7EA98562F86FC6033E1B9C67B /* security_handshaker.h in Headers */, - 181796B1801005228304D9250B068CAA /* security_policy_setting.h in Headers */, - 49774C2A9F338EBA9056A0A27643A845 /* semantic_version.upb.h in Headers */, - C7B086F7AE5518B03CC66BB0EDE3132D /* semantic_version.upbdefs.h in Headers */, - E43924A8024E94819BA40E0CB30ABB05 /* sensitive.upb.h in Headers */, - E1B34E824AB91F2EDBCFD921F9FBB9C2 /* sensitive.upb.h in Headers */, - 1A5B2F5B74B56C0F051D89D9047F891F /* sensitive.upbdefs.h in Headers */, - CBE7FEE6F284AC449AAD44FAF9B0F1FA /* sensitive.upbdefs.h in Headers */, - A0081FB0BD16CFD0F65DEB15F5BECE8B /* seq.h in Headers */, - CF69EBFD9D3033D6E3EFD413E85B95BC /* serialization_traits.h in Headers */, - 09CE51C701495CDD96155EAB1F819867 /* serialization_traits.h in Headers */, - 3424FBDD74D44D9372FD79A321913FB0 /* server.h in Headers */, - 8CD676F1563595A6FC55D2D0A38D81A5 /* server.h in Headers */, - 9D09A605FA6A9333230144CA8C9BC98D /* server_address.h in Headers */, - 78E5CEB4CD30EEEDBF73FAD33C2702AF /* server_builder.h in Headers */, - 8EA7EAF3F75026DC4C054DE329044A34 /* server_builder_option.h in Headers */, - 8F03C5640A8D93E758AC9266673A78EE /* server_builder_plugin.h in Headers */, - 831F8148B47A384D7C5DAE21B6865997 /* server_callback.h in Headers */, - 1D7BAAD4CDE6D09F41AB163DFE875CC0 /* server_callback.h in Headers */, - D96871DB06923655569403CA0522C87A /* server_callback_handlers.h in Headers */, - F5E8D1D903464E23E3FDD8855B5483D1 /* server_config_selector.h in Headers */, - 38A6DD8768FDD6157C5EC685895ABB67 /* server_config_selector_filter.h in Headers */, - 42E4AF37388F2639A33E241797AC8F1A /* server_context.h in Headers */, - B7D802E7A5F90DB2077580641F097CAC /* server_context.h in Headers */, - 10D02FC86AE374B7FB73A9A7550CA5F2 /* server_credentials.h in Headers */, - 76BA2C566BA342FECE71F34613910B80 /* server_info.upb.h in Headers */, - 4F10495C1BD830833AC9450BED5A0930 /* server_info.upbdefs.h in Headers */, - E829E81DBBC633660E7FAE682F706973 /* server_initializer.h in Headers */, - 928F6EFE1D6C7EA5D795C6420E05600A /* server_interceptor.h in Headers */, - 1B4442484B4F2483516F736ABE1DC163 /* server_interceptor.h in Headers */, - 5B52A4B6D0BF4B164BE01B65A591A1A3 /* server_interface.h in Headers */, - 74E57DE5C4EE497653B964FCD4337668 /* server_posix.h in Headers */, - 3FD7E1333DC542087D4A05CC58B0F422 /* service.upb.h in Headers */, - 2B89D6A27F2FB53E05B5846B28089601 /* service.upbdefs.h in Headers */, - 3545F35C21F4A4F993C2C33D46DFF90D /* service_config.h in Headers */, - CE16FD4F2BA1014EFCA2F60B9E068628 /* service_config_call_data.h in Headers */, - 4AB0A2149C4F501E668D7AA994A5C396 /* service_config_impl.h in Headers */, - 0DA0C8A842289606ECF0345620D8BFA0 /* service_config_parser.h in Headers */, - EB65CF5953009BB17BFC13A5CFCAA538 /* service_config_parser.h in Headers */, - 4F520910CFFAAEA4773B3E3C446E450E /* service_type.h in Headers */, - 11F5F085695232ED021DFE6047909E39 /* service_type.h in Headers */, - 44CD5B9FED7A91EA6F33FC4B6A7F9DC8 /* single_set_ptr.h in Headers */, - 5B07DE7DFB3DD07C0D9122C00495291A /* skywalking.upb.h in Headers */, - 7636050EE35C8204A5C898BB079E6868 /* skywalking.upbdefs.h in Headers */, - A726153E6AACE46695646E42A73ED817 /* sleep.h in Headers */, - 05C099C2333C8F399A75DDEE378320A2 /* slice.h in Headers */, - 1A6EC3FD5549EE4B4E8D2AF0A8B9C0A4 /* slice.h in Headers */, - C78CAF8D8BFD83A8E1AAFB57C2F97F44 /* slice.h in Headers */, - D8CEA956CD3DF1E3A4FE4E491A6DE717 /* slice_buffer.h in Headers */, - 55106287C91005815B56B0D459EC0937 /* slice_internal.h in Headers */, - AB71CDB731585020FA7A70919E7441DA /* slice_refcount.h in Headers */, - C324B33C5AE1D31E903B934CFEF426CE /* slice_refcount_base.h in Headers */, - CD647B5A4B432C1F4D183994F7CABA10 /* slice_string_helpers.h in Headers */, - F475A28863398C7A4F4F92DEC8A379DA /* sockaddr.h in Headers */, - EA7132EEEB5B517BA0071AC8ECDA81B1 /* sockaddr_posix.h in Headers */, - E63909FE2E5DC39590B03733619DA672 /* sockaddr_utils.h in Headers */, - 1E221C82AE16E1BDB4FDFA80917D1CA7 /* sockaddr_windows.h in Headers */, - 044F3DB0C061346DDB36999071A54060 /* socket_factory_posix.h in Headers */, - 7DE5B80A4A5B4EDD48D33BB7CB59C233 /* socket_mutator.h in Headers */, - 05E6247F02593CE9DD952EF427EE4509 /* socket_notifier.h in Headers */, - 4E6B0E86261B15950803929272DD88FD /* socket_option.upb.h in Headers */, - B46829C8A7E0EF4C51275E0E89819D67 /* socket_option.upbdefs.h in Headers */, - 8E78178A5E6CD13B50853ABD56E93300 /* socket_utils.h in Headers */, - 8EE11D5163BDE5270260A610BA650E53 /* socket_utils_posix.h in Headers */, - 11C1940F2C501D68CE3760020A17B914 /* socket_windows.h in Headers */, - F0E84B81B6FC6B530851B33AF259F491 /* sorted_pack.h in Headers */, - 3268E8969C9341B71B4DE017F7A5D95E /* spinlock.h in Headers */, - EEF7BFA3251EDCC8B3725B79211B3231 /* ssl_credentials.h in Headers */, - 1F9D2E31E7B7B28884AAA953ED9C7959 /* ssl_key_logging.h in Headers */, - 005328B73C5785D35988112D3CA2967B /* ssl_security_connector.h in Headers */, - 9F60F610E6767C05043B432F8C3F2979 /* ssl_session.h in Headers */, - A635B5481A6AC5A768C117A8FCA71793 /* ssl_session_cache.h in Headers */, - 574CA63B6212DF9DD684601BB60FF409 /* ssl_transport_security.h in Headers */, - 15286AAA27CF19A7C92A44719C2F2E0C /* ssl_types.h in Headers */, - 384A026DE5EF52B8F39C3CA68F914287 /* ssl_utils.h in Headers */, - CD5B3D27CF04F7A9FB7942DB0651080E /* ssl_utils_config.h in Headers */, - 6D89FA5903F849B75BC395E6DCB37C95 /* stat.h in Headers */, - 2F0EA0D2EFFFA658E75F5A2C8895F384 /* stats.h in Headers */, - B820E1B7357468E306369B7161611237 /* stats.upb.h in Headers */, - 124EF8FEAC95C8D9FB4E2524C97CD46F /* stats.upbdefs.h in Headers */, - EA26B6FA6BA71E15D5E240DF21BED5DC /* stats_data.h in Headers */, - 2E6C882D6CF534DAB8B2FF596EE9D3E0 /* status.h in Headers */, - D02C8BCAE243EF921246EEA2A4A5941F /* status.h in Headers */, - B5CF80500732CFA0755B4B643F3BDB15 /* status.h in Headers */, - 559E18FF27B051995B131B48AE1298F5 /* status.h in Headers */, - B7028EB06EC6AFAD7974A6DF31A0DFD3 /* status.upb.h in Headers */, - 9B1A2CCBBB2FF254CA791C935154E24D /* status.upb.h in Headers */, - 8E4E24E8EFB6427E0CBF7AB4CA4F0EFD /* status.upb.h in Headers */, - 9B39FCE5827188F866D9874F1A493F00 /* status.upbdefs.h in Headers */, - 209C170E476C5B51B5FBBC54F86BDBE7 /* status.upbdefs.h in Headers */, - 236E5CB6E52CBA511E2B94FE710D5690 /* status.upbdefs.h in Headers */, - 3353C195173BDB8DEB723B1E0348D1B0 /* status_code_enum.h in Headers */, - 45D9DD1D364EB9C09B268C28407247F3 /* status_code_enum.h in Headers */, - 2FAE967E380B475D2B4785E336F7CE0D /* status_conversion.h in Headers */, - 0F896CC1338C311F19136B83D74F9EBF /* status_helper.h in Headers */, - 100FA8458104807C67A476DB18E314B2 /* status_util.h in Headers */, - 1F8276681CD558F811326D6D683C170C /* stream_map.h in Headers */, - 34408F8D383E69DD6EDCA054C4EBB9DE /* string.h in Headers */, - EAA95B411346A33D59C1A040414FCC39 /* string.upb.h in Headers */, - AA52D08D9EA0A6F7CFC0EB0692A0CE6F /* string.upb.h in Headers */, - A97E4CF4CE9E3B0FC9508EA65741643A /* string.upbdefs.h in Headers */, - E799A26C4E18397F2BE0F5FB2D5E399C /* string.upbdefs.h in Headers */, - 98E23D5C9E0C488F8F07862D4AE62A4C /* string_ref.h in Headers */, - 0D794555EDBB40FFADB527449F1F3861 /* string_ref.h in Headers */, - 3FEECD8FBDCE5AFA2BF812A103789591 /* struct.upb.h in Headers */, - 05D009478A70B7200CE2F48E769DD422 /* struct.upb.h in Headers */, - 684648F402E0626CD60360CEA38AE0A1 /* struct.upbdefs.h in Headers */, - B919FDDDB76F74F10C3FE146B348B729 /* struct.upbdefs.h in Headers */, - 1315F4BD3AAA2BA066D8B4427210DAFC /* stub_options.h in Headers */, - 6A36E2A673970BD446FEE050D3A72EA6 /* stub_options.h in Headers */, - 7FAB06095AD71BB5582FAD08BE6C451D /* subchannel.h in Headers */, - F7C9E354303DC5E68B2B2B7883065E40 /* subchannel_interface.h in Headers */, - 57232B555C4283E678D968CE92BCA1EF /* subchannel_interface_internal.h in Headers */, - 28D4745FB87A957C26FA46DC88A94E22 /* subchannel_list.h in Headers */, - D35B324030075CFABB22A76F87173E2B /* subchannel_pool_interface.h in Headers */, - 3CFC6340FAFEEF70D1F443F22BAB6FF2 /* subchannel_stream_client.h in Headers */, - 5D5383C0845470A922E4488F137A41C0 /* substitution_format_string.upb.h in Headers */, - 55D35E7FFFD3F7A981FB71BE77BD3C15 /* substitution_format_string.upbdefs.h in Headers */, - 828FB02F07DFB5242BE134F25E2B8E4F /* sync.h in Headers */, - 1D3CA4CA439D23BA144F4B259CC48BB2 /* sync.h in Headers */, - E48AE47BB43E81159F30060FAADDBF65 /* sync_stream.h in Headers */, - 1520085EF964C275F87DD323372041A0 /* sync_stream.h in Headers */, - 933F473391A606F3AF23E1D0150F0FE5 /* syntax.upb.h in Headers */, - A69DBBC1CA1524398FA12018C1C44528 /* syntax.upbdefs.h in Headers */, - 28844BA95A2A3D055C93770ADFB2660F /* table.h in Headers */, - D9B5A4BCAC772A85775C7E539201EC06 /* table.h in Headers */, - F9FB4B253D001E509E0442D80B991C60 /* table_internal.h in Headers */, - 8CA68DE55DEBC2D3724C573E5ECCC4D7 /* tap.upb.h in Headers */, - 5800314771FA5D99E72E44C024BB4C93 /* tap.upbdefs.h in Headers */, - BF58FF1B16F09CD54C62E9912135E460 /* tchar.h in Headers */, - 9560BC7EDC3C925897CC0C73A4023E90 /* tcp_client.h in Headers */, - 9C01DDF34B433BF113534729C1746D8F /* tcp_client_posix.h in Headers */, - 803D543BFC69BE6E5C1DCBCDA575FEF0 /* tcp_connect_handshaker.h in Headers */, - 8955EA6F7190EC846FACD1E7FBB420D5 /* tcp_posix.h in Headers */, - F97E0DD621C1D852C8E32410F68A31C5 /* tcp_server.h in Headers */, - 96E64BDBD657DB277A75D575FAAD847F /* tcp_server_utils_posix.h in Headers */, - BE1AA2069F822FE3CB469F346EE08384 /* tcp_windows.h in Headers */, - 81AB639D079074CCFE6612BB5D3964C3 /* text_encode.h in Headers */, - 9C7AE14EC1E84C09B9FE816C1EA18E11 /* thd.h in Headers */, - 08B5ADB7C711AE04E7C7DCC518823A87 /* thread_manager.h in Headers */, - 425AB969FCA990DA17FF801BE1727A68 /* thread_pool.h in Headers */, - 5EC37FC32FEB44EF2B88FFEED2F9B268 /* thread_pool_interface.h in Headers */, - D42273CE054D93391D64C4D38AD0686E /* thread_quota.h in Headers */, - DC0C1174F8760F5ABE4DFFBA5D8D0E71 /* threaded_executor.h in Headers */, - A6AB52313E50066B83FDE2BC0F7C6F66 /* time.h in Headers */, - E9D60D727AA0AF6EE883AF3962C5BC03 /* time.h in Headers */, - D8FB370F85138B31F117FEBFFFA137F9 /* time.h in Headers */, - 646988A727777F074EEEE64951A26283 /* time_averaged_stats.h in Headers */, - 88665A6F585AE5216BE653B9897468F9 /* time_precise.h in Headers */, - 812D62A66119D7CE0FBB22EA026E80E3 /* time_util.h in Headers */, - 5EE0DFE31E01C349909E4D2E8EDD11F2 /* time_util.h in Headers */, - A9E06CCB32C82AD381DED38AB9805960 /* timeout_encoding.h in Headers */, - 9BB23ADC4E417F852C9DC9A388D96124 /* timer.h in Headers */, - FF1325CE82B5D4C6FC87175A5297B872 /* timer.h in Headers */, - 8D7B8CAAA16B5A14F5B04D8B0719F7F8 /* timer_generic.h in Headers */, - 0E6BF79AF24C408901EF59C980649D0F /* timer_heap.h in Headers */, - 2FB011D3109CB53E5EEE17FDDAC782E7 /* timer_heap.h in Headers */, - 796F3DA8DAA09B5F95F2866BC8CA4F76 /* timer_manager.h in Headers */, - FA2EC3997D3275F4B79C4355774DF5EA /* timer_manager.h in Headers */, - 066DBA468565FB72FBE5A0E7F8AD0B30 /* timestamp.upb.h in Headers */, - 08E7AACC1BCAD3CA5B1948150477C86F /* timestamp.upbdefs.h in Headers */, - 6C3897DEB22E03D9DA027C9261D528A4 /* tls.h in Headers */, - 287AF6600FA5E09784D10690CC5771D4 /* tls.upb.h in Headers */, - 9C6928F5E503B5C025CDF16BB2638CC3 /* tls.upbdefs.h in Headers */, - D576817735CE923179DAD20348CBBF97 /* tls_certificate_provider.h in Headers */, - 4DB1BFC8EEFE2CB2CB8067F05100942E /* tls_certificate_verifier.h in Headers */, - A5DEEE030F3252C0B6F93AAFDF1A277C /* tls_credentials.h in Headers */, - C685AF5C77FC0335D8233AB884FDB6BE /* tls_credentials_options.h in Headers */, - 62994C93D739AF9737D0C7CB59F96DBA /* tls_security_connector.h in Headers */, - 5D042AC3ADAECD4A32D23B35A79AE1B9 /* tls_spiffe_validator_config.upb.h in Headers */, - 150A2B73FB693FC52740EE12D2780E9A /* tls_spiffe_validator_config.upbdefs.h in Headers */, - B7672DB3967D834306ACAA05916C79DA /* tls_utils.h in Headers */, - C2BA79FF8E41C2DAEFA7F483628BBEE3 /* tmpfile.h in Headers */, - 148AD02CB01290245FE064C5CAD4A75D /* token_bucket.upb.h in Headers */, - 499864B18C66CC6EA35B748AA4E53E62 /* token_bucket.upbdefs.h in Headers */, - B1701632894879E3AAB14D26FB39BCF4 /* trace.h in Headers */, - 4FAEF8A5FB6989C7F6DB397F9C74C03B /* trace.h in Headers */, - ED6300639BD815E61894F4642F9A79B1 /* trace.h in Headers */, - 6A0AC75DFD23583786976E93BB515C2C /* trace.upb.h in Headers */, - 0723CB1BACBAF1A74F9BC0DEFDFEB3CD /* trace.upbdefs.h in Headers */, - BD4953D32BEFD66DF43FC78F454768FE /* trace_config.upb.h in Headers */, - BA781C837F9A9CDD5F0DC431CCD3064C /* trace_config.upbdefs.h in Headers */, - FA828C9558F9E909D2DCB2754A18E257 /* transaction.h in Headers */, - 59EED825EACD5B6A0A48B93E54F28607 /* transport.h in Headers */, - 45A5743B1A7636CEF9AB1C0C4A150090 /* transport_fwd.h in Headers */, - BC634600EAAA2488AD59B9C67D3A9DAC /* transport_impl.h in Headers */, - 4942A4B4FADC3E71A259CA7CB65057AC /* transport_security.h in Headers */, - 46B948B88ECE85C0D9E6C7AAC44BEA54 /* transport_security_common.upb.h in Headers */, - 62CCFAC6AB5D80F2CAD10687F4DE3A65 /* transport_security_common_api.h in Headers */, - 76293124BA8ACA53492D0FB64B922C23 /* transport_security_grpc.h in Headers */, - 751093A2E2D9EEFF43B67A851C4132E5 /* transport_security_interface.h in Headers */, - 7C42B6146AC835028EC0E1D85F9304B7 /* transport_stream_receiver.h in Headers */, - 9C1B4EBF6929D94EE7D5DEF58C771E3C /* transport_stream_receiver_impl.h in Headers */, - A7E20C94B2395C3495C9E0ACC3B41979 /* try_seq.h in Headers */, - F23C61A16CA75408E778A4AAA2966D00 /* tsi_error.h in Headers */, - EF98FD3B01CC60D6DF87043659B25A07 /* typed_struct.upb.h in Headers */, - 2DE27B428A473AA2E604FC608258B047 /* typed_struct.upbdefs.h in Headers */, - A6762B1237AD753C7B5824AFBB0C4C4F /* udp_listener_config.upb.h in Headers */, - A3FCE07899F915C7BAAE9BAF89BE5097 /* udp_listener_config.upbdefs.h in Headers */, - 1FE34B4928D3BC203A6D86BB49367A2F /* udp_socket_config.upb.h in Headers */, - 28AE52D2747008869744BAB98FB3937F /* udp_socket_config.upbdefs.h in Headers */, - B7B6CAE626B365F9B7D3FFF1FF505030 /* unique_type_name.h in Headers */, - 2A00BC6F27211E0EDFB1E4FFFFBF4EA6 /* unix_sockets_posix.h in Headers */, - D2F11A5DED372AB83B44FCF05C1D1CB1 /* upb.h in Headers */, - 59005D8FD3CDE897918536220941BCD4 /* upb.h in Headers */, - 82A39DAF29BEB3A60C0516BF088ADCE6 /* upb.hpp in Headers */, - E239927326D65A09DC1BFBC4D296808D /* upb_utils.h in Headers */, - E69EC6372D508547A8983454C60F4400 /* uri_parser.h in Headers */, - 2964934DE8AFF21AF1C8701C3C613672 /* url_external_account_credentials.h in Headers */, - B107B0178CBB99248D2E1A9002597784 /* useful.h in Headers */, - A4D82D78F2A3AEF51BF490FD0D65892F /* utf8_range.h in Headers */, - 4E73C90D2C99FF9F485E632A3E98307F /* utils.h in Headers */, - 88A6F21E2F1A7A8745FC325C19244C70 /* validate.upb.h in Headers */, - E694451DFE05A824E36F0126CC9FC055 /* validate.upbdefs.h in Headers */, - 859304782A7F09B7DA3C33B46A5F1BC0 /* validate_metadata.h in Headers */, - 7310A93E3C029CA3236259DABAB9C172 /* validate_service_config.h in Headers */, - A4084FC1C55123691A0E3B44EA1340E3 /* validation_errors.h in Headers */, - D83E5BF29EB1308250453FBD5AE89EFC /* value.upb.h in Headers */, - 4CD7D88232424D2F7972C087F5D9AD06 /* value.upbdefs.h in Headers */, - 6EF1FC759DDF658D74B8902CFE79B99C /* varint.h in Headers */, - 71DBCD9E50D2DF9957BDD8B669096609 /* versioning.upb.h in Headers */, - D48BB5ADD8721B4B2CE2B0BFD0C4A9A9 /* versioning.upb.h in Headers */, - 2CE1286AC7C4A108CF5635DFF5F256FE /* versioning.upbdefs.h in Headers */, - F684B0CD28ACEA5F712231069202EE20 /* versioning.upbdefs.h in Headers */, - 2661D057603EEA3B3FA2F3660454738A /* vsnprintf_compat.h in Headers */, - 00CD2B3B03A09EEEDFD1D9EDFE7D7C0C /* wakeup_fd_pipe.h in Headers */, - 3C20231093F642E1346FF8156C799B44 /* wakeup_fd_posix.h in Headers */, - 8311C502A12A668388699E752F9DB880 /* win_socket.h in Headers */, - 99434445BB5709F27725C4C7DBAC41F6 /* windows_engine.h in Headers */, - 9831FEC2A3D703CC1393B684A416F720 /* wire_reader.h in Headers */, - ECFED9C9E3266D547B079753C7EE66A0 /* wire_reader_impl.h in Headers */, - 5524DD0352CC1C0CFAFC7B71F983BB77 /* wire_writer.h in Headers */, - FA579BCB26E8B488F149EA7C33400268 /* work_serializer.h in Headers */, - 1D5F78CA241F686E6A5EE2A947E40AA8 /* wrappers.upb.h in Headers */, - 6737CEB4CF9EEB998D0624E253CA46E6 /* wrappers.upbdefs.h in Headers */, - 4284A690201E1E9AFCC84785DB36106C /* wrr_locality.upb.h in Headers */, - 2C7824990696DB27D6B62B0D2D02010C /* xds.h in Headers */, - B4EB82CB036100F3538A4A39D34D6060 /* xds_api.h in Headers */, - 550510A8D9A9C3BB68F6FB6C3F470752 /* xds_bootstrap.h in Headers */, - 250DDA97571BDECF74B481086A419825 /* xds_bootstrap_grpc.h in Headers */, - D77C6C13888D060346DA4B69BB7B1F8E /* xds_certificate_provider.h in Headers */, - ABBE2CFE5759B97B9A0BAF37B9F5393C /* xds_channel_args.h in Headers */, - 3F8F74E22DB2288B244263AD92846597 /* xds_channel_args.h in Headers */, - E4EF74B64C4232093FD48536E0EDC667 /* xds_channel_stack_modifier.h in Headers */, - 9DB0A0FBAE905247A0648F24F13FCC7D /* xds_client.h in Headers */, - B9F592939F23A7BC323A03EA18579A4C /* xds_client_grpc.h in Headers */, - F840E1D64A4D0AE1F655A6D1F85F7C3E /* xds_client_stats.h in Headers */, - 7F317DB9D046CCC0C2906A6BD7E1D91E /* xds_cluster.h in Headers */, - 39B381D8951792C989310101C35D808F /* xds_cluster_specifier_plugin.h in Headers */, - A615567455C083E932F5DFA7B5C60D37 /* xds_common_types.h in Headers */, - 1A51E1155073746D0D73FCF431378173 /* xds_credentials.h in Headers */, - DDE42DFF821255EE6D69BC8560C54C12 /* xds_endpoint.h in Headers */, - EA51944FFCAE5973775D63B7F9D91503 /* xds_http_fault_filter.h in Headers */, - 52109DB384F1AA848DA1B096073425B7 /* xds_http_filters.h in Headers */, - 6F2AEA339255C530221559B81D8948FC /* xds_http_rbac_filter.h in Headers */, - BAEBE01233DDCD6D0BD94DCC3669C046 /* xds_lb_policy_registry.h in Headers */, - A613AA221B6E1FD044D6068A9286B504 /* xds_listener.h in Headers */, - 4EE516BD4FCA1A556C35CB8954343E7B /* xds_resolver.h in Headers */, - 9316AE29564C8F7DDAFAE38967D1558A /* xds_resource_type.h in Headers */, - F1333F2DA0EE31FB794F686DD9309081 /* xds_resource_type_impl.h in Headers */, - 379BCB445C7A2047B8F7B1F0A95762CA /* xds_route_config.h in Headers */, - A39FF6AC3984FEEE949C1029EC964EB0 /* xds_routing.h in Headers */, - 04A3FC67FB0EE1EDE991D299272B8D8B /* xds_server_builder.h in Headers */, - 1E635B2060E2E68BF83E181195B61889 /* xds_transport.h in Headers */, - 10876529C4A8D3B9ECD459ADA1AE3C2F /* xds_transport_grpc.h in Headers */, - 5001A1A978382FDBEB2940370870D2A5 /* xray.upb.h in Headers */, - 8319DF9A3652B61EA1052CD1B5BC8CD0 /* xray.upbdefs.h in Headers */, - EE6597FF0D3554E306106601D2AB8D66 /* xxhash.h in Headers */, - BDC15B93C231B107894B23F454263993 /* zipkin.upb.h in Headers */, - 31C4A692A728FEDB978F8A8C45A44F7A /* zipkin.upbdefs.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - A4FA698ED71439A708294EA6FEBD5A00 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - E06F53E24327D4C05E701071CCDF313E /* FIRAnalyticsConfiguration.h in Headers */, - 6EAE3342DC487AECCF320E1A27F7D051 /* FIRApp.h in Headers */, - 85EB5A4E446D8B49076EC7818B043664 /* FIRAppInternal.h in Headers */, - EBF69B00041FC68490CAA511240831C7 /* FIRBundleUtil.h in Headers */, - C596B78D981789CF04233526200E7E27 /* FIRComponent.h in Headers */, - 7FD2AC0C9D38B0616A025CF7A5CCB206 /* FIRComponentContainer.h in Headers */, - 433D227FCADA617629927256C96C1143 /* FIRComponentContainerInternal.h in Headers */, - 45A847944512C9BA29818834F83E529D /* FIRComponentType.h in Headers */, - 84A6374A8A0A18FAB405FA8434DF06A5 /* FIRConfiguration.h in Headers */, - 12EF7490664B0D588B23BD9107B017C1 /* FIRConfigurationInternal.h in Headers */, - 8060A53D9E011AE030BB0B00032A6569 /* FIRDependency.h in Headers */, - C979CC307B67BDDEBFE3AC67453AFD1C /* FirebaseCore.h in Headers */, - 9D328802053B7BE14AB21A7DC2E7012D /* FirebaseCore-umbrella.h in Headers */, - B0037D398D06A03F37CB7B7663475339 /* FirebaseCoreInternal.h in Headers */, - 3589B119D0556F78ACF1715CCB8D0E58 /* FIRFirebaseUserAgent.h in Headers */, - 3D3380F2E1F5866D4B31774B7A10C295 /* FIRHeartbeatLogger.h in Headers */, - 732FF47DBBABA7FF1F09EAEE9C111B08 /* FIRLibrary.h in Headers */, - 77F533DF51CD9FC4BFA6C00DB7E7CAF9 /* FIRLogger.h in Headers */, - 82E46A172BBC230958F500765DF556A3 /* FIRLoggerLevel.h in Headers */, - 1A242E57678EC7D568B553A53D98C2F4 /* FIROptions.h in Headers */, - B0E88E9C8F4D9EE11E995DC134F5368A /* FIROptionsInternal.h in Headers */, - EA13A1FC6BD29604B7357EE960DC6B22 /* FIRVersion.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - A685A3814D05E27F9C939CC922C7357E /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - C10E55D07651206585EBEF6009BFE269 /* FIRAppCheckInterop.h in Headers */, - 29E19B978856762817806A6C4E2D7D89 /* FIRAppCheckTokenResultInterop.h in Headers */, - F24F99A6301FC9AD93DC3B8F493E39C6 /* FirebaseAppCheckInterop-umbrella.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AFBCF6DD1354879047C93FA94723606D /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - C57DCC25FCEB1CF24598D98A050FF3D9 /* FIRActionCodeSettings.h in Headers */, - 6C1A0D322950780E388A2AA4B2C001AF /* FIRAdditionalUserInfo.h in Headers */, - F8D17571D07051D6A4B9F297F1FAEC7C /* FIRAdditionalUserInfo_Internal.h in Headers */, - CD526ED7A5B7343FBE0E98831ECFEFCD /* FIRAppCheckInterop.h in Headers */, - 35498D1FC723866E8621444C8F05E394 /* FIRAppCheckTokenResultInterop.h in Headers */, - 4A046DE7C21CC8557EC928BFBCE00064 /* FIRAppInternal.h in Headers */, - 10A270E6964F3809FA2F80040E38D0CE /* FIRAuth.h in Headers */, - 2B022FC261BEF496389E8A8386D24C8E /* FIRAuth_Internal.h in Headers */, - 997E38A38B4AD0E4832A4356C3CC9301 /* FIRAuthAPNSToken.h in Headers */, - B4B5A41B3262362FCE35DDC837962DC2 /* FIRAuthAPNSTokenManager.h in Headers */, - 05A9DBA33D8DDD4E87693377E8FC9929 /* FIRAuthAPNSTokenType.h in Headers */, - 3E19512CAA59984C13E1C22800C0CF87 /* FIRAuthAppCredential.h in Headers */, - C240CCBE8155416A6F5C845A025D4E00 /* FIRAuthAppCredentialManager.h in Headers */, - 6C7F36AC440D5B8B54ACE7AF12BB8DD9 /* FIRAuthBackend.h in Headers */, - 61FE0AF156D15200FEECB1B987351522 /* FIRAuthBackend+MultiFactor.h in Headers */, - E3DBBB21F05D957E22806DCD8FF0D2E3 /* FIRAuthCredential.h in Headers */, - 0AB2055D7C55BF9BB6FAA0DB62B6FF92 /* FIRAuthCredential_Internal.h in Headers */, - C1640A330522F27049AF9A68C1A558D1 /* FIRAuthDataResult.h in Headers */, - 70EC824560F6E2A1C80008EBC5A642B1 /* FIRAuthDataResult_Internal.h in Headers */, - 8E8DDE88F6F3B3D0258F1CD97F211859 /* FIRAuthDefaultUIDelegate.h in Headers */, - DC00C2540DE5268C242DAB54217180FC /* FIRAuthDispatcher.h in Headers */, - 834F6105DD0659723F6999D280F2BBD7 /* FIRAuthErrors.h in Headers */, - C86E0BB36329A16C7D451E66B20569DC /* FIRAuthErrorUtils.h in Headers */, - 1E82797F633590F896702819363DF188 /* FIRAuthExceptionUtils.h in Headers */, - 217A472B8A51E2074AF991A482F2B9D3 /* FIRAuthGlobalWorkQueue.h in Headers */, - B6A69A931162ACCCE5A5F11425134A0D /* FIRAuthInternalErrors.h in Headers */, - D009A09CDF148E796AD0159FEC1C562F /* FIRAuthInterop.h in Headers */, - FD964198E3A2AB499454C5DCB5C4D965 /* FIRAuthKeychainServices.h in Headers */, - 9F70152DDD22AA7143ABA5A55EDAEC30 /* FIRAuthNotificationManager.h in Headers */, - A24648CA096BF69EDE6CB2CE34F91AC8 /* FIRAuthOperationType.h in Headers */, - A51A71F8DC05ADA1D7BDF5E708F05A24 /* FIRAuthProto.h in Headers */, - 2AE64306366E2E92F6C0B872C2DD8B52 /* FIRAuthProtoFinalizeMFAPhoneRequestInfo.h in Headers */, - 1383B61AEDAF50FE30E75D692FC8C685 /* FIRAuthProtoFinalizeMFAPhoneResponseInfo.h in Headers */, - 4F5F0B4F5503F9652F6F340AF7FE35E6 /* FIRAuthProtoFinalizeMFATOTPEnrollmentRequestInfo.h in Headers */, - 19FD74909E64D85706EF15CF8887BA4B /* FIRAuthProtoFinalizeMFATOTPEnrollmentResponseInfo.h in Headers */, - 7A77C2D1AAF980CAE0B0C3CDD560A96E /* FIRAuthProtoFinalizeMFATOTPSignInRequestInfo.h in Headers */, - F5FC1607C5A177A6CB6298D2C40A2941 /* FIRAuthProtoMFAEnrollment.h in Headers */, - 5193229B6F3863D406729A480C945335 /* FIRAuthProtoStartMFAPhoneRequestInfo.h in Headers */, - A4B3C1D526520B53A94BD10AA1806E28 /* FIRAuthProtoStartMFAPhoneResponseInfo.h in Headers */, - 85C43865AA273FCE471711561E27509C /* FIRAuthProtoStartMFATOTPEnrollmentRequestInfo.h in Headers */, - F721E0AD60D4AE4AD230868936372BD2 /* FIRAuthProtoStartMFATOTPEnrollmentResponseInfo.h in Headers */, - ABB1B2B41F34EA653B07E00AEE4E005A /* FIRAuthRecaptchaVerifier.h in Headers */, - AF379EC6A57C9BE0F6EAF73C5E570BA3 /* FIRAuthRequestConfiguration.h in Headers */, - 7CCF2FDC93D377847F317D1767944170 /* FIRAuthRPCRequest.h in Headers */, - 1F18FC35AE704A5409128F252FBCB992 /* FIRAuthRPCResponse.h in Headers */, - F34433AE97A5F803638A939F0ED795AF /* FIRAuthSerialTaskQueue.h in Headers */, - FD03E74B23742B07B807A85875413AE8 /* FIRAuthSettings.h in Headers */, - 294193CD2BBF50AC6EA3675193A68B48 /* FIRAuthStoredUserManager.h in Headers */, - 98120C20E17FA389161E757C0229E55A /* FIRAuthTokenResult.h in Headers */, - A000DCF48A4CAC5F07E210936F4E7D1F /* FIRAuthTokenResult_Internal.h in Headers */, - 80B485E26D3E3A5D5B78B6512F5344FC /* FIRAuthUIDelegate.h in Headers */, - BEA3E66720C4F3B9668E1C09275D918A /* FIRAuthURLPresenter.h in Headers */, - 68F70EF771F5E6931FC09853E862078F /* FIRAuthUserDefaults.h in Headers */, - 28411696A877A3D9C41D09B76D3A309B /* FIRAuthWebUtils.h in Headers */, - 6D6BC9FC148120EEFBE0C8D52FB60A07 /* FIRAuthWebView.h in Headers */, - AEF4AD4FD2A6822E1AA3F34C7D4A1258 /* FIRAuthWebViewController.h in Headers */, - 69380DC62218580647E8C88FAA8F22F2 /* FIRComponent.h in Headers */, - 184D657A6B587E7EC9CE29A7508AB347 /* FIRComponentContainer.h in Headers */, - 8BE6C947B341E272A7539C140283B641 /* FIRComponentType.h in Headers */, - 442264D6A7CA33BBF1A7FCEA2094E8FC /* FIRCreateAuthURIRequest.h in Headers */, - 0D99E39B248848D4DE7BF73B16110535 /* FIRCreateAuthURIResponse.h in Headers */, - A2E7DD39012D93DCBBB264956B8B21FE /* FIRDeleteAccountRequest.h in Headers */, - A4103D6404BED06A158017D9EED1278F /* FIRDeleteAccountResponse.h in Headers */, - 92569807C44C2BCE86044D6072B7E35E /* FIRDependency.h in Headers */, - CE85386FF9AB1162668C08161BC9D428 /* FirebaseAuth.h in Headers */, - B66F7B80042D2E304DEB0AB3FD0E5D45 /* FirebaseAuth-umbrella.h in Headers */, - 13A90A5DFC67BDD4CCACFAF32A366BD2 /* FirebaseCoreInternal.h in Headers */, - E8CFE4FC337A4D6A700A75882C691DCF /* FIREmailAuthProvider.h in Headers */, - A80636E29764CD2B95CBB12F2759DCEE /* FIREmailLinkSignInRequest.h in Headers */, - AF8966AE6D3A270D3471DB8A2E1BC96F /* FIREmailLinkSignInResponse.h in Headers */, - A016F8A36FF5499F7E8B8494C6178DEC /* FIREmailPasswordAuthCredential.h in Headers */, - 5C1DC9D301DB0402AAAD48147AF4D2CE /* FIRFacebookAuthCredential.h in Headers */, - 7987D02E083EC09EE936454A003098B9 /* FIRFacebookAuthProvider.h in Headers */, - DF2F03B03CC215A31B27BC9D1ED9CC27 /* FIRFederatedAuthProvider.h in Headers */, - F817027FD1E2660FD91F0DD1261485A3 /* FIRFinalizeMFAEnrollmentRequest.h in Headers */, - 6CF2355B275E45D4E867E9A6728EA152 /* FIRFinalizeMFAEnrollmentResponse.h in Headers */, - C4943D67700E672E900010DD9A62AAAF /* FIRFinalizeMFASignInRequest.h in Headers */, - 8BEE24DD5CA317B878559E2DD0586B86 /* FIRFinalizeMFASignInResponse.h in Headers */, - 116E9B3B4CCC2A1D56889598186AA9AC /* FIRGameCenterAuthCredential.h in Headers */, - F1F91148F85913E5461D2C80E438F0E5 /* FIRGameCenterAuthProvider.h in Headers */, - 850227AA651121CB3A008A15D328704E /* FIRGetAccountInfoRequest.h in Headers */, - D2B153EC2A15E95BA474E839009510D3 /* FIRGetAccountInfoResponse.h in Headers */, - F73143D154EDAB29F314D309E3FCC3C9 /* FIRGetOOBConfirmationCodeRequest.h in Headers */, - 519E5A27193958965AA1F2FF104236F3 /* FIRGetOOBConfirmationCodeResponse.h in Headers */, - 61FD5A55911E16113CD8A913DC23410C /* FIRGetProjectConfigRequest.h in Headers */, - 25161A708C8544E70B7672719B496110 /* FIRGetProjectConfigResponse.h in Headers */, - D9A070D49F27EE12E0B5A177B2D4E294 /* FIRGetRecaptchaConfigRequest.h in Headers */, - 489FA2A9A9FBC5ADA08FF8B71C676313 /* FIRGetRecaptchaConfigResponse.h in Headers */, - ED7F2EBE4EAEBF8ACF20D8E090DE664E /* FIRGitHubAuthCredential.h in Headers */, - 1B5929FA7DD15800B4417D4720B63479 /* FIRGitHubAuthProvider.h in Headers */, - DC2AA156F02D899C039D381809BC3680 /* FIRGoogleAuthCredential.h in Headers */, - CD786366BF0732A6297307982103FF1A /* FIRGoogleAuthProvider.h in Headers */, - E7299BBA4F97AE3925B737A79492F76C /* FIRHeartbeatLogger.h in Headers */, - A99A6B10016DD657C435A100B1832D6E /* FIRIdentityToolkitRequest.h in Headers */, - 0908820947E21BA670249896E50851A2 /* FIRLibrary.h in Headers */, - E6110B5E46D9CCAAF1695D09ED1BB591 /* FIRLogger.h in Headers */, - C64870E9EC41D1A330D510970215D575 /* FIRMultiFactor.h in Headers */, - D139F0E116D5FE753848834D5AA697BA /* FIRMultiFactor+Internal.h in Headers */, - 676A1F2AAE77E1D6C1108BF37540E1F3 /* FIRMultiFactorAssertion.h in Headers */, - A17475EF4B9CBF59CE774693328FBCFC /* FIRMultiFactorAssertion+Internal.h in Headers */, - 1A566E10CF04AC90691AE059CCCCD9BE /* FIRMultiFactorInfo.h in Headers */, - 1F7BA7258D715981F747497329586EFD /* FIRMultiFactorInfo+Internal.h in Headers */, - 56DEC1D74FE19A0C469481B530552678 /* FIRMultiFactorResolver.h in Headers */, - 69F33F5DDAFD0E035986F89702EF9E2C /* FIRMultiFactorResolver+Internal.h in Headers */, - E2C6B24CFAA94E8CE154C6636F3A2CD8 /* FIRMultiFactorSession.h in Headers */, - BC4550BAF9FDF6834D777996B5B98160 /* FIRMultiFactorSession+Internal.h in Headers */, - 573C60CD2B4BA2DC593B3BCACCF421E3 /* FIROAuthCredential.h in Headers */, - 5C8BA310E6303B785F4D4C5BC4BB8E6A /* FIROAuthCredential_Internal.h in Headers */, - 0ADBBC5D1721C1D20B47C0718774A02F /* FIROAuthProvider.h in Headers */, - 054C4D3CBA07BD949EA3C25DE76F7C9E /* FIROptionsInternal.h in Headers */, - 43A53C14640C32D524467CE6948868AB /* FIRPhoneAuthCredential.h in Headers */, - 968F54A9A7BC22E1A3E0F4033362AE5B /* FIRPhoneAuthCredential_Internal.h in Headers */, - 6FB82EB3C598C01843931AC137D6693A /* FIRPhoneAuthProvider.h in Headers */, - 2DCA6932F61B1B159351C99A3ED95AF9 /* FIRPhoneMultiFactorAssertion.h in Headers */, - F09CEF9F08926656B4AFDC1099A18E48 /* FIRPhoneMultiFactorAssertion+Internal.h in Headers */, - 4543DFCC16D9F3ADF0A9894A9C0DC03C /* FIRPhoneMultiFactorGenerator.h in Headers */, - 880FA0FDDCB1A10364A26CEF875912BB /* FIRPhoneMultiFactorInfo.h in Headers */, - 31DF88B73C59A81FF7B60C0663A3A277 /* FIRPhoneMultiFactorInfo+Internal.h in Headers */, - 7495033E0DF7AC79534CC57296C0712B /* FIRResetPasswordRequest.h in Headers */, - 62E6FCCC0900C1B8AC1D593DA8DB3718 /* FIRResetPasswordResponse.h in Headers */, - 365EAFB1F5F905F876E2478558851044 /* FIRRevokeTokenRequest.h in Headers */, - 3355AFEE925E8F384B61E49DF678DE46 /* FIRRevokeTokenResponse.h in Headers */, - EC1431F02C6DE39CFD1F5176B383E3AF /* FIRSecureTokenRequest.h in Headers */, - 6F9B75740F85A27E53E5F4EFDDF2BE59 /* FIRSecureTokenResponse.h in Headers */, - 095867195866CF862EA1623E4C00DB3C /* FIRSecureTokenService.h in Headers */, - 20081D3CBEE5677763AAF43A8680BF6B /* FIRSendVerificationCodeRequest.h in Headers */, - 385F945AC9DF19BE75A807ECF621C9E7 /* FIRSendVerificationCodeResponse.h in Headers */, - AB150C0638665D46E63800896D6153AC /* FIRSetAccountInfoRequest.h in Headers */, - 756F0B6072BFC23E59FD0C393318CB2F /* FIRSetAccountInfoResponse.h in Headers */, - 3E0ED41C2943A88F9D3FBA9DE251DA34 /* FIRSignInWithGameCenterRequest.h in Headers */, - BE32CE3828B6045D5BFDF589E412192A /* FIRSignInWithGameCenterResponse.h in Headers */, - B6653EA00C31D963E65484FE89714E55 /* FIRSignUpNewUserRequest.h in Headers */, - 8B60FB2477F056539FE6474C399292CE /* FIRSignUpNewUserResponse.h in Headers */, - 9BA956609402DCBA1BE3264C843D3383 /* FIRStartMFAEnrollmentRequest.h in Headers */, - 4EFC5FEBDCA4752920C98334F8FBA82D /* FIRStartMFAEnrollmentResponse.h in Headers */, - D42D28BC25D0923D853751AC5948B648 /* FIRStartMFASignInRequest.h in Headers */, - 92C7C930F6B49BA8A52AB330F105493C /* FIRStartMFASignInResponse.h in Headers */, - 70DC77FDC06D062854A193A0545AFFB8 /* FIRTOTPMultiFactorAssertion.h in Headers */, - 7FA5B95C9EFE10FDBFD8F10C38A154DC /* FIRTOTPMultiFactorAssertion+Internal.h in Headers */, - AEC6B99775C79BD6AA2D0D451A7E3DF5 /* FIRTOTPMultiFactorGenerator.h in Headers */, - 4E470B42C2096E1873DDFF7B0A808AEC /* FIRTOTPMultiFactorInfo.h in Headers */, - AE7FB602A85EED04B8B5F858B643D9F9 /* FIRTOTPSecret.h in Headers */, - FED8ACD03A2A70A0E9521EFF03071E36 /* FIRTOTPSecret+Internal.h in Headers */, - 9273CEBFA4161A43C28AF8AA89BDD20A /* FIRTwitterAuthCredential.h in Headers */, - C42D88647BDEE31BFEBD0835EC8553B1 /* FIRTwitterAuthProvider.h in Headers */, - 60CDAB6765C741532ACCCD7876CE53B9 /* FIRUser.h in Headers */, - E5B6181359E60A73CFBD634FDF949DFE /* FIRUser_Internal.h in Headers */, - 9D5F295ED9F7597E0D069885D266A855 /* FIRUserInfo.h in Headers */, - EB80D2F892C5EAED89E30746D0E0A528 /* FIRUserInfoImpl.h in Headers */, - 8E8E6CD526E3D5D4D7021B82808E3661 /* FIRUserMetadata.h in Headers */, - 294DA9A192EC5272AF5EA979189C192E /* FIRUserMetadata_Internal.h in Headers */, - 9499D5AEBE6B9D64A2D2F1668EC1CCCE /* FIRVerifyAssertionRequest.h in Headers */, - F25EEDE328F5F05452509C477CCA5CA4 /* FIRVerifyAssertionResponse.h in Headers */, - 54349F2836EAA4C8FF44863F1AB3387C /* FIRVerifyClientRequest.h in Headers */, - 3C4739B2ED366FB2668700B38CFDB38A /* FIRVerifyClientResponse.h in Headers */, - 8E46D3C99668474FF1D337350AA81AC0 /* FIRVerifyCustomTokenRequest.h in Headers */, - 1477FB5D416269DFA6418BECAD762209 /* FIRVerifyCustomTokenResponse.h in Headers */, - F2D6C4A5FFFBA2D57B1054CB64058FE7 /* FIRVerifyPasswordRequest.h in Headers */, - 9D619D7196BF272310D71E48F4AF65F1 /* FIRVerifyPasswordResponse.h in Headers */, - E44951C9E8DF1283735C57CBC119134A /* FIRVerifyPhoneNumberRequest.h in Headers */, - CDBFADCFC0F0B2D936883762FD07D10F /* FIRVerifyPhoneNumberResponse.h in Headers */, - 92C4534A662529E1CB129E01F6D376CD /* FIRWithdrawMFARequest.h in Headers */, - CEE6C1863A574AA952E75AF8E3371D2F /* FIRWithdrawMFAResponse.h in Headers */, - A3AF7B29BD47B81B926113B7528CFBFE /* NSData+FIRBase64.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - B95883A86FE7FC97793F700CE958BF7F /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 45F934D2B3CDB87CDAD815668ED05FFC /* nanopb-umbrella.h in Headers */, - 28F433FDEA13684030FFA44B62CF67D9 /* pb.h in Headers */, - 1029E4BFC437C05004C7977814C40135 /* pb_common.h in Headers */, - A25BADF9180077F4772425FE18C9729E /* pb_decode.h in Headers */, - 528247F42FC2AB021FF440AB14819310 /* pb_encode.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - BEC43CF7590BC5AAA5D611E69326E5F1 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 44E4816DCD133C576BC2999E8E5072B8 /* RCAActionProtocol.h in Headers */, - 43CBD94F9164A8A26C73893EC1A11E54 /* RCARecaptchaClientProtocol.h in Headers */, - 17E1C763D2E04309C71786A2C2BE1F49 /* RCARecaptchaProtocol.h in Headers */, - 45B6B73FADB2771C36DFE532D0EB3402 /* RecaptchaInterop.h in Headers */, - 44058BCDFF3D3EA24E34752A9E1BA679 /* RecaptchaInterop-umbrella.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - DC68A1F3DF4FF4D77D7410FDFF1F8CC6 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 21FF350A0BA4D8F90171CFBDB62EF552 /* FIRAggregateQuery.h in Headers */, - 840CA0042F38D5A6D19DA782D89C6156 /* FIRAggregateQuerySnapshot.h in Headers */, - 040B1E70468AFEE11DD07C33B979E310 /* FIRAggregateSource.h in Headers */, - 69C3CCCA9A41F08FD1D9D1750B0112AA /* FIRAppCheckInterop.h in Headers */, - EDD4FCA527862A4C02E6FD58DEABDDB0 /* FIRAppCheckTokenResultInterop.h in Headers */, - C91D5A1E21470FA3F32C062CD05B7BF7 /* FIRAppInternal.h in Headers */, - 5CB73C122D590F4B5D072203AF99AADD /* FIRAuthInterop.h in Headers */, - 9E840A5A4ACFA2C85A70B6099A06D302 /* FIRCollectionReference.h in Headers */, - 79A48C5C5B2F6D59FFA9CD07C6685FC4 /* FIRComponent.h in Headers */, - 9A88C406A3B053BDCAC32370338A9067 /* FIRComponentContainer.h in Headers */, - E775D302C9458E691358A91B3D764645 /* FIRComponentType.h in Headers */, - EBCACE8A7A842FAA338E5F5AEF8B2869 /* FIRDependency.h in Headers */, - E287235CE4A6D6235CC4A47ACBA7E48C /* FIRDocumentChange.h in Headers */, - FA5586B2D68A9433326661FE4E8115D1 /* FIRDocumentReference.h in Headers */, - 8FCD626E08D5DF8E0E53ED2FE7071FE7 /* FIRDocumentSnapshot.h in Headers */, - 4219B8E5F289B2D0C415B205EC23F0DE /* FirebaseCoreInternal.h in Headers */, - C2D31B3AD55A7DBEE5FFB8D23BF40E04 /* FirebaseFirestore.h in Headers */, - 3242B47742600F906662F484F084472D /* FirebaseFirestore-umbrella.h in Headers */, - 945D06FC499FAF27E00D9FAC96A9BE31 /* FIRFieldPath.h in Headers */, - 987E0FB6351E22C4A4F8AD27BDECF19A /* FIRFieldValue.h in Headers */, - 75F4566D5CB43E8E89EA043D78734BBD /* FIRFilter.h in Headers */, - F9F99440417663152AED0A717752FA20 /* FIRFirestore.h in Headers */, - D4DBCC210EEABCB3D5F65376CFC57176 /* FIRFirestoreErrors.h in Headers */, - C48E05F223922CDC8140EEC23F66C044 /* FIRFirestoreSettings.h in Headers */, - DBE7ECF7016516684F7B6E8F99BEA64F /* FIRFirestoreSource.h in Headers */, - F472472D6482A5F8A33ADBE942F1EDDD /* FIRGeoPoint.h in Headers */, - 4820766CBABF599CDD0450B6CC7A6936 /* FIRHeartbeatLogger.h in Headers */, - 01BF9A18D1107CC9ACC6270734F73E85 /* FIRLibrary.h in Headers */, - FE66731CAB718B06B461CF27C982DDA3 /* FIRListenerRegistration.h in Headers */, - 8B45771838B2E6163C5ACB635643AD50 /* FIRLoadBundleTask.h in Headers */, - 113E7E538B2319BAF26412973BEE595E /* FIRLocalCacheSettings.h in Headers */, - 801EE1C709D603939F671FA4C6E63EC2 /* FIRLogger.h in Headers */, - 4856D65C77B1B1E04A34573B6E6FA763 /* FIROptionsInternal.h in Headers */, - 485142528B3F8886DC70AE8F587B2F16 /* FIRQuery.h in Headers */, - 905ECE7FFD6158AC39BE0804E6C040BE /* FIRQuerySnapshot.h in Headers */, - F39F9BCB10247EEF0D6DFC416DDACC5C /* FIRSnapshotMetadata.h in Headers */, - B30AA9BD0449FFF0BBDC00B25AAB21AD /* FIRTimestamp.h in Headers */, - BB980B34A790DFA995362600FF6AEA9F /* FIRTransaction.h in Headers */, - 0450CA37FC5AF251C6CE03CAB0ED18AB /* FIRTransactionOptions.h in Headers */, - 9D3BCAC271ED1E2C72A24454F0B4B843 /* FIRWriteBatch.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - DF7F69BF849C78E1FAB2AF97DED901CC /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 6D279ACE98D8CF49AAB6D091299A2E21 /* FBLPromise.h in Headers */, - D161629689A806DB3F9A5E1FDF4668C9 /* FBLPromise+All.h in Headers */, - F73567C67C7F6CC4C9B9B50283DA5ADF /* FBLPromise+Always.h in Headers */, - A31A7FA6361B90EB33ABA17C6D03152C /* FBLPromise+Any.h in Headers */, - 188B7949FE1453A6DB2E2F530FDBF6AF /* FBLPromise+Async.h in Headers */, - FDB17DAC714A12CA5568F9FE75BABDE0 /* FBLPromise+Await.h in Headers */, - 415B53AFFB28B3DA9489D667653E3210 /* FBLPromise+Catch.h in Headers */, - 9A12A740C78668D6DC7921BEF8903C90 /* FBLPromise+Delay.h in Headers */, - 1CE0E1AA9D0CC33ED8BAFDDE58770F85 /* FBLPromise+Do.h in Headers */, - 32B470D055C7C352A01F80BFC8E4090D /* FBLPromise+Race.h in Headers */, - 05C9155E35195B59BCB82D3D0AF6EA7F /* FBLPromise+Recover.h in Headers */, - 48DF1F3044A4D82F098F93A6C0D4B70F /* FBLPromise+Reduce.h in Headers */, - 2FFA70D66F7D66F9C02CF058E000D725 /* FBLPromise+Retry.h in Headers */, - 612E457E2C77CB2076FFA37BAFAC020E /* FBLPromise+Testing.h in Headers */, - B79F9F79587249E3120E43D39AD0932E /* FBLPromise+Then.h in Headers */, - 6D429A564FD779CA8B5D995BA813057A /* FBLPromise+Timeout.h in Headers */, - 85245FC9F92AE75324DD866A97F40FFF /* FBLPromise+Validate.h in Headers */, - EF9A89ECF83DC5AE6E807823042E39F8 /* FBLPromise+Wrap.h in Headers */, - 2DBD90D430A7F109B826DA8A59434C67 /* FBLPromiseError.h in Headers */, - 38896242BEF89DF3C845C7D8003E6990 /* FBLPromisePrivate.h in Headers */, - 31BD645BB113446B37A8FA08DFCB58DA /* FBLPromises.h in Headers */, - 6F386C5633C4B0179E8A7997CF659F66 /* PromisesObjC-umbrella.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - E03407756B9423E038E4987B6D79E3F2 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 04CC4808FD96CB116099F8EDFD03A2D0 /* GTMSessionFetcher.h in Headers */, - 93B6B27235AAF51686FFFA90D3F027CA /* GTMSessionFetcher-umbrella.h in Headers */, - 0CD9EF9F63565D27147916B4FD741BEC /* GTMSessionFetcherLogging.h in Headers */, - 41125E57D8747B8C848A2FAFD1CDC7A7 /* GTMSessionFetcherService.h in Headers */, - 14308EA35B77FEEA8940CB242461DF3E /* GTMSessionFetcherService+Internal.h in Headers */, - 44EC5DE8A32E48F33E7F6E3F45353651 /* GTMSessionUploadFetcher.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - F1CED20EDA591C146FE903FB4901E41D /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 15192E441EE4A7C24CB61F42A14EAE57 /* aead.h in Headers */, - F35CA4B1FCA02D5D43D72A2FB664E660 /* aes.h in Headers */, - 4A98AC01583661FEE404579B7FF70874 /* arm_arch.h in Headers */, - E442FA1E4AE071D21D3ADC20D7C29708 /* asn1.h in Headers */, - 082263CF509DBC9A027640166B97B9DD /* asn1_mac.h in Headers */, - 1383FEB16447A4335A8054D9D8D10BEE /* asn1t.h in Headers */, - 989DADD4D53DA77324D892AF89FB4156 /* base.h in Headers */, - 8226CFCD503B4BAB69B33760860CE1B3 /* base64.h in Headers */, - 4C58C29D30C9346DA264A541A3A05F5B /* bio.h in Headers */, - C99E3C66FFB19621CDFDC95D48653F2D /* blake2.h in Headers */, - 36BBC74FD62A6F1319431D82C9453AC1 /* blowfish.h in Headers */, - 5B4DF8D71C5F3AF68D9CF1BEEAAD8FEF /* bn.h in Headers */, - 2780C543B21248ACF27C945D5BFDC9CF /* boringssl_prefix_symbols.h in Headers */, - 0EDB3C9A2F0A9C1444C1A1133BF30FE8 /* buf.h in Headers */, - 7155B87F7BD2A3EEF6BE4D693539785F /* buffer.h in Headers */, - 10A1E04D2B4AFA015973F97CD550D49C /* bytestring.h in Headers */, - 4E877A25EBF5A1BAA91431FA4EB80A03 /* cast.h in Headers */, - 129EAEBD84A59F516B78AB241D4D4657 /* chacha.h in Headers */, - 1EFDB4DC6B6B9DC52C3F56E8705CF309 /* charmap.h in Headers */, - 9C5363ED8F52C347BE5D70261376D18E /* cipher.h in Headers */, - 4FB4A35FCE52E681200D2BE37409B37D /* cmac.h in Headers */, - 70749FC1B99F78EA4E8E2D6BA9DD14B2 /* conf.h in Headers */, - 3A46FE3944A13DAF1C125437BAFF8B5C /* conf_def.h in Headers */, - C6F91CA0FB0A34A5662A691886F1C243 /* cpu.h in Headers */, - 08477F117B4F4E9E9F4F95A5F8E2B120 /* cpu-arm-linux.h in Headers */, - C6E4B4BE64E5723B88EA7E277E53E1CE /* crypto.h in Headers */, - CF7E21742BA14CC02C846DE4B021503C /* curve25519.h in Headers */, - 24D5244AD29424B05E5BD200B357F8D7 /* curve25519_32.h in Headers */, - 6AE9A34CDEE29F242D9FCA7076952E26 /* curve25519_64.h in Headers */, - 471A957EA39CAF909472E3D6B72D668B /* curve25519_tables.h in Headers */, - BF301E0D91AF2C37B74111A5E7911744 /* delocate.h in Headers */, - 18FBCB5B87EAF94BAC8E8AF542A0C3FE /* des.h in Headers */, - 8DDDA0A6122D327FA2EFFFA4837577B6 /* dh.h in Headers */, - 5273B406A5303267B707DC49E86316B3 /* digest.h in Headers */, - 1CBDC2AFBA5FD159FD00D6A11E22EB58 /* dsa.h in Headers */, - 9F7E2EF6FA01AA536EC842366997BE5D /* dtls1.h in Headers */, - D1A550B9FFF9ED07F332EE4EA978CA2E /* e_os2.h in Headers */, - C750003100B17F1EB186A3D16FF50D9F /* ec.h in Headers */, - 8E08D94BD92F350071FFA1E86454D046 /* ec_key.h in Headers */, - CD1F099E19F6F83CAB6ACE1881600AA8 /* ecdh.h in Headers */, - 76AC3CF63F23CFAA15FE7AC8EC9982ED /* ecdsa.h in Headers */, - F2B96D5BF52A985DD2EBD200D829F90A /* engine.h in Headers */, - 6FD777D9381E31A5C7368BC7E56705D0 /* err.h in Headers */, - 286553151595FF0230A09DDF5F38B5F6 /* evp.h in Headers */, - CE8981F7413E54BA67282FC1E5A98D5D /* evp_errors.h in Headers */, - 35650D60B757EFE36C1FC2AC402B98FD /* ex_data.h in Headers */, - C0018E6C9B8B1999EC479D07AB9FA074 /* ext_dat.h in Headers */, - 2BD237BF4B1ECAFFB96FC485D2DF02E3 /* fork_detect.h in Headers */, - 3D72332395233BD560B8547184273DA2 /* getrandom_fillin.h in Headers */, - CE68B1DE8834738BF2C5D2A54C6E03E8 /* hkdf.h in Headers */, - 2B224EC90DF450ACBD7B1CAC802236C1 /* hmac.h in Headers */, - F6A8B9E3A53EFA60FD10FD9FBEEAAFD4 /* hpke.h in Headers */, - 06480BFA155440663B78E40B722AD6B5 /* hrss.h in Headers */, - 647F4CD29C3028B027F7E8EE48B07402 /* internal.h in Headers */, - D2143A275A7117E9F9E983AFBCC3F4CA /* internal.h in Headers */, - 5F0150E70C3312E00762F49BF752C6AF /* internal.h in Headers */, - E467238E5F32F070DADC8155EF493A35 /* internal.h in Headers */, - DFF2265256702FF959BD9ECD71B8D59E /* internal.h in Headers */, - D100C9020565B1F667CF480E49ABC629 /* internal.h in Headers */, - 8F4C851BD6DB2DDCE8DF6CA8F54182F8 /* internal.h in Headers */, - 57B0612978AADCD14A2FEC7373CE2C0A /* internal.h in Headers */, - 93B552E183C5DCE7521324851CFD7462 /* internal.h in Headers */, - 6EC2FA176A33CD93418BBD49C3D69A98 /* internal.h in Headers */, - A1C66DEB514B813F6A9C1BB86B1AC27F /* internal.h in Headers */, - C6D9FFCA679740F50EBD5DB0193D5617 /* internal.h in Headers */, - F2BDEFEDAB4C6CF3530CB6786D81C195 /* internal.h in Headers */, - EB134ED85102A45AB78251E1E1640EA6 /* internal.h in Headers */, - 9229DDC53675F1FDFB0C4C3B7FB56577 /* internal.h in Headers */, - 8998BA3238A9A86485E166A10D21526D /* internal.h in Headers */, - 3F26DC0EEA9FA5CE9798970F6DFC97B3 /* internal.h in Headers */, - 4F6716E0FC0BBE573B08646C19F09538 /* internal.h in Headers */, - 27AE495C81069E36DDB1FDD60B773E58 /* internal.h in Headers */, - FDCFE8D186D074835CAB6A2C9F74AEDF /* internal.h in Headers */, - 20A2C080CF69EA521EF1380856D725C3 /* internal.h in Headers */, - 0EA2BA26256CC2670973C36DCD8EE1A3 /* internal.h in Headers */, - 6141686D4CABFB8007FFB97F44F2197C /* internal.h in Headers */, - 09B5F097A9FC5C48AFEFB37FD8C63902 /* internal.h in Headers */, - 22DF469AF9BAA129BF3684071C888DB2 /* internal.h in Headers */, - 749C2AF9379151E4DF26F9B671BACA47 /* internal.h in Headers */, - 125868A0707A8D4DC9EE0819E5D564A2 /* internal.h in Headers */, - 15B914A4FD66310CFEA430CEBDA3B7FE /* internal.h in Headers */, - 71C5797863785D8C1E9E0D4D2CB0DD23 /* internal.h in Headers */, - 6099BB3984C835F7329BDB3E16E21134 /* internal.h in Headers */, - E6F3388DAEE1F114D13CA11B1D76F6EC /* internal.h in Headers */, - E3E35E98660F1FB404DC7C50804CCFA8 /* internal.h in Headers */, - 9A818A09A5AAFC9C8EEFDE0577FCF5CB /* internal.h in Headers */, - 18BFFA66CAA634E39FFA79903FF85FD0 /* internal.h in Headers */, - D582FCF076360A52D36FB7E4B8B35245 /* internal.h in Headers */, - 818136909286AC982DDE707A77008355 /* is_boringssl.h in Headers */, - DF8CB2E5BE29D4925C6034B6D920480E /* lhash.h in Headers */, - 41CAFC01644F984952DFC1702F651A58 /* md32_common.h in Headers */, - 7D0FFAF55057CD672A022394296ED0F4 /* md4.h in Headers */, - D2C098E820D15D64AD7AF124EFAC0FAF /* md5.h in Headers */, - FE6C956B82D88578E9F426B43F67523D /* mem.h in Headers */, - A3F4B1F7466CB36B3F4D75450E7C2878 /* nid.h in Headers */, - 9B1774FC74E240A969E6A138D6CBC59E /* obj.h in Headers */, - 35A3F65FFE5315001FA9DFB248881FAA /* obj_dat.h in Headers */, - 0AC3D6DDCFD43B87D9706A355DF37D1A /* obj_mac.h in Headers */, - 82DA20FB24833C11763382CD5BF33DBF /* objects.h in Headers */, - E8F88B13C0F5F454C888036935871523 /* opensslconf.h in Headers */, - C42DA8BC73D79507A040D2B5949734CC /* opensslv.h in Headers */, - 25BE22A2AAB74518207B55427F8A6A29 /* ossl_typ.h in Headers */, - 32F399E2792802A2ADAEFCF7C40070BF /* p256-x86_64.h in Headers */, - 2F89451F38B5DE88E21E8BC43F9CB559 /* p256-x86_64-table.h in Headers */, - 367FFABE49BFDEF24054D3733A21D815 /* p256_32.h in Headers */, - FA66278AF6EA777D96842FB76D5E695E /* p256_64.h in Headers */, - 41352191B7B75EB8FBBD157385429E81 /* p256_table.h in Headers */, - 0274658DAFE463DA51B7910F2C1D1891 /* pem.h in Headers */, - 9BB53970BD349845723BA33EA5739D73 /* pkcs12.h in Headers */, - 3FC886160A486A28B4B9EE5026B1FA66 /* pkcs7.h in Headers */, - 769828A3AD1127BBE74CEA465F36F0F3 /* pkcs8.h in Headers */, - 31E566B119C2A41BD9BC1AC7D9B02E80 /* poly1305.h in Headers */, - 27BAB5EF6DE66AEF77AAA4FAEF135F64 /* pool.h in Headers */, - 25D14F19B62E1AA9182E6ED6C5376A10 /* rand.h in Headers */, - F7D03C0B3FFE374CEF535C3B0C680160 /* rc4.h in Headers */, - 40D626E293053E96E2FDA5BA855C59A8 /* ripemd.h in Headers */, - 435E9127CEC953AE14C4C82A4CC99C41 /* rsa.h in Headers */, - F5238DFD4CDEF75B31E8E5C86E21E0EE /* rsaz_exp.h in Headers */, - D2852A690FE76A020D7075FCCD060F5D /* safestack.h in Headers */, - 1972F8A53B4BCDE0FD0086A286D09F9E /* sha.h in Headers */, - 6CF4ABC0DB4E5AFA5710F89A2030ADCC /* siphash.h in Headers */, - E38C99333E6D9106064768EB0F205985 /* span.h in Headers */, - F5935C1713EDE5795F8709F640DD791A /* srtp.h in Headers */, - 30592A5EB9B54A507DEEE6E91BA2E215 /* ssl.h in Headers */, - ABA6A046C5E13A65840DC351EA19BDB0 /* ssl3.h in Headers */, - 1641A60BA254F8EF2DECF9EA40F1492F /* stack.h in Headers */, - 6BC55263B1EC567D14B5E7FC10C3E885 /* thread.h in Headers */, - 065B916939453B545A2BD8A76D3E62F1 /* tls1.h in Headers */, - F591C12DD334B71E7ADBFDAF4E8BB95E /* trust_token.h in Headers */, - 08F3094563D2D302DE73BDCC352D127D /* type_check.h in Headers */, - 8D273D65251978DB378DEEE3F9BF01C9 /* umbrella.h in Headers */, - 84813DBD78D24091C661FAE88B5B5043 /* x509.h in Headers */, - 79E0760EBB16244118F542D1EC9DA542 /* x509_vfy.h in Headers */, - 3A70EF8B45FB375690CCB8F9962D2B70 /* x509v3.h in Headers */, + 8801CBFD38B946597BD07145B2EEFC9F /* Pods-iosApp-umbrella.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; /* End PBXHeadersBuildPhase section */ /* Begin PBXNativeTarget section */ - 1C5E43B0A9555E7C2E43A6D7C8A23CF6 /* gRPC-C++ */ = { - isa = PBXNativeTarget; - buildConfigurationList = AE15C17398278A7357ECC65E093C6EC4 /* Build configuration list for PBXNativeTarget "gRPC-C++" */; - buildPhases = ( - 8EFBB21B2A919D0B644542A51122574B /* Headers */, - 9226DBD909D4E03C2E89BD32B5207423 /* Copy src/core/ext/filters/channel_idle Private Headers */, - 431CEA97EEC762AEC737F35EE34FE558 /* Copy src/core/ext/filters/client_channel/health Private Headers */, - 9B672CC3334DD5C3A1D4FC601D67EB3B /* Copy src/core/ext/filters/client_channel/lb_policy/grpclb Private Headers */, - 37DE3E7D012A2745D46E1984635F4C74 /* Copy src/core/ext/filters/client_channel/lb_policy/outlier_detection Private Headers */, - BDF54DC6B1F6ACBFE43F80EF4BF9CDC0 /* Copy src/core/ext/filters/client_channel/lb_policy/ring_hash Private Headers */, - D7EC4A7096837988A114F24E4269B804 /* Copy src/core/ext/filters/client_channel/lb_policy Private Headers */, - 2E044336C5623E9CE060CC6829B83C95 /* Copy src/core/ext/filters/client_channel/lb_policy/xds Private Headers */, - 2801F644603D4923DE5525E71883FE73 /* Copy src/core/ext/filters/client_channel/resolver/dns Private Headers */, - D76C8A0A4673C2F79C1597F4EBF37B43 /* Copy src/core/ext/filters/client_channel/resolver/fake Private Headers */, - 319BE424E6B3D4AF4A61F04CA89379C8 /* Copy src/core/ext/filters/client_channel/resolver Private Headers */, - 42D77FA185C0CF94E053D77CFA7CF512 /* Copy src/core/ext/filters/client_channel/resolver/xds Private Headers */, - D41013E77F65B6CBE7CF532D3855585D /* Copy src/core/ext/filters/client_channel/resolver/dns/c_ares Private Headers */, - 4C6AAC610D4CBCC35F35E3ED07359842 /* Copy src/core/ext/filters/deadline Private Headers */, - 08D12150FC0499565C79BD56FD1B21D1 /* Copy src/core/ext/filters/client_channel Private Headers */, - 83E80BF61436509F21B14DD886E67963 /* Copy src/core/ext/filters/http/client Private Headers */, - 9ED4A107CC67574C7E4B6AE69507986D /* Copy src/core/ext/filters/http Private Headers */, - B5FC8011D5D27BF34A025A3C6F5A990F /* Copy src/core/ext/filters/fault_injection Private Headers */, - 66E3FDF903AD628341DF528EA1BB0B5B /* Copy src/core/ext/filters/http/server Private Headers */, - 2C2921CE60403F4293AEFBC6ED4650FA /* Copy src/core/ext/filters/message_size Private Headers */, - 1624946520C41B66B4FCCEE47D0C4F2A /* Copy src/core/ext/filters/http/message_compress Private Headers */, - 3FC3A6F5FA17DF62D72C8259A846C057 /* Copy src/core/ext/filters/rbac Private Headers */, - 562160A9C057F44563AA04FB67EF23B2 /* Copy src/core/ext/filters/server_config_selector Private Headers */, - 82A91F6C9B8E617BE6BC9FAFEFF80B89 /* Copy src/core/ext/transport/binder/server Private Headers */, - B20F4F53DD9E1015509B6FE78C08912D /* Copy src/core/ext/transport/binder/client Private Headers */, - ED952FC65B4BA525B3B159F109CFDFEA /* Copy src/core/ext/transport/binder/transport Private Headers */, - 814F3DD73C0F3586D8E78E91A4C25DBE /* Copy src/core/ext/transport/binder/utils Private Headers */, - 04C85824341B776D528CC5B4B555FB18 /* Copy src/core/ext/transport/chttp2/alpn Private Headers */, - 27168ECC45E87404BAB4223987A7ED12 /* Copy src/core/ext/transport/chttp2/client Private Headers */, - 9B1E44C560B0CE34FC8A7924C34E17A3 /* Copy src/core/ext/transport/chttp2/server Private Headers */, - 3A22D8534A39DE67F517E3783CF9D1D8 /* Copy src/core/ext/transport/binder/wire_format Private Headers */, - 015AA171EC47C645E1F3A453B62FA793 /* Copy src/core/ext/transport/inproc Private Headers */, - 35D8F8A9544B48547611DCCCB88C4CBE /* Copy src/core/ext/transport/chttp2/transport Private Headers */, - 2728422C77E7218CFD873DDBAD2C9FB1 /* Copy src/core/ext/upb-generated/envoy/admin/v3 Private Headers */, - 8D1E4390C637776D5D9013AD8BABDE78 /* Copy src/core/ext/upb-generated/envoy/config/accesslog/v3 Private Headers */, - F8812EA1C6BF3E13CF525CADB61D0AB9 /* Copy src/core/ext/upb-generated/envoy/config/bootstrap/v3 Private Headers */, - 5E7FBE2F31F0D0098C268365D926DCAF /* Copy src/core/ext/upb-generated/envoy/annotations Private Headers */, - E7DE287FEB9F455A61D143F767A8985C /* Copy src/core/ext/upb-generated/envoy/config/common/matcher/v3 Private Headers */, - AD5A46903AA7D884DE17AC55FB440ABF /* Copy src/core/ext/upb-generated/envoy/config/cluster/v3 Private Headers */, - 9C60C580883D9558006DE296AA27DDFF /* Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */, - FB19BBC43E2B0BEDB82D02D138D25199 /* Copy src/core/ext/upb-generated/envoy/config/endpoint/v3 Private Headers */, - 7F66F5DFCC5A17A301A1F015E455A135 /* Copy src/core/ext/upb-generated/envoy/config/listener/v3 Private Headers */, - 6539B807690BFB9E9BBFE9E5E63E4FE0 /* Copy src/core/ext/upb-generated/envoy/config/overload/v3 Private Headers */, - 4398E604B6285BEA8F72324F13BAC8B7 /* Copy src/core/ext/upb-generated/envoy/config/rbac/v3 Private Headers */, - A065974509FA3F6D40DBC53BC34C4FB6 /* Copy src/core/ext/upb-generated/envoy/config/metrics/v3 Private Headers */, - 7623ED7CD5A2398793404F310C8329AC /* Copy src/core/ext/upb-generated/envoy/config/tap/v3 Private Headers */, - 11AD3A956E988F32F5B34EAC2B2A7826 /* Copy src/core/ext/upb-generated/envoy/config/route/v3 Private Headers */, - 870B157156E4E2C142E91024E8964965 /* Copy src/core/ext/upb-generated/envoy/extensions/clusters/aggregate/v3 Private Headers */, - E035889DA5080A69779B5756BF2CF6E9 /* Copy src/core/ext/upb-generated/envoy/extensions/filters/common/fault/v3 Private Headers */, - C089AF2DAE54CEFABA0E87B4A348243B /* Copy src/core/ext/upb-generated/envoy/extensions/filters/http/fault/v3 Private Headers */, - E163AABEEC2885184FE3F2254F7B79FB /* Copy src/core/ext/upb-generated/envoy/extensions/filters/http/rbac/v3 Private Headers */, - 26B149A8D44DB535DAF68AA0724A4CEC /* Copy src/core/ext/upb-generated/envoy/extensions/filters/http/router/v3 Private Headers */, - 86BD21E54A3664CB4E366C99F64C52B5 /* Copy src/core/ext/upb-generated/envoy/extensions/filters/network/http_connection_manager/v3 Private Headers */, - 9B5A0A887AE7604AD21E81F76E286B39 /* Copy src/core/ext/upb-generated/envoy/extensions/load_balancing_policies/ring_hash/v3 Private Headers */, - 32C349C36BA5964878418F5B0D5116B5 /* Copy src/core/ext/upb-generated/envoy/extensions/load_balancing_policies/wrr_locality/v3 Private Headers */, - 1ECA774DBEA19730BF3DF7804818F727 /* Copy src/core/ext/upb-generated/envoy/config/trace/v3 Private Headers */, - 917FFCCB976AC602968E8DAE437E95A6 /* Copy src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3 Private Headers */, - 1E994DACC48D4D0B68609897F411CF09 /* Copy src/core/ext/upb-generated/envoy/service/load_stats/v3 Private Headers */, - 5B3C62A491701A03A9CB843408046A43 /* Copy src/core/ext/upb-generated/envoy/service/status/v3 Private Headers */, - 8C3081254BCE86FEFCA0333DAA967999 /* Copy src/core/ext/upb-generated/envoy/service/discovery/v3 Private Headers */, - 87CF834FDB9DCA8DF97BE4CF061660CF /* Copy src/core/ext/upb-generated/envoy/type/http/v3 Private Headers */, - F11E38481BCEAAD3E4649A091E8C167E /* Copy src/core/ext/upb-generated/envoy/type/metadata/v3 Private Headers */, - 9794A357E96A180217B38ABA59321126 /* Copy src/core/ext/upb-generated/envoy/type/tracing/v3 Private Headers */, - B739843399B2B6B0C9DE85183C2FEF72 /* Copy src/core/ext/upb-generated/envoy/type/matcher/v3 Private Headers */, - C8EF870225DBF0706B5097BA85E700D9 /* Copy src/core/ext/upb-generated/envoy/type/v3 Private Headers */, - 578BB6A547EAC8D9CAAA6B786C65CAD4 /* Copy src/core/ext/upb-generated/google/api/expr/v1alpha1 Private Headers */, - 8237963315B088247ED6915ADA79E946 /* Copy src/core/ext/upb-generated/google/api Private Headers */, - 945F9A5A441FC3724997EF586C44C8AF /* Copy src/core/ext/upb-generated/google/rpc Private Headers */, - 904B03C2066C45B053088607E83E7320 /* Copy src/core/ext/upb-generated/opencensus/proto/trace/v1 Private Headers */, - 16EBB583CF25A19D55BD924FF509A591 /* Copy src/core/ext/upb-generated/google/protobuf Private Headers */, - 65C9D11A2045FA9108308B5139F6B2ED /* Copy src/core/ext/upb-generated/src/proto/grpc/health/v1 Private Headers */, - C66F2E205AD27F3DCEB707CC6FBF4470 /* Copy src/core/ext/upb-generated/src/proto/grpc/lb/v1 Private Headers */, - 4AEFC48D3034F8F16D65B1416E6ED613 /* Copy src/core/ext/upb-generated/src/proto/grpc/gcp Private Headers */, - BEF3E15B98791730A396D24759AC745F /* Copy src/core/ext/upb-generated/src/proto/grpc/lookup/v1 Private Headers */, - 451BFE27BDCC7D1A678FE66E956F0211 /* Copy src/core/ext/upb-generated/validate Private Headers */, - 924ACACA72F9BB289B06DF8F726C400D /* Copy src/core/ext/upb-generated/udpa/annotations Private Headers */, - CA3B5893987FE115002A0C0938F7FC6B /* Copy src/core/ext/upb-generated/xds/annotations/v3 Private Headers */, - 0E335AB176AE4248F2271F2AC2773454 /* Copy src/core/ext/upb-generated/xds/data/orca/v3 Private Headers */, - 9FAA5170BF7E1D09FAF42C26E86D9F42 /* Copy src/core/ext/upb-generated/xds/service/orca/v3 Private Headers */, - C76D2FBADC5F3EA6A02B2C6B496A6F99 /* Copy src/core/ext/upb-generated/xds/core/v3 Private Headers */, - 4D517C5D8E3C71C49209F25E3C1EC41A /* Copy src/core/ext/upb-generated/xds/type/v3 Private Headers */, - D5EA3F0D51F32588A1D651BA86286185 /* Copy src/core/ext/upb-generated/xds/type/matcher/v3 Private Headers */, - 991D64888B5176229B885C8C93D4CF6D /* Copy src/core/ext/upbdefs-generated/envoy/admin/v3 Private Headers */, - 9114CB443807341631AF1D3A85772A85 /* Copy src/core/ext/upbdefs-generated/envoy/config/accesslog/v3 Private Headers */, - 3DA6739258FE8B187E7758069815C0FC /* Copy src/core/ext/upbdefs-generated/envoy/config/bootstrap/v3 Private Headers */, - 79B47DB5B702E0B97200487E2A009B15 /* Copy src/core/ext/upbdefs-generated/envoy/annotations Private Headers */, - E36B44A35B787E26E3E2FED9DD3AC231 /* Copy src/core/ext/upbdefs-generated/envoy/config/common/matcher/v3 Private Headers */, - EE677FF2AC8E601F31C5C7641FD7A07C /* Copy src/core/ext/upbdefs-generated/envoy/config/cluster/v3 Private Headers */, - 954D220B1CADC4804D96E7FB0CE9EBE9 /* Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */, - AE9100F191CF22E2AB565C5DF5AEEC0A /* Copy src/core/ext/upbdefs-generated/envoy/config/endpoint/v3 Private Headers */, - 4D3F478005FB2E7DD62BDC6BAFFE8D63 /* Copy src/core/ext/upbdefs-generated/envoy/config/listener/v3 Private Headers */, - 2AB8253625D9A5622BD417D4F94AFE8A /* Copy src/core/ext/upbdefs-generated/envoy/config/overload/v3 Private Headers */, - BCF6CE0B85E44BFAE0C2459E235BC0B5 /* Copy src/core/ext/upbdefs-generated/envoy/config/rbac/v3 Private Headers */, - 96D48449C35BEDDF0DB86C602F6995CB /* Copy src/core/ext/upbdefs-generated/envoy/config/metrics/v3 Private Headers */, - 56CEF3A965167CFB339E0D83205AE115 /* Copy src/core/ext/upbdefs-generated/envoy/config/tap/v3 Private Headers */, - C024F2AD7B150B0A1F8275DF34320AB0 /* Copy src/core/ext/upbdefs-generated/envoy/config/route/v3 Private Headers */, - D0F20EF14B51D18D27D7B316E913EEEB /* Copy src/core/ext/upbdefs-generated/envoy/extensions/clusters/aggregate/v3 Private Headers */, - 44B6B0EE93F3D5099470D7218E4EA43E /* Copy src/core/ext/upbdefs-generated/envoy/extensions/filters/common/fault/v3 Private Headers */, - 34D759A4C5485630A0BBA22C00D35830 /* Copy src/core/ext/upbdefs-generated/envoy/extensions/filters/http/fault/v3 Private Headers */, - CCB06B65728B8795C00B7D9EDAB46037 /* Copy src/core/ext/upbdefs-generated/envoy/extensions/filters/http/rbac/v3 Private Headers */, - 1135F582EE419B247B5316AFC3F18A65 /* Copy src/core/ext/upbdefs-generated/envoy/extensions/filters/http/router/v3 Private Headers */, - 1E4026918EF1FE99A7FDCAE1B4854B0F /* Copy src/core/ext/upbdefs-generated/envoy/extensions/filters/network/http_connection_manager/v3 Private Headers */, - 81DBAC7536824CDAC99EDE0343AC8313 /* Copy src/core/ext/upbdefs-generated/envoy/config/trace/v3 Private Headers */, - AFE6F3B1AB69FEA35C64DA4CDA9334E1 /* Copy src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3 Private Headers */, - D1D8B65E2DB38B2B71AB4A9B47B27F92 /* Copy src/core/ext/upbdefs-generated/envoy/service/load_stats/v3 Private Headers */, - 4CFAE82617165E39F69B65BB6DD7CDF0 /* Copy src/core/ext/upbdefs-generated/envoy/service/status/v3 Private Headers */, - 4E26DA055456F2C6ECD317E1B8C6BB6C /* Copy src/core/ext/upbdefs-generated/envoy/service/discovery/v3 Private Headers */, - 5051D595084A6412E39F584DCA9DAA00 /* Copy src/core/ext/upbdefs-generated/envoy/type/http/v3 Private Headers */, - E7E988F868FF3CCAAB3EBAC66C9CB268 /* Copy src/core/ext/upbdefs-generated/envoy/type/metadata/v3 Private Headers */, - 05883D45CEC4107B8CC77A227865002F /* Copy src/core/ext/upbdefs-generated/envoy/type/tracing/v3 Private Headers */, - 474CBD196D8D8D79EAC3AB976D4CF402 /* Copy src/core/ext/upbdefs-generated/envoy/type/matcher/v3 Private Headers */, - 5C7FBDD7D9F1AF2BD8465AFC2A11C5B4 /* Copy src/core/ext/upbdefs-generated/envoy/type/v3 Private Headers */, - 1D77577769BA08C5031C4F6E029B112D /* Copy src/core/ext/upbdefs-generated/google/api/expr/v1alpha1 Private Headers */, - 0C94BA8F0BB8F168CC31B67B440EA207 /* Copy src/core/ext/upbdefs-generated/google/api Private Headers */, - E32CED16F900CAF1835D47830E2B5F53 /* Copy src/core/ext/upbdefs-generated/google/rpc Private Headers */, - 66C8C257E5B1C3FA51B407648D669DC6 /* Copy src/core/ext/upbdefs-generated/opencensus/proto/trace/v1 Private Headers */, - 6C4D34EE25B12666107CD65C653F1C69 /* Copy src/core/ext/upbdefs-generated/src/proto/grpc/lookup/v1 Private Headers */, - B218EBFAD3965010658111D4EB21BE83 /* Copy src/core/ext/upbdefs-generated/google/protobuf Private Headers */, - 11A16F7DE3C7D8112C5A8CBAB277574C /* Copy src/core/ext/upbdefs-generated/validate Private Headers */, - 22B0858CC00ABDC8F2CA93CCFAB03985 /* Copy src/core/ext/upbdefs-generated/udpa/annotations Private Headers */, - 353A0B9AED71EB8141B56046AE4671ED /* Copy src/core/ext/upbdefs-generated/xds/annotations/v3 Private Headers */, - 934331E4CF531F9446DF0F5EAAEE64DB /* Copy src/core/ext/upbdefs-generated/xds/core/v3 Private Headers */, - 9904A922E95F1839F0913D194C7BF017 /* Copy src/core/ext/upbdefs-generated/xds/type/v3 Private Headers */, - 95CFB4453393B7FF94B46C2C16DF5676 /* Copy src/core/ext/upbdefs-generated/xds/type/matcher/v3 Private Headers */, - 62F1940E4E1DEBA431F6881165A0925F /* Copy src/core/ext/xds Private Headers */, - 517D83214C23B9153AF4A170703197CC /* Copy src/core/lib/avl Private Headers */, - E5079F2A2921B6D30EE8D8BE8A9A60E7 /* Copy src/core/lib/backoff Private Headers */, - 6CD132FF0FF145C79078EB5CC7803888 /* Copy src/core/lib/address_utils Private Headers */, - C4419EC955B4CF68E391B3AE874C270C /* Copy src/core/lib/channel Private Headers */, - B07917C1B5A8941364B6B1DF78515795 /* Copy src/core/lib/config Private Headers */, - EE03BF844D7BBAACEE473EF50C1FDFD8 /* Copy src/core/lib/compression Private Headers */, - 4884E83641AA716B1CA1A3DE4CE55236 /* Copy src/core/lib/debug Private Headers */, - 05EEF048A86329E02F14484B6AB76740 /* Copy src/core/lib/event_engine/executor Private Headers */, - 609E4AEC81F85BC6EB714DC1D911E8EB /* Copy src/core/lib/event_engine/posix_engine Private Headers */, - BEDE0A47F7B7FA2FC29688B9D4981035 /* Copy src/core/lib/event_engine Private Headers */, - 0830E2901DA03035C3771BA83F8188B8 /* Copy src/core/lib/event_engine/windows Private Headers */, - 673D819B32D0707CD568C69294B01D87 /* Copy src/core/lib/experiments Private Headers */, - A881E37CA5744E18F2B5300441A3653D /* Copy src/core/lib/gpr Private Headers */, - 65DF6E27AE1AF34EBAAE8B0630F5AFDE /* Copy src/core/lib/gprpp Private Headers */, - 1EA4E0237E201EEDC6B03979FBBFDAE3 /* Copy src/core/lib/handshaker Private Headers */, - C4D4F7B49125529DF44F8E453EBC61E8 /* Copy src/core/lib/http Private Headers */, - 567A013E6E1B7C0236E12DD0009E83CB /* Copy src/core/lib/iomgr Private Headers */, - F453AC7B7D1B560A404A3E35C0133293 /* Copy src/core/lib/json Private Headers */, - FC45CB381D316461A6B7CD5A902F504B /* Copy src/core/lib/matchers Private Headers */, - 37E8555FF20FC2C3707829C83BC6F615 /* Copy src/core/lib/load_balancing Private Headers */, - 12D333833482598C4E03AB6B0742ECC3 /* Copy src/core/lib/promise/detail Private Headers */, - F9918238A49A181BCEF4D5FC42D48100 /* Copy src/core/lib/promise Private Headers */, - CDE77C88D6CD7F47DF930ABA888A3D52 /* Copy src/core/lib/resolver Private Headers */, - D2C072CA22AE32AAAFF6980837CA51E8 /* Copy src/core/lib/resource_quota Private Headers */, - 3A64F77E8AC66CA4DD244EF7D22F1F29 /* Copy src/core/lib/security/authorization Private Headers */, - 6C4DE6A8A2F8822E229CB2154D015176 /* Copy src/core/lib/security/context Private Headers */, - C51BA8F42EF8B6BE5E98986C60F7E6B0 /* Copy src/core/lib/security/certificate_provider Private Headers */, - 2FEDAC0F946809DF67EAB7E374079FAA /* Copy src/core/lib/security/credentials/alts Private Headers */, - D1C9FECD0855458F62C52D4D5E08BCA7 /* Copy src/core/lib/security/credentials/composite Private Headers */, - 74A30F2311D97431396BADE70FC1F86F /* Copy src/core/lib/security/credentials Private Headers */, - BE5681D3B81F061DE2E104880A0B529A /* Copy src/core/lib/security/credentials/fake Private Headers */, - B773ECAF6202AE35BA527600FFC86E26 /* Copy src/core/lib/security/credentials/google_default Private Headers */, - FE1FB1F4B942A9B577E2BEC43F565426 /* Copy src/core/lib/security/credentials/iam Private Headers */, - EF004B4EEC5F032B880F77D144FD78E8 /* Copy src/core/lib/security/credentials/insecure Private Headers */, - 52D2A8278C426D0D88A6E645A49AD32B /* Copy src/core/lib/security/credentials/external Private Headers */, - E74F2162150FDA959D7E61076FFB579A /* Copy src/core/lib/security/credentials/local Private Headers */, - 4D19788911081B7B4FE60818590A60A2 /* Copy src/core/lib/security/credentials/oauth2 Private Headers */, - 2C5B53D062CCFA0EE82B2CC4C3A86932 /* Copy src/core/lib/security/credentials/plugin Private Headers */, - 786A6007EEA45ADDB423A89F41A9D94A /* Copy src/core/lib/security/credentials/ssl Private Headers */, - 54BB2DFBE2DD0481437C79E67B64BD04 /* Copy src/core/lib/security/credentials/jwt Private Headers */, - 4C3A677B6293C3A79E15CED29F70F2B0 /* Copy src/core/lib/security/credentials/xds Private Headers */, - 150D564F77813F43348E62FF996FB77C /* Copy src/core/lib/security/security_connector/alts Private Headers */, - 5603BD47E98779C2455BC9F17C8E800D /* Copy src/core/lib/security/security_connector/fake Private Headers */, - FDFFB51E2E3F3CF8BBA7EDB48BF55F9D /* Copy src/core/lib/security/security_connector/insecure Private Headers */, - A37ED8A5FCF6EA756205A2B28724EA73 /* Copy src/core/lib/security/credentials/tls Private Headers */, - 07FC7A54277A2DC2CCEDA6CC861FEB41 /* Copy src/core/lib/security/security_connector/local Private Headers */, - 766D85EEAE659A24A5815F3C1E6E36A4 /* Copy src/core/lib/security/security_connector/ssl Private Headers */, - 198B4B0589A315C4F637BBD3157EE5E2 /* Copy src/core/lib/security/security_connector/tls Private Headers */, - 2C2D5A89A33C8DA6B04C715CA3A0A230 /* Copy src/core/lib/security/security_connector Private Headers */, - E25DE5165931D33F0BE3CD431D4F42BA /* Copy src/core/lib/security/util Private Headers */, - F5AA6D6C5F8521C2399E7324D00E31D5 /* Copy src/core/lib/security/transport Private Headers */, - 0A5F9229D5610CB0AD91B64A543056C4 /* Copy src/core/lib/service_config Private Headers */, - 065934ACA2F6FF710D2B1693AA076529 /* Copy src/core/lib/slice Private Headers */, - 947BA3D9351CB013DE85800D618D81A5 /* Copy src/core/lib/surface Private Headers */, - 220B7216D44CBE89AD6188A1ECD01508 /* Copy src/core/lib/uri Private Headers */, - 0E0DBD5D8AAD7BCF04584E74E449A7ED /* Copy src/core/tsi/alts/crypt Private Headers */, - 5AA7BCB00B772BC8FB9C33C7B2DF97E0 /* Copy src/core/lib/transport Private Headers */, - 3C13DC9CF4CB589D7B0B7FF506F68BF1 /* Copy src/core/tsi/alts/frame_protector Private Headers */, - 89FE23F80866D9BB25953693DDACBDAB /* Copy src/core/tsi/alts/handshaker Private Headers */, - F201F2087ED296F8467C95FEED39C640 /* Copy src/core/tsi/alts/zero_copy_frame_protector Private Headers */, - A811AFA6B41363E05F6641FE7F599F8D /* Copy src/core/tsi/ssl/key_logging Private Headers */, - 497844B8FCDC3C605C48D0F8749B997B /* Copy src/core/tsi/ssl/session_cache Private Headers */, - AD63539D0E53F0B34D89E71A490C7443 /* Copy src/core/tsi Private Headers */, - 81D7ED1F6574204AF22C0AB851010A98 /* Copy src/cpp/client Private Headers */, - F834F56759A5306E07B8DAC2C339BB46 /* Copy src/cpp/common Private Headers */, - C6A4A86D0BDA87A4A36A96D55BA33DA6 /* Copy src/cpp/server/health Private Headers */, - 65F614DF21115EFC84938AE007293B5A /* Copy src/cpp/thread_manager Private Headers */, - 810934591F01DD30C2C2D38B8CEB3060 /* Copy third_party/upb/third_party/utf8_range Private Headers */, - DC779881808CC3547C66907BDB6B7E7D /* Copy src/cpp/server Private Headers */, - 00AEB4C532B44BF42F01129113D7C4D8 /* Copy third_party/upb/upb/internal Private Headers */, - B32E24FDEBFF6CFE0A11F24E7A6C978F /* Copy third_party/xxhash Private Headers */, - D91D36E349A07E0335DF98AE72A4D832 /* Copy third_party/upb/upb Private Headers */, - F25A1DBFDBCEC945F2054457C500D090 /* Copy ext Public Headers */, - 5F63D208C69854988920DA6F96DFB385 /* Copy generic Public Headers */, - 9F4ABEB659215C2F602440F6C74098BE /* Copy impl/codegen/security Public Headers */, - 36F0F6FF94FBF1CB3083FBADF1C47D76 /* Copy impl/codegen Public Headers */, - 8162A4CA2BBB84A89B33BA5A8B5965A0 /* Copy impl Public Headers */, - 46BAC3305C406796B3BAF10CF38A75E1 /* Copy security Public Headers */, - 2FFF28C5E3109770DCADC27B953C1F48 /* Copy support Public Headers */, - 5FFB861CB088E0CE396AD678706575DE /* Copy . Public Headers */, - 89186E31DD12BB2B436FBB52C0F0A1C2 /* Sources */, - 4592E7FE13DF65E0D0AA7C29CE8C5ECC /* Frameworks */, - 29DCDC7C6A77BEBDCF5BAAE665F1650F /* Resources */, - 428707476351FD3015BF4A5FED59D18C /* Create Symlinks to Header Folders */, - ); - buildRules = ( - ); - dependencies = ( - B43ABDDF22FD02DE19BA350B36397218 /* PBXTargetDependency */, - B5E3BEFDDCC53E8D440E92840DBEF074 /* PBXTargetDependency */, - 0253E202840DE5390045A0C3024E8FAA /* PBXTargetDependency */, - ); - name = "gRPC-C++"; - productName = grpcpp; - productReference = 1911113E0FBF13CFF9132E5FF7685228 /* gRPC-C++ */; - productType = "com.apple.product-type.framework"; - }; - 25E9E9A17BC3F670357D7385C521E48E /* FirebaseCoreInternal */ = { - isa = PBXNativeTarget; - buildConfigurationList = 4D61C986C8AD91EC1499A059B900FDFD /* Build configuration list for PBXNativeTarget "FirebaseCoreInternal" */; - buildPhases = ( - 55624B897337F7DC5BE9832F16F1F175 /* Headers */, - C82786D2233BBFA4E777CA56DD6472C1 /* Sources */, - B064A993DF20C140045D82715AB39AE6 /* Frameworks */, - E2EFE066D33CED4ED73EC7E0C1CE59D5 /* Resources */, - ); - buildRules = ( - ); - dependencies = ( - D399781774F18CFC1EAE66F8F36C7EFC /* PBXTargetDependency */, - ); - name = FirebaseCoreInternal; - productName = FirebaseCoreInternal; - productReference = 148D0F9E8C7373FEAF40D800FC5F1BAA /* FirebaseCoreInternal */; - productType = "com.apple.product-type.framework"; - }; - 2BBF7206D7FAC92C82A042A99C4A98F8 /* PromisesObjC */ = { - isa = PBXNativeTarget; - buildConfigurationList = 826DE5268F12B842CEDEABE4DECC1168 /* Build configuration list for PBXNativeTarget "PromisesObjC" */; - buildPhases = ( - DF7F69BF849C78E1FAB2AF97DED901CC /* Headers */, - 36832DFE0875D23A0872BF02AF166D75 /* Sources */, - 97A5E0931CF28044BF387E32141F5EED /* Frameworks */, - 88595455BBF745E0FEF0CB81691DB84D /* Resources */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = PromisesObjC; - productName = FBLPromises; - productReference = 3347A1AB6546F0A3977529B8F199DC41 /* PromisesObjC */; - productType = "com.apple.product-type.framework"; - }; - 3B8CAC3956E59F928387D0C6310E3B37 /* gRPC-C++-gRPCCertificates-Cpp */ = { - isa = PBXNativeTarget; - buildConfigurationList = 56247963A2D548991DC1C55691477C97 /* Build configuration list for PBXNativeTarget "gRPC-C++-gRPCCertificates-Cpp" */; - buildPhases = ( - F656F55E893BB468F40F5BB40EAD8FFD /* Sources */, - 47C5C3032B6CB7EDD64B6C04C1B43830 /* Frameworks */, - CAC5270EC485BCEFB83B08C352B59D17 /* Resources */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = "gRPC-C++-gRPCCertificates-Cpp"; - productName = "gRPCCertificates-Cpp"; - productReference = 9C7C87B5D0A6752AFA2642F1BCA967A3 /* gRPC-C++-gRPCCertificates-Cpp */; - productType = "com.apple.product-type.bundle"; - }; - 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */ = { - isa = PBXNativeTarget; - buildConfigurationList = 9E724EF49C600614B3CDA735409F0D89 /* Build configuration list for PBXNativeTarget "FirebaseCore" */; - buildPhases = ( - A4FA698ED71439A708294EA6FEBD5A00 /* Headers */, - 3CBC29ED57139502A090F3C5CD1D1C38 /* Sources */, - 9D48F065A96BCCF57442C9943C078366 /* Frameworks */, - 51682BD8365267774DD3C923AE9D2EC3 /* Resources */, - ); - buildRules = ( - ); - dependencies = ( - 15B977ECE49BDB9927A6E4B2B2E2AB09 /* PBXTargetDependency */, - C31C6343624A47819A57F82B09AB9E30 /* PBXTargetDependency */, - ); - name = FirebaseCore; - productName = FirebaseCore; - productReference = E2B63D462DB7F827C4B11FD51E4F8E2D /* FirebaseCore */; - productType = "com.apple.product-type.framework"; - }; - 445FD4CB16BB7BEE2D1C404951CDE14A /* BoringSSL-GRPC */ = { - isa = PBXNativeTarget; - buildConfigurationList = 1D4602E409D9E24817E17F14CB4A8A81 /* Build configuration list for PBXNativeTarget "BoringSSL-GRPC" */; - buildPhases = ( - 0FD47B42387051C392ABBD143D80F46B /* Copy ssl Private Headers */, - F1CED20EDA591C146FE903FB4901E41D /* Headers */, - F0DBFF551924BAB8276A941B8E6A829B /* Copy crypto Private Headers */, - 09FE269E18ADEF9DB211CE0CC88FA6B9 /* Copy crypto/bio Private Headers */, - 31D399D3F66299572005600C7652EAE9 /* Copy crypto/bytestring Private Headers */, - 1877EB95A35D090DF1BD4AFE41204D3E /* Copy crypto/chacha Private Headers */, - 024FDBE17B645F6D82F707D0DE40A5C9 /* Copy crypto/cipher_extra Private Headers */, - 9811E0DC3A1C13F75B907DCA60103B2A /* Copy crypto/asn1 Private Headers */, - 324FE079BA00584E5B8C20E1755A845A /* Copy crypto/conf Private Headers */, - A09A2CB529330854F092126131D5992F /* Copy crypto/dsa Private Headers */, - 5298FD25B9BB364B71DEFDD264DEECEB /* Copy crypto/ec_extra Private Headers */, - 43AA660BE0E1481A95210BC0EAD9BC63 /* Copy crypto/err Private Headers */, - 8B8C5F3D9076EB8FD4DE25D0A9FAC73D /* Copy crypto/evp Private Headers */, - 7796E089F4B5173EFD422AB0C08F6555 /* Copy crypto/fipsmodule/aes Private Headers */, - B8129780782A041455A765F99B769BA5 /* Copy crypto/curve25519 Private Headers */, - 3062A88EA5FF0139517AB2C3C791F0AE /* Copy crypto/fipsmodule/cipher Private Headers */, - A1816F8C93AFD0027F2E855E1DE9A87E /* Copy crypto/fipsmodule Private Headers */, - D3CECDE03724EA831A86F2B9244C26B7 /* Copy crypto/fipsmodule/des Private Headers */, - E031035D64610F4470636831B3DCE02F /* Copy crypto/fipsmodule/bn Private Headers */, - 86F141C38AD3D2A3A4F56440676B3A68 /* Copy crypto/fipsmodule/digest Private Headers */, - 5D6118DE39ED2924BF571FB7921BD5B3 /* Copy crypto/fipsmodule/ecdsa Private Headers */, - F54559673C8235DE321A7A40BAF73F82 /* Copy crypto/fipsmodule/md5 Private Headers */, - B0D0D352B5A4CBCADC596DF8B96FBDF8 /* Copy crypto/fipsmodule/modes Private Headers */, - CFADF0AA4DBC51575D3A1BA30BB91DA5 /* Copy crypto/fipsmodule/ec Private Headers */, - 5FA463E00B301FF04F53FD7015B0476B /* Copy crypto/fipsmodule/rsa Private Headers */, - E8B726A2A5E5414E399BA38102E2FF14 /* Copy crypto/fipsmodule/sha Private Headers */, - 1E76C800298E714981C2A2C05A139DBB /* Copy crypto/fipsmodule/tls Private Headers */, - 389F3065824CB97BC27E328B69AA8234 /* Copy crypto/hrss Private Headers */, - EEF0093BBFCA10B0F98F535C862616E5 /* Copy crypto/lhash Private Headers */, - C7DE63AADF3A5D6689527D496CBD1EC8 /* Copy crypto/obj Private Headers */, - 5699161A16E00B8AE65480F4E89D447D /* Copy crypto/pkcs7 Private Headers */, - 76EE89FEA4B0EF02E81FDC12A9CB531A /* Copy crypto/pkcs8 Private Headers */, - 3CDC4B95233969F3EC74EBE317A4A371 /* Copy crypto/poly1305 Private Headers */, - A1EF385C18B6AA34B3C7BEA871E35DDF /* Copy crypto/pool Private Headers */, - 0EA68739D21F3759DB63AE470A86E439 /* Copy crypto/trust_token Private Headers */, - ADE2A1C49C362A75F3398C6C92BA72F4 /* Copy crypto/x509 Private Headers */, - 8C9445BD439779B6ED9CD8369E085D5F /* Copy crypto/fipsmodule/rand Private Headers */, - BC537DFBE1242D27E42D36E251E08DB3 /* Copy crypto/x509v3 Private Headers */, - 0738E83640FCA41D0CF93CA4F97DFFBF /* Copy third_party/fiat Private Headers */, - F2EC21285650B9998000CB90561059CC /* Copy . Public Headers */, - 049ADE799CE0CFD272627217E465AB47 /* Sources */, - 551AB43DF8C94A62E274CACBD710BB8A /* Frameworks */, - 49CAE47F955FD4289F7B4D248DA81979 /* Resources */, - 803A2ADFA3D64086E11CFEFC4C6CFBD9 /* Create Symlinks to Header Folders */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = "BoringSSL-GRPC"; - productName = openssl_grpc; - productReference = 514D7742C6CBB0BDBD9984AEE97DDFDE /* BoringSSL-GRPC */; - productType = "com.apple.product-type.framework"; - }; - 50F380A87A4FC4EC7EE3AC9BDADB6D2D /* gRPC-Core */ = { - isa = PBXNativeTarget; - buildConfigurationList = 8C09F866FD112087B952F23B9BD95461 /* Build configuration list for PBXNativeTarget "gRPC-Core" */; - buildPhases = ( - 028FB205E9509FE633D68BC560F460A6 /* Headers */, - 060C9D0B75C17A777AEF5875BD5F9D7E /* Copy src/core/ext/filters/channel_idle Private Headers */, - C2A583AB037933727015FE25A53BD412 /* Copy src/core/ext/filters/client_channel/health Private Headers */, - 2B86094AF7A9F1348D09A77E57CB5A91 /* Copy src/core/ext/filters/client_channel/lb_policy/grpclb Private Headers */, - 25E57BB6D584E87EFEAAB382015ACEA4 /* Copy src/core/ext/filters/client_channel/lb_policy/outlier_detection Private Headers */, - E713B877A9C536A8764D4084590970E4 /* Copy src/core/ext/filters/client_channel/lb_policy/ring_hash Private Headers */, - 4A8DCDE009AFD3CC2E3956C2A7F2B859 /* Copy src/core/ext/filters/client_channel/lb_policy Private Headers */, - 422C66AE89CB0B155BB389CD0598A194 /* Copy src/core/ext/filters/client_channel/lb_policy/xds Private Headers */, - 3660F9CAC49032D89F0671A063BB19C6 /* Copy src/core/ext/filters/client_channel/resolver/dns Private Headers */, - 58C7690AE62990F77B0068525967E4E5 /* Copy src/core/ext/filters/client_channel/resolver/fake Private Headers */, - B619C732C1ED21F8780914754BD8A950 /* Copy src/core/ext/filters/client_channel/resolver Private Headers */, - 6BBF42C2AB132A3A2DE5526892D1AEEB /* Copy src/core/ext/filters/client_channel/resolver/xds Private Headers */, - 379FCDFE6677A434EA4F328204349BCC /* Copy src/core/ext/filters/client_channel/resolver/dns/c_ares Private Headers */, - 2670EB31D53484B0F36425FC5BB7CBB5 /* Copy src/core/ext/filters/deadline Private Headers */, - 3D40A7920ADCBFC4BC9F1F53DE4A7F4D /* Copy src/core/ext/filters/client_channel Private Headers */, - 22A1976F62A45BC537A865F9FE948E18 /* Copy src/core/ext/filters/http/client Private Headers */, - 3C812C6A9169B022E219E63E69F42705 /* Copy src/core/ext/filters/http Private Headers */, - E7A78840738AE282BF061D15015BA030 /* Copy src/core/ext/filters/fault_injection Private Headers */, - 6A498BD8026EF56285D20ADC6F4B7974 /* Copy src/core/ext/filters/http/server Private Headers */, - 43A8984F1F4068A278D5C2F71E37728B /* Copy src/core/ext/filters/message_size Private Headers */, - F61CAFBAFE70598FF4BA2CE3CE77C931 /* Copy src/core/ext/filters/http/message_compress Private Headers */, - F0321575CADE2A7F415AEED61F1B563D /* Copy src/core/ext/filters/rbac Private Headers */, - D70425A9E512B600D050773A890E290D /* Copy src/core/ext/transport/chttp2/alpn Private Headers */, - C28E9F767A8E9594A78E31485C4F711A /* Copy src/core/ext/transport/chttp2/client Private Headers */, - 0525B966E30C1143BADC8264A56FDFE4 /* Copy src/core/ext/transport/chttp2/server Private Headers */, - 42CA7D1C68A2EB710125064EAE9DD86D /* Copy src/core/ext/filters/server_config_selector Private Headers */, - E73FAE79B48277BE3F2AF53CEBDF5443 /* Copy src/core/ext/transport/inproc Private Headers */, - C683DBE56BA3D608B23AFCD4B25CE228 /* Copy src/core/ext/transport/chttp2/transport Private Headers */, - D0891E86373744EDC1CEB536FE7F4EB0 /* Copy src/core/ext/upb-generated/envoy/admin/v3 Private Headers */, - 877AEB742ADED9AFEA891AD14F3700F8 /* Copy src/core/ext/upb-generated/envoy/config/accesslog/v3 Private Headers */, - 79B5827CAE67AA99E65B44D66FA12368 /* Copy src/core/ext/upb-generated/envoy/config/bootstrap/v3 Private Headers */, - 66637E335C5531B758FDF63966A5C7CD /* Copy src/core/ext/upb-generated/envoy/annotations Private Headers */, - FC788F63D19585735CA5FB5C4EE12B70 /* Copy src/core/ext/upb-generated/envoy/config/common/matcher/v3 Private Headers */, - 8C331EEEF3DA79C84A472D6C4436C25D /* Copy src/core/ext/upb-generated/envoy/config/cluster/v3 Private Headers */, - EA4D08F9E912F717E80A473B705F11C6 /* Copy src/core/ext/upb-generated/envoy/config/core/v3 Private Headers */, - 9FB082EB669B5C66170D865297D4C359 /* Copy src/core/ext/upb-generated/envoy/config/endpoint/v3 Private Headers */, - E1D4E81E201353A353D53426BED23D6A /* Copy src/core/ext/upb-generated/envoy/config/listener/v3 Private Headers */, - EAE1422B880C09F562D70D7AF1609AB9 /* Copy src/core/ext/upb-generated/envoy/config/overload/v3 Private Headers */, - 24E94116D0004314E7884C8FDC84815D /* Copy src/core/ext/upb-generated/envoy/config/rbac/v3 Private Headers */, - 79462C350247C6DB604FF79638ECB509 /* Copy src/core/ext/upb-generated/envoy/config/metrics/v3 Private Headers */, - 63B3EB76A6D741641F1260BA402F3A5D /* Copy src/core/ext/upb-generated/envoy/config/tap/v3 Private Headers */, - 73FEEB217B99E1185F5342AF6E6CC785 /* Copy src/core/ext/upb-generated/envoy/config/route/v3 Private Headers */, - 6CFE0E03BC367BB583C1F97AA36173A1 /* Copy src/core/ext/upb-generated/envoy/extensions/clusters/aggregate/v3 Private Headers */, - 4201D7ADE54BCD1F817FAF4911435562 /* Copy src/core/ext/upb-generated/envoy/extensions/filters/common/fault/v3 Private Headers */, - D2BB1C4541604DE493F56292EDBD1071 /* Copy src/core/ext/upb-generated/envoy/extensions/filters/http/fault/v3 Private Headers */, - 3B0801BB67D31BE203B94249AEF76414 /* Copy src/core/ext/upb-generated/envoy/extensions/filters/http/rbac/v3 Private Headers */, - E5F155298D102FB98CACDDA7B9D266F0 /* Copy src/core/ext/upb-generated/envoy/extensions/filters/http/router/v3 Private Headers */, - ADCE608EFA4D589B9411CA09216E04C6 /* Copy src/core/ext/upb-generated/envoy/extensions/filters/network/http_connection_manager/v3 Private Headers */, - 301A7EE75B99D2BF64A0F3BAE2330F4C /* Copy src/core/ext/upb-generated/envoy/extensions/load_balancing_policies/ring_hash/v3 Private Headers */, - 07FD77E7626E9331AA2D8DCD1567FB07 /* Copy src/core/ext/upb-generated/envoy/extensions/load_balancing_policies/wrr_locality/v3 Private Headers */, - 1AEF86A0EB81DEC6170FB4F8D079CE8F /* Copy src/core/ext/upb-generated/envoy/config/trace/v3 Private Headers */, - 3CD5BDEC52F4B3008E8820EFA7A997D5 /* Copy src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3 Private Headers */, - 940897F496646D8A0087550D471DF9EC /* Copy src/core/ext/upb-generated/envoy/service/load_stats/v3 Private Headers */, - 4971473C0E23334B41CEC13806EF3A5E /* Copy src/core/ext/upb-generated/envoy/service/status/v3 Private Headers */, - 38300D9F8CA81F2BD1C54CCE9732BE73 /* Copy src/core/ext/upb-generated/envoy/service/discovery/v3 Private Headers */, - 5CE4A57CA471A8FAF091913EC8AB5D70 /* Copy src/core/ext/upb-generated/envoy/type/http/v3 Private Headers */, - 875365A24384B49F31604CBFC3039D38 /* Copy src/core/ext/upb-generated/envoy/type/metadata/v3 Private Headers */, - 13DC724F83A10812AEFDFD1D19AAAE4D /* Copy src/core/ext/upb-generated/envoy/type/tracing/v3 Private Headers */, - 66C39A8D933975011D5FA47211F75AA8 /* Copy src/core/ext/upb-generated/envoy/type/matcher/v3 Private Headers */, - 8F9C6EBB37FD868836C117952FAEEC5D /* Copy src/core/ext/upb-generated/envoy/type/v3 Private Headers */, - AB3ADD5E6D9FAC6D434A7C547D26207C /* Copy src/core/ext/upb-generated/google/api/expr/v1alpha1 Private Headers */, - 5E0EA4EC2F0BD8C8F493D01B0A62F3B5 /* Copy src/core/ext/upb-generated/google/api Private Headers */, - 67553BCDB478E1AD7A7B45DE08D4D696 /* Copy src/core/ext/upb-generated/google/rpc Private Headers */, - C25938C793686CA7F84CAB4BC8A52A1E /* Copy src/core/ext/upb-generated/opencensus/proto/trace/v1 Private Headers */, - 409F834BF7D5E65D1986687E86CFFD02 /* Copy src/core/ext/upb-generated/google/protobuf Private Headers */, - 4490225052EBCEE193EF10DD3B0C22FE /* Copy src/core/ext/upb-generated/src/proto/grpc/health/v1 Private Headers */, - 3E74F07468A49F7D7B5D8EFC53A3FB87 /* Copy src/core/ext/upb-generated/src/proto/grpc/lb/v1 Private Headers */, - 4261B2F9790BF3366947812C220A3AF3 /* Copy src/core/ext/upb-generated/src/proto/grpc/gcp Private Headers */, - D1FC6894361BDC061A5255874853689D /* Copy src/core/ext/upb-generated/src/proto/grpc/lookup/v1 Private Headers */, - E7E4EE290131A83F9A73DDC58A62EE27 /* Copy src/core/ext/upb-generated/validate Private Headers */, - 613C884290B5E004484936466848C1C9 /* Copy src/core/ext/upb-generated/udpa/annotations Private Headers */, - 62B1B37153A51712253914CEDE452343 /* Copy src/core/ext/upb-generated/xds/annotations/v3 Private Headers */, - E248A4838914103CBF5400D845678A95 /* Copy src/core/ext/upb-generated/xds/data/orca/v3 Private Headers */, - 65E63CC892149FCCFE99B4552DC03DFD /* Copy src/core/ext/upb-generated/xds/service/orca/v3 Private Headers */, - 6946955E88EBED2924099372AC960267 /* Copy src/core/ext/upb-generated/xds/core/v3 Private Headers */, - BA40A187E2E86F0697D65A27B1B6FCBB /* Copy src/core/ext/upb-generated/xds/type/v3 Private Headers */, - 30A09F22208D60DC68B33192C2B1733F /* Copy src/core/ext/upb-generated/xds/type/matcher/v3 Private Headers */, - 576930F76BE676CEBCA2A1C3CE37A836 /* Copy src/core/ext/upbdefs-generated/envoy/admin/v3 Private Headers */, - AC32309EA2FDCD925327A5AEACA63757 /* Copy src/core/ext/upbdefs-generated/envoy/config/accesslog/v3 Private Headers */, - 7179ED2CB5F3EC93EF98BE902ADA061E /* Copy src/core/ext/upbdefs-generated/envoy/config/bootstrap/v3 Private Headers */, - 29F35B2CF99D7691ECCC42FA785FA858 /* Copy src/core/ext/upbdefs-generated/envoy/annotations Private Headers */, - 3EC1ED06CEBB85CF71A14F28336DB14A /* Copy src/core/ext/upbdefs-generated/envoy/config/common/matcher/v3 Private Headers */, - 317535C84133D42D91F9768CFD55CD7B /* Copy src/core/ext/upbdefs-generated/envoy/config/cluster/v3 Private Headers */, - 66636AAB9D721F95E7337FD2B5D1DDF1 /* Copy src/core/ext/upbdefs-generated/envoy/config/core/v3 Private Headers */, - C1138CB3DEC1723A3F8226E29A98E03A /* Copy src/core/ext/upbdefs-generated/envoy/config/endpoint/v3 Private Headers */, - DB5B8E0F290659F74E33FC86599A2626 /* Copy src/core/ext/upbdefs-generated/envoy/config/listener/v3 Private Headers */, - DBD8B0E229FEB5DA077C0A46923BEFA4 /* Copy src/core/ext/upbdefs-generated/envoy/config/overload/v3 Private Headers */, - 61341D3EBD658E7EEBD8323D2190E8B5 /* Copy src/core/ext/upbdefs-generated/envoy/config/rbac/v3 Private Headers */, - E271DC035A9C0B1F9D478B59A744C629 /* Copy src/core/ext/upbdefs-generated/envoy/config/metrics/v3 Private Headers */, - 428766808052E095E1F364EE89CE42DD /* Copy src/core/ext/upbdefs-generated/envoy/config/tap/v3 Private Headers */, - DC941B3D5E94DE023FD4DFDB82436FD1 /* Copy src/core/ext/upbdefs-generated/envoy/config/route/v3 Private Headers */, - 74C4AA3BB69D6E1FE1FA1380D59F05C0 /* Copy src/core/ext/upbdefs-generated/envoy/extensions/clusters/aggregate/v3 Private Headers */, - 410C409D9C7EBF302EC6957ACF284D3F /* Copy src/core/ext/upbdefs-generated/envoy/extensions/filters/common/fault/v3 Private Headers */, - 87765D3736F26A245F0A4799EE055EAC /* Copy src/core/ext/upbdefs-generated/envoy/extensions/filters/http/fault/v3 Private Headers */, - E18B4A06D3FAC1AA7CF571C6E4A754A1 /* Copy src/core/ext/upbdefs-generated/envoy/extensions/filters/http/rbac/v3 Private Headers */, - 9A0EFFD27134E6C2E5286290DC7961A3 /* Copy src/core/ext/upbdefs-generated/envoy/extensions/filters/http/router/v3 Private Headers */, - D8EBE42A124F75DB6A1EA39DF7879D3E /* Copy src/core/ext/upbdefs-generated/envoy/extensions/filters/network/http_connection_manager/v3 Private Headers */, - 90A05524607A8A34317824666A269355 /* Copy src/core/ext/upbdefs-generated/envoy/config/trace/v3 Private Headers */, - E829DDB95769CFF7E3535A9987BB9B32 /* Copy src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3 Private Headers */, - 60BF5E2F019A13DAFC0F0F0AADFD2B0E /* Copy src/core/ext/upbdefs-generated/envoy/service/load_stats/v3 Private Headers */, - 981AB7C25FD507EC79E955BE9507CA5B /* Copy src/core/ext/upbdefs-generated/envoy/service/status/v3 Private Headers */, - 6C6DA3CCDC64D98C9A3B413D159636DD /* Copy src/core/ext/upbdefs-generated/envoy/service/discovery/v3 Private Headers */, - 7286AC61B384F3A42EFA10B43CF6A1DF /* Copy src/core/ext/upbdefs-generated/envoy/type/http/v3 Private Headers */, - 5AA73A94EC57889E0B83A1FF933EB794 /* Copy src/core/ext/upbdefs-generated/envoy/type/metadata/v3 Private Headers */, - A79B6EE2D77977A3F679DCEB79C6294F /* Copy src/core/ext/upbdefs-generated/envoy/type/tracing/v3 Private Headers */, - 30E741D86413B9A1CF9BBBD7C900134B /* Copy src/core/ext/upbdefs-generated/envoy/type/matcher/v3 Private Headers */, - 06506486FC43C09DC50F3D0FE3712A76 /* Copy src/core/ext/upbdefs-generated/envoy/type/v3 Private Headers */, - 120543E24F370EC147B55BBCDB73820E /* Copy src/core/ext/upbdefs-generated/google/api/expr/v1alpha1 Private Headers */, - B36B3C1189E4D50EDB7067A8088FB7F1 /* Copy src/core/ext/upbdefs-generated/google/api Private Headers */, - 90DD1ADEA2F24A1B507F1E96FFA9BA89 /* Copy src/core/ext/upbdefs-generated/google/rpc Private Headers */, - 3DB8F12C8708BE01018623FBCD5BE20C /* Copy src/core/ext/upbdefs-generated/opencensus/proto/trace/v1 Private Headers */, - EDA982549F9A2D136DD9FDAD8E61CBC9 /* Copy src/core/ext/upbdefs-generated/src/proto/grpc/lookup/v1 Private Headers */, - ED3A51E07140F186BC8CB17387EB46A1 /* Copy src/core/ext/upbdefs-generated/google/protobuf Private Headers */, - 5B05117542674EEC83050F09BE385A12 /* Copy src/core/ext/upbdefs-generated/validate Private Headers */, - D4DB3C019290229A6831FFB837668483 /* Copy src/core/ext/upbdefs-generated/udpa/annotations Private Headers */, - C11BEDC1263841790E0E72613FC79CD9 /* Copy src/core/ext/upbdefs-generated/xds/annotations/v3 Private Headers */, - 455DC6560395DE960D1A8CF9B2B8FC51 /* Copy src/core/ext/upbdefs-generated/xds/core/v3 Private Headers */, - 19422CB541864DC18554EA05A69BAD9D /* Copy src/core/ext/upbdefs-generated/xds/type/v3 Private Headers */, - 9687907EDC426B7A2E327BA92584300F /* Copy src/core/ext/upbdefs-generated/xds/type/matcher/v3 Private Headers */, - 89318678B81AD2D5E9835BC2D66CD982 /* Copy src/core/ext/xds Private Headers */, - FCB7EC1013DFDD04BF67401157221620 /* Copy src/core/lib/avl Private Headers */, - C3A878DAFF93FD7B9F110B48680AD2BD /* Copy src/core/lib/backoff Private Headers */, - C981D5EB7684426E9ADE48CE6E718970 /* Copy src/core/lib/address_utils Private Headers */, - 088391969F8A1EBCDE2B3A489099E968 /* Copy src/core/lib/channel Private Headers */, - 87563FB519DE2AE0A9DB699B7560A132 /* Copy src/core/lib/config Private Headers */, - AC99033DD8436CC1F9FFC20F443AFF91 /* Copy src/core/lib/compression Private Headers */, - 0D4EF62EEF96CAF50E69484D0D4C7AB2 /* Copy src/core/lib/debug Private Headers */, - 11E582B7EA73CA80545ABF89D6236E7D /* Copy src/core/lib/event_engine/executor Private Headers */, - 1ED08743DFAA448FD10DB2E9AAE1BABB /* Copy src/core/lib/event_engine/posix_engine Private Headers */, - C760DDBD65812CAA97F0C24E4F0A4076 /* Copy src/core/lib/event_engine Private Headers */, - 236E7C0077A4BCF54ADF19F8381F4180 /* Copy src/core/lib/event_engine/windows Private Headers */, - 0E114DB0EB5B94ED1C006DE50C889703 /* Copy src/core/lib/experiments Private Headers */, - 1C380A1A7AEED6B283AA5895A2655B24 /* Copy src/core/lib/gpr Private Headers */, - 3E75E7ABF5E937E8D3ABE35DF2F84445 /* Copy src/core/lib/gprpp Private Headers */, - 979594B3AE93FD11A9D5024D078CFAC0 /* Copy src/core/lib/handshaker Private Headers */, - 63275E05978F81E2CB4FF710EE391C5A /* Copy src/core/lib/http Private Headers */, - 57101E92559F32B35EB0EA501BE2D598 /* Copy src/core/lib/iomgr Private Headers */, - 5BE0EFD4F97C977F726A366DCF65CE7A /* Copy src/core/lib/json Private Headers */, - 43E6260B5FDB94A8D2DCD658C726021C /* Copy src/core/lib/matchers Private Headers */, - 03D3ACF219F0A9650BF54AF217D47B84 /* Copy src/core/lib/load_balancing Private Headers */, - E2AE18269CA078D8438396F9557E387C /* Copy src/core/lib/promise/detail Private Headers */, - 5FAF799063B315911BAAF5A5EED960AA /* Copy src/core/lib/promise Private Headers */, - A630EA49A5C764899F91EC41E4C699F0 /* Copy src/core/lib/resolver Private Headers */, - 978491235AD10AEBAF31A71988C220F9 /* Copy src/core/lib/resource_quota Private Headers */, - 352C922D138C9A75AA5942005FB403AA /* Copy src/core/lib/security/authorization Private Headers */, - 8F3A111D22373CBE654102FE1F05174B /* Copy src/core/lib/security/context Private Headers */, - 430E99D270B8B186D4F24ABC569E42D9 /* Copy src/core/lib/security/certificate_provider Private Headers */, - 8E48BA30567A582CEF244347BCE6676B /* Copy src/core/lib/security/credentials/alts Private Headers */, - A3260ED60E521AA30140B6B055F9A3E8 /* Copy src/core/lib/security/credentials/composite Private Headers */, - AF8A7317BB6C7799098B73B16E506695 /* Copy src/core/lib/security/credentials Private Headers */, - 7938B5E80185C330B936EB8714C5257C /* Copy src/core/lib/security/credentials/fake Private Headers */, - 130BBB4C6910A9F9898FA0F5A2568CE8 /* Copy src/core/lib/security/credentials/google_default Private Headers */, - 48AEAC533365DF5B55BFFA828788DCE0 /* Copy src/core/lib/security/credentials/iam Private Headers */, - 1865B32853B4BD8DB51C0821194AAC6F /* Copy src/core/lib/security/credentials/insecure Private Headers */, - AA537C8F5EE46ECFC37FFFDAEFF27E99 /* Copy src/core/lib/security/credentials/external Private Headers */, - 724B4C9E989652967B0999A756669B21 /* Copy src/core/lib/security/credentials/local Private Headers */, - 6C1918BF538978FE17124BBDC5B15A20 /* Copy src/core/lib/security/credentials/oauth2 Private Headers */, - 30F32BEFAE9007EE0922E8DA838C7351 /* Copy src/core/lib/security/credentials/plugin Private Headers */, - 4BE88B972223A97FD41B799ED6E5356D /* Copy src/core/lib/security/credentials/ssl Private Headers */, - 1CD28B3B1D3552B389A527D38FB292FB /* Copy src/core/lib/security/credentials/jwt Private Headers */, - EC3CF1CA9EA6CEB0F657C58E8A48F643 /* Copy src/core/lib/security/credentials/xds Private Headers */, - 690C5DED32CF423D7E44302BFC41FCD5 /* Copy src/core/lib/security/security_connector/alts Private Headers */, - F4BD2565FD92CD817CD0740403FCD4DE /* Copy src/core/lib/security/security_connector/fake Private Headers */, - A9416E2A162DBD6A7C493E7A9354D5B8 /* Copy src/core/lib/security/security_connector/insecure Private Headers */, - 3638C4B73B2A81385EE3D032F15ED856 /* Copy src/core/lib/security/credentials/tls Private Headers */, - 4FC94A2A444DB440671781FC7B4F0F19 /* Copy src/core/lib/security/security_connector/local Private Headers */, - DC265AEB4B1B21EA20D1D89E7841225D /* Copy src/core/lib/security/security_connector/ssl Private Headers */, - DDA2A3EEB9D79A200796C8F6C13902A1 /* Copy src/core/lib/security/security_connector/tls Private Headers */, - 5EF5E275DBB8B9536544A44A1B5ACAE7 /* Copy src/core/lib/security/security_connector Private Headers */, - 5A0056AAA03171CFF0FB3EFE904249D9 /* Copy src/core/lib/security/util Private Headers */, - BDFF5E6982AD604B3B6557DE90401DEC /* Copy src/core/lib/security/transport Private Headers */, - 3D6FAAD1C85891B1B2EF288DA9D8DC18 /* Copy src/core/lib/service_config Private Headers */, - D9F1C3765E8B5AAAFB97FDAE1A4365EC /* Copy src/core/lib/slice Private Headers */, - 3A4BB4C5BE271C4695B28CA4FA1DCD4D /* Copy src/core/lib/surface Private Headers */, - A75792A4B9361EF329B5B2EF1CEC4F2F /* Copy src/core/lib/uri Private Headers */, - 3EB6CD43CA6B9ECC6A1446C3AD3363CD /* Copy src/core/tsi/alts/crypt Private Headers */, - 85EEA1EDA4C0F29701BB5D1CB3EC65FD /* Copy src/core/lib/transport Private Headers */, - 0E7CC67F747282882FA1751FAAD38BC5 /* Copy src/core/tsi/alts/frame_protector Private Headers */, - D2477DED9EE8B309CF5C97017C263736 /* Copy src/core/tsi/alts/handshaker Private Headers */, - C2F65E8C1E930DAD0DCA60306C46A2A4 /* Copy src/core/tsi/alts/zero_copy_frame_protector Private Headers */, - FFD511A422F602A599813291B4E28DD6 /* Copy src/core/tsi/ssl/key_logging Private Headers */, - 724BABAE1BD1CF8F182D1BE0DFEF7636 /* Copy src/core/tsi/ssl/session_cache Private Headers */, - D59B1543A1AC40CF7E09D6E18FAF48AC /* Copy src/core/tsi Private Headers */, - 7C1F9DF7BEBDC892FDBFC92ED4D75A41 /* Copy third_party/re2/re2 Private Headers */, - 703CC345C4583FA94967F763639941AE /* Copy third_party/upb/third_party/utf8_range Private Headers */, - 828FAA9CC3EB70C132869FACD67BCFEB /* Copy third_party/re2/util Private Headers */, - 19A6C9B12EA95CE1D2E8608365910D88 /* Copy third_party/upb/upb/internal Private Headers */, - 422DDD0CDCF1C2ECB9B35105C5C48701 /* Copy third_party/xxhash Private Headers */, - AF60C4DCC176955249FE0F37A6BD716B /* Copy third_party/upb/upb Private Headers */, - BBAC0FF71C35FAA3C89DF4CAE285CBD6 /* Copy event_engine/internal Public Headers */, - A6FAAC61AD1529000EBA1CC23C583937 /* Copy event_engine Public Headers */, - 00E32F203B0EB77C462703EC9576E56F /* Copy impl/codegen Public Headers */, - 74822D7308F3530B388BA87C2471EC4C /* Copy . Public Headers */, - BB0EA61DED0699976480C8928910C768 /* Copy support Public Headers */, - C30BC9D6FA9CBE0D62DB2A40918DF2FC /* Sources */, - 2E14E8C61E7402BFFDD6ED5A824AEB80 /* Frameworks */, - 5E4D5C06F46F0AE334450CE4E5705A17 /* Resources */, - 68C1AB7B8BF00A6896C9D0BE1D5CC486 /* Create Symlinks to Header Folders */, - ); - buildRules = ( - ); - dependencies = ( - BBF3BA9E22D1B821ADC56E5B8EC2A2D7 /* PBXTargetDependency */, - E44D58A095570CDD0734CE38EBE59203 /* PBXTargetDependency */, - ); - name = "gRPC-Core"; - productName = grpc; - productReference = B471867C535B02FA55D87E260F6480F8 /* gRPC-Core */; - productType = "com.apple.product-type.framework"; - }; - 6AE4A3D573DED275B034E20506596C62 /* FirebaseAuth */ = { - isa = PBXNativeTarget; - buildConfigurationList = A02CBC57F59A4C0471090C76053F0501 /* Build configuration list for PBXNativeTarget "FirebaseAuth" */; - buildPhases = ( - AFBCF6DD1354879047C93FA94723606D /* Headers */, - FF2E9F44B678FE6E6AD57B50EA23248A /* Sources */, - 19F0B8ECBFB426C886DB989CF62A0663 /* Frameworks */, - B1F63AED196134A415786E601A68C487 /* Resources */, - ); - buildRules = ( - ); - dependencies = ( - 2DE121C940B34707F58BD528179DC713 /* PBXTargetDependency */, - 9805465675FAB6EB56E97A505A7E0364 /* PBXTargetDependency */, - F5DCFCFE04B31BBBF70A3F39F0373F48 /* PBXTargetDependency */, - 790778310E904152F5858AD9498A4E97 /* PBXTargetDependency */, - D9EF21F25A563E37295FAA8478EFC2CB /* PBXTargetDependency */, - ); - name = FirebaseAuth; - productName = FirebaseAuth; - productReference = 43B1E4CD7B30B9FD278100133C2AC788 /* FirebaseAuth */; - productType = "com.apple.product-type.framework"; - }; - 73CDC3D182DB953135F62609681B443D /* abseil */ = { - isa = PBXNativeTarget; - buildConfigurationList = 995B4676FA0C271E61CCF7D918521D86 /* Build configuration list for PBXNativeTarget "abseil" */; - buildPhases = ( - 748320462568078A367200257B5283FC /* Headers */, - 76D2117D757AC60FD83FCF2B8F595660 /* Copy algorithm Public Headers */, - 1E105FB797BC7C4A67F7A5AFFB62C578 /* Copy base Public Headers */, - FF6B06C9DA975E97B84B89742DA8CF4D /* Copy cleanup Public Headers */, - DAD1F414A7CDCA73A9028645E9A831F3 /* Copy cleanup/internal Public Headers */, - 5198CD74A2DD0D4E93170725708782F4 /* Copy base/internal Public Headers */, - 0FFEC1F87DC9D07BCB7F0403C9AC6FAD /* Copy container Public Headers */, - 979A736408C5DF21B9B0FB8B995DB648 /* Copy container/internal Public Headers */, - DA23B208D23F6CC2666BD2FD591F23AB /* Copy debugging/internal Public Headers */, - 3B80BE9E1203D20146EB9DF80C3297F5 /* Copy debugging Public Headers */, - D062971BEBAD8DEAED7D15074D23DA15 /* Copy functional Public Headers */, - A0ECE9025FCA2FBC6A601F4C961B7E13 /* Copy hash Public Headers */, - 01BF81780DD71BB03D3CB1BDD59707D3 /* Copy functional/internal Public Headers */, - F0E268A48B821D71DAD4C044FEAB904F /* Copy memory Public Headers */, - B5D4F9A6BD8521AB8BC51512DB989503 /* Copy meta Public Headers */, - DC9410FE9EEA047AE1114DE2DA5E2338 /* Copy hash/internal Public Headers */, - D435656C2419419ECAFFEF8537DBC262 /* Copy numeric Public Headers */, - 02C73B2EB9C2387C4D176FE80A5D975D /* Copy numeric/internal Public Headers */, - 379A6D30782C3FAC3DCF46ED5ECBE363 /* Copy profiling/internal Public Headers */, - D76D257D96948276B3D3EDCABC61C9E0 /* Copy random/internal Public Headers */, - C553FA2041EC33AEE983F4ECD3F747B2 /* Copy random Public Headers */, - 694A398079A96EAD2F330E3795826F17 /* Copy status/internal Public Headers */, - A4CB3AB179CFB725D0CEF53723582878 /* Copy status Public Headers */, - 9C81611334AA97E3F05EDF63792D5370 /* Copy strings/internal/str_format Public Headers */, - E345615082731935B10BF000C111932E /* Copy strings/internal Public Headers */, - 8A8769BFA3CA491638FB725D166DC636 /* Copy strings Public Headers */, - 53076C7861F9A2C0CEDD6548CC8EE7FA /* Copy synchronization/internal Public Headers */, - 3B6EA2964A1460E3486171A6A9543904 /* Copy synchronization Public Headers */, - 4A809D8A7D1BDE5F696E36B5B84CBE52 /* Copy time/internal/cctz/include/cctz Public Headers */, - 27CA9D4655E3CFC2EF8592B4786765D6 /* Copy time/internal/cctz/src Public Headers */, - A0AE6DA8FCB143AFB62C73D20778F221 /* Copy time/internal Public Headers */, - 52D6E49B18064988C9580D985EF97329 /* Copy time Public Headers */, - 575F5AF584B77031D605B1A64F3562A1 /* Copy types/internal Public Headers */, - CFF9127A2B2B65DF6383447CB8780BDF /* Copy utility Public Headers */, - D671BBFA51D21C1393665A30F60428E0 /* Copy types Public Headers */, - C15A1866D39DAC49555C20A3B0D76EBA /* Sources */, - D3CDB34DA0EE275C148BF3240C4276BB /* Frameworks */, - 8E2B1FA51429C1940B49084A6F66493A /* Resources */, - 3CBC15B7378233E77E685467F0EE88E2 /* Create Symlinks to Header Folders */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = abseil; - productName = absl; - productReference = BF96B57ADE05E8909F823BDF6868B3E3 /* abseil */; - productType = "com.apple.product-type.framework"; - }; - 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */ = { - isa = PBXNativeTarget; - buildConfigurationList = 25950A72037F2FEAEB14C919023BC28C /* Build configuration list for PBXNativeTarget "GoogleUtilities" */; - buildPhases = ( - 63EAEEE7E98503A624DFEB19BA80BE11 /* Headers */, - 71FAFE550F9EFF18526902149E6A1EF1 /* Sources */, - 8ECAE4F67F47703EBA501A6CD2A4AA40 /* Frameworks */, - 697C96A714E224BA7A05A02BF47A0BA7 /* Resources */, - ); - buildRules = ( - ); - dependencies = ( - 7ED3D38110AE3BA17422E7F47C381DDB /* PBXTargetDependency */, - ); - name = GoogleUtilities; - productName = GoogleUtilities; - productReference = B43874C6CBB50E7134FBEC24BABFE14F /* GoogleUtilities */; - productType = "com.apple.product-type.framework"; - }; - 9307B7A119490930CF70393AB529AAC1 /* leveldb-library */ = { - isa = PBXNativeTarget; - buildConfigurationList = 15333ABEC200EC275735DA06E1F672DE /* Build configuration list for PBXNativeTarget "leveldb-library" */; - buildPhases = ( - 118D872CF9A78EFD8280B80966D87226 /* Headers */, - 22BF9BFB88FD5E00E76A929778BB1692 /* Sources */, - BC2982E1E41FBF5DA04AD52C766AF739 /* Frameworks */, - 4A15885780B25E5873C8D5E9B970FC39 /* Resources */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = "leveldb-library"; - productName = leveldb; - productReference = 0A9F46A999C47653013D3AD854352507 /* leveldb-library */; - productType = "com.apple.product-type.framework"; - }; - 962124A759E27BE4799ED74362BED884 /* RecaptchaInterop */ = { - isa = PBXNativeTarget; - buildConfigurationList = 827F56DB3D5582EF38BE19637F0768BD /* Build configuration list for PBXNativeTarget "RecaptchaInterop" */; - buildPhases = ( - BEC43CF7590BC5AAA5D611E69326E5F1 /* Headers */, - 2F78AEEB569E52BC90D99467DFEC57E4 /* Sources */, - 8CEF9060847BB07629EA3D98AA7DCEA3 /* Frameworks */, - 6C2C66F63BB1D7A8081DABE2105CCD65 /* Resources */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = RecaptchaInterop; - productName = RecaptchaInterop; - productReference = 33D34D2210961B1CBFEC1D194B0AAB9F /* RecaptchaInterop */; - productType = "com.apple.product-type.framework"; - }; - D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */ = { - isa = PBXNativeTarget; - buildConfigurationList = 904F8E66D7F152D37ED4653D343A1EC9 /* Build configuration list for PBXNativeTarget "nanopb" */; - buildPhases = ( - B95883A86FE7FC97793F700CE958BF7F /* Headers */, - C774537CAB7FAC8BF5C11A11F1B725FC /* Sources */, - CC959B2A089551A04E85C4CA8431687B /* Frameworks */, - 022F777EB1F6D0EA006CBFFE822831E7 /* Resources */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = nanopb; - productName = nanopb; - productReference = 06FC5C9CF96D60C50FCD47D339C91951 /* nanopb */; - productType = "com.apple.product-type.framework"; - }; - D676E21115185671D7258A56944ABE98 /* GTMSessionFetcher */ = { - isa = PBXNativeTarget; - buildConfigurationList = DE532CB42007089B30221825E88D8E43 /* Build configuration list for PBXNativeTarget "GTMSessionFetcher" */; - buildPhases = ( - E03407756B9423E038E4987B6D79E3F2 /* Headers */, - 3A494107452587C9FD46667BA9F402AB /* Sources */, - D6DBE9565D704BD00A0EFDC87AB11870 /* Frameworks */, - 2534563E327EA182734C00E68888187A /* Resources */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = GTMSessionFetcher; - productName = GTMSessionFetcher; - productReference = C1998E0D8085221AD87F89B614C10E52 /* GTMSessionFetcher */; - productType = "com.apple.product-type.framework"; - }; - DBA2B63E3A5FE83FE89E731664C9269F /* FirebaseFirestore */ = { - isa = PBXNativeTarget; - buildConfigurationList = 39D85BC4774097EB1196DBDF4BE20626 /* Build configuration list for PBXNativeTarget "FirebaseFirestore" */; - buildPhases = ( - DC68A1F3DF4FF4D77D7410FDFF1F8CC6 /* Headers */, - 2A078CD6D443022B7DE05FEB5AAFCDF4 /* Sources */, - 57CE7687515F43D42E9717B66A93A8F9 /* Frameworks */, - 9CE3B3510B175CF7550003336BB4EE88 /* Resources */, - ); - buildRules = ( - ); - dependencies = ( - D853ED800AB6F49B808D2BEB757AE1FA /* PBXTargetDependency */, - E8C84E26C533FEC34E13D892369D00AA /* PBXTargetDependency */, - 9F7FD9A48F67DF9B99A65886C4F44863 /* PBXTargetDependency */, - 01E83C1FC7D00A6CBFE6C8B87373571D /* PBXTargetDependency */, - A1C0861293C5F749DCA4B81764926B11 /* PBXTargetDependency */, - ); - name = FirebaseFirestore; - productName = FirebaseFirestore; - productReference = 92000153CD73F7FC2DBAB4AB708269F3 /* FirebaseFirestore */; - productType = "com.apple.product-type.framework"; - }; - DD28B439BE8B17D9339D9B526F144347 /* FirebaseAppCheckInterop */ = { - isa = PBXNativeTarget; - buildConfigurationList = 7DA0050AC7D840C3110CAA9D804C7FEE /* Build configuration list for PBXNativeTarget "FirebaseAppCheckInterop" */; - buildPhases = ( - A685A3814D05E27F9C939CC922C7357E /* Headers */, - 0DD7419A2B07317652BF22FA8E5C5036 /* Sources */, - AFAD1CC56D3F3812899DC7AD5C73BDF8 /* Frameworks */, - 527328A557334535CFC733BE73215B1E /* Resources */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = FirebaseAppCheckInterop; - productName = FirebaseAppCheckInterop; - productReference = 81418C93A311F0492F62A8F88C3BD66B /* FirebaseAppCheckInterop */; - productType = "com.apple.product-type.framework"; - }; ED39C638569286489CD697A6C8964146 /* Pods-iosApp */ = { isa = PBXNativeTarget; - buildConfigurationList = 00D9FE98598D8D198A8380D8C13CB5B7 /* Build configuration list for PBXNativeTarget "Pods-iosApp" */; + buildConfigurationList = 9F1E85ECB672A0CC96333A6C6DF60EE6 /* Build configuration list for PBXNativeTarget "Pods-iosApp" */; buildPhases = ( - 716A9D5CB1ED239E02E542D695057FA0 /* Headers */, - 087C66F6D9ED9DEF54F903527841DC01 /* Sources */, - C9C3CA168DC2DCDB8E929B78CA72876A /* Frameworks */, - FC7890C1D544CA63007BBD0E42C036C8 /* Resources */, + DA71CB665A4F7860DB550FAA48FB6AD2 /* Headers */, + EB28A529759E3D2117E28CE3CB8387D3 /* Sources */, + CC3CD5459C4A5476C5A93268587E63E7 /* Frameworks */, + 0EC1C62FF9B25EAB2D236D122EAF4C98 /* Resources */, ); buildRules = ( ); dependencies = ( - 7E2FA9C728B85F8ABDFD48E2E7464173 /* PBXTargetDependency */, - 73E7B6D604F73C19E0CB151CD298F2F1 /* PBXTargetDependency */, - 500148AEC162FD256C58414B855EB821 /* PBXTargetDependency */, - 0F001FF12DC62D90569270754E08BDCB /* PBXTargetDependency */, - 204FE573B4737B484DD509B24ED4E6C9 /* PBXTargetDependency */, - 1A9E41621ED1BF3ACEE8C1196E9155F6 /* PBXTargetDependency */, - 28E6F50E1B1E66FEEEE9EAB5082A8E6B /* PBXTargetDependency */, - 0DB00D2A54E71F4530FFF0BC8C3F5AE5 /* PBXTargetDependency */, - AFFDDAD6F28C92E5ACDB1B33795A2587 /* PBXTargetDependency */, - D63626AFB8AD6EBEB48526C74633EAB4 /* PBXTargetDependency */, - 6D080CC565BC643B5472C1048F3D63A4 /* PBXTargetDependency */, - 936CEF445502C289517BC766F0F9EEE0 /* PBXTargetDependency */, - EDD1018AE5A3C9EBC7E9D843CB7D3EA4 /* PBXTargetDependency */, - 1B69773FCFC1C7D73810DDA1B8D0F84D /* PBXTargetDependency */, - C53129DD70F991A33EBE855904DB6F72 /* PBXTargetDependency */, - 0A35DB65BCBB4445A9B99C76156E34A5 /* PBXTargetDependency */, + 4A9525469F8E46F3883CC6599FCCFEDB /* PBXTargetDependency */, ); name = "Pods-iosApp"; productName = Pods_iosApp; @@ -27204,148 +220,18 @@ en, ); mainGroup = CF1408CF629C7361332E53B88F7BD30C; - productRefGroup = 85F37E7F441CC1F63730E682742157AD /* Products */; + productRefGroup = 1F86AA6785DF34AFD5A71790761717DE /* Products */; projectDirPath = ""; projectRoot = ""; targets = ( - 73CDC3D182DB953135F62609681B443D /* abseil */, - 445FD4CB16BB7BEE2D1C404951CDE14A /* BoringSSL-GRPC */, - DD28B439BE8B17D9339D9B526F144347 /* FirebaseAppCheckInterop */, - 6AE4A3D573DED275B034E20506596C62 /* FirebaseAuth */, - 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */, - 25E9E9A17BC3F670357D7385C521E48E /* FirebaseCoreInternal */, - DBA2B63E3A5FE83FE89E731664C9269F /* FirebaseFirestore */, - 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */, - 1C5E43B0A9555E7C2E43A6D7C8A23CF6 /* gRPC-C++ */, - 3B8CAC3956E59F928387D0C6310E3B37 /* gRPC-C++-gRPCCertificates-Cpp */, - 50F380A87A4FC4EC7EE3AC9BDADB6D2D /* gRPC-Core */, - D676E21115185671D7258A56944ABE98 /* GTMSessionFetcher */, - 9307B7A119490930CF70393AB529AAC1 /* leveldb-library */, - D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */, ED39C638569286489CD697A6C8964146 /* Pods-iosApp */, - 2BBF7206D7FAC92C82A042A99C4A98F8 /* PromisesObjC */, - 962124A759E27BE4799ED74362BED884 /* RecaptchaInterop */, 8777C9F6889E59EFFD631D80AEE9048B /* shared */, ); }; /* End PBXProject section */ /* Begin PBXResourcesBuildPhase section */ - 022F777EB1F6D0EA006CBFFE822831E7 /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 2534563E327EA182734C00E68888187A /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 29DCDC7C6A77BEBDCF5BAAE665F1650F /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 439A4FA5ED057CE339AA04B937B81A73 /* gRPC-C++-gRPCCertificates-Cpp in Resources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 49CAE47F955FD4289F7B4D248DA81979 /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4A15885780B25E5873C8D5E9B970FC39 /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 51682BD8365267774DD3C923AE9D2EC3 /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 527328A557334535CFC733BE73215B1E /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 5E4D5C06F46F0AE334450CE4E5705A17 /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 697C96A714E224BA7A05A02BF47A0BA7 /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 6C2C66F63BB1D7A8081DABE2105CCD65 /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 88595455BBF745E0FEF0CB81691DB84D /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 8E2B1FA51429C1940B49084A6F66493A /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 9CE3B3510B175CF7550003336BB4EE88 /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - B1F63AED196134A415786E601A68C487 /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - CAC5270EC485BCEFB83B08C352B59D17 /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 7AACCE58C08F904D8DF48E956B5495BF /* roots.pem in Resources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - E2EFE066D33CED4ED73EC7E0C1CE59D5 /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - FC7890C1D544CA63007BBD0E42C036C8 /* Resources */ = { + 0EC1C62FF9B25EAB2D236D122EAF4C98 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -27355,78 +241,6 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXShellScriptBuildPhase section */ - 3CBC15B7378233E77E685467F0EE88E2 /* Create Symlinks to Header Folders */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputFileListPaths = ( - ); - inputPaths = ( - ); - name = "Create Symlinks to Header Folders"; - outputFileListPaths = ( - ); - outputPaths = ( - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "cd \"$CONFIGURATION_BUILD_DIR/$WRAPPER_NAME\" || exit 1\nif [ ! -d Versions ]; then\n # Not a versioned framework, so no need to do anything\n exit 0\nfi\n\npublic_path=\"${PUBLIC_HEADERS_FOLDER_PATH#$CONTENTS_FOLDER_PATH/}\"\nif [ ! -f \"$public_path\" ]; then\n ln -fs \"${PUBLIC_HEADERS_FOLDER_PATH#$WRAPPER_NAME/}\" \"$public_path\"\nfi\n\nprivate_path=\"${PRIVATE_HEADERS_FOLDER_PATH#$CONTENTS_FOLDER_PATH/}\"\nif [ ! -f \"$private_path\" ]; then\n ln -fs \"${PRIVATE_HEADERS_FOLDER_PATH#$WRAPPER_NAME/}\" \"$private_path\"\nfi\n"; - }; - 428707476351FD3015BF4A5FED59D18C /* Create Symlinks to Header Folders */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputFileListPaths = ( - ); - inputPaths = ( - ); - name = "Create Symlinks to Header Folders"; - outputFileListPaths = ( - ); - outputPaths = ( - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "cd \"$CONFIGURATION_BUILD_DIR/$WRAPPER_NAME\" || exit 1\nif [ ! -d Versions ]; then\n # Not a versioned framework, so no need to do anything\n exit 0\nfi\n\npublic_path=\"${PUBLIC_HEADERS_FOLDER_PATH#$CONTENTS_FOLDER_PATH/}\"\nif [ ! -f \"$public_path\" ]; then\n ln -fs \"${PUBLIC_HEADERS_FOLDER_PATH#$WRAPPER_NAME/}\" \"$public_path\"\nfi\n\nprivate_path=\"${PRIVATE_HEADERS_FOLDER_PATH#$CONTENTS_FOLDER_PATH/}\"\nif [ ! -f \"$private_path\" ]; then\n ln -fs \"${PRIVATE_HEADERS_FOLDER_PATH#$WRAPPER_NAME/}\" \"$private_path\"\nfi\n"; - }; - 68C1AB7B8BF00A6896C9D0BE1D5CC486 /* Create Symlinks to Header Folders */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputFileListPaths = ( - ); - inputPaths = ( - ); - name = "Create Symlinks to Header Folders"; - outputFileListPaths = ( - ); - outputPaths = ( - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "cd \"$CONFIGURATION_BUILD_DIR/$WRAPPER_NAME\" || exit 1\nif [ ! -d Versions ]; then\n # Not a versioned framework, so no need to do anything\n exit 0\nfi\n\npublic_path=\"${PUBLIC_HEADERS_FOLDER_PATH#$CONTENTS_FOLDER_PATH/}\"\nif [ ! -f \"$public_path\" ]; then\n ln -fs \"${PUBLIC_HEADERS_FOLDER_PATH#$WRAPPER_NAME/}\" \"$public_path\"\nfi\n\nprivate_path=\"${PRIVATE_HEADERS_FOLDER_PATH#$CONTENTS_FOLDER_PATH/}\"\nif [ ! -f \"$private_path\" ]; then\n ln -fs \"${PRIVATE_HEADERS_FOLDER_PATH#$WRAPPER_NAME/}\" \"$private_path\"\nfi\n"; - }; - 803A2ADFA3D64086E11CFEFC4C6CFBD9 /* Create Symlinks to Header Folders */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputFileListPaths = ( - ); - inputPaths = ( - ); - name = "Create Symlinks to Header Folders"; - outputFileListPaths = ( - ); - outputPaths = ( - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "cd \"$CONFIGURATION_BUILD_DIR/$WRAPPER_NAME\" || exit 1\nif [ ! -d Versions ]; then\n # Not a versioned framework, so no need to do anything\n exit 0\nfi\n\npublic_path=\"${PUBLIC_HEADERS_FOLDER_PATH#$CONTENTS_FOLDER_PATH/}\"\nif [ ! -f \"$public_path\" ]; then\n ln -fs \"${PUBLIC_HEADERS_FOLDER_PATH#$WRAPPER_NAME/}\" \"$public_path\"\nfi\n\nprivate_path=\"${PRIVATE_HEADERS_FOLDER_PATH#$CONTENTS_FOLDER_PATH/}\"\nif [ ! -f \"$private_path\" ]; then\n ln -fs \"${PRIVATE_HEADERS_FOLDER_PATH#$WRAPPER_NAME/}\" \"$private_path\"\nfi\n"; - }; BEA8885189D408D600647BDC228A6A20 /* [CP-User] Build shared */ = { isa = PBXShellScriptBuildPhase; buildActionMask = 2147483647; @@ -27440,2163 +254,31 @@ /* End PBXShellScriptBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - 049ADE799CE0CFD272627217E465AB47 /* Sources */ = { + EB28A529759E3D2117E28CE3CB8387D3 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 281EE591AE66AA98F8FB69CED0D2F9EC /* a_bitstr.c in Sources */, - 730E050A35900F01EDF035F1867F3C4A /* a_bool.c in Sources */, - 9EE1EB564985AEAE11D3E5E9A8B82052 /* a_d2i_fp.c in Sources */, - 22C4EDBF6E3CC30DD47BE9ECA8160438 /* a_digest.c in Sources */, - B13A34CC97DC784ECCA0E138DC28CD2C /* a_dup.c in Sources */, - 75DC870DEFEA79CC413C860D5D726060 /* a_enum.c in Sources */, - 7483C90B1EDA0D697C6C9FFE7F097111 /* a_gentm.c in Sources */, - 16568D22491997EB5930F81B65A72C54 /* a_i2d_fp.c in Sources */, - 987EA066020262193F602053033262D6 /* a_int.c in Sources */, - 6474E670F5B5A9E9682969DE399051C3 /* a_mbstr.c in Sources */, - 4DC90A831986D02F34E9C36C601A1239 /* a_object.c in Sources */, - D47F50D2488A2ACC6B3A8C33CD052CCA /* a_octet.c in Sources */, - 3EB01084F7C7A3CA9665B488E81A7172 /* a_print.c in Sources */, - 850F89C3A40F8BA6DE30FB246847108E /* a_sign.c in Sources */, - C7B05582D122AEE22CC081A6BBFE7A7D /* a_strex.c in Sources */, - 2C8218CC375A2ED7F3B3381911E7C328 /* a_strnid.c in Sources */, - 72F35B80CC0C36BBAE6B1BE08D8A7B3F /* a_time.c in Sources */, - 8B165C9139F45A1F9A3FB672887FA0EB /* a_type.c in Sources */, - 04690071C3AC02149B2A882E1F975B0B /* a_utctm.c in Sources */, - 8428E9A27008AC3726F21BDEAC7C97A4 /* a_utf8.c in Sources */, - 73F4EFAD79C1FBAA3E9FD1CD5327D8AF /* a_verify.c in Sources */, - 365993C1CFC9DCE6503ED73B08025479 /* add.c in Sources */, - BA65257AEBEB32771531CCDD1EB00C59 /* aead.c in Sources */, - 9B80107AB9B906283D6F9D1F94C1D470 /* aes.c in Sources */, - 340EECC58B342BE7062700332F0AE559 /* aes_nohw.c in Sources */, - B5CB927B7C437D0ACB550E4ABC40F2D5 /* algorithm.c in Sources */, - ED572E39B2FA21DC05048F83445E3BD8 /* asn1_compat.c in Sources */, - 0961F7138BD9D4DC04A8359ECAABA06A /* asn1_gen.c in Sources */, - 874CB21AFE49617E8A9CC1EF02013AA2 /* asn1_lib.c in Sources */, - 57EEEE3C410126022A45886E07BB26A2 /* asn1_par.c in Sources */, - 17D5CE14DC89AF7F6F6E014CF0701944 /* asn_pack.c in Sources */, - EB884E2C373A5CA5B2AED28323633B86 /* base64.c in Sources */, - 671E73E2CB36C5462293344715AD73E2 /* ber.c in Sources */, - 3102174C796DCF25A738EF3DF9602A83 /* bio.c in Sources */, - AAC6C38ACEBAEC20A175BAA0238568BE /* bio_mem.c in Sources */, - 276BB4DA6A4FB1EC129297548B373636 /* bio_ssl.cc in Sources */, - C3CFDA62C9039FA5DB4601BB01F63DE0 /* blake2.c in Sources */, - E51DA1393F26A113B9B704B1EABEEA2B /* blinding.c in Sources */, - AC8A89CBA4602C2184B5B217156DE8F2 /* bn.c in Sources */, - 2A8C5AEC1B64F670F59BAD514FAC91CE /* bn_asn1.c in Sources */, - F2C7A81C7B7B63E8858666B2A1B2B3DC /* BoringSSL-GRPC-dummy.m in Sources */, - 91C02613BD3E4598A751B14B453A1C9C /* buf.c in Sources */, - D20CA702B0FC9633701FB124C7C30F5A /* by_dir.c in Sources */, - 657DA39B6E389053DE3E1B451462EE1E /* by_file.c in Sources */, - AAA830D5480B20A81503456692DA61A7 /* bytes.c in Sources */, - 433FE1EE717CEB646B426E84CEB78D91 /* cbb.c in Sources */, - 3AEE68AE1DE48218555DABA31E58A707 /* cbc.c in Sources */, - 5346D60970BCCE423A325112E4030251 /* cbs.c in Sources */, - F921B7DACA0BA267FE50DFCD21404B84 /* cfb.c in Sources */, - BE40D7E7977FC5A221CF473660FF9DD8 /* chacha.c in Sources */, - 5D0659D86B5F620757704698C845027A /* check.c in Sources */, - E7ED43C016E400A8188DE76BCCC28377 /* cipher.c in Sources */, - A18EEA6F4D13B71BB34F3D414976ECF7 /* cipher_extra.c in Sources */, - C785B1C2D9001D4F312FBD43BD0AEF85 /* cmac.c in Sources */, - 1B7F451757829C6DD7FA94AC55497758 /* cmp.c in Sources */, - 6F4ACF713352ECE2A9D5BFC25A5B3C49 /* conf.c in Sources */, - 62AFD8FAC3A8FF7E2ABEEA9D3F72D69E /* connect.c in Sources */, - 982D6D36FA92F72BA679C753812D3568 /* convert.c in Sources */, - 697796B2D16A1B28426C06F5F09F1DD2 /* cpu-aarch64-fuchsia.c in Sources */, - 45FD39559635B25C7F4EE0D1C7FC7347 /* cpu-aarch64-linux.c in Sources */, - 6E46189289F3D08D50BB8D01EA753210 /* cpu-aarch64-win.c in Sources */, - 00B20E557FB4C8C5FC0BDBAC1E09668F /* cpu-arm.c in Sources */, - 1776CC8AD218A37AF9E788A0A8E909CC /* cpu-arm-linux.c in Sources */, - 76FEA5AB8D272C1C4BFCEC0458B4FB24 /* cpu-intel.c in Sources */, - 75270434D4C8EEAFD524F607556A73B4 /* cpu-ppc64le.c in Sources */, - 38122C9FC1CC8A2ED23F6AB3DE16209D /* crypto.c in Sources */, - F54D372051F05D628AF1FF2FFFA70A60 /* ctr.c in Sources */, - 1DEB74353AFE8F17A009938E202FC704 /* ctrdrbg.c in Sources */, - 6F4A211E1D31384AFB08E75275AE6204 /* ctx.c in Sources */, - 83A8FF6EF1B123869CC242E83AABE446 /* curve25519.c in Sources */, - 2A1BEBC6A71D6D8EE6D36E0BDD9D30AD /* d1_both.cc in Sources */, - DA5D9F4E6BCDBB8B8DFCFE90473E3BA2 /* d1_lib.cc in Sources */, - D49C2CCA93137F12D89CF20B08BCE08A /* d1_pkt.cc in Sources */, - 9DB69E9124F97E070315FC8F91CBC153 /* d1_srtp.cc in Sources */, - B2D3C37641244DC658B4FF7CD90108DE /* derive_key.c in Sources */, - E5B97CC92850848A7581E9785A726163 /* des.c in Sources */, - 973557F5FCFA4C070C8C5F69A5BC97B2 /* deterministic.c in Sources */, - 122082CDD7BA4048A21BED21D4A5A143 /* dh.c in Sources */, - 09018BFE34D2A4029AAD43EEE7B62F8A /* dh_asn1.c in Sources */, - 402871F776DAFA2B55F157A7E7AEFE98 /* digest.c in Sources */, - F6A62C5592834227AF5B317061DBE640 /* digest_extra.c in Sources */, - FBA6537E9B780288BF3E12A638E8ED19 /* digests.c in Sources */, - 3E47134CA07DD8B2B3CA6F5B48CEE10A /* digestsign.c in Sources */, - 99DA4B5EC19DF79EC213857E35CC9F39 /* div.c in Sources */, - 4880B318D72F7CFB075B70F58381AF2D /* div_extra.c in Sources */, - B0597BC4C4E109175016B7A181D4FFC5 /* dsa.c in Sources */, - 0B8923A469BC009E72BBF07DB059E63B /* dsa_asn1.c in Sources */, - C6DE6F2A532765314AF3B5F86D57E5A3 /* dtls_method.cc in Sources */, - 0F5F082BE59961CA847573B72C803F7D /* dtls_record.cc in Sources */, - BB7AB92C30317FC194842B114AD5D9F4 /* e_aes.c in Sources */, - 11ECED71F2D7A5DD82AE26BDD68662C3 /* e_aesccm.c in Sources */, - 5BB6956F9E8A2DABEE6AC8B779CA6282 /* e_aesctrhmac.c in Sources */, - 436D7EB9844246EFA9EB162188C1EA28 /* e_aesgcmsiv.c in Sources */, - FADAFD19A2041C1FA2B17CD549D8A06B /* e_chacha20poly1305.c in Sources */, - 54DE959E0CBFC548118C0566225CC5F4 /* e_des.c in Sources */, - 3228D5CC6814E7EC8DB313D08E489260 /* e_null.c in Sources */, - 956ED52BA8EEF9F353EBE376BC9F298F /* e_rc2.c in Sources */, - 47F6F464A0FFA81A04C1B67332673B70 /* e_rc4.c in Sources */, - CEC8E258984E4320F37E8A912752BB37 /* e_tls.c in Sources */, - 0E22D207DDB7098C12CDDEA64543689F /* ec.c in Sources */, - C53607689AE5849C3EE4E45965E59BA9 /* ec_asn1.c in Sources */, - 163A752ED428F7A1655C118A4172027E /* ec_derive.c in Sources */, - FF095BD48EC4B13E12E208DAABC78275 /* ec_key.c in Sources */, - C3249EBA62BC5D7C5B4C56652818A657 /* ec_montgomery.c in Sources */, - F121A3A52426BC41CF67083D87192D18 /* ecdh.c in Sources */, - F18F6031DDB35548FB1F1DADB441CA31 /* ecdh_extra.c in Sources */, - 0142254483E247C4764E1A9D64E2FAD8 /* ecdsa.c in Sources */, - C4570FBB5F02518957B39BBA095C0CB9 /* ecdsa_asn1.c in Sources */, - C8FAEEECE453A396FA203BFCE0E4891F /* encrypted_client_hello.cc in Sources */, - 06C45797EFB095CDB25990B80DC6D591 /* engine.c in Sources */, - B6BF6CD7F6481A752F8CE15130C3B139 /* err.c in Sources */, - 2DC06BF5161FD044FA0C82D1020957D3 /* err_data.c in Sources */, - 81E6EA4C923267754FD4E54271FD75DD /* evp.c in Sources */, - ADD5F1AC58B0033D8CACC32BC6A63DDF /* evp_asn1.c in Sources */, - 06E39983DBAFEA542BEDF36AE875C4C5 /* evp_ctx.c in Sources */, - 100FD43E0C8BFB954FAA4EE3B9582D9D /* ex_data.c in Sources */, - D2CE239EF710D24A75E1F9DD4C11EB43 /* exponentiation.c in Sources */, - AE63BC127976FA325C9833A4B189BD82 /* extensions.cc in Sources */, - 85F981CD34F601345EE6F3FE33296AEE /* f_int.c in Sources */, - 6B7F9EDE4D82168029DC22D8DBDF09B8 /* f_string.c in Sources */, - E4BA36A41438076B1189E5AF2899E52C /* fd.c in Sources */, - 3BF815317F91D9530F839FB5D2E7D880 /* felem.c in Sources */, - C6DF13324C9B0889D81CDCEFE879A0A9 /* file.c in Sources */, - 686D02C284800BE5616191C38BBE2053 /* fips.c in Sources */, - 6C70A456E327799B4D3D745889D694C0 /* fips_shared_support.c in Sources */, - A89065D49CBAC2616B9335FE699A9B80 /* fork_detect.c in Sources */, - 3B8E7D10BBF455EE3F6B4501F42E2AFC /* forkunsafe.c in Sources */, - E5AC8C873602265E65F722DAB069CF6E /* fuchsia.c in Sources */, - C6C9C6A2A197CACAD326530A454C344D /* gcd.c in Sources */, - D88307B5C253F901AFC75FA04EC5FA1F /* gcd_extra.c in Sources */, - 965BDE3F4A4F7635E36EE9DB466C2E4B /* gcm.c in Sources */, - 0C62E66BC2802A4E4396E94A52E587BA /* gcm_nohw.c in Sources */, - 499BA8B2B50FDEA72C2557F601B9B1F0 /* generic.c in Sources */, - 2748B2A8786D43F4C6BAF8FABE571160 /* handoff.cc in Sources */, - EFF8200AE6C3503099ECE6E7B7152A14 /* handshake.cc in Sources */, - B216D5D6D9F356108C8E1544D8C81980 /* handshake_client.cc in Sources */, - F039D7A144D4E487A4BCC13AB937F471 /* handshake_server.cc in Sources */, - FDC6C4BEC185635B007189BAE8284602 /* hash_to_curve.c in Sources */, - CEB4DDF4648BBF4C978CEF43641DAF8B /* hexdump.c in Sources */, - FC7A8A78CA7EF8016D0DC47465C76EA6 /* hkdf.c in Sources */, - 1BA416B3E26FF177DE91C9B340E09C89 /* hmac.c in Sources */, - 0CC01C6BEE2099E6E4B57FD44BD7A916 /* hpke.c in Sources */, - F58F4B29F57BCD42BF7AB0101DFE19A7 /* hrss.c in Sources */, - 82822A254FF7853CCA7B65C3B7D49BA4 /* i2d_pr.c in Sources */, - B2A8A0AEF702A1435531E53D4ADDACBC /* jacobi.c in Sources */, - 533FD1FB5369C194DF130791956AEAB2 /* kdf.c in Sources */, - A4404DF72CB7146DEF4D5433F92EB66A /* key_wrap.c in Sources */, - A16CE54A5813C71EC90FA4DB4E4388E1 /* lhash.c in Sources */, - BB111206BD42FCB8A7E5A1F322C3F8BB /* md4.c in Sources */, - B6CA8FE315CE8B0B703F9DCA594ADE13 /* md5.c in Sources */, - CD9CD162CA94FA8D681B218C964387F0 /* mem.c in Sources */, - 3761842EBBF86E33E63066E8B06955CB /* mode_wrappers.c in Sources */, - C028F9A39AEFADB9B037143F062ECCB5 /* montgomery.c in Sources */, - 628A62CEA77DA8C7E15C0B8F3AE119B6 /* montgomery_inv.c in Sources */, - A0267F587AE95A1B90CE6EEB723E72C4 /* mul.c in Sources */, - C83C9A411E19D0B8A862CFD42C3A9A99 /* name_print.c in Sources */, - 1395738F5AEBBC9B2599B74A35C45567 /* obj.c in Sources */, - CAEE03BB929F2D0448BA80B359722C25 /* obj_xref.c in Sources */, - 7E3F4CCC67F5BFFA63B0AB4934B5D12D /* oct.c in Sources */, - 9923C5927072AAE226BC7AD530206556 /* ofb.c in Sources */, - E5E85DBCC5D93F0C4A17FEB607E5AF94 /* p224-64.c in Sources */, - 6EA7E3BF095FF1ABC0FB4647A3CFF860 /* p256.c in Sources */, - A2C95346F84F598EA9BCA134F849F45C /* p256-x86_64.c in Sources */, - F6688BE16F0BEE518077A00F7418C642 /* p5_pbev2.c in Sources */, - F57904A68E84A1CCCC4EE4BFA50D0988 /* p_dsa_asn1.c in Sources */, - 3177E2CF2695B6498FBE6499CA8BD1C0 /* p_ec.c in Sources */, - 580286134C8A0F2B000C9AA936EE5E99 /* p_ec_asn1.c in Sources */, - E591043515205D2A9007D93645501A8A /* p_ed25519.c in Sources */, - D83A683ECC20FBAA40F2236D557EF166 /* p_ed25519_asn1.c in Sources */, - 9425127CE04B4E0A0892387A4A5C2975 /* p_rsa.c in Sources */, - 4D696411C3EF8D0313CB91178331FAC8 /* p_rsa_asn1.c in Sources */, - E6AD68E3BA1048F255F692340EE47E8F /* p_x25519.c in Sources */, - 53D80DB30A2F63FD06E8683C9DFAAEF8 /* p_x25519_asn1.c in Sources */, - 07DA4239E18ABDBE543E027A26C72BFD /* padding.c in Sources */, - AE488864C7CCD1ECABD78D92EEBD4406 /* pair.c in Sources */, - 41C9752599B5C5E56751547A11C13B02 /* params.c in Sources */, - DE988C91B8B4F4AE407D9F16D1009BE5 /* passive.c in Sources */, - 37B9905ECB51FD905E9ECC243F99B3B1 /* pbkdf.c in Sources */, - 3D71A3C64FF23894A02E2078757839CA /* pcy_cache.c in Sources */, - F6E6E632F14B54FFEEA778141D9FFF5E /* pcy_data.c in Sources */, - 73241C99CA8EF311E501C0757818A681 /* pcy_lib.c in Sources */, - 939D32F268CE14F712078E5077D28282 /* pcy_map.c in Sources */, - 9153050D9F107A460B5AFAD0279D1213 /* pcy_node.c in Sources */, - 78790A517F3B8B2021C3983BF8123139 /* pcy_tree.c in Sources */, - B6E2B7FB3A6F1D580D182F511E5DA370 /* pem_all.c in Sources */, - AC6675A7DAA9C624F25DD5E5FDE35566 /* pem_info.c in Sources */, - 9CBF30013ECB20BE8DEB8B100ED4B672 /* pem_lib.c in Sources */, - 9CA9BCD02E64CB8FC656DC8B8F49FB2A /* pem_oth.c in Sources */, - 5D255495D5061FDEBD6BBC0EF95339B8 /* pem_pk8.c in Sources */, - 1CBE4E1EC5BA9E4E049A3780F78B7CBD /* pem_pkey.c in Sources */, - AA404F48187717E7AC80823D27A1669D /* pem_x509.c in Sources */, - 8B2DC155CDAE81A9BF027BFDC87B578D /* pem_xaux.c in Sources */, - 77E5926D13BC9D0970D00F9D79F54700 /* pkcs7.c in Sources */, - F5CF499967153E3DBE2FCDCE3F43BD64 /* pkcs7_x509.c in Sources */, - B2E1463DFC017D23D17B6F407DCD9DE4 /* pkcs8.c in Sources */, - DB1F848A9EC7EE9257FA5E3A53883CC4 /* pkcs8_x509.c in Sources */, - 013D772A418C47A62E8B4C0A50B8FA8C /* pmbtoken.c in Sources */, - 1CFF2A7F9FDF287A21A533BB24E23848 /* poly1305.c in Sources */, - 5224714A7FA5E0141B0B0A551673C78C /* poly1305_arm.c in Sources */, - A2AE3DE21ECB026F7122629DF8AB2226 /* poly1305_vec.c in Sources */, - 3BB66D277B9E52EFE92E2ABD3C0F32BC /* polyval.c in Sources */, - ED89E27C442EE37F772A2487CD2035D7 /* pool.c in Sources */, - 0E5E658110729B8B1D3E425F0290978C /* prime.c in Sources */, - 173BF10ECA8400F00AB97547363F539F /* print.c in Sources */, - 782367BEF088F7E4F6D6FC5219834045 /* printf.c in Sources */, - A8B35A690233E3D30F984A0BDF9A7E15 /* rand.c in Sources */, - 441189BF8F1D7095C9466461DC2E17C2 /* rand_extra.c in Sources */, - 30A0060F8B8BBAECB029B446129CF03E /* random.c in Sources */, - D2A4E752BC6F6CC4339334FDE332883E /* rc4.c in Sources */, - BD40C689B48D793906F3A049EA42142D /* refcount_c11.c in Sources */, - 8ED40EA8FC9AFD36D03F0971C28D1AB3 /* refcount_lock.c in Sources */, - 2191D22B111E3040D1A87A54DF6A61C1 /* rsa.c in Sources */, - 2BB960B1FA87DEF1C9A441E2F1FCDD89 /* rsa_asn1.c in Sources */, - E887E6BD76FD0ED65DCA66722B1092FB /* rsa_impl.c in Sources */, - 8252FCBC0401026DA8A172FB8B92DEC1 /* rsa_print.c in Sources */, - D1C41EDAD64DAA0859C2F293FFCA3DDC /* rsa_pss.c in Sources */, - 53B802E2C760498F29FCC1FE1184F2D2 /* rsaz_exp.c in Sources */, - C2C2677E06B7256EFF7C4885CBCCCDE4 /* s3_both.cc in Sources */, - C05CA430885962E2A6DE9A597CAC3257 /* s3_lib.cc in Sources */, - D17283C991072CB46A790F96ACAF4763 /* s3_pkt.cc in Sources */, - C41F7388320E7DC0C82C1325A603A14F /* scalar.c in Sources */, - 2E1FEE5502FA52901C28A0F03DE609AD /* scrypt.c in Sources */, - DDCF07D0BFAB9F5F7607C539E1F3DAC6 /* self_check.c in Sources */, - 1B57B8BA0F7BACF9015F84C8D8E4E1BF /* sha1.c in Sources */, - 241D71E14F2EC6E0175BF5C5E5A61E0E /* sha1-altivec.c in Sources */, - 4DCE33139B8EF06D463AA32B96E6C072 /* sha256.c in Sources */, - D6CA942E596C1C4F0F2531C99658A12D /* sha512.c in Sources */, - DD10AF0E27D3E44239D7029E76CD0D45 /* shift.c in Sources */, - 4BD9EEDB43A6ADFE7FB3A33A1117C5D0 /* sign.c in Sources */, - 5A646D6C6D5E0F13C5CFFA9FB6CE7B01 /* simple.c in Sources */, - 763AC2F09B2BDEFA2F51CF17A19C128D /* simple_mul.c in Sources */, - CC8EBD8E44B0C02827BB56717C84B7B9 /* siphash.c in Sources */, - 03FEE7E7E5A88F96DE7593AAC1115C51 /* socket.c in Sources */, - 76EFE1FC6BFFA7220AE3E8A18E1D6B09 /* socket_helper.c in Sources */, - BD99DAA9C4B9C38D80411136110DDE66 /* spake25519.c in Sources */, - 384FE324917094696C2B22289D51F83D /* sqrt.c in Sources */, - C7744000080E5B1B42341AFAB72BB976 /* ssl_aead_ctx.cc in Sources */, - 674CECAF0DECD6AD9BE41E4C97FC61F0 /* ssl_asn1.cc in Sources */, - 78BFC2213781A1A5FC1FCE55A7A9C89F /* ssl_buffer.cc in Sources */, - F7980689FEA2262BA2E0707989342E62 /* ssl_cert.cc in Sources */, - 36B2A49859ACC0F6CE643B93F0B88422 /* ssl_cipher.cc in Sources */, - 75042CDE5F25493671136B6AA37E7CA4 /* ssl_file.cc in Sources */, - A248B0149DD72D33ED6FFA0562E27DD4 /* ssl_key_share.cc in Sources */, - 122D37B38B08D4DE237F98CA7A1850B5 /* ssl_lib.cc in Sources */, - 251000F0D046355BBD2A1DB1172645A4 /* ssl_privkey.cc in Sources */, - 2EFBFE2388CCB4DC71C4201DA702F4C7 /* ssl_session.cc in Sources */, - A6A8C6FA0B245A36F5BB0107D9905DF4 /* ssl_stat.cc in Sources */, - 4E19C4D9A28C9D327E498D00522A49FC /* ssl_transcript.cc in Sources */, - 2F3A5A9388C6F820361FFF997518B77F /* ssl_versions.cc in Sources */, - EE3A2A5952F6BC24FE8BAE9B6160176C /* ssl_x509.cc in Sources */, - 68F9F53580F2C8E06EB3026816E0AABB /* stack.c in Sources */, - 4CE00043BD23B10A10B60BF8815B4EF4 /* t1_enc.cc in Sources */, - 0C36B9A3D25C7D0DFF5136F64F481835 /* t_crl.c in Sources */, - CA01EF622957A1BFB6AABB8D1B24EB23 /* t_req.c in Sources */, - 3F7045C38F6CEB76A1EEEF3DC8E4E877 /* t_x509.c in Sources */, - 712D89B60741C8A6730A0C98D1FBD02A /* t_x509a.c in Sources */, - 2E5904081FA45A6D9C0B78AA64EA23F3 /* tasn_dec.c in Sources */, - 0563546F6F48912D6C11AD5DACA14638 /* tasn_enc.c in Sources */, - 19A5E4B2BDF5C7B48415FC32B9A96919 /* tasn_fre.c in Sources */, - 213DE200D121D71562642C1210748A29 /* tasn_new.c in Sources */, - 6F96BF5B71A93C366124E1883ED568BB /* tasn_typ.c in Sources */, - DA4F0919830717655451E480427D58B8 /* tasn_utl.c in Sources */, - 749356DAF78E68EF8CEF1A8BD2A50C9E /* thread.c in Sources */, - D34007D0D382E4F0250289E2E97C4126 /* thread_none.c in Sources */, - 9DD3B03D41258DCBF365CC8339CFEB50 /* thread_pthread.c in Sources */, - E41177D05D8B2E22D03EBB73E5F2CD27 /* thread_win.c in Sources */, - 8D5FCF330DD308AE602885C70AC799C5 /* time_support.c in Sources */, - 6886525C490C009BD0F489D6E08EC588 /* tls13_both.cc in Sources */, - 6983905BE2976B7535DE7BFAABD62C50 /* tls13_client.cc in Sources */, - 2B4B77CEE8DA9A66788356F2E573F8D9 /* tls13_enc.cc in Sources */, - 52CC7D22EA29D187D7DE070F4FA58620 /* tls13_server.cc in Sources */, - 64629EF452378DACD27FC3676F85230A /* tls_cbc.c in Sources */, - B85367EE6C9307B55C2085B4ECA85BFA /* tls_method.cc in Sources */, - AB047A861921DCF1BBE19C9AF7EE8C09 /* tls_record.cc in Sources */, - 0D0E04992162B88665C49C01B902BEE1 /* trust_token.c in Sources */, - A500AF3583680B5718B7EA757905FF7A /* unicode.c in Sources */, - 2E7F4C78F621FAEAB52F87C9768FCB7C /* urandom.c in Sources */, - 94BF33D83311CBE3F988A55665225CCC /* util.c in Sources */, - DE0A647129811A32D60AD458AA81C678 /* v3_akey.c in Sources */, - F6A30CEC4AD912808360AFADC5B43634 /* v3_akeya.c in Sources */, - 22A225BF09C82BBC9B12FFA8DBF489D6 /* v3_alt.c in Sources */, - 59D0CE2D3C0C37FBB85F5E21B8119633 /* v3_bcons.c in Sources */, - 5F2AFBAFE01FE9B52CA73C85308F9C97 /* v3_bitst.c in Sources */, - 247D986A529D6803EB0738F24DC57D48 /* v3_conf.c in Sources */, - 3A2A7B66F06DF51011432290A7EB5964 /* v3_cpols.c in Sources */, - 4DD869388EC38025B828D1C323343FB7 /* v3_crld.c in Sources */, - 0213D2FDADA107F3672599CC776F8955 /* v3_enum.c in Sources */, - 4D9E68956202972D88DE9E6AE420A378 /* v3_extku.c in Sources */, - 3F89324946B36ABC33DBAA96B0FD0714 /* v3_genn.c in Sources */, - 0823BD485466CD4F60EA3CAD5DBD1504 /* v3_ia5.c in Sources */, - A981C99FDCDD83A2F58DC58F753A7877 /* v3_info.c in Sources */, - D6F97D40CE1E504241FFD323A11B5022 /* v3_int.c in Sources */, - 03FB75EB23C87FBFF55D3EBF9B357E5D /* v3_lib.c in Sources */, - A7461A18138653B230B34DCD5C409443 /* v3_ncons.c in Sources */, - 7626F664FFA62394C14D579AD38E9F0F /* v3_ocsp.c in Sources */, - 9BE8EAA282BA8B2DF208F37BBE100735 /* v3_pci.c in Sources */, - 007D479DC405A14BBC2CCC302CBDE09A /* v3_pcia.c in Sources */, - 6ACFBADD55BAAABC453E077598241938 /* v3_pcons.c in Sources */, - CD1B3C86DEC378A8000199567220CE75 /* v3_pmaps.c in Sources */, - 325605C45BA26F78E045D2BEC6950941 /* v3_prn.c in Sources */, - F8FD3FF4A5C4E776AD8D27E4B5B50ADD /* v3_purp.c in Sources */, - 521971A3AE28E4E3020BD34675CA702F /* v3_skey.c in Sources */, - 30CC356F6204461411BFAC5BCDF2D0B6 /* v3_utl.c in Sources */, - CBB889971EE7420CA4D0F926413EFD9A /* voprf.c in Sources */, - BB025C910C02CC85E51427AFF05FD31B /* windows.c in Sources */, - A8E60E7C944D6B778800FDA0BCFFB179 /* wnaf.c in Sources */, - 809F45F1FF83D592CAB19D30FD28FCCB /* x509.c in Sources */, - 1E8467F8C6C3587513506B3E7EE13A1F /* x509_att.c in Sources */, - A5B68C7374EE6F24F00D3B3E5B92040C /* x509_cmp.c in Sources */, - FB75D2319DD64400BF881885FA30D95B /* x509_d2.c in Sources */, - E89FA599293E30DD1D6A23ADA0471A71 /* x509_def.c in Sources */, - D8BDBCCAA61BFAC457385A5AE16244AA /* x509_ext.c in Sources */, - 60576A17090F3C0131CECDFF1FEA3ED6 /* x509_lu.c in Sources */, - 8D30D9F282091AA860A0862A87FFBB2C /* x509_obj.c in Sources */, - D76DF2D7E89A4457C388AA90C6FDC01D /* x509_req.c in Sources */, - 981DB743455F0BA335FBAA1AEA003F67 /* x509_set.c in Sources */, - D586C99FE5BE64ABABDBB8BB1D66BC87 /* x509_trs.c in Sources */, - B51A40B7062C860F53142D1710522F16 /* x509_txt.c in Sources */, - FEBC97C576A4B506A5713E1BF95C390A /* x509_v3.c in Sources */, - 0EA8B96F6EDB5673C5A3292B6A702662 /* x509_vfy.c in Sources */, - C7AEE045453AE038FACB7B50803FCC2B /* x509_vpm.c in Sources */, - EDB1EBAC81CCEAAE13164A7F3D95AC0B /* x509cset.c in Sources */, - 4A9E21C0B742AB49DB5248820C979B0E /* x509name.c in Sources */, - BF21A42119B4DF34B5C9A4666E58A52B /* x509rset.c in Sources */, - 69738FE20D6CA788FD2B26A2557DB4F7 /* x509spki.c in Sources */, - DBF356E53E005FCA89DD898817019743 /* x86_64-gcc.c in Sources */, - 48DB6908ECA6A8ADAB52631F73B32C20 /* x_algor.c in Sources */, - 5A2E75955FDF4046F6FA0AC8045D3AEC /* x_all.c in Sources */, - 57ABE661519BEC77E582BF211DD22870 /* x_attrib.c in Sources */, - D9FC43BB04FB5F569D53268DB7B44468 /* x_crl.c in Sources */, - D5A9F79544ADDD8F998FBC10285A515F /* x_exten.c in Sources */, - B5C14272A5E07C0E30168078B617170C /* x_info.c in Sources */, - 00AE4D7FE385E77D0090B0DCA68F717B /* x_name.c in Sources */, - 832A7692F20985DC7B09B7E58A22E65D /* x_pkey.c in Sources */, - 0A9FFB2C3F28CE9BBD37D8987A8A242E /* x_pubkey.c in Sources */, - 2D3145C4D1E68F1CF6BD9C94A20A66BD /* x_req.c in Sources */, - 0FBBDC34DED48A3EA2227255444EE627 /* x_sig.c in Sources */, - B21807FCFE9FAFA0985D1446B0012DB3 /* x_spki.c in Sources */, - 21846496CFE3CE2588090E5B2EA1E9E5 /* x_val.c in Sources */, - BDD8A9845A4BC1C7578DEF1F98DB7D35 /* x_x509.c in Sources */, - 186F8E2217A9C39475FCD7807FCAA094 /* x_x509a.c in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 087C66F6D9ED9DEF54F903527841DC01 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - D317F70C194922522C4CC8EA5CDF6EE2 /* Pods-iosApp-dummy.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 0DD7419A2B07317652BF22FA8E5C5036 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 20C6FD8A23A259D3ABBBA68A5ED6F795 /* dummy.m in Sources */, - B3961809EEEDAA1A17AD5D4AAFCBCA5A /* FirebaseAppCheckInterop-dummy.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 22BF9BFB88FD5E00E76A929778BB1692 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - AF9C742D83E75D3B5D8348E3C30A9485 /* arena.cc in Sources */, - 208F2C660B9882821548966EF6D677AA /* block.cc in Sources */, - 98E3AAC91EDEF62AA0DCBA0DACC8D51D /* block_builder.cc in Sources */, - 4831DCA1F386A9F1BEED1AFB462B9F6D /* bloom.cc in Sources */, - 24B957D17F1956E255F07BB6A1AD7C05 /* builder.cc in Sources */, - 78936279F91110A9EB3768E1397EE1D7 /* c.cc in Sources */, - 3260D45810FC6A469FEE348142ACA944 /* cache.cc in Sources */, - E8BBD6EB5103C427578426D94B2389EA /* coding.cc in Sources */, - 5A6C8EE5818EC0FD0486EB27D27808EA /* comparator.cc in Sources */, - DBFC37E81B3E4CB94F7D5B16CACD22CD /* crc32c.cc in Sources */, - D1327C8131D924A9685F2576D5DB530A /* db_impl.cc in Sources */, - 6564D8D6231AA668D577404758CF532D /* db_iter.cc in Sources */, - 8250653FB91A537E1FF43C097E46D42A /* dbformat.cc in Sources */, - 86BA80E6C851B9A9D8DA7710BC856DB4 /* dumpfile.cc in Sources */, - A9903E4BB76509D9C2F0D1734CA09FBA /* env.cc in Sources */, - CEB1E9C161266211467A09456605CB39 /* env_posix.cc in Sources */, - F3075B73F463466F316A8E4AFBAE4CFC /* filename.cc in Sources */, - AF615104E7B48566EE354ECC69DC33A8 /* filter_block.cc in Sources */, - A81FCFE91A2EB6BF23E4EF36CE88A4FD /* filter_policy.cc in Sources */, - 08883641DBA98756ECF6047B1233BD4B /* format.cc in Sources */, - F1EDA5512AF4C994F3DDEF79C5DDCAA1 /* hash.cc in Sources */, - 56337AEF515FF61829981B59A366DEF0 /* histogram.cc in Sources */, - E8930B7A87CBEE49C70DE81619645B36 /* iterator.cc in Sources */, - 0752CA303FF6B30D71DB57E3DE2C19A8 /* leveldb-library-dummy.m in Sources */, - 92E8799EB534CD6AAD4FC40D6A73ED96 /* log_reader.cc in Sources */, - 72591B8AD4B009C13CF0A8104304C0DC /* log_writer.cc in Sources */, - 3E6709975EFDD321424B2F2B99475BF2 /* logging.cc in Sources */, - 881D485A62D320C37E24688E6723E9A5 /* memtable.cc in Sources */, - F633788E08E891D338E00C1BF1B70326 /* merger.cc in Sources */, - DA237E1F77974C43E561244949E8EF59 /* options.cc in Sources */, - F0C20A230559F38DE3281282D217FB59 /* repair.cc in Sources */, - 1319AEA017FBA9191A17EB4772AC8377 /* status.cc in Sources */, - AF1F1FBE47ECB31C27DBEEAAECF65D93 /* table.cc in Sources */, - 76DCF97E8A8F78F388F192C29FD40102 /* table_builder.cc in Sources */, - 1A5EEAFA2414194E5BAF97CBEBF182E6 /* table_cache.cc in Sources */, - 915DDE1C2A4710ABD70931946308D071 /* testharness.cc in Sources */, - BFB799ED01C351ACF99731A6C4544618 /* two_level_iterator.cc in Sources */, - CB389B4366FABA9112252B76FED4B910 /* version_edit.cc in Sources */, - F437FEB00C5CA07EBA3A1B4D709E2E68 /* version_set.cc in Sources */, - 94B2C7EBCE63938822FC2E683CD6EC33 /* write_batch.cc in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 2A078CD6D443022B7DE05FEB5AAFCDF4 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 53AC2B5DC2949BDFB790160602E5BCDF /* aggregate_alias.cc in Sources */, - 369D1FC52E40E20FD521ECBAAD9A21F9 /* aggregate_field.cc in Sources */, - C844257E3F169475F779DAF9F11CDA69 /* aggregate_query.cc in Sources */, - BC86164795C8F0AD4EE438ABD98F226B /* aggregation_result.nanopb.cc in Sources */, - 9D2419298664CCD397BE5C771BAFDA28 /* annotations.nanopb.cc in Sources */, - 7A85AFA075E210A7C50D0F5B6D33F47A /* any.nanopb.cc in Sources */, - E7AFF50465DBEA63F756562DF561800A /* array_contains_any_filter.cc in Sources */, - 12C4D902AAFE2D2AF905983923B8DC5E /* array_contains_filter.cc in Sources */, - 845E36A2A0D77A2A6CDABA61DFC823C2 /* async_queue.cc in Sources */, - 4C2CB99127F0FC2A7603DF0587E92188 /* auth_token.cc in Sources */, - D78EB64FD2B85952EC6DEDBE3FE2070A /* autoid.cc in Sources */, - 9C6AA8C60FD2118F3F6523FB6E2C3FB5 /* background_queue.cc in Sources */, - 4236EE669F4BA82A272956C86C285C18 /* bits.cc in Sources */, - B79FEF60F5D2A04CBD11F44828BB4B55 /* bloom_filter.cc in Sources */, - 09C739DB1C9FB40091E30DEC7BC1F292 /* bloom_filter.nanopb.cc in Sources */, - 011CE64749F341B9BBC7DC3CC5BD8E19 /* bound.cc in Sources */, - 758441CDB7FCD926A3A6D47173607C7B /* bundle.nanopb.cc in Sources */, - 5F4658F07915892B44B85C93892BFE3E /* bundle_loader.cc in Sources */, - 23BEAF4B97D6208DFCE7B9161EDFCC55 /* bundle_reader.cc in Sources */, - 3E1AD7A440A21DCD842519D4CEF78332 /* bundle_serializer.cc in Sources */, - 9601D4AF4FC484D779ACAFDB298B5A7B /* byte_stream_apple.mm in Sources */, - B7F35A6EAE5E0FA25106D050359F1B82 /* byte_stream_cpp.cc in Sources */, - 25646DC1C9E7A4B96C01D03BD91C99A4 /* byte_string.cc in Sources */, - 339F6CC77CD201A189E25581B060D8D7 /* collection_reference.cc in Sources */, - E3A2ACBB5691AD477C22B443CB62E14F /* common.nanopb.cc in Sources */, - 6C9E76BA328228CCFB70757D29BEA9F8 /* comparison.cc in Sources */, - 10E30EF1B46ECE7D1439A4689F6ECD60 /* composite_filter.cc in Sources */, - 94D6D583C4F7514E69315EBECBFB6048 /* connectivity_monitor.cc in Sources */, - 3BC48753C3266F65B7123D7B17B45B38 /* connectivity_monitor_apple.mm in Sources */, - 4012D9BF05E8BEFF5CFC26E946B4D7A6 /* converters.mm in Sources */, - 90970246D4D2540EFEC53ACA47B24CD2 /* database_id.cc in Sources */, - 3A81D1EF0C6661A5F9B696D8790BDD2E /* database_info.cc in Sources */, - 0492027A636FE830E4BF1420660A9C2B /* datastore.cc in Sources */, - 48EA2BEFCAD3C3C3AA31E8A773D6DC14 /* delete_mutation.cc in Sources */, - 8BAEAF235EB02694265EF4F46632F39B /* direction.cc in Sources */, - C99935CAB3080E46FC6F33366E4C6C55 /* document.cc in Sources */, - 851BA8776B16287A16007AD6A45E44BA /* document.nanopb.cc in Sources */, - 6CBB8207E7E8915EDE3144B90F4F0F0A /* document_change.cc in Sources */, - 5A5066474AC16F3F74F69BEB0172095B /* document_key.cc in Sources */, - 85597F3D7E858115BA6D40C71A49B3C0 /* document_key_reference.cc in Sources */, - 449D18A5AFE5448E9FFE29611924FA01 /* document_overlay_cache.cc in Sources */, - C173A236B3493D0F0AB98F229511ADA7 /* document_reference.cc in Sources */, - 215F5D612EA109FFD15093C7500AF6A2 /* document_set.cc in Sources */, - A1659CD33E86E27C73553ABCBE8A6EAD /* document_snapshot.cc in Sources */, - D6BFFA6CCA65A94FD3479B002C8168F4 /* empty.nanopb.cc in Sources */, - F7465E8E7D4218692637014C8BCDED65 /* error_apple.mm in Sources */, - 9607AE7EE065239AD7ED98A20FD2DCAB /* event_manager.cc in Sources */, - 97B88FB026C795754ABECE0DBDE067F3 /* exception.cc in Sources */, - 5343C5FBB3B7E6748485CB3221343BAA /* exception_apple.mm in Sources */, - 3BE8988242D84A4F1D5AEEB2C4B2CD19 /* executor_libdispatch.mm in Sources */, - 581664EA6C1A0AEFC21BC5B137D70EA7 /* executor_std.cc in Sources */, - FA3C6BFFC535022EB80EC661E79D90FD /* exponential_backoff.cc in Sources */, - EE114DEB3505DC348F462C8A4E10248F /* field_filter.cc in Sources */, - EDC4D4FD16E7CE80D0E152168DD665CF /* field_index.cc in Sources */, - DDA1C84B22A2B017180D995302D7EF48 /* field_mask.cc in Sources */, - 2346BB375D69F03C2CD6DCEDEE09A2E4 /* field_path.cc in Sources */, - 70DC1E555BC2A2C888C62C067B7275B1 /* field_transform.cc in Sources */, - 4A09426F2CFDD58A5C0DC88E39D87EA7 /* filesystem_apple.mm in Sources */, - 3F43B2775C3C40057FAEE542B9A1B43D /* filesystem_common.cc in Sources */, - 09988642890B65584FC4D1A04DC0B20C /* filesystem_posix.cc in Sources */, - 6EC2EB13A8E20A5CCA1C34C1AA5BFD96 /* filter.cc in Sources */, - 56532D74A1C946141EE869CB5BF3FAD6 /* FIRAggregateField.mm in Sources */, - 8DE57244E6ECA36ACF349687BD89BF07 /* FIRAggregateQuery.mm in Sources */, - 3DC9A421D9F49AAD6B04049456D365D8 /* FIRAggregateQuerySnapshot.mm in Sources */, - E74D62CBF989F5554478C6A908B85EF3 /* FIRCollectionReference.mm in Sources */, - 8E77438B26C7A1444CCC6DEFF9FEAC94 /* FIRDocumentChange.mm in Sources */, - EEF1299B0B648EC5FB13611D6C24FB4B /* FIRDocumentReference.mm in Sources */, - D8DED2783EB9ACF93D4CA44B4EB5C0E5 /* FIRDocumentSnapshot.mm in Sources */, - CE789315E17B10A31E43C64D0169770B /* firebase_app_check_credentials_provider_apple.mm in Sources */, - 37141F22A02B229E61F937024DDFAC2D /* firebase_auth_credentials_provider_apple.mm in Sources */, - CB16D44395C6571D2851A379BB51762B /* firebase_metadata_provider.cc in Sources */, - 880D3AF307536270383B04DEFD0EB097 /* firebase_metadata_provider_apple.mm in Sources */, - D30EA95C91E900469FCC5C91D81BFFDA /* firebase_metadata_provider_noop.cc in Sources */, - 997461DEE9BDF3F537D65C4C0008CB8D /* FirebaseFirestore-dummy.m in Sources */, - 3A1D17BE41E1D2FDB21FDD850FF45307 /* firestore.cc in Sources */, - 941A20BE2C34A228BF5DD848D8151A56 /* firestore.nanopb.cc in Sources */, - C9541E126D884038C8D6B3BC367303DF /* firestore_client.cc in Sources */, - 53ABE822D8C131E89C5DCDF68E568526 /* firestore_index_value_writer.cc in Sources */, - DC63E759DBB0D992A6FEDDA616AFF7A5 /* firestore_version.cc in Sources */, - 6E691CD19F56F096927A6F29289DEF26 /* FIRFieldPath.mm in Sources */, - 008B84642F9A2ED21B91BBEE47EDD400 /* FIRFieldValue.mm in Sources */, - 9B9D68EA3E1932D5BAAAC21AE9D14716 /* FIRFilter.mm in Sources */, - D82167666B3F364C99F2B7BFDBA4E07E /* FIRFirestore.mm in Sources */, - 3279C1AF85885132B93A33C6E9559B11 /* FIRFirestoreSettings.mm in Sources */, - 42618DC8EE73094BFF18F7E903454B45 /* FIRFirestoreSource.mm in Sources */, - 16266C0D830AC8F45A85A3BC0C3BA7E5 /* FIRFirestoreVersion.mm in Sources */, - A71DCB3A1B6122F25F67F58C68575B2A /* FIRGeoPoint.mm in Sources */, - 28F55515508FA602CF679E91FEB3F8BD /* FIRListenerRegistration.mm in Sources */, - 89E12DC041A190ED462298DE9CE2321A /* FIRLoadBundleTask.mm in Sources */, - 72B0A1841CC7F027A14E7ADCB9A45143 /* FIRLocalCacheSettings.mm in Sources */, - D2D9F3286E49FCA88AF6A7A1B68C6ACE /* FIRQuery.mm in Sources */, - 0B238114A558B226D3BA87456AAA6ED8 /* FIRQuerySnapshot.mm in Sources */, - ACC1B37CD5442D8EAD536ECE7B1B29E1 /* FIRSnapshotMetadata.mm in Sources */, - C72FBCD9B84840CEE7A430DE877936DC /* FIRTimestamp.m in Sources */, - E73DCB1F812A7136554FA5C7B4DC4389 /* FIRTransaction.mm in Sources */, - D6614127B0D31656031D396EB4936CC5 /* FIRTransactionOptions.mm in Sources */, - FE9967592263EF995FD2E3D47532669B /* FIRWriteBatch.mm in Sources */, - 583BE6D09471048C35E139524830ECFB /* FSTFirestoreComponent.mm in Sources */, - 55E7983C80EE539DAB812C77CB8D9E34 /* FSTUserDataReader.mm in Sources */, - 44CB462D7D08B3F18FB5F261DA403B09 /* FSTUserDataWriter.mm in Sources */, - C147828F251E0D3960EF0EBF356B3D40 /* geo_point.cc in Sources */, - 2E05BECFD28992CEA7C68F830D8B5B3A /* grpc_completion.cc in Sources */, - 9EACC41C04BF751D42CEC53B27218728 /* grpc_connection.cc in Sources */, - CF5711AB5DF379892E4965E8D860DA63 /* grpc_nanopb.cc in Sources */, - 9F7456210C3ADAF90C84B08EFFE00839 /* grpc_root_certificate_finder_generated.cc in Sources */, - F6C1A51DACDD2E44E6FC095373CBDF9F /* grpc_root_certificates_generated.cc in Sources */, - 72B1C5457CB147AD54A2ADAC2E7E77B1 /* grpc_stream.cc in Sources */, - 66EF67C6D7060DCA6F7721C0CB365720 /* grpc_streaming_reader.cc in Sources */, - 8D4AC77D69F7487BC0A59302864F0C19 /* grpc_unary_call.cc in Sources */, - 613F76B03D2E8CCCDC83475036C7AE3B /* grpc_util.cc in Sources */, - 6D85E252771BF497D4114F3DE3E87656 /* hard_assert.cc in Sources */, - 0CD2B5C8BEA333DA79BC21CFA8B2A19B /* http.nanopb.cc in Sources */, - F12CC894C61A2056D9407FAF7168167A /* in_filter.cc in Sources */, - 08B297FB1E948F3FB0455A7F70CCD56B /* index.nanopb.cc in Sources */, - 3F62ED53D9207414D59FDA1A866ED650 /* index_backfiller.cc in Sources */, - 1827BE086E236B5E8DE1D63A8886D42E /* index_entry.cc in Sources */, - DB1C10C3733792F57F73EB606447B0C8 /* json_reader.cc in Sources */, - 41533C733C1229426D7104D680979EBB /* key_field_filter.cc in Sources */, - 66787093ECA2B1DB990EA969F02C8713 /* key_field_in_filter.cc in Sources */, - A41C508025AC9BAF7FB1084AE9B7B3B3 /* key_field_not_in_filter.cc in Sources */, - 87605CD1120BEE74133915A6E64099C2 /* latlng.nanopb.cc in Sources */, - 241EF2ABEB6AF3DBCFBD0B981537C4A9 /* leveldb_bundle_cache.cc in Sources */, - 5ECC97C5997B2741668B5ED9E6F61A82 /* leveldb_document_overlay_cache.cc in Sources */, - 646375243C4F37D2EF3E89015EBF0476 /* leveldb_index_manager.cc in Sources */, - E3009123B4C21D6646DB32A1728831DB /* leveldb_key.cc in Sources */, - B2FC23C4CEAB444166CE21430CA32876 /* leveldb_lru_reference_delegate.cc in Sources */, - B92A06517CC66F32FC2B387EDE59F4A7 /* leveldb_migrations.cc in Sources */, - 7F96403E5E1947AAD3FDD23FCDD3E956 /* leveldb_mutation_queue.cc in Sources */, - EF8225C66FFAA5005882550DD212B66D /* leveldb_opener.cc in Sources */, - B52A05369BA39E9535CC26402DB65A7F /* leveldb_overlay_migration_manager.cc in Sources */, - F7649F10F13C802FC4C674CFFE9D2989 /* leveldb_persistence.cc in Sources */, - 5120568D372166E4F94E2FFACF2968BF /* leveldb_remote_document_cache.cc in Sources */, - FB35C8482ED55E15EBF8FA9889D11DDE /* leveldb_target_cache.cc in Sources */, - D455B58FFA9867547F527886E48CC65D /* leveldb_transaction.cc in Sources */, - 97259677DF9FC459CA51B89B03B5EAC8 /* leveldb_util.cc in Sources */, - 4C0ED70FB5466C57793381CD803F55ED /* load_bundle_task.cc in Sources */, - 4E2D37B0099EA171533822CB68E06D6D /* local_documents_view.cc in Sources */, - 0882FE22B03B5F521EF7DE7C44ABC58B /* local_serializer.cc in Sources */, - A2B614D4F3584C268EF75452F51FB029 /* local_store.cc in Sources */, - 5442CB68665F72893C1FF7CF2552DD88 /* local_view_changes.cc in Sources */, - 75615BEBF9036DC74A224887E25455E0 /* log_apple.mm in Sources */, - 50B2D406B1A85719D64DA9DC2B8D3886 /* logic_utils.cc in Sources */, - 9F6DA8B72ACDAA87F44966A27928AC4B /* lru_garbage_collector.cc in Sources */, - 1F481438FDBBA3272C5400FF5EB51E1F /* maybe_document.nanopb.cc in Sources */, - 9E07FABA0E02613C3109633844CE5A97 /* md5.cc in Sources */, - E76F96C6B690C5F383645ECC85841400 /* memory_bundle_cache.cc in Sources */, - 9187BEF881228EF8C4C20F5D1458B0E3 /* memory_document_overlay_cache.cc in Sources */, - FBBA29A1E70A8FF7CB48855D187EB1FD /* memory_eager_reference_delegate.cc in Sources */, - CCD421DF651A2B61A961D6A071E7B7F3 /* memory_index_manager.cc in Sources */, - AE2CE731F4DD895B589B44037F89C77D /* memory_lru_reference_delegate.cc in Sources */, - D41EB959A36D07583396C847CB94D103 /* memory_mutation_queue.cc in Sources */, - 0F7FE2CA1852F17E491BDE3F8160261E /* memory_persistence.cc in Sources */, - B1B414FE8E9E620DDF3409B9E5A88280 /* memory_remote_document_cache.cc in Sources */, - B01234F60C4EFCB2FDD193B86909BBAC /* memory_target_cache.cc in Sources */, - AB5E202B549FDD409ECCE8939FF09DC8 /* message.cc in Sources */, - C5D340C75852469BEF3CC1D0A94CA718 /* mutable_document.cc in Sources */, - 655D4C5964E30600586B6EE81E4DD444 /* mutation.cc in Sources */, - C1B8966106E14DC155C09D9A3E4A639B /* mutation.nanopb.cc in Sources */, - ABBF3950B24A13BA0601D55DA1CD17E8 /* mutation_batch.cc in Sources */, - 396385B65A3EDCEEDC03B8CAA11A77D9 /* mutation_batch_result.cc in Sources */, - 1D2CF0EA4C75E3798743874A87828D50 /* nanopb_util.cc in Sources */, - F536AC23479B2226E5EB86BDD29702D7 /* not_in_filter.cc in Sources */, - AC25A4FC8087AFFB112B062D79197A2E /* object_value.cc in Sources */, - 8E60439E0C1D5DAA2159CB74A5D86084 /* online_state_tracker.cc in Sources */, - EDAD539E125307EB532036C4C6137585 /* order_by.cc in Sources */, - C03A5BAE7993BEDF525C0CD7414CCA56 /* ordered_code.cc in Sources */, - 2AEF1F868A7779F288C2701EE14B1204 /* overlay.cc in Sources */, - 27E89C10747476E26711614C429E34A1 /* patch_mutation.cc in Sources */, - 73418BAD197FFBDC7BA5630261ADEEFD /* path.cc in Sources */, - DF60C07B84CD2F34359A6B15A7FB2883 /* precondition.cc in Sources */, - E91D7B58855894DE838033903593865D /* pretty_printing.cc in Sources */, - 5C444FB921A1A2EE89194416E00B8441 /* proto_sizer.cc in Sources */, - AFB765A07F27856565E677E40E882DE1 /* query.cc in Sources */, - 398495016D9FE4D58A573794C056F9D1 /* query.nanopb.cc in Sources */, - 5C205F9CBB4706256D50AEC18C5BCCAF /* query_core.cc in Sources */, - 87CE08889ACC70F562C21417D8D302EF /* query_engine.cc in Sources */, - 6F971CFCBA645DE3F1B4DC756A2A30B1 /* query_listener.cc in Sources */, - E6E95FDAD4BBD0CD333D092F3D3AD68F /* query_listener_registration.cc in Sources */, - 7840C9731BE7438081B6213BAE2D9FC5 /* query_snapshot.cc in Sources */, - FB03A330A19C380271F9CE8DD22CF515 /* reader.cc in Sources */, - 5B7DF250F9250837BFDCE641C7D1EB17 /* reference_set.cc in Sources */, - B077094343712A0F67ED6441E60D2703 /* remote_event.cc in Sources */, - 5678602CA8F40B66550040CAA8BC597F /* remote_objc_bridge.cc in Sources */, - C7D743524D6A098882C94D0761191BA4 /* remote_store.cc in Sources */, - 6F0CC57322B43691661A50076929DF8F /* resource.nanopb.cc in Sources */, - 1B9D62CF3A175077DA3D202DDCF959D9 /* resource_path.cc in Sources */, - 9B849FC4B4F2278F9118E30519C774B0 /* schedule.cc in Sources */, - C88B1B0E97450AFDB49B5537C08FD16C /* secure_random_arc4random.cc in Sources */, - 0A3F3D5B28FA85DDB5E618DA7478AB66 /* serializer.cc in Sources */, - E86A3854F7B8AD4D709A952E23EECA71 /* server_timestamp_util.cc in Sources */, - 4E81C6BA781CE46E43665653A03F4B72 /* set_mutation.cc in Sources */, - E33503F1D0ACF8FF110C2FB8DBD91F18 /* settings.cc in Sources */, - 965C4AE6D4144AF24D3835A35CC56A2D /* snapshot_metadata.cc in Sources */, - 6AD752337CE5B7B9940F7C2F5466C6E4 /* snapshot_version.cc in Sources */, - 33271E3E3CB5974C043E4DC895D31674 /* snapshots_in_sync_listener_registration.cc in Sources */, - 02061F4BE2E53FB959CC11E32E190DF4 /* sorted_container.cc in Sources */, - 6C5B4C369CBF0C987BBC5FBC2765236F /* status.cc in Sources */, - E7867328FBBFD15903118BD9121C9B86 /* status.nanopb.cc in Sources */, - 39B8BD6351464F57DF5010B56C6180C4 /* status_apple.mm in Sources */, - 294623AB8222F3444452CAFED25D1EDB /* status_errno.cc in Sources */, - 5829857216B56D1411FA03100DA69C16 /* status_win.cc in Sources */, - 64F3797F9EA4F5DD84FB5E6867C1F426 /* statusor.cc in Sources */, - AF3911C91F424BD53858EC9C817C8123 /* stream.cc in Sources */, - E375AB7409AD7455BA46EB2EF97A5278 /* strerror.cc in Sources */, - A6D073E91C6214B2B461435D505D9ED6 /* string_apple.cc in Sources */, - E1B96E4C5E4A685D8D8C3EAD16A24DA5 /* string_format.cc in Sources */, - AEF5718B510166E26C902B6A76ED5253 /* string_util.cc in Sources */, - 3BE853C3237D267FFDC8F51BB2BD550C /* string_win.cc in Sources */, - AB56131442489DE30286CA0E34273834 /* struct.nanopb.cc in Sources */, - 6E561C9CCFFE4B0C0118DA71D5C4E326 /* sync_engine.cc in Sources */, - EF1F4795985185C46AAF226340B2DEED /* target.cc in Sources */, - DC873FA628D29888D5F16957A8726207 /* target.nanopb.cc in Sources */, - C6E9E83CFDDF9E633F1A1B79C5C62D56 /* target_data.cc in Sources */, - 3037EE69D7D8B5F8274ED6063078FB3D /* target_id_generator.cc in Sources */, - BD099587F48349AD0481DA9B6AED9643 /* target_index_matcher.cc in Sources */, - 539BA56AAFEC0D9012D02F4D9B0A6F78 /* task.cc in Sources */, - 4C81C91118755BC623774379D1F340BB /* testing_hooks.cc in Sources */, - 2F4A89E11A067DA68BAF2E4A599F8909 /* timestamp.cc in Sources */, - 1A79CCC02CF14D8E55C42FC8A202777D /* timestamp.nanopb.cc in Sources */, - 09E95F623D76D3425861D060D65D2C11 /* timestamp_internal.cc in Sources */, - C5A6C25AF232CE6CC6AE2706E12A7356 /* transaction.cc in Sources */, - 14EF646636A8B41D78404CA3F969B856 /* transaction_runner.cc in Sources */, - 3E05AEC14D9B7CEFAA9EF591790CCDCA /* transform_operation.cc in Sources */, - C1E528D42C8342E899132B74EC1BDE00 /* user.cc in Sources */, - 0D8A8619FCA1CA2D49DC0F9D08B52416 /* user_data.cc in Sources */, - CE449A9CB28340E9FBA27E7046382C68 /* value_util.cc in Sources */, - BBC87317140A5E08E2EDDE771ED004F0 /* verify_mutation.cc in Sources */, - BCFECB5044476ABEE8DD327FEFC98C2D /* view.cc in Sources */, - E29F3781D42245365F3E88E61DC8C15A /* view_snapshot.cc in Sources */, - 77A637F4AFEBB6324F2D69C3D570C7D1 /* watch_change.cc in Sources */, - A660F813737A574893E29699AB0D05E1 /* watch_stream.cc in Sources */, - 21F49CA586BEEECCC64A102EA3267260 /* wrappers.nanopb.cc in Sources */, - 492CC70D6E2922CCED60FDAE255033B7 /* write.nanopb.cc in Sources */, - BEE56EDA3C09A03CE029B67E798F182C /* write_batch.cc in Sources */, - CF5C70C3F8086844AAC06904B0DEDBB6 /* write_stream.cc in Sources */, - 312A0FC88730331D478AFD0CA09A0975 /* writer.cc in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 2F78AEEB569E52BC90D99467DFEC57E4 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 84EA4BCF4C51DB72886D4E20848385AE /* placeholder.m in Sources */, - 032A3576FB1E1D11C3D031B7884F1D90 /* RecaptchaInterop-dummy.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 36832DFE0875D23A0872BF02AF166D75 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 9EB910D1CACE5B987EC137E8EC229214 /* FBLPromise.m in Sources */, - 2966A7F959440FFE0C2E2998D67AA077 /* FBLPromise+All.m in Sources */, - DD70B7DA21DE5D2617D9571E2B3C3420 /* FBLPromise+Always.m in Sources */, - B4069D600734B067FCF4DBB9B238F8AD /* FBLPromise+Any.m in Sources */, - F86539C96D90B30BB04699952EDC4CA2 /* FBLPromise+Async.m in Sources */, - FD435C89013818E831D80EC9D4B6C98A /* FBLPromise+Await.m in Sources */, - 92BA48C12EE993C64941E297732ED23A /* FBLPromise+Catch.m in Sources */, - C88C38D0A4F2B0E2F64A17DCB7B3F20E /* FBLPromise+Delay.m in Sources */, - D63344C8CAEB0C5DFCA0396B44138D87 /* FBLPromise+Do.m in Sources */, - 7975FCA6328DDDF4889D70742312BEB3 /* FBLPromise+Race.m in Sources */, - 38AFFC9E496466003F4B94A5863C3DDB /* FBLPromise+Recover.m in Sources */, - 2DFA71F9917FFE5B9473B32A1143DCAF /* FBLPromise+Reduce.m in Sources */, - 322D3860B865C96549201CA39B265357 /* FBLPromise+Retry.m in Sources */, - 3136F4C972E032FE85F924AFCD4CE9EC /* FBLPromise+Testing.m in Sources */, - EF4DD461333DCF489071804B89E066CD /* FBLPromise+Then.m in Sources */, - D59171E16517394F28DAB7BFB9C4E92D /* FBLPromise+Timeout.m in Sources */, - BC3F79232FBAB121EAD85CBFC794E01F /* FBLPromise+Validate.m in Sources */, - 070BC16089B6A3FF5EF7EB77DEF48A6E /* FBLPromise+Wrap.m in Sources */, - C793F12C1B2E8065F7F344839A2EFBB1 /* FBLPromiseError.m in Sources */, - D04142CF7118B7E7F2B1A2E4123F2D16 /* PromisesObjC-dummy.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 3A494107452587C9FD46667BA9F402AB /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - AAEDCB7FAE73E5E4FDBDA09FAE867A9B /* GTMSessionFetcher.m in Sources */, - D3EEE682364DCC19332CB30329CA5B4C /* GTMSessionFetcher-dummy.m in Sources */, - 0D637CB6FBC29D7324F19F55EFCEDCBE /* GTMSessionFetcherLogging.m in Sources */, - 6648A9816C6AAD30800D0691562249D5 /* GTMSessionFetcherService.m in Sources */, - 0C698419B2533797BE73CA191E589B38 /* GTMSessionUploadFetcher.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 3CBC29ED57139502A090F3C5CD1D1C38 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 519DFA8077B7A50A1C5A1DF2F0D510A9 /* FIRAnalyticsConfiguration.m in Sources */, - 390FE5ECE314E9221B13D88CAD2566BD /* FIRApp.m in Sources */, - B90A76305B09A789BDAC31DE030B62E0 /* FIRBundleUtil.m in Sources */, - 1CF4FA4487997DEA76D3D80A9F63F7E3 /* FIRComponent.m in Sources */, - BFF578C1FA3632B3304EA7E1753989E2 /* FIRComponentContainer.m in Sources */, - B2BFFCEC085539EC24755074B1A4E79C /* FIRComponentType.m in Sources */, - 250D1AAFE1C284D1620FE8876612C7FA /* FIRConfiguration.m in Sources */, - 4E974C5C8C42FBB4950031879D278E1C /* FIRDependency.m in Sources */, - 98AD43B4647056DF8C0358D6F4585E6D /* FirebaseCore-dummy.m in Sources */, - 1F7346AC6FF395A7DCA5226DB84CFFF8 /* FIRFirebaseUserAgent.m in Sources */, - 1E6E5565F3744D6D3D2FC0807288BC8B /* FIRHeartbeatLogger.m in Sources */, - 18ECE16574376DE14F8E689CD4422660 /* FIRLogger.m in Sources */, - FDA6E5064FED5A49354A83290E4E0914 /* FIROptions.m in Sources */, - 48505E68762E766397AC3D23747FBEB0 /* FIRVersion.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 71FAFE550F9EFF18526902149E6A1EF1 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 7B578D1BEC42BA7D015DC9795BFEE00D /* GoogleUtilities-dummy.m in Sources */, - 8931EE2C291049A2F8F5F30EF64A9E68 /* GULAppDelegateSwizzler.m in Sources */, - 14F85A5E9C10D32090BA8F39958E715B /* GULAppEnvironmentUtil.m in Sources */, - 563358CF0ADEB7BF81DF9897F34B655C /* GULHeartbeatDateStorage.m in Sources */, - 4A505684CE40A358710109A92C4B04EB /* GULHeartbeatDateStorageUserDefaults.m in Sources */, - 32AC7A81BA5DDB57DD87C6F841E4FF2B /* GULKeychainStorage.m in Sources */, - 8E4D2BCB145AC30C48D6A81D9D970A41 /* GULKeychainUtils.m in Sources */, - 5EF2EBD50228458E544353EF97FA4502 /* GULLogger.m in Sources */, - 99A54D11D2FBF193A2D7D2AF0810AB5A /* GULMutableDictionary.m in Sources */, - 77781FCFFFA71906FCAE5C2070699DC0 /* GULNetwork.m in Sources */, - 6FC2DAF448CD9BA4DEFE4A7E87CB2D0C /* GULNetworkConstants.m in Sources */, - B172C0930684C7FEAB107C580BB76724 /* GULNetworkInfo.m in Sources */, - 937A78B715A784750B983B18739797EE /* GULNetworkURLSession.m in Sources */, - DE07FE793D7ECCEC96198EE4DF84E34E /* GULNSData+zlib.m in Sources */, - B2F83D69E375044AB30EB01A960DA950 /* GULReachabilityChecker.m in Sources */, - 101B16B0DCE8AC06EC61178DB7515319 /* GULSceneDelegateSwizzler.m in Sources */, - D708C55539DB16C55D2A019795A6395D /* GULSecureCoding.m in Sources */, - 1A38A609A7598C878F6F499975EDB44E /* GULURLSessionDataResponse.m in Sources */, - F73B18418B53B9051EC072C2072169E0 /* NSURLSession+GULPromises.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 89186E31DD12BB2B436FBB52C0F0A1C2 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 56B901698AC11A64FD352D5E2377C599 /* alarm.cc in Sources */, - A5433DA19BC28313B2F9E5862EBEB707 /* async_generic_service.cc in Sources */, - E2AB0F426F28FF6D9E7596F7F7BCE4C1 /* auth_property_iterator.cc in Sources */, - DC13ECC6CD877B10BE621076F26B6C74 /* binder_android.cc in Sources */, - 09DD5F52E81B6802684FA5571C30C22C /* binder_connector.cc in Sources */, - CD362B3F5752093C534F1FC77596870E /* binder_constants.cc in Sources */, - 05A5D5F037B4484278137878979EC9F1 /* binder_security_policy.cc in Sources */, - B88C62FD2C658E04B989A0AF38FFBCC5 /* binder_server.cc in Sources */, - DF1A864028F0B4F1C9D148DB4E85798A /* binder_server_credentials.cc in Sources */, - DD60E2DDC7013B38870A806CF9A439B7 /* binder_transport.cc in Sources */, - 68BE472BA163282D802A686963954D27 /* byte_buffer_cc.cc in Sources */, - DB22215D40844C285A54B6F6A0B2D334 /* call_metric_recorder.cc in Sources */, - 5019A29A40D00F547EA20C970B5422B5 /* channel_argument_option.cc in Sources */, - 7FDDE67BC3C9933B302A599064FC36CF /* channel_arguments.cc in Sources */, - 180EA9E0D5B9737C9C6562BDE529F8A5 /* channel_cc.cc in Sources */, - E1AB384932DBE20B45914A4828CE3838 /* channel_create.cc in Sources */, - FC688190E844B34966EC78BF8F288993 /* channel_create_impl.cc in Sources */, - F5E069822152A02DB7E7A69BCB1BAFED /* channel_filter.cc in Sources */, - D7F8762D24238A9E58014BF3FDCA5C90 /* client_callback.cc in Sources */, - 8B6FDFF071C9AE8C8AD05A948CB130DD /* client_context.cc in Sources */, - 3E9636C591A753158BDA698B1A804986 /* client_interceptor.cc in Sources */, - 4EAD72CBF06E015A95EEC257FE4C5CB3 /* codegen_init.cc in Sources */, - 254471EC87BD5F6793A0D72DAB35B28B /* completion_queue_cc.cc in Sources */, - 5A167AF33E9041D5DA867BF328B06407 /* connection_id_generator.cc in Sources */, - AA519A6B500964B758607BF2A46A9DE1 /* core_codegen.cc in Sources */, - E581E0C54174885E67DB847B9FDB81D6 /* create_channel.cc in Sources */, - 3FC192E4322B61F0B01390D06D6047D9 /* create_channel_internal.cc in Sources */, - 1540DFBAC273FB723CAB7661408F4D12 /* create_channel_posix.cc in Sources */, - A4A0C2CEB8B3CB8156EDA24F5EDA8281 /* create_default_thread_pool.cc in Sources */, - 4652861B2270D15CBF2433C0A692810E /* credentials_cc.cc in Sources */, - CE5C596636C1EB72096CC9772146A1A9 /* default_health_check_service.cc in Sources */, - 7378DA3FE22E415BF15A65BDDD9745FD /* dynamic_thread_pool.cc in Sources */, - 3AB32C6ABBE250C9CEF6885E41FA0545 /* endpoint_binder_pool.cc in Sources */, - D2A0230D0FB77441B2DEA2BFCE3A2492 /* external_connection_acceptor_impl.cc in Sources */, - 9393B03079E4D95ECB3CAEE4BC1ED9D5 /* gRPC-C++-dummy.m in Sources */, - 1B3EC8C5F174C93EC4B0E42AA070EF0C /* health_check_service.cc in Sources */, - 8A727FB7852D501A5BD49E7BCC82D0CC /* health_check_service_server_builder_option.cc in Sources */, - 4BE774AF7AF54DB5F756C71B24E82E02 /* insecure_credentials.cc in Sources */, - C16A760AE29FCA6BEB7C093D64157F09 /* insecure_server_credentials.cc in Sources */, - E7FB09807AE9EB187A0DB5F1CD1E9C47 /* jni_utils.cc in Sources */, - 70BE12B8FE3060AC785C71FA218ABD80 /* ndk_binder.cc in Sources */, - B4262EEFFB14F1252A8D30F39A8F7E21 /* resource_quota_cc.cc in Sources */, - 66630D65013036A9102BE03234950EBA /* rpc_method.cc in Sources */, - E3A101E7F948A99ED01455DB7CAD2EA1 /* secure_auth_context.cc in Sources */, - 979D0837D8F4BBE5E44A06F1ED16632C /* secure_channel_arguments.cc in Sources */, - DC7AFFE1273569596000C9EC4842A5F0 /* secure_create_auth_context.cc in Sources */, - 61FBEE5E8F4C396062EA6012654CBAA3 /* secure_credentials.cc in Sources */, - 3558346F3C85443C48E627D51A350028 /* secure_server_credentials.cc in Sources */, - A8615EAB5FDB39E02B0E8381F9466066 /* security_policy_setting.cc in Sources */, - 1E6F4D2FFFFE915F85354FF7D41B57A0 /* server_builder.cc in Sources */, - 6E88328B0925B4547E0114B6806E6FB3 /* server_callback.cc in Sources */, - 99723D76026A7EBFDDB5B4B5E3AE5037 /* server_cc.cc in Sources */, - D42494079306691C9C3916715C24A1BB /* server_context.cc in Sources */, - 2AD89AAFB7DEA7731B3940DDF439E79F /* server_credentials.cc in Sources */, - 7CEE81F50CE722D1D9FFCCFC156AFEED /* server_posix.cc in Sources */, - 4187427C70B1EC3FC9A893A19D8D4E21 /* status.cc in Sources */, - E756BC5EDCCE3513DEE04EE89B7F0828 /* string_ref.cc in Sources */, - BAE6C0C1056D9E8FA8F51ABCA6205649 /* thread_manager.cc in Sources */, - 36168EFC938366E10DECF0AB67E7B62B /* time_cc.cc in Sources */, - 80222A62B0F222E8C17FCB765187A318 /* tls_certificate_provider.cc in Sources */, - 909FDAC8FF115D1361B9F6AAD2CE07BC /* tls_certificate_verifier.cc in Sources */, - 817F340B155A5D54F22FBCC1C88FCA29 /* tls_credentials_options.cc in Sources */, - 1F33CE791769660F5259A9193E00D5A3 /* transaction.cc in Sources */, - EF7F3A6D857BDB00DE3AE4A0B75C9DC9 /* transport_stream_receiver_impl.cc in Sources */, - 642FADD799CA239DB4BB4706F183D3B0 /* validate_service_config.cc in Sources */, - 2526F101AED75A9587065391E729227A /* version_cc.cc in Sources */, - 15965AEA9D2C862E884DBC43D6E49908 /* wire_reader_impl.cc in Sources */, - B31BBF4AD01418DF468BD02BD028E8FB /* wire_writer.cc in Sources */, - 15AB5A4659E7849C03FA7EEC8AE4B725 /* xds_credentials.cc in Sources */, - 94C40BE3D93EA8FC9357CBB879D5FE9A /* xds_server_credentials.cc in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - C15A1866D39DAC49555C20A3B0D76EBA /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 514B96B50762B73EA57AA67D89B002B5 /* abseil-dummy.m in Sources */, - 574EDAA91C72516AF5EBEC7FFFC10816 /* address_is_readable.cc in Sources */, - 38FDFAAA8195172B6428E9D16DDB0C27 /* arg.cc in Sources */, - 1DD84BC0171F3269C31B7C983F90FEB6 /* ascii.cc in Sources */, - 3B1CAE2C0226FA8FE364CB84EB1CF69F /* bad_any_cast.cc in Sources */, - B4F7C419C5DCF9E1EC04EE100013EBC8 /* bad_optional_access.cc in Sources */, - 5301E249711E13FDD892075E5A78092A /* bad_variant_access.cc in Sources */, - 71B9D16775692D28EE0F85F9CD621CEC /* barrier.cc in Sources */, - 46F316F039C310DDD9B586F5197AA57F /* bind.cc in Sources */, - 01F555FFC51F1DA36B3C6FC377897BFA /* blocking_counter.cc in Sources */, - 0BE7962E0EF10FFD50A0A13654DC9B60 /* charconv.cc in Sources */, - 4031386D36B3D9184CD2CA15A0383739 /* charconv_bigint.cc in Sources */, - 54552B633BA052D6836D613044CC4F51 /* charconv_parse.cc in Sources */, - 5ED248E0DFF5DA0A5F88C28507872219 /* city.cc in Sources */, - 0A9C5A6C800E09F4044F4B712F48EAE0 /* civil_time.cc in Sources */, - D597E46B90F8DE4B27142AFEC6F45ADF /* civil_time_detail.cc in Sources */, - 2E89710C386D99F7F15E23BABE9B4843 /* clock.cc in Sources */, - A5EC765AC2562C075A453DB05026FEE0 /* cord.cc in Sources */, - F3995DBAE28BB1A5CF9B37D6827971D6 /* cord_analysis.cc in Sources */, - B2F9313189379974D66DB4CA274AAA68 /* cord_buffer.cc in Sources */, - B84837A749CAED3C65A5E1FF94539AFA /* cord_internal.cc in Sources */, - 692F626A620AF18BBA639AA8C65A4D1B /* cord_rep_btree.cc in Sources */, - 1E1E0917FD0763CE8BA181DDA10858E2 /* cord_rep_btree_navigator.cc in Sources */, - 8A554824E74FB72A2B97BC28C5C0523F /* cord_rep_btree_reader.cc in Sources */, - B971DF761722158E44004AD5D78742C9 /* cord_rep_consume.cc in Sources */, - 1F14A3CAC1D01080D07EC5BD36B6CABD /* cord_rep_crc.cc in Sources */, - A73CEAD4466E408E9210218B395C96E4 /* cord_rep_ring.cc in Sources */, - 804CD58CCCF69FBC65E565CA6FB778DC /* cordz_functions.cc in Sources */, - AD1AAA78BA27CFB1F2A722F5A35AE0F2 /* cordz_handle.cc in Sources */, - 6C230702335D2EAAE32E17039EF47870 /* cordz_info.cc in Sources */, - 2076038830A932208A7857CE31FE6F8C /* create_thread_identity.cc in Sources */, - 20260E83DFB2EC5B42FFDCC4A9D51E59 /* cycleclock.cc in Sources */, - BC35B8DA7D24A1755AF5B7D478637BD2 /* demangle.cc in Sources */, - C6018EC9F67265D040C8A423AADB1664 /* discrete_distribution.cc in Sources */, - A7ED8402044F877D9BF9DEECE7251775 /* duration.cc in Sources */, - B77AF36F7A7FA6B56D54751724BF244A /* elf_mem_image.cc in Sources */, - 6969504DF1E5F686E057C21662986F19 /* escaping.cc in Sources */, - 434A9994DAB4344AB24AF78BD492E534 /* escaping.cc in Sources */, - BB0D30D5A029B0277AEA82360CF1971B /* exponential_biased.cc in Sources */, - 1463FAF26FA18964923D118F91C9BCB7 /* extension.cc in Sources */, - B5C305F1C6A33C0294A7746E9F5F86DA /* float_conversion.cc in Sources */, - CF5102468D27D3EC0C89B13C83674359 /* format.cc in Sources */, - 894267671FA8E06733CD5C83F2784DA6 /* gaussian_distribution.cc in Sources */, - 42B390E59ACAA2CBE350AD31288E1128 /* graphcycles.cc in Sources */, - 063818E232C37C9D666F49BC28A0D689 /* hash.cc in Sources */, - 205EDF0D8E24A35F6CB00B2E08C24286 /* hashtablez_sampler.cc in Sources */, - A3DB845B131E20977F3CD5210A8417D2 /* hashtablez_sampler_force_weak_definition.cc in Sources */, - 7562874CBB588190072CDB154024755B /* int128.cc in Sources */, - 28FCC60EBE745CCD0B4B1714F4E04099 /* log_severity.cc in Sources */, - D1F5490304638273E4200FCD955A84D3 /* low_level_alloc.cc in Sources */, - EE677241615E9EA9ABED0EFC4CEC5825 /* low_level_hash.cc in Sources */, - 8A30ACD8F23325C33705CF0024C8AE41 /* match.cc in Sources */, - 782A81048968F1E89DFF0AC7A7D6139B /* memutil.cc in Sources */, - C5F8DFD98BB560446C93D8D813610357 /* mutex.cc in Sources */, - AE4C2D6FB8F0215D82CC0F8E66365F30 /* notification.cc in Sources */, - 39018BDED35E437D339C2877D97CB733 /* numbers.cc in Sources */, - E1B32568262F55FBF27CC6C71FFD877F /* ostringstream.cc in Sources */, - 853149629E5AD6F57C3B584B32374A56 /* output.cc in Sources */, - C0E982C5948EF7D89F377ED17D370D68 /* parser.cc in Sources */, - 042B70D5C5447D7B476FC64FA39C6140 /* per_thread_sem.cc in Sources */, - D62D429AB42AEFADA603C3EBB99EC8DE /* pool_urbg.cc in Sources */, - 79739DE213AA4C9C06CD25575520D3EE /* randen.cc in Sources */, - 9C39302419253145828F0F69ACE33DFD /* randen_detect.cc in Sources */, - 89B0956F8F8AC0039DC23E0A9B9B19BF /* randen_hwaes.cc in Sources */, - 81A95DF627418D563EA9492238F2DC81 /* randen_round_keys.cc in Sources */, - 2C2527899539ADD75BE39FE92DA34A6E /* randen_slow.cc in Sources */, - 31389C25B6B9A7D77F5A27C0E9D1FE99 /* raw_hash_set.cc in Sources */, - 9444EF77D6299F58F68415010E65B69F /* raw_logging.cc in Sources */, - 9DCC87C95A56D5E3ED75F8981F341B11 /* seed_gen_exception.cc in Sources */, - 7AB1022ED5B03F0965D7B389A3B8D2CF /* seed_material.cc in Sources */, - 689F91FD9FDCB6B8C5CBA446924F5BA3 /* seed_sequences.cc in Sources */, - DEB5E222469DB4AB61A63419BBF1D90D /* spinlock.cc in Sources */, - 36CE5C01227146F4E5FF6F6791A8CBEB /* spinlock_wait.cc in Sources */, - BA114D02D3ED161C82A337C7EE83C8DA /* stacktrace.cc in Sources */, - 277010596E4D4CE349A92E700E8BA6DA /* status.cc in Sources */, - EF2223364D9D1D35C6450C85600B0F4B /* status_payload_printer.cc in Sources */, - 5AD4FD076DEE140F80950084BB4BC927 /* statusor.cc in Sources */, - 02A6B7DA130EA728B524E8CC3B065370 /* str_cat.cc in Sources */, - E68C08AAC5BEA2A0F62AC485CA3A667F /* str_replace.cc in Sources */, - 38D691BC76AE744D70D88DE3C5437C72 /* str_split.cc in Sources */, - 34376D1FEFAFFA8BFB7C5F6917AE23F5 /* strerror.cc in Sources */, - 1B25B6852C001600242E4E52DE360A53 /* string_view.cc in Sources */, - 3C09ABF7E05F506E64BD3799E6EB4142 /* substitute.cc in Sources */, - 483A679D769176DCACC4709830EAFFA9 /* symbolize.cc in Sources */, - 2E54AC9416D824FE5FF19565D2A2E68E /* sysinfo.cc in Sources */, - D7973842BAD54CCBF2759BA153A5BEDE /* thread_identity.cc in Sources */, - 18038D9EC36D2541A4EAFBF9F5A340F4 /* throw_delegate.cc in Sources */, - 47D6F06ED35AA9D12A7B202CBE0833C8 /* time.cc in Sources */, - A05D134E5933D89D1149BF73D7010A47 /* time_zone_fixed.cc in Sources */, - D8EAAE68003E3E9B332721377DEE14A6 /* time_zone_format.cc in Sources */, - FF661059A23DD61E8D2D916373F5FE44 /* time_zone_if.cc in Sources */, - C390384BE805789E7F7DD9224A2FA1D4 /* time_zone_impl.cc in Sources */, - 3A7BA2FB290780B05374ABE8ACCC155A /* time_zone_info.cc in Sources */, - AA5CC3257D8054674591911F85C0C621 /* time_zone_libc.cc in Sources */, - BA059980E6BA32FA1B7369FFFBCB9B1A /* time_zone_lookup.cc in Sources */, - 551E7C93536B6C5F1E63140077C64330 /* time_zone_posix.cc in Sources */, - 779E919731F587A31823AB0A964EE96B /* unscaledcycleclock.cc in Sources */, - 780E13FB063EA7C32AA921AA66A88882 /* utf8.cc in Sources */, - B39E0D62E1F65AD12B9B0B6160768D21 /* vdso_support.cc in Sources */, - C14F6CE9F05894FC539817502C3D433C /* waiter.cc in Sources */, - 9DA3C478F994910356D76ADC9AB4379D /* zone_info_source.cc in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - C30BC9D6FA9CBE0D62DB2A40918DF2FC /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 953E287985515F3FE6F88FD40B1342A8 /* accesslog.upb.c in Sources */, - 6A33DACCE59EEE91FC891B95B8B8B0B3 /* accesslog.upbdefs.c in Sources */, - BD4D08B6B1D8016B256252261E0D6425 /* activity.cc in Sources */, - 18EF5A13728B159946307AB4EC887B12 /* address.upb.c in Sources */, - 84EF9F04849F1D299FA2D46EF9BA7A62 /* address.upbdefs.c in Sources */, - 4339090A3DEC536A38C689DA98A49915 /* address_filtering.cc in Sources */, - F14DD8167FC8899F06AC6730BAEE76D1 /* ads.upb.c in Sources */, - 52873C6794EF29CAF36188BC0129B1FC /* ads.upbdefs.c in Sources */, - FA2319A9583B84B3D22E392D9482F4BD /* aes_gcm.cc in Sources */, - DC3E1CCD5613029AC43215E2E223D6B9 /* alloc.cc in Sources */, - AE00A7E05ADF1B80E63E60C26041CF35 /* alpn.cc in Sources */, - 25BBDC54A7028D31D240AEA12B9A4F6A /* alts_counter.cc in Sources */, - B6AFDDE9389DBD02DA71884036B72DF7 /* alts_credentials.cc in Sources */, - 39F8A728A46C41C98DF4E322B0E6A0C9 /* alts_crypter.cc in Sources */, - 1179AC59FD8DF996E504881749B3C986 /* alts_frame_protector.cc in Sources */, - DD23CD0CC131697F73053D886906E49C /* alts_grpc_integrity_only_record_protocol.cc in Sources */, - 076B6985A408F658978C896FBED07B9F /* alts_grpc_privacy_integrity_record_protocol.cc in Sources */, - 10E80FEB59958DC538915E779435C84B /* alts_grpc_record_protocol_common.cc in Sources */, - 210BFFD7681E5AB529B0F8F0F3D04F43 /* alts_handshaker_client.cc in Sources */, - D24EB63AFAF29EA3FCE9F4ABEBEE4204 /* alts_iovec_record_protocol.cc in Sources */, - 84A67915D29E2BD5F79C40774F5E91CB /* alts_record_protocol_crypter_common.cc in Sources */, - 18C9DF0341F143327F096D4C311AF811 /* alts_seal_privacy_integrity_crypter.cc in Sources */, - 50419CD12E5623A144D0A04756BF6BAA /* alts_security_connector.cc in Sources */, - 713587CC7C6FF803FE57472850C9F179 /* alts_shared_resource.cc in Sources */, - 71C865A8F1C75EFCDFDBB767E49C7B4B /* alts_tsi_handshaker.cc in Sources */, - FE0094B899264F08DFBF7B7C4D745EF8 /* alts_tsi_utils.cc in Sources */, - CD3786E5F5624E3D733FA7EE202E8974 /* alts_unseal_privacy_integrity_crypter.cc in Sources */, - 07E8A35D331A10820B86FAF7768EEBFB /* alts_zero_copy_grpc_protector.cc in Sources */, - DE4BF76F8BC4B28728A33C80EA5E1B4B /* altscontext.upb.c in Sources */, - ED09EA1C0C1CA12AA97987258D8FAAFF /* annotations.upb.c in Sources */, - 8A1FA6C371C1E07D58EE79EC5576B8C2 /* annotations.upbdefs.c in Sources */, - 5D64E82DEC7416C70800A710E69A934C /* any.upb.c in Sources */, - 3196C7E14448AED556A1D3D311BD1415 /* any.upbdefs.c in Sources */, - 89D21FC61179D2D78FC5B3AC405E8AA1 /* api.cc in Sources */, - C196CC313ED8E04FBA6AD9E51347BC8A /* api_listener.upb.c in Sources */, - 4AAE29BEDB0F0D36E3B140D23D95A9A1 /* api_listener.upbdefs.c in Sources */, - 9932486421DD1E32EBE432299626C815 /* api_trace.cc in Sources */, - A29EA2CF6FA4EC36A11D114727E2F79D /* arena.c in Sources */, - 6D9E03EC32B44D5E6AB3097C182550D6 /* arena.cc in Sources */, - 86FCC7AE0DEB366C1FA26FEA631E317F /* array.c in Sources */, - 70B5AE129936BFCB6D846A40CC2E0D69 /* atm.cc in Sources */, - 3734E0D184E2160DD07693F71A963A00 /* authority.upb.c in Sources */, - F2538B0FC75C1FCC8E4199E5E9763491 /* authority.upbdefs.c in Sources */, - A95B44A6F2919B04B2C32EB07E733F82 /* authorization_policy_provider_vtable.cc in Sources */, - D8E21D692974029EAE4ABECDA154D00F /* aws_external_account_credentials.cc in Sources */, - B17075B829D7E932EBA0BE5E2A382FF0 /* aws_request_signer.cc in Sources */, - FDF52F4CA2DB9E28694AE58D6062CDF4 /* b64.cc in Sources */, - E49F3E58A0102A048FBC1ED68EB45DD4 /* backend_metric.cc in Sources */, - BA32B10E8E7748AAB2EE3BE3032F45CD /* backoff.cc in Sources */, - 87CD815B600A7B0FECCCFC02E8A14E89 /* backoff.upb.c in Sources */, - D8EE9E2365D5A606E9DD01D14ADB9C2D /* backoff.upbdefs.c in Sources */, - C924AF90A6EE3ABC36F693754D183B68 /* backup_poller.cc in Sources */, - 2E5E346E9A1892187526522F37A193B8 /* base.upb.c in Sources */, - 9D631D5A73D3439A2EB3F68DD77A2A2A /* base.upbdefs.c in Sources */, - 8FC60C5B559D3CBAEB13A66E4DD74719 /* bdp_estimator.cc in Sources */, - E9C4E60C3A3C751B35CAC71F28BE89A9 /* bin_decoder.cc in Sources */, - C354A6EB7C8DF919ADB62BAC2288A2B0 /* bin_encoder.cc in Sources */, - 28D144829ADC2F3592C85EEE11CA69E7 /* binder_resolver.cc in Sources */, - 1FBDF80504C34C4EB10F77AC8F113BD8 /* bitstate.cc in Sources */, - 1FA758209BE120B90816BA1A4790F4E1 /* bootstrap.upb.c in Sources */, - 6B62D657BBA0EC75D1C95003F33B9245 /* bootstrap.upbdefs.c in Sources */, - 3E9A5042FB39E8B8F35702C1E6592B5B /* buffer_list.cc in Sources */, - A3B6BA5720550FDDF26EEA32870D663B /* builtins.cc in Sources */, - BE3CF43E7FC06D75C9327DDBBFF17DF1 /* byte_buffer.cc in Sources */, - D637608279E541C6DDA7F959EF5941F3 /* byte_buffer_reader.cc in Sources */, - 10B1E0E21D362B0055FCFC5776251FC5 /* call.cc in Sources */, - F61AB6423CE8506A310B9B01C1C9ABEF /* call_combiner.cc in Sources */, - B42E1B466C832F58FA1EAC51E7A2E971 /* call_creds_util.cc in Sources */, - 809BE0BA736D07C7DA39A3D2E7483DB1 /* call_details.cc in Sources */, - C84369BD89A29EADA24AFE68CD613C72 /* call_log_batch.cc in Sources */, - 11BCD2E0562E34E764B834CE824F704A /* cds.cc in Sources */, - EA34D8EEB4AC2BDA42B318FE519FCCA1 /* cert.upb.c in Sources */, - E3F2867511E1AE7787F3B9B0D47D24B0 /* cert.upbdefs.c in Sources */, - 2CE201F3AC6A3AE6749B0D42D6C6A9BC /* certificate_provider_registry.cc in Sources */, - D8D295F744EEAEE20772787E72B85228 /* certificate_provider_store.cc in Sources */, - 189DBFE0B821DAA4D7FB557265495E05 /* certs.upb.c in Sources */, - F1ADCFD83FC86161AB451BD001D1BACA /* certs.upbdefs.c in Sources */, - 1476D95A0F8EEFC07DB3DE1FAF26343E /* cfstream_handle.cc in Sources */, - B4A8BD8E5DFB3AE57491E923B2807054 /* channel.cc in Sources */, - 2F22500F1B7E18F0658C903F9447A5F4 /* channel_args.cc in Sources */, - 82DC141F12D726D2BC2DA9566FBEF002 /* channel_args_endpoint_config.cc in Sources */, - C501EE8577F951F989D3116ECE22A591 /* channel_args_preconditioning.cc in Sources */, - 3537C5AFF41D2C78CD7FCD6CC5790C2C /* channel_connectivity.cc in Sources */, - 8DC6028FEA12A983400D8AC2D892A333 /* channel_creds_registry_init.cc in Sources */, - CB1B166A2EA54421C771FFB9A69830EE /* channel_idle_filter.cc in Sources */, - 5A99FB648611F29483A998539A2D1989 /* channel_init.cc in Sources */, - 01EC67C7EB67B22788E73EF543C21791 /* channel_ping.cc in Sources */, - FAF99159C1D5F0E2E7FA733C7AFD2679 /* channel_stack.cc in Sources */, - 9C9174FD79CDA2A06C08B1E02421CC61 /* channel_stack_builder.cc in Sources */, - 35A47B11C707ED2BD33657F49B12637B /* channel_stack_builder_impl.cc in Sources */, - B7ADF4661DC8316D397777950B83D36C /* channel_stack_type.cc in Sources */, - E31B7DFC9334D6E7227C38429D2D5F1B /* channel_trace.cc in Sources */, - 22DAF01AAEE523BF233D485856F58AFA /* channelz.cc in Sources */, - 802059AB59413B5285A1D29898D5FED4 /* channelz_registry.cc in Sources */, - 1D71CC0DC2594B8B0877D295C9B9D8C5 /* check_gcp_environment.cc in Sources */, - ED4D7EEBB5EC5171F6E20947BD352F22 /* check_gcp_environment_linux.cc in Sources */, - EFE4565D507C53451D2A1A1FDFB6FAF7 /* check_gcp_environment_no_op.cc in Sources */, - 572348FB2E08AE8F43B69397303DCAB0 /* check_gcp_environment_windows.cc in Sources */, - 5C846073AB4AECE81377D5E56029C14E /* checked.upb.c in Sources */, - BF2B4EFBED71E6DB06415A8B7943C5F2 /* checked.upbdefs.c in Sources */, - 8F22E65083DA6F57FE121FC11B3C07D1 /* child_policy_handler.cc in Sources */, - C6AE628524DAC4E0F4C78F36F97B7938 /* chttp2_connector.cc in Sources */, - 0A263D5BC638EF1AF204ABFB303E860E /* chttp2_server.cc in Sources */, - 472110CC2EB8082E11B3AEFD370390B3 /* chttp2_transport.cc in Sources */, - 572F9462D12FF45ABCDCA0AE7329D1E3 /* circuit_breaker.upb.c in Sources */, - 03E3430A0FF37153F99F2C4A2C6B909C /* circuit_breaker.upbdefs.c in Sources */, - E0BDFBCEAB715500614B7410D44B15FE /* client_auth_filter.cc in Sources */, - C17B2C6C5B0FD6447313D32D7F58A526 /* client_authority_filter.cc in Sources */, - 9D8B7CB4CB094AAA8F707A91E7E6131E /* client_channel.cc in Sources */, - 860711BF38220505BA966A1B6950880A /* client_channel_channelz.cc in Sources */, - 762ECAB29175CA094541BD77F149F8C2 /* client_channel_factory.cc in Sources */, - 798A3B024F703D27C7422140BEBC509A /* client_channel_plugin.cc in Sources */, - 454B2E01675864C236AD41D3EC4E5ABD /* client_load_reporting_filter.cc in Sources */, - 628813B0F053551580A556404C16768B /* cluster.upb.c in Sources */, - 660EA28E698F95E5ABFAE4CB257D13A1 /* cluster.upb.c in Sources */, - 6BDECB560AF9217B329CDA26881CA8A9 /* cluster.upbdefs.c in Sources */, - 25EFF992C3668BD223FDF892A037A591 /* cluster.upbdefs.c in Sources */, - 9770051F3FDAAFE3AB7979A1D5A46AFA /* clusters.upb.c in Sources */, - 902B94D8B83DCA87AB27F7106499CE6D /* clusters.upbdefs.c in Sources */, - E63ACB57BD5A284D3882D7458DCAFB61 /* collection_entry.upb.c in Sources */, - 5CE806340EA50FBB1CCA29657BA1B958 /* collection_entry.upbdefs.c in Sources */, - 3EF0C0BFA6733ADE22433FCB7703B886 /* combiner.cc in Sources */, - C885ECB8FD355937DDBE50016F2FB6D9 /* common.upb.c in Sources */, - DACC08B488545A72DF4EFA90B317CDA4 /* common.upb.c in Sources */, - AF77F29FF2BF4B04F1616C28D2D4A93F /* common.upbdefs.c in Sources */, - D10A7C40C8798FD4B7D0FB2A67B14232 /* common.upbdefs.c in Sources */, - 33DEA6060F4446592BD48BEB1E8D8865 /* compile.cc in Sources */, - DDB89636993459BE0C9A2016D928F98B /* completion_queue.cc in Sources */, - D201AF66873A8C1D7890BEEEDFFC5A86 /* completion_queue_factory.cc in Sources */, - C66889C63E4E752AB53102B6CDC2566F /* composite_credentials.cc in Sources */, - 9098BFEDA2886F380440822279002CC6 /* compression.cc in Sources */, - D90DA42A58B6C1BC71804576757E76B5 /* compression_internal.cc in Sources */, - C73802820A10BE778B8D8B3071E7F5B7 /* config.cc in Sources */, - E3DA22FD06576AE60ABAD64AD1040587 /* config_dump.upb.c in Sources */, - 6472517E87F7B12F8A8EA9ED256DA81C /* config_dump.upbdefs.c in Sources */, - 4306E044BD3E631D605A2B85DB06316A /* config_dump_shared.upb.c in Sources */, - F55F370F32F8DAF017FA262F51D91193 /* config_dump_shared.upbdefs.c in Sources */, - A523BF186DF39DDC7D6C4B2FB1479107 /* config_selector.cc in Sources */, - 7E210C5A5837E40E6ECF2649F614C7F1 /* config_source.upb.c in Sources */, - F057F9A6558E27F455520F70EAB92477 /* config_source.upbdefs.c in Sources */, - 7497226BF48E7FF516D2CF0BA055BE65 /* connected_channel.cc in Sources */, - 925FFD1AC3D428827C743639F9D20455 /* connectivity_state.cc in Sources */, - 152B82A3487D51FFF15AD5FD0D420377 /* context_list.cc in Sources */, - D1A77870E0355AE86383ABE1F721EEE8 /* context_params.upb.c in Sources */, - 5589A40E6CD062BCD7FBAAB4D04F8A72 /* context_params.upbdefs.c in Sources */, - D59A312DC3E173860EBFA50D45848491 /* cookie.upb.c in Sources */, - 6C08D9F7BC928AC52FD58B870E40C4A9 /* cookie.upbdefs.c in Sources */, - 7D52DA45B5501E81351C9606F145EA3A /* core_configuration.cc in Sources */, - 1218C68820D449B71E9408094A4482F1 /* cpu_iphone.cc in Sources */, - 4AB38CAA03ACFFE6A79F508BEE177B6F /* cpu_linux.cc in Sources */, - 0D83F3799A0F55255F18E8986E79DD8F /* cpu_posix.cc in Sources */, - CBCA8BA7188D375867680D4B0B5808B9 /* cpu_windows.cc in Sources */, - B11E003CE5B30F1C3136311251BECA6D /* credentials.cc in Sources */, - 2DC722925C47CD1F34001476AC6E7323 /* credentials_generic.cc in Sources */, - BDF79EB0ECFC7DBF83417E8B1C55D74E /* csds.upb.c in Sources */, - 1F995EAD0FD9AE1C63B4C37DB22C89F7 /* csds.upbdefs.c in Sources */, - 605F3C062F4B7EEE65E5616A501F2DDC /* custom_tag.upb.c in Sources */, - 33A65BB6AC2C4C92135F2AA2A71783E6 /* custom_tag.upbdefs.c in Sources */, - 650401A4E463A41F4A5C52C7552A420C /* datadog.upb.c in Sources */, - CAEF7E223C8794F5F56534866C40C755 /* datadog.upbdefs.c in Sources */, - 49D268FB59ADB4DA77476277F1CD396B /* deadline_filter.cc in Sources */, - 767AB456AA0366E2CAB55611A2172ED5 /* decode.c in Sources */, - 0587C3FF79E446B89CB3765B260EF04A /* decode_fast.c in Sources */, - 7A82F64DD5294795E09765885834CEFF /* decode_huff.cc in Sources */, - 25557E83C1126C3A5C6D43B8D71CD966 /* def.c in Sources */, - 3BDC732C6372A735CEF38E07FC365CA4 /* default_event_engine.cc in Sources */, - A14A6D539715C91D1B257989077AAB59 /* default_event_engine_factory.cc in Sources */, - C6C85CC98A719293FC7C01818593FD6A /* deprecation.upb.c in Sources */, - A97B596BE271F035C6DC5BE15376D702 /* deprecation.upbdefs.c in Sources */, - E5A3073C5B0CCD87F193100064588CB3 /* descriptor.upb.c in Sources */, - 3C4D007CA6BB884E1A360983545C5AD2 /* descriptor.upbdefs.c in Sources */, - 8211CEA60FC048B3DB4B118CB276AE5A /* dfa.cc in Sources */, - 60B93A235157B924673430A5A57D8E32 /* discovery.upb.c in Sources */, - 1C49DB1B11C4B055592A6C5AFE32CCBE /* discovery.upbdefs.c in Sources */, - BB0DF8E438BDE07E5AB9C563CC6B9F66 /* dns_resolver.cc in Sources */, - 6AC6ECDFDFE4DFC23CF4C849B815F57A /* dns_resolver_ares.cc in Sources */, - D854A095B46486C46E5A4CB0C11AB217 /* dns_resolver_selection.cc in Sources */, - 317CB9D0F91E6C29CCFCC6D56B1BB460 /* dualstack_socket_posix.cc in Sources */, - 22632383954C38DB1F76E68B15837B60 /* duration.upb.c in Sources */, - B5749E9DF28EB9A5C4B1EB32C82408A0 /* duration.upbdefs.c in Sources */, - A40D6628699F031602032E75DC02F250 /* dynamic_filters.cc in Sources */, - 06C03404022F7A2EBA2A14F7602DB0F8 /* dynamic_ot.upb.c in Sources */, - D9DC971E2AEB484565523FD620FA8FD5 /* dynamic_ot.upbdefs.c in Sources */, - DF8621D7972EF55776EA06F51E24C452 /* empty.upb.c in Sources */, - E89D6B4CD1E961F0410721633B74F0E7 /* empty.upbdefs.c in Sources */, - 778E2D9D18BE17DA4625C612368FBF82 /* encode.c in Sources */, - 362435EDEA2515856FE92C58785BB999 /* endpoint.cc in Sources */, - 81AA26149C24A65DB8249F3F357590AA /* endpoint.upb.c in Sources */, - A0AD7D522CB63E00DBD417B51EF03241 /* endpoint.upbdefs.c in Sources */, - F3783D900F39D3C69170A77E195F25E0 /* endpoint_cfstream.cc in Sources */, - 6556C258B887B58195935AC6046194CF /* endpoint_components.upb.c in Sources */, - AFFB30620BC56E9FA9719D7DE8A5188D /* endpoint_components.upbdefs.c in Sources */, - 810EA4965E1F8726E2420EDF27A2DF93 /* endpoint_pair_posix.cc in Sources */, - 07CBFD116C59094D39D3F01929004574 /* endpoint_pair_windows.cc in Sources */, - 1F37AC4C20816AFAF705DF103F56D88A /* env_linux.cc in Sources */, - 371E63BF945D363938B68B2A1197E662 /* env_posix.cc in Sources */, - 94C2D7571F75196E9F082745F1A64EA3 /* env_windows.cc in Sources */, - 54F3D4B0E637E9F272865FDE06A8E5DC /* error.cc in Sources */, - 27EEAD2AD45CBBBFB4D314D4210BAA4E /* error_cfstream.cc in Sources */, - FBC70C8EA337956110F2C9FB0105E04E /* error_utils.cc in Sources */, - 4979D9D2B4507535FC8E992217E966A6 /* ev_apple.cc in Sources */, - B22392738DA82BF5437E8061739D060E /* ev_epoll1_linux.cc in Sources */, - 24FC25F65317F02830B868FCE8B409F8 /* ev_poll_posix.cc in Sources */, - C5742276DD2622FEBF04CC35FD22D20E /* ev_posix.cc in Sources */, - E77EF8D1DACA7961AFABF3B19C4FB5F9 /* ev_windows.cc in Sources */, - 54BE941F86B3AA8CB894C95216F05815 /* evaluate_args.cc in Sources */, - 0AC7D12F3353DD42A5E16717150B1BC5 /* event_service_config.upb.c in Sources */, - 37820B4CAE3E27BBDF7AF6F5D6B42E57 /* event_service_config.upbdefs.c in Sources */, - 586990048CCDAB4FAC5072DF1B5BCA05 /* event_string.cc in Sources */, - 3B5FB7ED029E3AACC1DB1A18D5C562F9 /* examine_stack.cc in Sources */, - B63DFD88F259130D6152FAD7C25B6425 /* exec_ctx.cc in Sources */, - BFB4F094AA41C6D9C4A20847C1E14A0E /* executor.cc in Sources */, - B76B74E62E4CCA57D8F9CE7C7571389E /* experiments.cc in Sources */, - A6F844DF385B247BFA70DA441D153152 /* extension.upb.c in Sources */, - 843A557D70D4526E2FA5AA68F56E8478 /* extension.upb.c in Sources */, - FB7C1185A642CD5014AC082670F25677 /* extension.upbdefs.c in Sources */, - B7926345C4B0A5850430C2FD13A37F68 /* extension.upbdefs.c in Sources */, - DA5F6B70AB3E367442FAC6C868DA6E5F /* extension_registry.c in Sources */, - 4032C78DE760ECE1352FEC806B523254 /* external_account_credentials.cc in Sources */, - CC506257BF9571D871A0C8B982019B8D /* fake_credentials.cc in Sources */, - 4A29FB48D80A4C96821D74ADEB2C5EB2 /* fake_resolver.cc in Sources */, - 468B44E4537BEDBB5C5ADC608DE62AB4 /* fake_security_connector.cc in Sources */, - C3000BC675695430200CF0C940E4B933 /* fake_transport_security.cc in Sources */, - 2AD54EA457B2328451F50B1176CFD07E /* fault.upb.c in Sources */, - D1F515610DDC309D94672605B7743750 /* fault.upb.c in Sources */, - 0419528B88CF95241094C105D240B0BB /* fault.upbdefs.c in Sources */, - 3A4E6EAE91D56BBDD412FC28EC157E05 /* fault.upbdefs.c in Sources */, - 10CD8835F4DA2E195D212E4944D28C66 /* fault_injection_filter.cc in Sources */, - 1B146D72CEFE8D20E2632A891445CFF7 /* file_external_account_credentials.cc in Sources */, - 1A12A19B450F44756C95F0EF280DBE92 /* file_watcher_certificate_provider_factory.cc in Sources */, - BAD3F749CD2C96C80B011E075C5818AF /* filter.upb.c in Sources */, - CCD73B0FE3539A3D9A3D721947711297 /* filter.upbdefs.c in Sources */, - C5C1A88B0899DCA9CCC16BA67A913CF1 /* filtered_re2.cc in Sources */, - 7FF37AD142535CE40F7FED9DC3C0B405 /* flow_control.cc in Sources */, - CEE768C37689A5F3FC952011ADA16446 /* fork.cc in Sources */, - 8E163F75E2CD29E96FD67F24F7C96783 /* fork_posix.cc in Sources */, - 31277802ECC8077ECCD027B49F99A7E0 /* fork_windows.cc in Sources */, - 4824BCDF82CF96B7D91F5588533FAC9E /* forkable.cc in Sources */, - 5DA3F6BBC7FBA93032163127B621C19A /* format_request.cc in Sources */, - 61A5934B60C064C45DE40542DCE083BF /* frame_data.cc in Sources */, - B422202B129DF41ACF032FD967A34DE4 /* frame_goaway.cc in Sources */, - B23753822F0BC231A0A4E6D6C04DC92E /* frame_handler.cc in Sources */, - CEC658C4628E6EAA74CF9334C3AC7EB2 /* frame_ping.cc in Sources */, - E218562EE26090BD96DE2EF9AF25EAE2 /* frame_rst_stream.cc in Sources */, - 58237124D1C9545176013A75884A3992 /* frame_settings.cc in Sources */, - D682319B6A9A68D40CAB931603C59656 /* frame_window_update.cc in Sources */, - FCAB5E54C4D916AFF689C2621E40E6A0 /* gethostname_fallback.cc in Sources */, - 1AEBA91E2CE35A2236A61C13F1E050BE /* gethostname_host_name_max.cc in Sources */, - 06BAA95E20E345EF957B2B9E084BB0F5 /* gethostname_sysconf.cc in Sources */, - F24E7E5F4C85B5984F6D8F0FD8E455E1 /* global_config_env.cc in Sources */, - 7BB6605B818AABC6CA939E515A85E6F2 /* global_subchannel_pool.cc in Sources */, - B015A5AC9BD4ABBDF388BCA7CCDD4359 /* google_c2p_resolver.cc in Sources */, - 9A6D42B667664ADBCEB62FAADD70B458 /* google_default_credentials.cc in Sources */, - 37221475457BC80B03FCD8671BF88031 /* gRPC-Core-dummy.m in Sources */, - 0B3370CAB092322000E27BE3DD7103A7 /* grpc_alts_credentials_client_options.cc in Sources */, - 4BBA3A30C6EFFC70B90763E269BD65E2 /* grpc_alts_credentials_options.cc in Sources */, - BD95A34CB34B800BA47314CEA732D51C /* grpc_alts_credentials_server_options.cc in Sources */, - 77DAE085A2B76D02C37732156898753A /* grpc_ares_ev_driver_posix.cc in Sources */, - 2629660D10B021C85DE82E818509C63C /* grpc_ares_ev_driver_windows.cc in Sources */, - 40A9F7FDCB1C6306D8EA973B7F839CAC /* grpc_ares_wrapper.cc in Sources */, - 1FEECAB343136C3C292E19A6323989C7 /* grpc_ares_wrapper_posix.cc in Sources */, - D6087215F1E52C685F5D25EF0BF2D696 /* grpc_ares_wrapper_windows.cc in Sources */, - E1E595F1438D9E65B4CA5B9835FD92E0 /* grpc_authorization_engine.cc in Sources */, - A05EA3E335AC4BD781C040D14F51946E /* grpc_context.cc in Sources */, - EEF53CD50694A41D573FD0BD74E36CC9 /* grpc_if_nametoindex_posix.cc in Sources */, - A6D9D440781C2FFF8A4FE4584AE9123C /* grpc_if_nametoindex_unsupported.cc in Sources */, - CCC935D252800399F3B3EE645A86DED7 /* grpc_method_list.upb.c in Sources */, - C3FF2D64FF9820B5D4C0E67DC6D5950C /* grpc_method_list.upbdefs.c in Sources */, - 39EE82A1304E8D0FB0616586A25EF7E3 /* grpc_plugin_registry.cc in Sources */, - 5E31A077278A6235BBD8A7941CE73DBF /* grpc_plugin_registry_extra.cc in Sources */, - D9B296ADC26A6301FDAD4DC1F0431AE9 /* grpc_server_authz_filter.cc in Sources */, - E77A428D3DF539B46D51D21D6850CAAF /* grpc_service.upb.c in Sources */, - 681C9973CCC992DE28875741F2B2F07D /* grpc_service.upbdefs.c in Sources */, - 36FDE030B6CD52A577A7B23BA7E70C15 /* grpc_tls_certificate_distributor.cc in Sources */, - 55FA817384734C4766B50BE4BF66CD91 /* grpc_tls_certificate_provider.cc in Sources */, - D132B7067D74937C537E31416701FB72 /* grpc_tls_certificate_verifier.cc in Sources */, - E2E2EB88E35355E3A655209E3F9154BA /* grpc_tls_credentials_options.cc in Sources */, - 8C6E9C387F8B6164E03D551041D26175 /* grpclb.cc in Sources */, - 2F441FF49E27B0AE782C42A1FF0C0FCB /* grpclb_balancer_addresses.cc in Sources */, - BD651776204D851F74793E2EC9728029 /* grpclb_client_stats.cc in Sources */, - B1EA5B25332BA3854450E185F24993AB /* gsec.cc in Sources */, - 081DD6EAEE951EF052D1A457C97E3067 /* handshaker.cc in Sources */, - 5A3DE7DB37D4EA8758DB055787E7D663 /* handshaker.upb.c in Sources */, - C3026042A3CD6D2C5A20E22486F8673B /* handshaker_registry.cc in Sources */, - 05982475A646714BF5518F2C9998EF7D /* hash_policy.upb.c in Sources */, - 6BEB19AF6C27910E8245AC64D77B9518 /* hash_policy.upbdefs.c in Sources */, - 809EC58FE5477B784E81374963B5B9AC /* health.upb.c in Sources */, - B628D73823A606D0462F8E0C9ADEECF3 /* health_check.upb.c in Sources */, - 9B86F3FC996B70C8E5A21CC8901ABCA3 /* health_check.upbdefs.c in Sources */, - 73A46EC3BA7449D82CF8BB93F229F978 /* health_check_client.cc in Sources */, - 4FAC9095C6F59820F0FE7D2E628E8930 /* host_port.cc in Sources */, - E9D205760D818D3E780E0441FBB09286 /* hpack_encoder.cc in Sources */, - 1FFB7CA138B6C842E3280B41DD89AC41 /* hpack_encoder_table.cc in Sources */, - 0E2D4B0A98CF23F8DFC49D682B39A326 /* hpack_parser.cc in Sources */, - 3D446633AADC31C10A5A1EE4267DBC0A /* hpack_parser_table.cc in Sources */, - 92086081BB8E293782879B6702EA6494 /* http.upb.c in Sources */, - B66BC545C4EA4379E945200208A7A42B /* http.upb.c in Sources */, - B8EB00155D46E9064EDEE44ED19F3E81 /* http.upbdefs.c in Sources */, - D91C94CB8899FEF8A1F3DC778400CFE6 /* http.upbdefs.c in Sources */, - 12DC07723321811AF7B8C23DC16C7FC5 /* http2_settings.cc in Sources */, - 4D4F04E5BA5712E997910AA0710D2E55 /* http_client_filter.cc in Sources */, - 1AC914F9C7F739C1417E5E6CB7DB56EF /* http_connect_handshaker.cc in Sources */, - 663C3A6058DAF0AAC9D72FDA053B3EDA /* http_connection_manager.upb.c in Sources */, - C9323D13748FE9D134AC54E7E3573642 /* http_connection_manager.upbdefs.c in Sources */, - 3914DDA9305DC4DD5C4CB659F11CFA9B /* http_filters_plugin.cc in Sources */, - CFE6E8E48BE0D2D367AD92A38C45A163 /* http_inputs.upb.c in Sources */, - 0B896E0BFDCA9CF62282066ECBFDB62C /* http_inputs.upbdefs.c in Sources */, - 31F304321A988D64045001E94B6721FE /* http_proxy.cc in Sources */, - 076DA34FD5C57727501D08CFB80C1111 /* http_server_filter.cc in Sources */, - B388FB5CD9BB4AC1493A528C77FCACF1 /* http_status.upb.c in Sources */, - 6D2D3F9A940B9594B33DDA37FCF46664 /* http_status.upbdefs.c in Sources */, - 40B5D93EDF4BE61F57FAC0FBB2212EF3 /* http_tracer.upb.c in Sources */, - 9405B9DC5F8B3C59174DB3E4A62E0170 /* http_tracer.upbdefs.c in Sources */, - DABEE8DABD24E317253A8589ADC4CB12 /* http_uri.upb.c in Sources */, - 9C4F857603DE00470941656B95D59EB4 /* http_uri.upbdefs.c in Sources */, - 8811E81754FA37A2B389AC3933DF3D4F /* httpbody.upb.c in Sources */, - F9B426CFD73155B4059F0983A2E79AF9 /* httpbody.upbdefs.c in Sources */, - 9F66DDD0455C58FC7F0CE07BAEC8F42B /* httpcli.cc in Sources */, - DA0349457A40B9061628F4855F77C38C /* httpcli_security_connector.cc in Sources */, - 2F55654C7688233B02FF0BF79B9B7843 /* huffsyms.cc in Sources */, - 5CCF87DC390E64F2A2CC23CADAE5BAFA /* iam_credentials.cc in Sources */, - BE193E9F0E5DA1DC28743C6B5CC48DB7 /* idle_filter_state.cc in Sources */, - EA7420509DEB83ECA89E4355BA9E8767 /* init.cc in Sources */, - 2C18FA65802216A229DEB8649830D8E8 /* init_dump.upb.c in Sources */, - AA7150DB06375F01EE08DD3CBC39E8E9 /* init_dump.upbdefs.c in Sources */, - 9013071E8EB6BEDF877F2E29AF7D1F2E /* init_internally.cc in Sources */, - 18E1FCA61E25412162516661AE6B3205 /* inproc_plugin.cc in Sources */, - A362F55F16A69FE0C7966F5A36E9449B /* inproc_transport.cc in Sources */, - 137CB3C1A80697F91AE458168909D049 /* insecure_credentials.cc in Sources */, - FB2473476DC6F7A2CB893A71AAA998C6 /* insecure_security_connector.cc in Sources */, - 606BB0D485FCED06ECD9770451594C20 /* internal_errqueue.cc in Sources */, - E880D4FA896BB5F7AEA3059CC5272F3E /* iocp.cc in Sources */, - 0416697039CA0FF3965C92721815F80F /* iocp_windows.cc in Sources */, - 3B837166068D81D2BEEE5A3F4104BD4C /* iomgr.cc in Sources */, - E6A9843E8C1E5EC2DB523F5BD8E85427 /* iomgr_internal.cc in Sources */, - FAA0EE2C2871B2546B6C541CC68208F4 /* iomgr_posix.cc in Sources */, - A30BD31920EE1AF2E957C55DF6A37A3A /* iomgr_posix_cfstream.cc in Sources */, - 730599CA1295EFE379B49B51E66BC46B /* iomgr_windows.cc in Sources */, - 00F127D38B17CD1F0975E962A1C39A8E /* json_decode.c in Sources */, - D357CC8B4B41FBC1085A3C4312D80344 /* json_encode.c in Sources */, - 3FC053666890CEA220D7A63E11D2D786 /* json_object_loader.cc in Sources */, - F27F7B918F0C345B82B4246BD96AF496 /* json_reader.cc in Sources */, - 797B69227FFB36516AF2F070F2319E30 /* json_token.cc in Sources */, - 21C26BE9119D3D1830192208ECB5FEEA /* json_util.cc in Sources */, - ED222EFFCDFB47CCB0A4ABB78207D53E /* json_util.cc in Sources */, - 6AB0B613DC8701364BC5D0AFF4C7EC88 /* json_writer.cc in Sources */, - 8880952CE3CDE4DA33507C9ABCF4DE42 /* jwt_credentials.cc in Sources */, - 035DDE26E04375BF486C84016658FC1D /* jwt_verifier.cc in Sources */, - F61928CE59DD206E4EA60DA552D6926C /* lame_client.cc in Sources */, - 2A2C77144D217B59EAF854945E007588 /* lb_policy.cc in Sources */, - 845FC1B4CA6996B26111F1B1F0972C79 /* lb_policy_registry.cc in Sources */, - 66DC592C06E51BFC2541E7EDDC51FD6C /* lightstep.upb.c in Sources */, - A04AC90695636884CC901A851FC9187A /* lightstep.upbdefs.c in Sources */, - 0368636B58A2485FB023176DB55C164F /* listener.upb.c in Sources */, - 0AECE45F1CA9B98F3B9FCFB7DF5D96FE /* listener.upbdefs.c in Sources */, - 4F7F96ED44286C4F6BB8C771F444C3C5 /* listener_components.upb.c in Sources */, - 83ED38E3BDC02DC98E755657E943499C /* listener_components.upbdefs.c in Sources */, - 996C26E8220E44F9BA95DCFA21044107 /* listeners.upb.c in Sources */, - E07CE786E959B93123CD209FAD6B0A06 /* listeners.upbdefs.c in Sources */, - 305BE9BD20B8DAE4AB8F30CA671572A1 /* load_balancer.upb.c in Sources */, - C39B42703B392FBCE7705FA4CA8FFB59 /* load_balancer_api.cc in Sources */, - A203475C8663AF346B704636B29312D1 /* load_file.cc in Sources */, - 25AA1B4E86D0B2611CCED52851C1CB49 /* load_report.upb.c in Sources */, - 71896E8300CD06F732BA04A07436EE49 /* load_report.upbdefs.c in Sources */, - A5EC5FD67C8C81D255BD639F37CA9457 /* load_system_roots_fallback.cc in Sources */, - 3C22A911F16EBAA0192B2DAEB92E71D0 /* load_system_roots_supported.cc in Sources */, - 6891005EBB906F371DAC7D4AE3D73AF8 /* local_credentials.cc in Sources */, - 4E6DDFC9D913CBBED0916465BC692AD3 /* local_security_connector.cc in Sources */, - 16A588F869DC5767F0BFA27ECD3E0C74 /* local_subchannel_pool.cc in Sources */, - 600458DF2E53750A823CD43511057E09 /* local_transport_security.cc in Sources */, - C174CEDCC66AE6DF190EB9DF49184DDB /* lockfree_event.cc in Sources */, - 195FEB7F8200204DCD909396066757A9 /* log.cc in Sources */, - 26CADE986E4B93FD5051A6A38DBDC603 /* log_android.cc in Sources */, - 71ADA95958325D4F2B856997CB42A66D /* log_linux.cc in Sources */, - 528F1E504A9D2FCBDC76F739ED426520 /* log_posix.cc in Sources */, - 531CEC66F551C94C3EF3CB6C4DB605F4 /* log_windows.cc in Sources */, - FA662B75A1C93DAAFB3B70E601090318 /* lrs.upb.c in Sources */, - 46611B8B9EFBE7B7FC4EE76671D3DA43 /* lrs.upbdefs.c in Sources */, - 2AACB7D01E1CCE7F279614E7C635E693 /* map.c in Sources */, - 569E14077460273E686CDD4CD5C1D060 /* matcher.upb.c in Sources */, - E1E2862D7A88080FD7D04F77C3802622 /* matcher.upb.c in Sources */, - 0AB515B7E40ADC486A10C65979A0FDA7 /* matcher.upbdefs.c in Sources */, - A2F90147D1BE4E52605E22C83EE8E12E /* matcher.upbdefs.c in Sources */, - CACEB532F40561E9D38706B36EE7A04F /* matchers.cc in Sources */, - 6D18EBF3F964B94991CB85F0E14BEE6C /* matchers.cc in Sources */, - 3F47623BE5E4A61E2C845649131712E1 /* memory.upb.c in Sources */, - D85D2403728C590EC9F19C7FB181A982 /* memory.upbdefs.c in Sources */, - 1AB50DEFC5EC00E9038EC006F52CB55F /* memory_allocator.cc in Sources */, - 223D3198AA24C6D58BCBA9A907ED2C8F /* memory_quota.cc in Sources */, - 0E482596FE092AB441A286F20D88086D /* message_compress.cc in Sources */, - C65C97147A271819A356AD2C9E5A4AB4 /* message_compress_filter.cc in Sources */, - 290830254BF61D5F34A8FE124B2F90BA /* message_decompress_filter.cc in Sources */, - 5B23DFE8C48D593104E3845259C42290 /* message_size_filter.cc in Sources */, - C4F9B2F7C2DA10472C7ECD70DC11DC1A /* metadata.upb.c in Sources */, - 3A873698E3DE125C3F8B55E039D6BE46 /* metadata.upb.c in Sources */, - 494A8992E303AA52CEB335CC806B7BE8 /* metadata.upbdefs.c in Sources */, - 7A4557C4D4C4763B44157963B997D766 /* metadata.upbdefs.c in Sources */, - 600474D594BBC554248956335684D22E /* metadata_array.cc in Sources */, - 568B990EA43081E1F44FD401F3E2E628 /* metadata_batch.cc in Sources */, - 76D39BD6AFAB9C1728B1FD9958A275B6 /* metrics.upb.c in Sources */, - AA900A24AD262BB1989D33DC927C4D0A /* metrics.upbdefs.c in Sources */, - 19E5CDF1D8DF6D42E9DA1CB910473FD9 /* metrics_service.upb.c in Sources */, - A44BAA90019BF12EFC323487B26AFEB1 /* metrics_service.upbdefs.c in Sources */, - B1810D921BB11CFF0A8DDF15EC04504B /* migrate.upb.c in Sources */, - 577B5E5FABC338D5A9C6A81EBCFE5EAB /* migrate.upb.c in Sources */, - 1F16EBA03234A79239946551EB3EB88D /* migrate.upbdefs.c in Sources */, - 5C078A05BA62BB08A2F4DD90806F2C87 /* migrate.upbdefs.c in Sources */, - 289F924E53CFC2F6A1455527D0B307F7 /* mimics_pcre.cc in Sources */, - B547DDD605C8AC7A7503EA72BDD81A08 /* mini_table.c in Sources */, - AF4C102E59270522CC65777E7ABE5889 /* mpscq.cc in Sources */, - DA069E0355D810616595AE9FCB3D64F6 /* msg.c in Sources */, - 771C62A23570ED8B4DE1BC6D9A9A88D8 /* murmur_hash.cc in Sources */, - D1C9484A6DDE00211148300DF21F0739 /* mutex_stats.upb.c in Sources */, - A2CA6CAA86DE7E299A6D7D0AE6E8D133 /* mutex_stats.upbdefs.c in Sources */, - FD8EDD1817A0C71BF8770C3B88442E24 /* naive.c in Sources */, - 891989BA158434CFC2838AB34E1025E8 /* nfa.cc in Sources */, - 1A86B4311219115622BF5053E696E2D2 /* node.upb.c in Sources */, - 0CCC62CDD7559F96BC4E2062E13E4F84 /* node.upbdefs.c in Sources */, - 08E5E06A6623649B08A4ADE762708C81 /* number.upb.c in Sources */, - 658EB79C0CD022E633721B8A763BD0F4 /* number.upbdefs.c in Sources */, - 49D1E318950549EE5154CAC8121DD88C /* oauth2_credentials.cc in Sources */, - 1B2C02A9548D918E78241CCE7AA755E4 /* onepass.cc in Sources */, - A9B0805A1F59167288A019D4422B6456 /* oob_backend_metric.cc in Sources */, - 7723BEE1584D2F6ADF5496FFB5579E11 /* opencensus.upb.c in Sources */, - B64DD454354C5D6A35ECE4470DC9B94A /* opencensus.upbdefs.c in Sources */, - 4C7A0C4C2ACB7EC68A64B46F5C358AEA /* opentelemetry.upb.c in Sources */, - B858A2404F585C457238A9B4B3F1CC9D /* opentelemetry.upbdefs.c in Sources */, - 666F0A717167C968B5EBED4A49EDBFC3 /* orca.upb.c in Sources */, - B59F60BD11427F463F10FBF899B0E6B8 /* orca_load_report.upb.c in Sources */, - F992041C7F3BB2605086A7B6545E21B6 /* outlier_detection.cc in Sources */, - 208FF31957D0FAE439585F57CC5631D8 /* outlier_detection.upb.c in Sources */, - D9897C994019FD1EF544B759E5D64486 /* outlier_detection.upbdefs.c in Sources */, - E3F72E56B8203CF8E046CB54C1F3B7F3 /* overload.upb.c in Sources */, - DBA26690BB18E11207414B6D4306CBC3 /* overload.upbdefs.c in Sources */, - D56BCF6FB34C7DB1FC6BC1314C0686FB /* parse.cc in Sources */, - 49DBFBE53592E86D79961427F8FB9CBA /* parse_address.cc in Sources */, - BEEC876AC8AAB97026A9EBB7DF10E142 /* parsed_metadata.cc in Sources */, - 2BCF0EEA4BACE1A7450A249370769A57 /* parser.cc in Sources */, - DD5F374C09B13FDD85A661C0C401B2FB /* parsing.cc in Sources */, - DE80205D16A082707A7F93B50B9ACA7A /* path.upb.c in Sources */, - F3D939A86D16E15960B0B58CB1693090 /* path.upbdefs.c in Sources */, - CA59ADA99BAE13598BEE7DB0DA8B0811 /* path_transformation.upb.c in Sources */, - 708D3466A27CC5D34C39445E85DF96DD /* path_transformation.upbdefs.c in Sources */, - 6DC9CCAA55698B15EA579F58C0E01E9D /* pcre.cc in Sources */, - 177D08FB9352749736D0CE5E1F9396B0 /* percent.upb.c in Sources */, - AA4E9ACC51C28C03D926C573A68272F7 /* percent.upbdefs.c in Sources */, - 45CC6B09C81ECEF86E9AC821629D69CF /* percent_encoding.cc in Sources */, - 134CBB055406B89F93CEA3E1B4B7D47F /* periodic_update.cc in Sources */, - 7DB1048676F2833A5265A4C903764BB6 /* perl_groups.cc in Sources */, - 2ECFB7757831C20716B0EDF668A42357 /* pick_first.cc in Sources */, - 11CE29012AD9AE596629763F6D22E15B /* pid_controller.cc in Sources */, - 3E17DE877DB028686ACE37F7B954B8EF /* plugin_credentials.cc in Sources */, - BD4D21D29FAA02B5E55919715E48E8DB /* polling_entity.cc in Sources */, - 9901AC133CCDDCFB1EC5A42939C305CC /* polling_resolver.cc in Sources */, - AE4C3812137D194122EDEB2C8F9F9E81 /* pollset.cc in Sources */, - 4BEDA979F4E88512D230125F429C015A /* pollset_set.cc in Sources */, - 2D907781AAB296587D70A79C71755821 /* pollset_set_windows.cc in Sources */, - 6FB052B0F106D2706856F4A129670082 /* pollset_windows.cc in Sources */, - 0A88E47B66E78035445B3AF8B9417F77 /* posix_engine.cc in Sources */, - 5EFE808FE41B9A4668325993BCB61884 /* prefilter.cc in Sources */, - 2CB4D8E916B020DA080AB063D063B8D6 /* prefilter_tree.cc in Sources */, - 4D6F4F01EB96009E6DBC75D700165598 /* priority.cc in Sources */, - 7E886F42F3257062A5B9C3704CAF36CB /* prog.cc in Sources */, - E4B98DBBC0A049F9219267213A989C93 /* promise_based_filter.cc in Sources */, - 2D55637E5A2F7302E43C322B07920A95 /* protocol.upb.c in Sources */, - D3BA9CCFED4C65321B4A8F738F498FDD /* protocol.upbdefs.c in Sources */, - 1CF54E0A148F448F35DD45D6CB31B9D3 /* proxy_mapper_registry.cc in Sources */, - 55FFB4571A3351D50DF6E4A62A35F1B5 /* proxy_protocol.upb.c in Sources */, - 59F78F1D442DA0CF37C5CEFDD9DADCC0 /* proxy_protocol.upbdefs.c in Sources */, - 2DFE77AE983E9527D042F655B6B0B302 /* quic_config.upb.c in Sources */, - 1F0EB31ED5870B1F5E4403C51EDEED1F /* quic_config.upbdefs.c in Sources */, - 3E2F5167B86BA84C9E47A8834B1291BC /* range.upb.c in Sources */, - DEAC0124654CF3E7273D403D551C9F7F /* range.upbdefs.c in Sources */, - 8C5644667405D566F6E2EB182DA3971C /* range2-neon.c in Sources */, - 74360E5849A02C345C485F453810F959 /* range2-sse.c in Sources */, - C462C47B9A7FB631F495E77424CB8981 /* ratelimit_strategy.upb.c in Sources */, - 48CCB00188EDB83363A9D74379B98F33 /* ratelimit_strategy.upbdefs.c in Sources */, - 54C6C545729DB584DEF962C169FD507B /* ratelimit_unit.upb.c in Sources */, - 65AFBEC2AA21C987F65CDB702A07976B /* ratelimit_unit.upbdefs.c in Sources */, - AA0945755918A534DE7058203FF7FF6A /* rbac.upb.c in Sources */, - E93C3BAEBB29F9FD27E1ADB182D3D116 /* rbac.upb.c in Sources */, - E07AA7AB4EAE02A17FE8A2B4594D9AB7 /* rbac.upbdefs.c in Sources */, - 6A34954F43A55762EAD1D8098833072D /* rbac.upbdefs.c in Sources */, - AE2B22EB24216F9EB8B866DAA955A1F1 /* rbac_filter.cc in Sources */, - E808FEAA921FA1E63780BEF3D5E1AE68 /* rbac_policy.cc in Sources */, - 6C7D565EEDA3AFCA13034A7FF9A97338 /* rbac_service_config_parser.cc in Sources */, - FC26989DD6B557253525022AE1BE478B /* re2.cc in Sources */, - FF4523F7503AF229D4BAF541DE578530 /* reflection.c in Sources */, - 60C4DAD1725E291CFF51C593C40BA629 /* regex.upb.c in Sources */, - 19C783FC23A17182D6203DCEDD659B4B /* regex.upb.c in Sources */, - D8CF15D63614E42B378EB6DF8F610E55 /* regex.upbdefs.c in Sources */, - 47DEEAA99258329B9B30429C52E43382 /* regex.upbdefs.c in Sources */, - 42975CF9BEE38F0B31331728DB7FAA19 /* regexp.cc in Sources */, - 787D8644D1A146FBB3465B0FED9E42FF /* resolve_address.cc in Sources */, - D63F8B0C5EBA8BA8FBAB3A9671F9F99F /* resolve_address_posix.cc in Sources */, - 8B2E40A4EDF94F21E0F251EAD92F2576 /* resolve_address_windows.cc in Sources */, - 5755FC2F3D61F44FA68B81538915F140 /* resolved_address.cc in Sources */, - 9BB482409500D13EEA3452A406AE9AF7 /* resolver.cc in Sources */, - 1A00F28DCB0B2105E7049E670E502CC4 /* resolver.upb.c in Sources */, - 55D987EDD4336F18500C0AFFCFB3CD88 /* resolver.upbdefs.c in Sources */, - 924CF6D31119CD0D36DF659C944685E1 /* resolver_registry.cc in Sources */, - 1AFD928117A25546F3C7ED7B556B32F9 /* resolver_result_parsing.cc in Sources */, - A4372037A211248C07A0312968C487A2 /* resource.upb.c in Sources */, - 68B590C52669B1DFABB91C59BDAC4948 /* resource.upb.c in Sources */, - DC91FE164F26E6C330B65B6755F26BAB /* resource.upbdefs.c in Sources */, - DE93A7F7AEAD9E022EE448C4CEE2F2A0 /* resource.upbdefs.c in Sources */, - CBF91A904C12B92F7647E2A3D49AE0FA /* resource_locator.upb.c in Sources */, - 13A14F54607D20814269EA451A39FE7F /* resource_locator.upbdefs.c in Sources */, - F4F2EA476E27B7B81D2834C1B98D1140 /* resource_name.upb.c in Sources */, - 5817CAF374E7F8B0B52356FA634466EF /* resource_name.upbdefs.c in Sources */, - 8E2909FD8BFB6CC3E8AA1308A8DA0020 /* resource_quota.cc in Sources */, - 82ECAFE6D852BC18DB152E971526E99B /* retry_filter.cc in Sources */, - 485E345B763F8CF9A0DA347A5FF7D532 /* retry_service_config.cc in Sources */, - 6344036854CE103E2C1C1CEE11270D5A /* retry_throttle.cc in Sources */, - 534567E6A69BE8CF93AF1E3FE8613677 /* ring_hash.cc in Sources */, - DFE4B3C7213FA98361E546A7313637B9 /* ring_hash.upb.c in Sources */, - 39584CCC96154043182A1FE7414C1E0D /* rls.cc in Sources */, - E493A5E255CBE900E11340DFEDC90860 /* rls.upb.c in Sources */, - 52128016DF55EC0AB9134D5C94E7ED40 /* rls_config.upb.c in Sources */, - 20627A0834DE7BB9A5FC5195D96F72C8 /* rls_config.upbdefs.c in Sources */, - 5A3BE70341736EED5A91C3FC0D3B5117 /* round_robin.cc in Sources */, - 583551D64242DD0FB9F3B2754E4CC4EC /* route.upb.c in Sources */, - B3547A4059D63E9DD8692829CB8427FF /* route.upbdefs.c in Sources */, - EBCE99015BE80622C2E099BBE4EDB869 /* route_components.upb.c in Sources */, - 1068C22565A0C8FA5D1104B1DAF41277 /* route_components.upbdefs.c in Sources */, - F2322ECCEE517F6B5EDE5037894F8EC6 /* router.upb.c in Sources */, - 02F25DA05C5334F456E1F358C7220BB0 /* router.upbdefs.c in Sources */, - 36DF26A6000043668C6950DD52643C91 /* rune.cc in Sources */, - 27C983CBBDA03DA9B95BC625642295D0 /* scoped_route.upb.c in Sources */, - C3075AD5A8345B7F936F820277773996 /* scoped_route.upbdefs.c in Sources */, - D0059AF971CF222E3BAC6A23BA49C9E7 /* secret.upb.c in Sources */, - 67C0BCC52CCBE5DCAF4DC9A3265E9325 /* secret.upbdefs.c in Sources */, - 9B1C9095627C0516918E3D5AB7E44F13 /* secure_endpoint.cc in Sources */, - D7D24C01CFEDF0912D3111839D5D294C /* security.upb.c in Sources */, - D6EFEF520767A1FC2880458D930FAD6B /* security.upb.c in Sources */, - B2A6B75C35FA441F83E1F93C1C71C0D3 /* security.upbdefs.c in Sources */, - EED4CA315737CB3C5B01461D3B3614F4 /* security.upbdefs.c in Sources */, - 5980FCF752AE005B2CA932F65A991116 /* security_connector.cc in Sources */, - 33CE2F83D79218B14652EB97B2FCECDE /* security_context.cc in Sources */, - A638D689426752CF6C4FA14BA215FE33 /* security_handshaker.cc in Sources */, - 012966AF8F45E539F2EBAEE3A49110B5 /* semantic_version.upb.c in Sources */, - CC5DE6F7A35659BBBE60185A6429D977 /* semantic_version.upbdefs.c in Sources */, - 1F107BF51D4BCD1C55BCCAFD606E23B8 /* sensitive.upb.c in Sources */, - 816A0C955530D519898EEB7358DE347C /* sensitive.upb.c in Sources */, - 09716863A2065A287EB9865D63AFD799 /* sensitive.upbdefs.c in Sources */, - 5FAFFB55338002C482875299303820E6 /* sensitive.upbdefs.c in Sources */, - EC943F7F5432305F5BCAA698EBAC9666 /* server.cc in Sources */, - 4117085E0974614FA2C0F47E1CE6175F /* server_address.cc in Sources */, - E3E92D3FBF5AE80122346DC91094F18D /* server_auth_filter.cc in Sources */, - F58DD9D5763E43F496D56670289D6D4F /* server_config_selector.cc in Sources */, - 94B42C9D29C036C16E5940397A69B359 /* server_config_selector_filter.cc in Sources */, - 096A6DC23D08C4E94EAF8EE16C503034 /* server_info.upb.c in Sources */, - F33085959CE70B33008C0526917C2EE4 /* server_info.upbdefs.c in Sources */, - 05553EE5ACA61DE6C1301C46F6E4D4DE /* service.upb.c in Sources */, - D8823118F8C8367D9DA186762FABA815 /* service.upbdefs.c in Sources */, - 29EA5BB052B7003F9E43919613BC73D0 /* service_config_channel_arg_filter.cc in Sources */, - D7B101C1C0FBA348596051E24A6C87E9 /* service_config_impl.cc in Sources */, - D95F19F0FFF88287F441281D69A8E3E2 /* service_config_parser.cc in Sources */, - 31D24F8FB79F8D8F4DB14F3575E76531 /* service_config_parser.cc in Sources */, - 01BD7505B96580E45403073721614294 /* set.cc in Sources */, - 28D17BDAFAF828855335EAE7C46C691A /* simplify.cc in Sources */, - 960AEA699D1FB96385CC231BA2B79536 /* skywalking.upb.c in Sources */, - E82DB5977A545E2EBFF4122F2E082D0B /* skywalking.upbdefs.c in Sources */, - F325AAD047661153353F515C6891C670 /* sleep.cc in Sources */, - 469F6F9BD3AACDC231B93214FE042187 /* slice.cc in Sources */, - 9379672628F9E02A3FCD5A9CC5F28D42 /* slice.cc in Sources */, - DD76DC59B55195B9E090BE949092678B /* slice_api.cc in Sources */, - E01265307F5647463BEAB7732951DEA4 /* slice_buffer.cc in Sources */, - 026B0E2A5112281FB5BBA6D3CE81DDC1 /* slice_buffer.cc in Sources */, - B67C64F32FC2B6D42CE56939FE336DF1 /* slice_buffer_api.cc in Sources */, - 1ECDCEC9E8F72C9BE16ABEBAE1D3148C /* slice_refcount.cc in Sources */, - 5E68C165D5973DFEEED21456995BD663 /* slice_string_helpers.cc in Sources */, - 8B07315F7CFE80A50D6CF1A04D0C0B2B /* sockaddr_resolver.cc in Sources */, - 134E6F339AB5EFA443A34D4849B5537C /* sockaddr_utils.cc in Sources */, - 03C4DBA4EC7A355958139B920B725191 /* sockaddr_utils_posix.cc in Sources */, - EDCDD6D7C7EDE639CE8F872745868E01 /* socket_factory_posix.cc in Sources */, - 4609DA0CDBE8B7861260B3996190FD43 /* socket_mutator.cc in Sources */, - 34215C6EC0844BB340BFE6DAC2C4FC28 /* socket_option.upb.c in Sources */, - AFE86D51AC7DFA4ECA6DA4935C6C6DEE /* socket_option.upbdefs.c in Sources */, - 3F2211A63A2C573FF60378F946297E39 /* socket_utils_common_posix.cc in Sources */, - B0B14685E0B8E5FD1940CF267FCA33B7 /* socket_utils_linux.cc in Sources */, - 51916BAF322437916D883777859F56D6 /* socket_utils_posix.cc in Sources */, - BBFF44D6E21993EBAF780409273CDD7C /* socket_utils_windows.cc in Sources */, - 0E6BB571FB6B30FA854C885AAA280AE5 /* socket_windows.cc in Sources */, - 3C089F18823FF52CCDAB0AD770560099 /* ssl_credentials.cc in Sources */, - 65ADEE8B879FD7451286C104ACFCBFC2 /* ssl_key_logging.cc in Sources */, - E05E64FC5B7BC474573F71A26F1CDF0E /* ssl_security_connector.cc in Sources */, - 7CE3425FC3F37CCC1B55AB10FC67F0E5 /* ssl_session_boringssl.cc in Sources */, - 1405FE05B36E5C961B232C7B6E6F7E96 /* ssl_session_cache.cc in Sources */, - 8394B3BA10453266E829C19B634720BA /* ssl_session_openssl.cc in Sources */, - 7DEED5A72742412C03E103DA7D29A2EC /* ssl_transport_security.cc in Sources */, - B94D87B7F4F7D41D1FF41BAC6F2EB574 /* ssl_utils.cc in Sources */, - 91E43EF84608E02876DE3901B9E38A1D /* ssl_utils_config.cc in Sources */, - 31D4CD9FB94434E616D32F5881262D9B /* stat_posix.cc in Sources */, - AC946EBF144C5ACEB8656A31D071524A /* stat_windows.cc in Sources */, - A7A4DEF5B1C1BD765F835C2E497AD67A /* stats.cc in Sources */, - DD96CBF5D8E66C11DE038376DD69F12E /* stats.upb.c in Sources */, - 876ADF99B121A110BCB72D47E801D235 /* stats.upbdefs.c in Sources */, - CB96BB8260B85672618653D848117042 /* stats_data.cc in Sources */, - CCBB187D99822BD856EA79E1E252AB36 /* status.c in Sources */, - 8001C4272A2088EC0E94148F46D74AEF /* status.upb.c in Sources */, - 99DCA77AF6169B289BD729D635FF4504 /* status.upb.c in Sources */, - E26EF8318B93BE1C13B40F90ACD57820 /* status.upb.c in Sources */, - 7D9389D6217042CFF2BDA19ED7EB4199 /* status.upbdefs.c in Sources */, - EA805F9F0E226598B0F93149161AE9AC /* status.upbdefs.c in Sources */, - B80DBE4DD1C1CF6FE423DDA3C1EB190C /* status.upbdefs.c in Sources */, - 8620C47400CF8D4A300C66281291B93B /* status_conversion.cc in Sources */, - 2209C4B303292D24641149D94E9B4287 /* status_helper.cc in Sources */, - 4142B9C2F5252D6E2D5B77C42D2307CB /* status_util.cc in Sources */, - C6453C8B60BFAD6AD252E2347B1DDD69 /* stream_lists.cc in Sources */, - C13FAE2DEB50A05DD4CE92846ADB6327 /* stream_map.cc in Sources */, - 91DB93262E3A85863517899B472E7EE0 /* string.cc in Sources */, - 8FBFE28C57C7B1265E8F5C99EE3542BA /* string.upb.c in Sources */, - 92CF2E9A644AFDBC42150CD4BABAE2F6 /* string.upb.c in Sources */, - F9BF5117543D53188D82309BEA68B44F /* string.upbdefs.c in Sources */, - E951757C1EBFF84C0A0AD70C51861398 /* string.upbdefs.c in Sources */, - F2E5F73CB39894FC1477AF4B2FB72BFE /* string_posix.cc in Sources */, - C6D4EEABEEE70D04EDD402D25060EFF2 /* string_util_windows.cc in Sources */, - 14B9BDAC6BF4E4C4F4210606B398C770 /* string_windows.cc in Sources */, - E42E8D9EB830DD245B25FC08A576540E /* stringpiece.cc in Sources */, - F8BA925E7C31DB2D4688EB7E4BF9D651 /* struct.upb.c in Sources */, - A1B55F65DB4D87FE8F82E9207414EBCE /* struct.upb.c in Sources */, - BF6538A2BE6FB275CB8C50117B8C9FDC /* struct.upbdefs.c in Sources */, - 4306EE9D0962131816C310159085CE08 /* struct.upbdefs.c in Sources */, - 9885532D8D497DEF4B8AF5C4A271CB65 /* strutil.cc in Sources */, - 5472C1D79C6FD418CD6545ACE6EBB60C /* subchannel.cc in Sources */, - 87741114400EF0B95535C8432F5C149A /* subchannel_pool_interface.cc in Sources */, - 837C54DE585C95D1A5193A0F9F5F085C /* subchannel_stream_client.cc in Sources */, - F68DE47482ECBBED4B505B8674531EE0 /* substitution_format_string.upb.c in Sources */, - F5DC1AF617C07AA901D8381CAD247636 /* substitution_format_string.upbdefs.c in Sources */, - CE8854FF4850D8BFD3E3F1A84B33D405 /* sync.cc in Sources */, - 00A4E6CD2C6FDF612E0ABBF2978F35CF /* sync_abseil.cc in Sources */, - 3E12E81B028368104E24FE145745A83D /* sync_posix.cc in Sources */, - AF726F4BEB35DEF1A97C22A6F9985941 /* sync_windows.cc in Sources */, - 9C4B63A6B3A371797DD4637F2840B625 /* syntax.upb.c in Sources */, - 871632E6BC48D623CFAB0E31EAA3E8C6 /* syntax.upbdefs.c in Sources */, - DD63FB3347EA4747618BE9286EE76545 /* table.c in Sources */, - E8627BAE2D21B650493A56D7E4209A75 /* tap.upb.c in Sources */, - 4E6D7F1D24BA15B6A6B14E171FD40EF5 /* tap.upbdefs.c in Sources */, - 56790E1CB3CB1C683A7DCDB9364502EB /* tchar.cc in Sources */, - 7143B939574B55204F282C1D8CCA55C8 /* tcp_client.cc in Sources */, - 150A347A53F3EC1E47F176101DED791B /* tcp_client_cfstream.cc in Sources */, - 920B85781AD2A7CAFB814936D54C784B /* tcp_client_posix.cc in Sources */, - C0E7698BEBAE9AC6A36D4280C7B7F617 /* tcp_client_windows.cc in Sources */, - A6B23181F1DD10121BD6A7B8DE0A9AAC /* tcp_connect_handshaker.cc in Sources */, - 621885E0A5EE16D4FC3F55AFE7B5D40D /* tcp_posix.cc in Sources */, - BCA78FF7643709BEDAC13C7C3B7CA6F5 /* tcp_server.cc in Sources */, - AC75C28B78683BC22F8618ACD5D9D774 /* tcp_server_posix.cc in Sources */, - 3840B07776D809DCEC1BFFFA48E7AA5A /* tcp_server_utils_posix_common.cc in Sources */, - 38B6916B2EDEB3C2788CA3B7BE41AFDF /* tcp_server_utils_posix_ifaddrs.cc in Sources */, - D22A252B33B1CA99C27A7283176457A7 /* tcp_server_utils_posix_noifaddrs.cc in Sources */, - E7E1A081F5DCF6B099FC42D7CD907998 /* tcp_server_windows.cc in Sources */, - 8A148638527042553377A20B9663D7D2 /* tcp_windows.cc in Sources */, - FDFF056298A3468370598240D170C8C6 /* text_encode.c in Sources */, - C29C24214289CBBA83339B96DF5FC628 /* thd_posix.cc in Sources */, - 39C96065F4E6EAC1FCB75D342B960E0E /* thd_windows.cc in Sources */, - D7C805509B1B2E54EA6A41BA7987D15D /* thread_pool.cc in Sources */, - 03C159B4A73CE38578F41D23D1008CAD /* thread_quota.cc in Sources */, - 3148A9A90CB466EED239BF05FF4AB1E6 /* threaded_executor.cc in Sources */, - 68C861F064970D135C2FEA0D8CA26151 /* time.cc in Sources */, - 032DB839E5B464552BB67F30B911E6EF /* time.cc in Sources */, - B3D6CA251EF30CA0D2C9774C8BF51667 /* time_averaged_stats.cc in Sources */, - A5173898BE38F1651A9CAC831AF50D1F /* time_posix.cc in Sources */, - 90044D3D0863CDEF4ECDE561EE7223D5 /* time_precise.cc in Sources */, - 02095AE757838441A6DC4BAC51E656CC /* time_util.cc in Sources */, - FDC38746D9FB6D8FF58A1ED649E9795F /* time_util.cc in Sources */, - 0D5CE091F0B19CA23C54E74945535053 /* time_windows.cc in Sources */, - C5F3CCCD4B93F322040EC0115D4238D8 /* timeout_encoding.cc in Sources */, - B40F20D15EA29C47B1686B1CD585AFB2 /* timer.cc in Sources */, - 9FB0FBBD4DB377AED8CB12F4EFB2B2C2 /* timer.cc in Sources */, - 12CF873D4A6A16B353D0E08B4F4EFF54 /* timer_generic.cc in Sources */, - 617309F59592267C3DA2A0DBDF0E1B04 /* timer_heap.cc in Sources */, - 46419FEFE6B29B6CF27B69201F0DCC45 /* timer_heap.cc in Sources */, - 6667DE6495BE31240A7D9CDB1CB37A00 /* timer_manager.cc in Sources */, - 45C1E4DF60E54640AA4F14C8F498E219 /* timer_manager.cc in Sources */, - 592562B619B80D72E40A1A90D945FF8B /* timestamp.upb.c in Sources */, - C6469FCB4FCD1CB26C6049ECBB85F22E /* timestamp.upbdefs.c in Sources */, - 360F3A11EC289B80F6046DD02374FBAC /* tls.upb.c in Sources */, - AFC2890F60BFF1651D1A4C48C7D05C4B /* tls.upbdefs.c in Sources */, - 07524025B3B44D61AF35C34DF4E13D91 /* tls_credentials.cc in Sources */, - 71214724E7F01DFB7897CB2F9A41E047 /* tls_security_connector.cc in Sources */, - DE0F75D81E221EA12C93641814889D0B /* tls_spiffe_validator_config.upb.c in Sources */, - F0ED108AE367096290141C0F7EEFECCF /* tls_spiffe_validator_config.upbdefs.c in Sources */, - 1EBADF6B736DB9BC658F71AB1DBF348C /* tls_utils.cc in Sources */, - 6AB27DB2CB706D83257B5EBD43AD8B70 /* tmpfile_msys.cc in Sources */, - 45CFA56D449F6A32DEE2EE423898F0AD /* tmpfile_posix.cc in Sources */, - E20CE1D168BD57DB07C53809743A11F4 /* tmpfile_windows.cc in Sources */, - EEE077C9F56A7CF61E5589A4B10EA769 /* token_bucket.upb.c in Sources */, - B3EEA63CC2F1ED11C8AD10276BF3D6DB /* token_bucket.upbdefs.c in Sources */, - AB24BD32BF1B2CE862761025167C57DD /* tostring.cc in Sources */, - 5B03F54B684B55354D5B612F4EAF0C93 /* trace.cc in Sources */, - 9C7E861F62DA95FCF17997B5E5C0E10E /* trace.cc in Sources */, - 23FA5B650223242A435F55B848A6F747 /* trace.cc in Sources */, - 6A6EAC74B3D893E3A35A13A70987527B /* trace.upb.c in Sources */, - 24BD66D4C80F23AC86724C1AB30417CC /* trace.upbdefs.c in Sources */, - 492A96B775688E5AD8646314EFEFF24D /* trace_config.upb.c in Sources */, - 6CB9CDF374E63A8868C7D5FFD03E17B1 /* trace_config.upbdefs.c in Sources */, - 2C77EE0AC1F7B4F55336C4F5D08DBA04 /* transport.cc in Sources */, - BB8574EC0E06946B5FE5F2A6AEB43171 /* transport_op_string.cc in Sources */, - 5CC9C2EB742E926B5FD574BF3F15BE75 /* transport_security.cc in Sources */, - AD77291749EDA6052EF473A011DC8D17 /* transport_security_common.upb.c in Sources */, - 352D925D1C732F274C458EED41C7F0DE /* transport_security_common_api.cc in Sources */, - 8B13294A2F66E2DA1A4C4F59D7BAAE30 /* transport_security_grpc.cc in Sources */, - 44F49AFF43B995BC9DB333B7FDFE65C4 /* tsi_error.cc in Sources */, - 7FAFC5391E079559598D47A42418E53F /* typed_struct.upb.c in Sources */, - 6A5D9556CBBD8188F4E8397BF6129D4F /* typed_struct.upbdefs.c in Sources */, - 2AEC2A0DDE4608BE593E529DB3A1E7CC /* udp_listener_config.upb.c in Sources */, - D138D7A8D45B7646A830BC73D462784C /* udp_listener_config.upbdefs.c in Sources */, - 25BD342A26810E5DCD334A322E12988D /* udp_socket_config.upb.c in Sources */, - 13FD43BBE8BE45C5898A7CDDD1C85D4C /* udp_socket_config.upbdefs.c in Sources */, - 3C7966AF769BD29592DCA7BD1463A387 /* unicode_casefold.cc in Sources */, - 5C0DCADB27368C724C4797813CC1E1A4 /* unicode_groups.cc in Sources */, - 4F68C001B6F4AD024C024C126B74B9DC /* unix_sockets_posix.cc in Sources */, - 2652E40D852B89E1EE2B042F92873840 /* unix_sockets_posix_noop.cc in Sources */, - C4F0E5F3E38A80CA84D41F3A9D26BB7E /* upb.c in Sources */, - 9D50C6A81BBC4CA6A81E6E39AA644C0B /* uri_parser.cc in Sources */, - 2F01B9EB3342EC9778E6CA57519B2872 /* url_external_account_credentials.cc in Sources */, - 6B081614B52D3FE279390785329E9826 /* utils.cc in Sources */, - 7308F7DBB4527573A5AECA5F2C337A00 /* validate.upb.c in Sources */, - DA650CD8A63950FCE21CB4C8CEC15A8F /* validate.upbdefs.c in Sources */, - 36D5E43B3905A5EA88ABD3CCBE70AD9D /* validate_metadata.cc in Sources */, - F96756881240227E677A2749253B6719 /* validation_errors.cc in Sources */, - A7AD6C385204769A159E7A34EC8CA9D8 /* value.upb.c in Sources */, - 698B6F67017713BC5F93310DF626F9C7 /* value.upbdefs.c in Sources */, - 499AA6C9C392734A850DB89763298A2B /* varint.cc in Sources */, - 6CF353212D967CB614AC9D9ADD192787 /* version.cc in Sources */, - 28106CAE3C2DABF2A3D0C99EB9A13AEA /* versioning.upb.c in Sources */, - B26DF458B61D820A938AE6277D88F418 /* versioning.upb.c in Sources */, - 8FD9D91A180F6DC9BE3D5EFE59F51A13 /* versioning.upbdefs.c in Sources */, - EDA8A7D3ACA5A06C6ED488693339E073 /* versioning.upbdefs.c in Sources */, - 4D0C2177007219B8F01BCEA690F50AB2 /* wakeup_fd_eventfd.cc in Sources */, - 2F36B35572B100C8B307C12557B504DF /* wakeup_fd_nospecial.cc in Sources */, - 789B1C321D10A967FAEC78A61C3775F2 /* wakeup_fd_pipe.cc in Sources */, - BE7C1D931C3E59A31694152F9A26B037 /* wakeup_fd_posix.cc in Sources */, - FC9FC827DDE877CCE93E4CD3F2D439BC /* weighted_target.cc in Sources */, - 59304EE9F93090E9FFB6B1584CA207F9 /* win_socket.cc in Sources */, - D34BD7CB3E02F9B7F81981ECCFE97B4C /* windows_engine.cc in Sources */, - 9C7421AA0DB842EC08D7AE7C336325EB /* work_serializer.cc in Sources */, - 484D6DD8D99CAEA20F04BE82BB0F7EFB /* wrap_memcpy.cc in Sources */, - 46688AEEC6F4D8B59C2B7D14D90A6E36 /* wrappers.upb.c in Sources */, - B48B2B36360325970C989D055F9F1913 /* wrappers.upbdefs.c in Sources */, - 750F7938AF704257223C33E844623F5D /* writing.cc in Sources */, - 97803C53DED83C5830A858D18C2A5E9D /* wrr_locality.upb.c in Sources */, - C6C2B6EE1EBF12930835BFDA1641712A /* xds_api.cc in Sources */, - 79C4E7AF4C9EA59DFD94AF04630ACD52 /* xds_bootstrap.cc in Sources */, - 414266AEC6D19F6D06B7A58AB8648742 /* xds_bootstrap_grpc.cc in Sources */, - 87BA190A931D9247BD4600724742CC34 /* xds_certificate_provider.cc in Sources */, - 829F1BDEEF98D376525D0F9F2A650849 /* xds_channel_stack_modifier.cc in Sources */, - 734B34014B83F63746D0B603141A5C3F /* xds_client.cc in Sources */, - EC0C779DB931C18E5096A5001C41A106 /* xds_client_grpc.cc in Sources */, - 6486BB6D356E53D9794CAD70B0796F52 /* xds_client_stats.cc in Sources */, - 504D6F2687D76B3CF2B0FBCBE1DAAB12 /* xds_cluster.cc in Sources */, - 9445BEEF5F5463717BF961AD949613B5 /* xds_cluster_impl.cc in Sources */, - D74E7194F17B75515E12AC2D2C5BBFFB /* xds_cluster_manager.cc in Sources */, - F0C628B0973168878AF212EDF05AB7A3 /* xds_cluster_resolver.cc in Sources */, - 28A7C748446015789D74182BC0AB9DBF /* xds_cluster_specifier_plugin.cc in Sources */, - 525F72BFEF421471E2F0EC20BE7FDB56 /* xds_common_types.cc in Sources */, - A32D31E5F1E065545337A299CB426E0A /* xds_credentials.cc in Sources */, - 3E00849D39924BCBC68DAAA21E478840 /* xds_endpoint.cc in Sources */, - 1C3DFA3392DCBB5EFF56B720B452EEEA /* xds_http_fault_filter.cc in Sources */, - E11342BA5BCE7DB4284B52DEA11201F8 /* xds_http_filters.cc in Sources */, - E65A29ED8891B3C8F55874176DB449D4 /* xds_http_rbac_filter.cc in Sources */, - 4551FD5988E694A8EF5415A15EF8D496 /* xds_lb_policy_registry.cc in Sources */, - AD9A7D3721C8339783589D8157267E51 /* xds_listener.cc in Sources */, - BFF5600C1A93FA3AECCB16DD4BDC2AD4 /* xds_resolver.cc in Sources */, - 921C56926CD7F1842DF425BA1B51E173 /* xds_resource_type.cc in Sources */, - 1F98BAAA1D4B6E6F53D6ABCAA4029FAF /* xds_route_config.cc in Sources */, - 7111ACAD8B11815C05E3164E07A9EC23 /* xds_routing.cc in Sources */, - 10C0AF6CD332A1D6B7CA7F1FF6542715 /* xds_server_config_fetcher.cc in Sources */, - 25CA9CD59FCE5D6BAB2A97497CB2AF04 /* xds_transport_grpc.cc in Sources */, - 28E18CA3D4210ECF2FD1E80A43BA7592 /* xray.upb.c in Sources */, - C86B078E26F7E924137112EB5EC135B0 /* xray.upbdefs.c in Sources */, - 9D27426BAE3957001999461D29843F84 /* zipkin.upb.c in Sources */, - B4315DE875EB25E7CB3FFCBD2DD4714E /* zipkin.upbdefs.c in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - C774537CAB7FAC8BF5C11A11F1B725FC /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 90BB31F0F27E38BAC5D5C764B35727B7 /* nanopb-dummy.m in Sources */, - B953D21512A66D05C279E1025944E27B /* pb_common.c in Sources */, - 1136EE33412702AF7A3AB335762FACB8 /* pb_decode.c in Sources */, - BB9BCE11F7A8524D7783FC7AA3205657 /* pb_encode.c in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - C82786D2233BBFA4E777CA56DD6472C1 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 528C11780EFA87B639747A943750D94F /* _ObjC_HeartbeatController.swift in Sources */, - 5997AB1090F063A2127D00A4FE601EDE /* _ObjC_HeartbeatsPayload.swift in Sources */, - 5088161EFE8E462C55E7E9EB0510374E /* FirebaseCoreInternal-dummy.m in Sources */, - B7C23F39F38C7BA83235122110BEABEA /* Heartbeat.swift in Sources */, - 4581365FCFFF182161157A938D23C83D /* HeartbeatController.swift in Sources */, - 2458BB746FD849E8F5D10ACF08235E0D /* HeartbeatLoggingTestUtils.swift in Sources */, - 9C159591A51767C52CCD314C05C49170 /* HeartbeatsBundle.swift in Sources */, - E55914A93FCB3F1574209EFB7770D366 /* HeartbeatsPayload.swift in Sources */, - C51E586CAD9F14636901EAB6B3099E44 /* HeartbeatStorage.swift in Sources */, - 1BA7469E77BF7A4453AC61C5F30947AF /* RingBuffer.swift in Sources */, - AAA6A7979F5384BAADF00179CBE08473 /* Storage.swift in Sources */, - 55445A63268E55AF1AC70E6C16B3834A /* StorageFactory.swift in Sources */, - 75C2F3DD877E6AE3304C2137F2151CDB /* WeakContainer.swift in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - F656F55E893BB468F40F5BB40EAD8FFD /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - FF2E9F44B678FE6E6AD57B50EA23248A /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 555ACB6930B15B016AE62529AA63492C /* FIRActionCodeSettings.m in Sources */, - 237AB6A5646B86BD73C0653C3FD9440A /* FIRAdditionalUserInfo.m in Sources */, - 6AA6CD661FE5240849A8B933331F86D6 /* FIRAuth.m in Sources */, - 48B3EB470CAF3C41F02B0C98AF3C420F /* FIRAuthAPNSToken.m in Sources */, - BBB925D33612717BE246C4FB4F28BF58 /* FIRAuthAPNSTokenManager.m in Sources */, - 4EC6B91328CCFC0D44FF745A20DFD6D3 /* FIRAuthAppCredential.m in Sources */, - 6B982C3E98D9459FB8BE2B14207219C6 /* FIRAuthAppCredentialManager.m in Sources */, - 8B2A7252282DBC7E4CF63A0A7C2C25FB /* FIRAuthBackend.m in Sources */, - E56744F974622C4FA3C628B8D4FA13EB /* FIRAuthBackend+MultiFactor.m in Sources */, - F2649EEBD070739FD884A40CB5F150C4 /* FIRAuthCredential.m in Sources */, - BCE37C09CCF588EC6C639526DD99BDF5 /* FIRAuthDataResult.m in Sources */, - 63D71DED9EF7F7A7633AD1652B05B8AB /* FIRAuthDefaultUIDelegate.m in Sources */, - 030C717E9E9B948657307781747E131F /* FIRAuthDispatcher.m in Sources */, - 64435180C9AC2AA12632181D60D851CA /* FIRAuthErrorUtils.m in Sources */, - 8C1A7F6B72A5D59DCC8C9FDC47202633 /* FIRAuthExceptionUtils.m in Sources */, - F5E466F08A9015FE6B351E239E65A22C /* FIRAuthGlobalWorkQueue.m in Sources */, - C16BA9DBD517ECBFE0EA9A790D8A4549 /* FIRAuthKeychainServices.m in Sources */, - D8EAD31AFD69CD9872D16637D0740826 /* FIRAuthNotificationManager.m in Sources */, - 2F47E1316AE35D2A374EB7B351D4056C /* FIRAuthProtoFinalizeMFAPhoneRequestInfo.m in Sources */, - 8C8460A6E52E9663BF1309E7E312E4F3 /* FIRAuthProtoFinalizeMFAPhoneResponseInfo.m in Sources */, - 59C8F8775A90E20407964A1D0C7FA91A /* FIRAuthProtoFinalizeMFATOTPEnrollmentRequestInfo.m in Sources */, - D9A64EC09A473B1AB447778E420B3581 /* FIRAuthProtoFinalizeMFATOTPEnrollmentResponseInfo.m in Sources */, - 73DA6D8ED06EC7C1E367A75BBB0D02B8 /* FIRAuthProtoFinalizeMFATOTPSignInRequestInfo.m in Sources */, - D8AED843CC91614E90669C1719A37D81 /* FIRAuthProtoMFAEnrollment.m in Sources */, - 1591F420E81B998559D270A0560B08F2 /* FIRAuthProtoStartMFAPhoneRequestInfo.m in Sources */, - 3DB1B4124CD573ECCE0B61D401244E6D /* FIRAuthProtoStartMFAPhoneResponseInfo.m in Sources */, - CDA1B17E473AFFCBC19476B647CDB5F6 /* FIRAuthProtoStartMFATOTPEnrollmentRequestInfo.m in Sources */, - D931A75DEBC483A8D4BF24541AF496AB /* FIRAuthProtoStartMFATOTPEnrollmentResponseInfo.m in Sources */, - 6B423E2EDB2A49AF6980348CD99026B9 /* FIRAuthProvider.m in Sources */, - 9095BD8231D38820B5F8AA872B1EBF45 /* FIRAuthRecaptchaVerifier.m in Sources */, - AEED44BBB4671BD817EBB54B02CF206B /* FIRAuthRequestConfiguration.m in Sources */, - 60C4C680ADB604B8610EC92DCD5D4C04 /* FIRAuthSerialTaskQueue.m in Sources */, - 67A7463A54F3C9FD3C2D6151324105BF /* FIRAuthSettings.m in Sources */, - 5A8A6CEE65D7A840190FD4E7084A8E3B /* FIRAuthStoredUserManager.m in Sources */, - 978A1140AFB45FA0AFC362633A69D049 /* FIRAuthTokenResult.m in Sources */, - 443AF44B18D34317232F51DB62C59CB7 /* FIRAuthURLPresenter.m in Sources */, - 6660E16A92281251C7EE1BA9A129000C /* FIRAuthUserDefaults.m in Sources */, - FB94C7345376D16A9BFE157FCED900DB /* FIRAuthWebUtils.m in Sources */, - 341B554C97E03C42F546AFCE17B8FF31 /* FIRAuthWebView.m in Sources */, - 2B2D908C65FB40531D05231341AFD0E0 /* FIRAuthWebViewController.m in Sources */, - 4C785FFC032DF291BB005C26D3680230 /* FIRCreateAuthURIRequest.m in Sources */, - AEB80BAE858A8B71FA58A7F7B9ABAD09 /* FIRCreateAuthURIResponse.m in Sources */, - CFC965F16DC85948CAE6907AEEF94EBC /* FIRDeleteAccountRequest.m in Sources */, - C34B3FB5194510ACCFD1EACF7C794BD6 /* FIRDeleteAccountResponse.m in Sources */, - B1CF053EA5C5E357FC9B4337B513D102 /* FirebaseAuth-dummy.m in Sources */, - 10CD033C7431E2F34AF7BCEA967CBE87 /* FIREmailAuthProvider.m in Sources */, - 6EB1983A2D3549D862B39D648DE6F6D2 /* FIREmailLinkSignInRequest.m in Sources */, - C1F250775E6B5A4AD99D4120C8E849EB /* FIREmailLinkSignInResponse.m in Sources */, - B3F726F5740063D87F40E98ED419A68D /* FIREmailPasswordAuthCredential.m in Sources */, - 741AE9EC3AA012846DEE899020368447 /* FIRFacebookAuthCredential.m in Sources */, - B56AA5FCBE1759890914E3A6FDCF7A19 /* FIRFacebookAuthProvider.m in Sources */, - 96C0FB742814EBD7853A254D5483D7D0 /* FIRFinalizeMFAEnrollmentRequest.m in Sources */, - 0F6154889BC9271070B11ADBCDEFF59A /* FIRFinalizeMFAEnrollmentResponse.m in Sources */, - 2CD1F947E68434BD9BDD0722CC99A0C2 /* FIRFinalizeMFASignInRequest.m in Sources */, - 84B0F75AAE618EE9812B1915F6DDB1A2 /* FIRFinalizeMFASignInResponse.m in Sources */, - F5FFA4C17A8DCB584A54B99AD93E2724 /* FIRGameCenterAuthCredential.m in Sources */, - E46E6995435E6B05C753E88D033223E4 /* FIRGameCenterAuthProvider.m in Sources */, - 8E6B1C7F0D484C8FCA0B62FA0E01458F /* FIRGetAccountInfoRequest.m in Sources */, - A00C52B7A401BB6D49FA4D6D01D086FE /* FIRGetAccountInfoResponse.m in Sources */, - 7C652FEB396884A386D11B6D0D9A60EE /* FIRGetOOBConfirmationCodeRequest.m in Sources */, - 7318E99F8E3269ED986BE5429FCC65B1 /* FIRGetOOBConfirmationCodeResponse.m in Sources */, - 9EFFAD6400B47EDCA6D0EA45BB65304B /* FIRGetProjectConfigRequest.m in Sources */, - 1CB7F722F9CA4D14BFF054BFB92F97B0 /* FIRGetProjectConfigResponse.m in Sources */, - BA13ADBAC788FF045A443041FAE245D5 /* FIRGetRecaptchaConfigRequest.m in Sources */, - 023345B6F4CEEC5BD44574E3EB75949A /* FIRGetRecaptchaConfigResponse.m in Sources */, - DF9560C1C38986910296F675B92F0D39 /* FIRGitHubAuthCredential.m in Sources */, - 8007A02489B2621D3AA14B6E8C18F025 /* FIRGitHubAuthProvider.m in Sources */, - 4BD1AFF071DA9449E145A5BD5789ADC5 /* FIRGoogleAuthCredential.m in Sources */, - E7C59C1F4E04627C059E10C22DA9B02B /* FIRGoogleAuthProvider.m in Sources */, - 7844ED7DD151D5F6D88B4BFE1F2241A5 /* FIRIdentityToolkitRequest.m in Sources */, - 5C20DCFB668E02D4C10AEC5BF4EF8A49 /* FIRMultiFactor.m in Sources */, - 1AAEA5787D2A28CE78301BDBC293AABE /* FIRMultiFactorAssertion.m in Sources */, - 2EDD88E4B5A7EA2F6CA9575F8077381B /* FIRMultiFactorConstants.m in Sources */, - 65ABB41FA377AF77D355881C5E034536 /* FIRMultiFactorInfo.m in Sources */, - FD9BD0709D7E0910CAD6A9A05D99E1EC /* FIRMultiFactorResolver.m in Sources */, - F4281113A2F77D87219129ABF58DF292 /* FIRMultiFactorSession.m in Sources */, - C4312965DE5A1A14962625B39FEBD554 /* FIROAuthCredential.m in Sources */, - CD379FF441B1CB76D301A5F4BEE31672 /* FIROAuthProvider.m in Sources */, - 71CA8E66803109284F1C66240D1C13A4 /* FIRPhoneAuthCredential.m in Sources */, - 394539D9DB96D3087B94A09BD0B6F91B /* FIRPhoneAuthProvider.m in Sources */, - 2DED0F00A954C3D4A190A4DCBFAE67D7 /* FIRPhoneMultiFactorAssertion.m in Sources */, - C55DF7F3DB33F4873CF26F0B28AFFB3C /* FIRPhoneMultiFactorGenerator.m in Sources */, - 70235D0AB58AED40F117B1D885357C01 /* FIRPhoneMultiFactorInfo.m in Sources */, - 70F00D7CCC4C919FCBF37979CB2ACB05 /* FIRResetPasswordRequest.m in Sources */, - B52F70D495559FEE959B43109A43735E /* FIRResetPasswordResponse.m in Sources */, - 94798EFA9985D2E6B3D25B36BF02CD08 /* FIRRevokeTokenRequest.m in Sources */, - 9FF295E54F9511775A5736663B97CF8B /* FIRRevokeTokenResponse.m in Sources */, - 2979C8D25564BE37FD7AF88B016025C1 /* FIRSecureTokenRequest.m in Sources */, - 318F19ADFFDA776FFF721B04F7DEB648 /* FIRSecureTokenResponse.m in Sources */, - FE298305DDD9212699473A2B33C13ACB /* FIRSecureTokenService.m in Sources */, - 9E8959F9AF6D7051104D9AFF28AEF682 /* FIRSendVerificationCodeRequest.m in Sources */, - 9252B6AE381D8FF25ADB608FDD3D8653 /* FIRSendVerificationCodeResponse.m in Sources */, - C43ACEDBBB26929C0C0F3A2B640FC66E /* FIRSetAccountInfoRequest.m in Sources */, - 7AD638B05B29056527DFBF2D187AAC97 /* FIRSetAccountInfoResponse.m in Sources */, - 7CFE2B255B811C84EB8C42DF48C71B3B /* FIRSignInWithGameCenterRequest.m in Sources */, - 6B93C2CFC29F7060DC74A749D5CB0009 /* FIRSignInWithGameCenterResponse.m in Sources */, - FC5BEECEFFAC48EE4ABB4089F5A991ED /* FIRSignUpNewUserRequest.m in Sources */, - 9E0B82C560400B3D7A5E8401399A4A03 /* FIRSignUpNewUserResponse.m in Sources */, - 9273CB60B835875CB24518F06E37C584 /* FIRStartMFAEnrollmentRequest.m in Sources */, - 6B0F82E6FAEECB722A32FBA36BF818DC /* FIRStartMFAEnrollmentResponse.m in Sources */, - 427961B44BB5494D49CCA6BFCDF14371 /* FIRStartMFASignInRequest.m in Sources */, - C3B9DD8EA672476450C9FAD1D614EE64 /* FIRStartMFASignInResponse.m in Sources */, - 7419A708DE21A1CDA35E5C072E8483CC /* FIRTOTPMultiFactorAssertion.m in Sources */, - D877EAFE28C0F9BDC7156821A4FB4FA8 /* FIRTOTPMultiFactorGenerator.m in Sources */, - FF66868F3850C89B26F9B43C6E0757AC /* FIRTOTPMultiFactorInfo.m in Sources */, - 0D782805B419B6BE36E2BB62213DDC59 /* FIRTOTPSecret.m in Sources */, - EE3D6EFB4489503A078EE3C0447A4FA4 /* FIRTwitterAuthCredential.m in Sources */, - 1CB9E2D7DA1C65B658C88AF6E0C0A050 /* FIRTwitterAuthProvider.m in Sources */, - 23AB0E0CA6788FF970EA509C55A4761A /* FIRUser.m in Sources */, - E42A1C06D56697BF78D809C32B87017E /* FIRUserInfoImpl.m in Sources */, - AC12FFB59B30EB8442ABF44392C0FAB0 /* FIRUserMetadata.m in Sources */, - 4F9928A96E0762EF878A57042B560AE5 /* FIRVerifyAssertionRequest.m in Sources */, - 9685E21CF30DBBAAE40D1CBDA3629A17 /* FIRVerifyAssertionResponse.m in Sources */, - FA80220FFEF8C1B118B4F2AA5022BBAA /* FIRVerifyClientRequest.m in Sources */, - 1F4FD909E7C04542D96A90994D0CE513 /* FIRVerifyClientResponse.m in Sources */, - A1D3360D3183460ED89043029D7D5BE2 /* FIRVerifyCustomTokenRequest.m in Sources */, - 2C9F6C82142B5CAC9B181FD889366950 /* FIRVerifyCustomTokenResponse.m in Sources */, - B7FE6D650E72479284AD930C5FCD5A66 /* FIRVerifyPasswordRequest.m in Sources */, - 6335E255970D653820584C0000550ECE /* FIRVerifyPasswordResponse.m in Sources */, - 5F04FFA833114C98079853B547F200E4 /* FIRVerifyPhoneNumberRequest.m in Sources */, - 6678C12324A7BEAD14F461F2F2890F41 /* FIRVerifyPhoneNumberResponse.m in Sources */, - 0C1B24AD958B132DDDF1CF22670BBF85 /* FIRWithdrawMFARequest.m in Sources */, - B7CD4EE1B70A39B60678D65371C65B40 /* FIRWithdrawMFAResponse.m in Sources */, - 74C5CD5BA6AD5447266DE69199BEE10C /* NSData+FIRBase64.m in Sources */, + 8749C8E8DC500B064FA0BC7A78C38A2A /* Pods-iosApp-dummy.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; /* End PBXSourcesBuildPhase section */ /* Begin PBXTargetDependency section */ - 01E83C1FC7D00A6CBFE6C8B87373571D /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "leveldb-library"; - target = 9307B7A119490930CF70393AB529AAC1 /* leveldb-library */; - targetProxy = E22A933A36D1FB840B320DB8E9C10429 /* PBXContainerItemProxy */; - }; - 0253E202840DE5390045A0C3024E8FAA /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "gRPC-Core"; - target = 50F380A87A4FC4EC7EE3AC9BDADB6D2D /* gRPC-Core */; - targetProxy = 013118EBEC6740A07398EBEA28502151 /* PBXContainerItemProxy */; - }; - 0A35DB65BCBB4445A9B99C76156E34A5 /* PBXTargetDependency */ = { + 4A9525469F8E46F3883CC6599FCCFEDB /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = shared; target = 8777C9F6889E59EFFD631D80AEE9048B /* shared */; - targetProxy = BA433DAD86E0D964296D72B3118D8DB1 /* PBXContainerItemProxy */; - }; - 0DB00D2A54E71F4530FFF0BC8C3F5AE5 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = GoogleUtilities; - target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; - targetProxy = BA95DF5C4243B8A17010CAD9640405AA /* PBXContainerItemProxy */; - }; - 0F001FF12DC62D90569270754E08BDCB /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FirebaseCore; - target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; - targetProxy = 9C5D176ED4362F60818541AE52550072 /* PBXContainerItemProxy */; - }; - 15B977ECE49BDB9927A6E4B2B2E2AB09 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FirebaseCoreInternal; - target = 25E9E9A17BC3F670357D7385C521E48E /* FirebaseCoreInternal */; - targetProxy = 772847F55D8D17F4CEB7C82E6243D808 /* PBXContainerItemProxy */; - }; - 1A9E41621ED1BF3ACEE8C1196E9155F6 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FirebaseFirestore; - target = DBA2B63E3A5FE83FE89E731664C9269F /* FirebaseFirestore */; - targetProxy = 8D9493B2B2EC79E8296FBA4C9E21B750 /* PBXContainerItemProxy */; - }; - 1B69773FCFC1C7D73810DDA1B8D0F84D /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "leveldb-library"; - target = 9307B7A119490930CF70393AB529AAC1 /* leveldb-library */; - targetProxy = 77516DF990AC81D596F90C1E080D4417 /* PBXContainerItemProxy */; - }; - 204FE573B4737B484DD509B24ED4E6C9 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FirebaseCoreInternal; - target = 25E9E9A17BC3F670357D7385C521E48E /* FirebaseCoreInternal */; - targetProxy = EBD1B4110356D372E8DBE01AA1779445 /* PBXContainerItemProxy */; - }; - 28E6F50E1B1E66FEEEE9EAB5082A8E6B /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = GTMSessionFetcher; - target = D676E21115185671D7258A56944ABE98 /* GTMSessionFetcher */; - targetProxy = B9CF5FCA1839679DBC99A2448E24CB6A /* PBXContainerItemProxy */; - }; - 2DE121C940B34707F58BD528179DC713 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FirebaseAppCheckInterop; - target = DD28B439BE8B17D9339D9B526F144347 /* FirebaseAppCheckInterop */; - targetProxy = 98C6F70F5B60375457935E4DCE425C17 /* PBXContainerItemProxy */; - }; - 500148AEC162FD256C58414B855EB821 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FirebaseAuth; - target = 6AE4A3D573DED275B034E20506596C62 /* FirebaseAuth */; - targetProxy = 13FA0E0E378394577BDB7193E03212CB /* PBXContainerItemProxy */; - }; - 6D080CC565BC643B5472C1048F3D63A4 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = abseil; - target = 73CDC3D182DB953135F62609681B443D /* abseil */; - targetProxy = 8636BA1C4E821FAF67B3FD250F1B3CFF /* PBXContainerItemProxy */; - }; - 73E7B6D604F73C19E0CB151CD298F2F1 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FirebaseAppCheckInterop; - target = DD28B439BE8B17D9339D9B526F144347 /* FirebaseAppCheckInterop */; - targetProxy = 8CACC490C808EBF0093E3B60F3D8B7FB /* PBXContainerItemProxy */; - }; - 790778310E904152F5858AD9498A4E97 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = GoogleUtilities; - target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; - targetProxy = 892A05AB3706D6ADED793DC7E45FDB3C /* PBXContainerItemProxy */; - }; - 7E2FA9C728B85F8ABDFD48E2E7464173 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "BoringSSL-GRPC"; - target = 445FD4CB16BB7BEE2D1C404951CDE14A /* BoringSSL-GRPC */; - targetProxy = 8A01F0A7D7F607F7292B158C12D3A808 /* PBXContainerItemProxy */; - }; - 7ED3D38110AE3BA17422E7F47C381DDB /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = PromisesObjC; - target = 2BBF7206D7FAC92C82A042A99C4A98F8 /* PromisesObjC */; - targetProxy = DC5F325B934200B17CA47A6384304083 /* PBXContainerItemProxy */; - }; - 936CEF445502C289517BC766F0F9EEE0 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "gRPC-C++"; - target = 1C5E43B0A9555E7C2E43A6D7C8A23CF6 /* gRPC-C++ */; - targetProxy = 44F8DBB93BED45935F835E6821E5F3A4 /* PBXContainerItemProxy */; - }; - 9805465675FAB6EB56E97A505A7E0364 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FirebaseCore; - target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; - targetProxy = 281D15B79C0A3C91517E916184592E96 /* PBXContainerItemProxy */; - }; - 9F7FD9A48F67DF9B99A65886C4F44863 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "gRPC-C++"; - target = 1C5E43B0A9555E7C2E43A6D7C8A23CF6 /* gRPC-C++ */; - targetProxy = 1E95F9F52F85F3921D218AE18091971C /* PBXContainerItemProxy */; - }; - A1C0861293C5F749DCA4B81764926B11 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = nanopb; - target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; - targetProxy = 15D405253E027B6BF8FF2AFDE6CDA105 /* PBXContainerItemProxy */; - }; - AFFDDAD6F28C92E5ACDB1B33795A2587 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = PromisesObjC; - target = 2BBF7206D7FAC92C82A042A99C4A98F8 /* PromisesObjC */; - targetProxy = 6C64C8E49989898CAF50A674DC919417 /* PBXContainerItemProxy */; - }; - B43ABDDF22FD02DE19BA350B36397218 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = abseil; - target = 73CDC3D182DB953135F62609681B443D /* abseil */; - targetProxy = 835B29E930663597CF85193A564A9167 /* PBXContainerItemProxy */; - }; - B5E3BEFDDCC53E8D440E92840DBEF074 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "gRPC-C++-gRPCCertificates-Cpp"; - target = 3B8CAC3956E59F928387D0C6310E3B37 /* gRPC-C++-gRPCCertificates-Cpp */; - targetProxy = 39AA653FE82DDAB836FC2D0CB1C6846C /* PBXContainerItemProxy */; - }; - BBF3BA9E22D1B821ADC56E5B8EC2A2D7 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "BoringSSL-GRPC"; - target = 445FD4CB16BB7BEE2D1C404951CDE14A /* BoringSSL-GRPC */; - targetProxy = 339A8E4FE54598F9FDCF45E37957E450 /* PBXContainerItemProxy */; - }; - C31C6343624A47819A57F82B09AB9E30 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = GoogleUtilities; - target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; - targetProxy = DB5711E22796E24D301A5BC67D3CD042 /* PBXContainerItemProxy */; - }; - C53129DD70F991A33EBE855904DB6F72 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = nanopb; - target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; - targetProxy = FFEF86A80F718DCC829E8D72B46AACF2 /* PBXContainerItemProxy */; - }; - D399781774F18CFC1EAE66F8F36C7EFC /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = GoogleUtilities; - target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; - targetProxy = ACAD922DA9EFE1DA891F620648FA2798 /* PBXContainerItemProxy */; - }; - D63626AFB8AD6EBEB48526C74633EAB4 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RecaptchaInterop; - target = 962124A759E27BE4799ED74362BED884 /* RecaptchaInterop */; - targetProxy = 44F78228694D3F1149F22A24F6058E60 /* PBXContainerItemProxy */; - }; - D853ED800AB6F49B808D2BEB757AE1FA /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FirebaseCore; - target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; - targetProxy = E5A7C0273F3ABB947D5A7DB302F15E10 /* PBXContainerItemProxy */; - }; - D9EF21F25A563E37295FAA8478EFC2CB /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RecaptchaInterop; - target = 962124A759E27BE4799ED74362BED884 /* RecaptchaInterop */; - targetProxy = B2F29D15E7D891691964C100C0F2B289 /* PBXContainerItemProxy */; - }; - E44D58A095570CDD0734CE38EBE59203 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = abseil; - target = 73CDC3D182DB953135F62609681B443D /* abseil */; - targetProxy = 08984A412D7AE29E8371324B1C452B1A /* PBXContainerItemProxy */; - }; - E8C84E26C533FEC34E13D892369D00AA /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = abseil; - target = 73CDC3D182DB953135F62609681B443D /* abseil */; - targetProxy = 5F1ABE896431D4B4BE0DAC3E88CFAEB1 /* PBXContainerItemProxy */; - }; - EDD1018AE5A3C9EBC7E9D843CB7D3EA4 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "gRPC-Core"; - target = 50F380A87A4FC4EC7EE3AC9BDADB6D2D /* gRPC-Core */; - targetProxy = AFAAC13F209374C0751FC92B06CC0285 /* PBXContainerItemProxy */; - }; - F5DCFCFE04B31BBBF70A3F39F0373F48 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = GTMSessionFetcher; - target = D676E21115185671D7258A56944ABE98 /* GTMSessionFetcher */; - targetProxy = 909EC62816A54B149A8937E032AE730E /* PBXContainerItemProxy */; + targetProxy = C1E4F2F8101E860063100BCC8448BC3B /* PBXContainerItemProxy */; }; /* End PBXTargetDependency section */ /* Begin XCBuildConfiguration section */ - 046324BCD8E857051490C307D3E35413 /* Release */ = { + 02DDCCED053337F381DEBAFDEC6F354F /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 8504118FFBFFA549777E183BE8E53AD9 /* nanopb.release.xcconfig */; - buildSettings = { - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - GCC_PREFIX_HEADER = "Target Support Files/nanopb/nanopb-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/nanopb/nanopb-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MODULEMAP_FILE = "Target Support Files/nanopb/nanopb.modulemap"; - PRODUCT_MODULE_NAME = nanopb; - PRODUCT_NAME = nanopb; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Release; - }; - 05DA378FCDBD941DE9708DDB3A1219EA /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 309555DFE023C00AB4D7AB6290E3B0BB /* gRPC-C++.release.xcconfig */; - buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/gRPC-C++"; - IBSC_MODULE = grpcpp; - INFOPLIST_FILE = "Target Support Files/gRPC-C++/ResourceBundle-gRPCCertificates-Cpp-gRPC-C++-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - PRODUCT_NAME = "gRPCCertificates-Cpp"; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; - }; - name = Release; - }; - 0BAB17E481165060C6501EC48AB81460 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 80FBEBD6406D2618EF107128B920DCE3 /* FirebaseCoreInternal.release.xcconfig */; + baseConfigurationReference = 1A2FB55B5C37861BC78ECD1420D818C3 /* Pods-iosApp.release.xcconfig */; buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -29606,22 +288,23 @@ DYLIB_COMPATIBILITY_VERSION = 1; DYLIB_CURRENT_VERSION = 1; DYLIB_INSTALL_NAME_BASE = "@rpath"; - GCC_PREFIX_HEADER = "Target Support Files/FirebaseCoreInternal/FirebaseCoreInternal-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/FirebaseCoreInternal/FirebaseCoreInternal-Info.plist"; + INFOPLIST_FILE = "Target Support Files/Pods-iosApp/Pods-iosApp-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 10.0; + IPHONEOS_DEPLOYMENT_TARGET = 14.1; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", "@loader_path/Frameworks", ); - MODULEMAP_FILE = "Target Support Files/FirebaseCoreInternal/FirebaseCoreInternal.modulemap"; - PRODUCT_MODULE_NAME = FirebaseCoreInternal; - PRODUCT_NAME = FirebaseCoreInternal; + MACH_O_TYPE = staticlib; + MODULEMAP_FILE = "Target Support Files/Pods-iosApp/Pods-iosApp.modulemap"; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; SDKROOT = iphoneos; SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.3; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; VERSIONING_SYSTEM = "apple-generic"; @@ -29629,382 +312,6 @@ }; name = Release; }; - 0D72F8A3DDD96C0571C7B69851FCCA43 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 6BFDDAE329D6311F9FEF092B8FBD50F5 /* abseil.debug.xcconfig */; - buildSettings = { - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - GCC_PREFIX_HEADER = "Target Support Files/abseil/abseil-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/abseil/abseil-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MODULEMAP_FILE = "Target Support Files/abseil/abseil.modulemap"; - PRODUCT_MODULE_NAME = absl; - PRODUCT_NAME = absl; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Debug; - }; - 12B864A68710BAD29E09B8EED0FC7FC9 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 060A7153BCB590384738154F4EC45830 /* FirebaseCore.release.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - INFOPLIST_FILE = "Target Support Files/FirebaseCore/FirebaseCore-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 10.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MODULEMAP_FILE = "Target Support Files/FirebaseCore/FirebaseCore.modulemap"; - PRODUCT_MODULE_NAME = FirebaseCore; - PRODUCT_NAME = FirebaseCore; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.3; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Release; - }; - 162BA3812E89026FF2EEA1E22BDFF189 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 210E6F0DC6674F29050A77F49C6C2687 /* gRPC-C++.debug.xcconfig */; - buildSettings = { - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - GCC_PREFIX_HEADER = "Target Support Files/gRPC-C++/gRPC-C++-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/gRPC-C++/gRPC-C++-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MODULEMAP_FILE = "Target Support Files/gRPC-C++/gRPC-C++.modulemap"; - PRODUCT_MODULE_NAME = grpcpp; - PRODUCT_NAME = grpcpp; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Debug; - }; - 1C36009A5A41D0E448ED870FDA821043 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = B21F0873261681EBC41B6280DB0B20B3 /* FirebaseFirestore.debug.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - INFOPLIST_FILE = "Target Support Files/FirebaseFirestore/FirebaseFirestore-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MODULEMAP_FILE = "Target Support Files/FirebaseFirestore/FirebaseFirestore.modulemap"; - PRODUCT_MODULE_NAME = FirebaseFirestore; - PRODUCT_NAME = FirebaseFirestore; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.3; - TARGETED_DEVICE_FAMILY = "1,2"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Debug; - }; - 1DC6E405B7E680B8E9D71B76A33A363D /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = B099AE4E74E91C11F6415CA454B0665A /* GTMSessionFetcher.debug.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - INFOPLIST_FILE = "Target Support Files/GTMSessionFetcher/GTMSessionFetcher-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 10.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MODULEMAP_FILE = "Target Support Files/GTMSessionFetcher/GTMSessionFetcher.modulemap"; - PRODUCT_MODULE_NAME = GTMSessionFetcher; - PRODUCT_NAME = GTMSessionFetcher; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Debug; - }; - 23877448EACE4BA2C574A96F4281C246 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 3B1AE8185AA1582F23BE517DE128680D /* PromisesObjC.release.xcconfig */; - buildSettings = { - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - INFOPLIST_FILE = "Target Support Files/PromisesObjC/PromisesObjC-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MODULEMAP_FILE = "Target Support Files/PromisesObjC/PromisesObjC.modulemap"; - PRODUCT_MODULE_NAME = FBLPromises; - PRODUCT_NAME = FBLPromises; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Release; - }; - 28315A7C6FF72E72E310DE87D4D757CC /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 43C0EFC7C2CB7A88A5083B5DAECA78E6 /* FirebaseAppCheckInterop.release.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - GCC_PREFIX_HEADER = "Target Support Files/FirebaseAppCheckInterop/FirebaseAppCheckInterop-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/FirebaseAppCheckInterop/FirebaseAppCheckInterop-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 10.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MODULEMAP_FILE = "Target Support Files/FirebaseAppCheckInterop/FirebaseAppCheckInterop.modulemap"; - PRODUCT_MODULE_NAME = FirebaseAppCheckInterop; - PRODUCT_NAME = FirebaseAppCheckInterop; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Release; - }; - 2D2C60C3308D1AA783736D337FC4CFED /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = C4EF6394E86DE3695DB3CEEDE1C1C3BF /* RecaptchaInterop.debug.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - GCC_PREFIX_HEADER = "Target Support Files/RecaptchaInterop/RecaptchaInterop-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/RecaptchaInterop/RecaptchaInterop-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MODULEMAP_FILE = "Target Support Files/RecaptchaInterop/RecaptchaInterop.modulemap"; - PRODUCT_MODULE_NAME = RecaptchaInterop; - PRODUCT_NAME = RecaptchaInterop; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Debug; - }; - 3D9BECA488A53E9B18A5E80DF4D2DFB8 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 994B774AD45D41B56696B1B164B3CD04 /* GoogleUtilities.release.xcconfig */; - buildSettings = { - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - INFOPLIST_FILE = "Target Support Files/GoogleUtilities/GoogleUtilities-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MODULEMAP_FILE = "Target Support Files/GoogleUtilities/GoogleUtilities.modulemap"; - PRODUCT_MODULE_NAME = GoogleUtilities; - PRODUCT_NAME = GoogleUtilities; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Release; - }; - 43CD8D46D92792C5A8A3B12AC7EC2E68 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 06E5D7246C4BC9A2A10097ED3A568796 /* FirebaseFirestore.release.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - INFOPLIST_FILE = "Target Support Files/FirebaseFirestore/FirebaseFirestore-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MODULEMAP_FILE = "Target Support Files/FirebaseFirestore/FirebaseFirestore.modulemap"; - PRODUCT_MODULE_NAME = FirebaseFirestore; - PRODUCT_NAME = FirebaseFirestore; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.3; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Release; - }; - 47014EB3F60767490906F97FF770951A /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = B8EE3D497F7B26DF214B74A9248F59BC /* PromisesObjC.debug.xcconfig */; - buildSettings = { - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - INFOPLIST_FILE = "Target Support Files/PromisesObjC/PromisesObjC-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MODULEMAP_FILE = "Target Support Files/PromisesObjC/PromisesObjC.modulemap"; - PRODUCT_MODULE_NAME = FBLPromises; - PRODUCT_NAME = FBLPromises; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Debug; - }; 593F10BFFA94DAC7D6E17FB8A7F32D72 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { @@ -30067,250 +374,6 @@ }; name = Release; }; - 59647A09F5D2FBBA32D2081F425D6802 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 151B3DD90EEF8B3F67E6A7EF68185BDD /* BoringSSL-GRPC.debug.xcconfig */; - buildSettings = { - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - GCC_PREFIX_HEADER = "Target Support Files/BoringSSL-GRPC/BoringSSL-GRPC-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/BoringSSL-GRPC/BoringSSL-GRPC-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MODULEMAP_FILE = "Target Support Files/BoringSSL-GRPC/BoringSSL-GRPC.modulemap"; - PRODUCT_MODULE_NAME = openssl_grpc; - PRODUCT_NAME = openssl_grpc; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Debug; - }; - 6B4E683F1862B02BD3DB2C49BA3D866E /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = AB2410985D9366A0D9F891EE87AA247A /* FirebaseAuth.debug.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - INFOPLIST_FILE = "Target Support Files/FirebaseAuth/FirebaseAuth-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MODULEMAP_FILE = "Target Support Files/FirebaseAuth/FirebaseAuth.modulemap"; - PRODUCT_MODULE_NAME = FirebaseAuth; - PRODUCT_NAME = FirebaseAuth; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.3; - TARGETED_DEVICE_FAMILY = "1,2"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Debug; - }; - 72737CAEEA25DFEBF56773D07E017240 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 9FECCB5AFF87D121F15BA01E683C7932 /* Pods-iosApp.release.xcconfig */; - buildSettings = { - ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; - CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - INFOPLIST_FILE = "Target Support Files/Pods-iosApp/Pods-iosApp-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 14.1; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/Pods-iosApp/Pods-iosApp.modulemap"; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PODS_ROOT = "$(SRCROOT)"; - PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; - PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Release; - }; - 7A05C63E31B451B483CE3B01934596B5 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 309555DFE023C00AB4D7AB6290E3B0BB /* gRPC-C++.release.xcconfig */; - buildSettings = { - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - GCC_PREFIX_HEADER = "Target Support Files/gRPC-C++/gRPC-C++-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/gRPC-C++/gRPC-C++-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MODULEMAP_FILE = "Target Support Files/gRPC-C++/gRPC-C++.modulemap"; - PRODUCT_MODULE_NAME = grpcpp; - PRODUCT_NAME = grpcpp; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Release; - }; - 7F73F070D8B1C943E38BB0C6B5CBC114 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = F53700D14C8DA16328F48A96C39728F2 /* FirebaseCore.debug.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - INFOPLIST_FILE = "Target Support Files/FirebaseCore/FirebaseCore-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 10.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MODULEMAP_FILE = "Target Support Files/FirebaseCore/FirebaseCore.modulemap"; - PRODUCT_MODULE_NAME = FirebaseCore; - PRODUCT_NAME = FirebaseCore; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.3; - TARGETED_DEVICE_FAMILY = "1,2"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Debug; - }; - 86A200DEE8BCBEE231D030E6E12E1FB0 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 33AAA0CC9B1BED878B77DB963BD785F5 /* gRPC-Core.debug.xcconfig */; - buildSettings = { - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - GCC_PREFIX_HEADER = "Target Support Files/gRPC-Core/gRPC-Core-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/gRPC-Core/gRPC-Core-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MODULEMAP_FILE = "Target Support Files/gRPC-Core/gRPC-Core.modulemap"; - PRODUCT_MODULE_NAME = grpc; - PRODUCT_NAME = grpc; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Debug; - }; - 99B698A441DFC815FC27A810434CAE48 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = FA0A9A3B40B9AA5025E075B36B7BBA5A /* FirebaseAuth.release.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - INFOPLIST_FILE = "Target Support Files/FirebaseAuth/FirebaseAuth-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MODULEMAP_FILE = "Target Support Files/FirebaseAuth/FirebaseAuth.modulemap"; - PRODUCT_MODULE_NAME = FirebaseAuth; - PRODUCT_NAME = FirebaseAuth; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.3; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Release; - }; A0374B8CF9A7D6A45F6D116D698D1C19 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { @@ -30394,42 +457,6 @@ }; name = Debug; }; - A8D449D6D9BE9783D01047260A91B372 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 9BCBFBBF41D802F84C56B6ACA5974035 /* RecaptchaInterop.release.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - GCC_PREFIX_HEADER = "Target Support Files/RecaptchaInterop/RecaptchaInterop-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/RecaptchaInterop/RecaptchaInterop-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MODULEMAP_FILE = "Target Support Files/RecaptchaInterop/RecaptchaInterop.modulemap"; - PRODUCT_MODULE_NAME = RecaptchaInterop; - PRODUCT_NAME = RecaptchaInterop; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Release; - }; A96D4527F178BD8C0DEB7EE72B9AAE09 /* Release */ = { isa = XCBuildConfiguration; baseConfigurationReference = 35548E3BD8DA30925E8FE97E67B84868 /* shared.release.xcconfig */; @@ -30448,201 +475,9 @@ }; name = Release; }; - B669305BFC484A941CBDA98E435B7BFB /* Release */ = { + AF088B6CD92A52AC4DCB62DEEC871231 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 9A5457333A11081E18FA2A1C758D89A5 /* BoringSSL-GRPC.release.xcconfig */; - buildSettings = { - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - GCC_PREFIX_HEADER = "Target Support Files/BoringSSL-GRPC/BoringSSL-GRPC-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/BoringSSL-GRPC/BoringSSL-GRPC-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MODULEMAP_FILE = "Target Support Files/BoringSSL-GRPC/BoringSSL-GRPC.modulemap"; - PRODUCT_MODULE_NAME = openssl_grpc; - PRODUCT_NAME = openssl_grpc; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Release; - }; - BA09CC906C34F87825BDEF58B865F82B /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = BE71F7C8A227DF317F9DC7B155FC4EB8 /* abseil.release.xcconfig */; - buildSettings = { - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - GCC_PREFIX_HEADER = "Target Support Files/abseil/abseil-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/abseil/abseil-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MODULEMAP_FILE = "Target Support Files/abseil/abseil.modulemap"; - PRODUCT_MODULE_NAME = absl; - PRODUCT_NAME = absl; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Release; - }; - BA148569991BDFE1C302C6E736CC238F /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = AB36978DA8D2CD6347A9AE6C1EE0D3AE /* gRPC-Core.release.xcconfig */; - buildSettings = { - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - GCC_PREFIX_HEADER = "Target Support Files/gRPC-Core/gRPC-Core-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/gRPC-Core/gRPC-Core-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MODULEMAP_FILE = "Target Support Files/gRPC-Core/gRPC-Core.modulemap"; - PRODUCT_MODULE_NAME = grpc; - PRODUCT_NAME = grpc; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Release; - }; - C488B9303928724EC64EA29FACD1DC0E /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 9FAAC8CD2364E06678F632155ECDEC8F /* FirebaseAppCheckInterop.debug.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - GCC_PREFIX_HEADER = "Target Support Files/FirebaseAppCheckInterop/FirebaseAppCheckInterop-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/FirebaseAppCheckInterop/FirebaseAppCheckInterop-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 10.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MODULEMAP_FILE = "Target Support Files/FirebaseAppCheckInterop/FirebaseAppCheckInterop.modulemap"; - PRODUCT_MODULE_NAME = FirebaseAppCheckInterop; - PRODUCT_NAME = FirebaseAppCheckInterop; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Debug; - }; - C4B419C6A6B0EAE0275DF035D33FD841 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 1A83B8BCFF66CD058423DBF8E8B8EC0D /* FirebaseCoreInternal.debug.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - GCC_PREFIX_HEADER = "Target Support Files/FirebaseCoreInternal/FirebaseCoreInternal-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/FirebaseCoreInternal/FirebaseCoreInternal-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 10.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MODULEMAP_FILE = "Target Support Files/FirebaseCoreInternal/FirebaseCoreInternal.modulemap"; - PRODUCT_MODULE_NAME = FirebaseCoreInternal; - PRODUCT_NAME = FirebaseCoreInternal; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.3; - TARGETED_DEVICE_FAMILY = "1,2"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Debug; - }; - C76702AC934AB5445748F946347DFAAF /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 210E6F0DC6674F29050A77F49C6C2687 /* gRPC-C++.debug.xcconfig */; - buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/gRPC-C++"; - IBSC_MODULE = grpcpp; - INFOPLIST_FILE = "Target Support Files/gRPC-C++/ResourceBundle-gRPCCertificates-Cpp-gRPC-C++-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - PRODUCT_NAME = "gRPCCertificates-Cpp"; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; - }; - name = Debug; - }; - CDE585E4BEFAA11CA10BAA8BC43628BE /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 3F64BADB16C311E9D09DAD0116F684F4 /* Pods-iosApp.debug.xcconfig */; + baseConfigurationReference = A79C2AA5C063914B2D1BD80187FDF6DE /* Pods-iosApp.debug.xcconfig */; buildSettings = { ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -30677,227 +512,9 @@ }; name = Debug; }; - D45016088B8CC1447C7DBA4793639C3C /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 5D61F4ABE3847EF01C0A150DD9CB2283 /* GoogleUtilities.debug.xcconfig */; - buildSettings = { - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - INFOPLIST_FILE = "Target Support Files/GoogleUtilities/GoogleUtilities-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MODULEMAP_FILE = "Target Support Files/GoogleUtilities/GoogleUtilities.modulemap"; - PRODUCT_MODULE_NAME = GoogleUtilities; - PRODUCT_NAME = GoogleUtilities; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Debug; - }; - D5537A705E9B7E835C49BBB60521A5FC /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 6F854111D4B5B60E7F3AB38CF52F8906 /* leveldb-library.debug.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - GCC_PREFIX_HEADER = "Target Support Files/leveldb-library/leveldb-library-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/leveldb-library/leveldb-library-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MODULEMAP_FILE = "Target Support Files/leveldb-library/leveldb-library.modulemap"; - PRODUCT_MODULE_NAME = leveldb; - PRODUCT_NAME = leveldb; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Debug; - }; - DDAA49EB63019B83D9934929BC357288 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 9D0B3950112F97C7DCD91A31D55CB2AF /* nanopb.debug.xcconfig */; - buildSettings = { - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - GCC_PREFIX_HEADER = "Target Support Files/nanopb/nanopb-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/nanopb/nanopb-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MODULEMAP_FILE = "Target Support Files/nanopb/nanopb.modulemap"; - PRODUCT_MODULE_NAME = nanopb; - PRODUCT_NAME = nanopb; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Debug; - }; - F9D5676F144FABA07927655E72440C93 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 6953D1B0C47A36752B480C63D53F92A9 /* GTMSessionFetcher.release.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - INFOPLIST_FILE = "Target Support Files/GTMSessionFetcher/GTMSessionFetcher-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 10.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MODULEMAP_FILE = "Target Support Files/GTMSessionFetcher/GTMSessionFetcher.modulemap"; - PRODUCT_MODULE_NAME = GTMSessionFetcher; - PRODUCT_NAME = GTMSessionFetcher; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Release; - }; - FEBA12794E6863165F50231309FE4B47 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 76AD3B0135310ED70382F4F5D51541E9 /* leveldb-library.release.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - GCC_PREFIX_HEADER = "Target Support Files/leveldb-library/leveldb-library-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/leveldb-library/leveldb-library-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MODULEMAP_FILE = "Target Support Files/leveldb-library/leveldb-library.modulemap"; - PRODUCT_MODULE_NAME = leveldb; - PRODUCT_NAME = leveldb; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Release; - }; /* End XCBuildConfiguration section */ /* Begin XCConfigurationList section */ - 00D9FE98598D8D198A8380D8C13CB5B7 /* Build configuration list for PBXNativeTarget "Pods-iosApp" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - CDE585E4BEFAA11CA10BAA8BC43628BE /* Debug */, - 72737CAEEA25DFEBF56773D07E017240 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 15333ABEC200EC275735DA06E1F672DE /* Build configuration list for PBXNativeTarget "leveldb-library" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - D5537A705E9B7E835C49BBB60521A5FC /* Debug */, - FEBA12794E6863165F50231309FE4B47 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 1D4602E409D9E24817E17F14CB4A8A81 /* Build configuration list for PBXNativeTarget "BoringSSL-GRPC" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 59647A09F5D2FBBA32D2081F425D6802 /* Debug */, - B669305BFC484A941CBDA98E435B7BFB /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 25950A72037F2FEAEB14C919023BC28C /* Build configuration list for PBXNativeTarget "GoogleUtilities" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - D45016088B8CC1447C7DBA4793639C3C /* Debug */, - 3D9BECA488A53E9B18A5E80DF4D2DFB8 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 39D85BC4774097EB1196DBDF4BE20626 /* Build configuration list for PBXNativeTarget "FirebaseFirestore" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 1C36009A5A41D0E448ED870FDA821043 /* Debug */, - 43CD8D46D92792C5A8A3B12AC7EC2E68 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; 4821239608C13582E20E6DA73FD5F1F9 /* Build configuration list for PBXProject "Pods" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -30907,51 +524,6 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 4D61C986C8AD91EC1499A059B900FDFD /* Build configuration list for PBXNativeTarget "FirebaseCoreInternal" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C4B419C6A6B0EAE0275DF035D33FD841 /* Debug */, - 0BAB17E481165060C6501EC48AB81460 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 56247963A2D548991DC1C55691477C97 /* Build configuration list for PBXNativeTarget "gRPC-C++-gRPCCertificates-Cpp" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C76702AC934AB5445748F946347DFAAF /* Debug */, - 05DA378FCDBD941DE9708DDB3A1219EA /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 7DA0050AC7D840C3110CAA9D804C7FEE /* Build configuration list for PBXNativeTarget "FirebaseAppCheckInterop" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C488B9303928724EC64EA29FACD1DC0E /* Debug */, - 28315A7C6FF72E72E310DE87D4D757CC /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 826DE5268F12B842CEDEABE4DECC1168 /* Build configuration list for PBXNativeTarget "PromisesObjC" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 47014EB3F60767490906F97FF770951A /* Debug */, - 23877448EACE4BA2C574A96F4281C246 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 827F56DB3D5582EF38BE19637F0768BD /* Build configuration list for PBXNativeTarget "RecaptchaInterop" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 2D2C60C3308D1AA783736D337FC4CFED /* Debug */, - A8D449D6D9BE9783D01047260A91B372 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; 8349D8E2EC974421A14EF8ABFF6AD6DC /* Build configuration list for PBXAggregateTarget "shared" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -30961,65 +533,11 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 8C09F866FD112087B952F23B9BD95461 /* Build configuration list for PBXNativeTarget "gRPC-Core" */ = { + 9F1E85ECB672A0CC96333A6C6DF60EE6 /* Build configuration list for PBXNativeTarget "Pods-iosApp" */ = { isa = XCConfigurationList; buildConfigurations = ( - 86A200DEE8BCBEE231D030E6E12E1FB0 /* Debug */, - BA148569991BDFE1C302C6E736CC238F /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 904F8E66D7F152D37ED4653D343A1EC9 /* Build configuration list for PBXNativeTarget "nanopb" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - DDAA49EB63019B83D9934929BC357288 /* Debug */, - 046324BCD8E857051490C307D3E35413 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 995B4676FA0C271E61CCF7D918521D86 /* Build configuration list for PBXNativeTarget "abseil" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 0D72F8A3DDD96C0571C7B69851FCCA43 /* Debug */, - BA09CC906C34F87825BDEF58B865F82B /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 9E724EF49C600614B3CDA735409F0D89 /* Build configuration list for PBXNativeTarget "FirebaseCore" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 7F73F070D8B1C943E38BB0C6B5CBC114 /* Debug */, - 12B864A68710BAD29E09B8EED0FC7FC9 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - A02CBC57F59A4C0471090C76053F0501 /* Build configuration list for PBXNativeTarget "FirebaseAuth" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 6B4E683F1862B02BD3DB2C49BA3D866E /* Debug */, - 99B698A441DFC815FC27A810434CAE48 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - AE15C17398278A7357ECC65E093C6EC4 /* Build configuration list for PBXNativeTarget "gRPC-C++" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 162BA3812E89026FF2EEA1E22BDFF189 /* Debug */, - 7A05C63E31B451B483CE3B01934596B5 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - DE532CB42007089B30221825E88D8E43 /* Build configuration list for PBXNativeTarget "GTMSessionFetcher" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 1DC6E405B7E680B8E9D71B76A33A363D /* Debug */, - F9D5676F144FABA07927655E72440C93 /* Release */, + AF088B6CD92A52AC4DCB62DEEC871231 /* Debug */, + 02DDCCED053337F381DEBAFDEC6F354F /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; diff --git a/iosApp/Pods/Target Support Files/Pods-iosApp/Pods-iosApp-acknowledgements.markdown b/iosApp/Pods/Target Support Files/Pods-iosApp/Pods-iosApp-acknowledgements.markdown index 69b478d76..102af7538 100644 --- a/iosApp/Pods/Target Support Files/Pods-iosApp/Pods-iosApp-acknowledgements.markdown +++ b/iosApp/Pods/Target Support Files/Pods-iosApp/Pods-iosApp-acknowledgements.markdown @@ -1,3890 +1,3 @@ # Acknowledgements This application makes use of the following third party libraries: - -## BoringSSL-GRPC - -BoringSSL is a fork of OpenSSL. As such, large parts of it fall under OpenSSL -licensing. Files that are completely new have a Google copyright and an ISC -license. This license is reproduced at the bottom of this file. - -Contributors to BoringSSL are required to follow the CLA rules for Chromium: -https://cla.developers.google.com/clas - -Files in third_party/ have their own licenses, as described therein. The MIT -license, for third_party/fiat, which, unlike other third_party directories, is -compiled into non-test libraries, is included below. - -The OpenSSL toolkit stays under a dual license, i.e. both the conditions of the -OpenSSL License and the original SSLeay license apply to the toolkit. See below -for the actual license texts. Actually both licenses are BSD-style Open Source -licenses. In case of any license issues related to OpenSSL please contact -openssl-core@openssl.org. - -The following are Google-internal bug numbers where explicit permission from -some authors is recorded for use of their work. (This is purely for our own -record keeping.) - 27287199 - 27287880 - 27287883 - - OpenSSL License - --------------- - -/* ==================================================================== - * Copyright (c) 1998-2011 The OpenSSL Project. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in - * the documentation and/or other materials provided with the - * distribution. - * - * 3. All advertising materials mentioning features or use of this - * software must display the following acknowledgment: - * "This product includes software developed by the OpenSSL Project - * for use in the OpenSSL Toolkit. (http://www.openssl.org/)" - * - * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to - * endorse or promote products derived from this software without - * prior written permission. For written permission, please contact - * openssl-core@openssl.org. - * - * 5. Products derived from this software may not be called "OpenSSL" - * nor may "OpenSSL" appear in their names without prior written - * permission of the OpenSSL Project. - * - * 6. Redistributions of any form whatsoever must retain the following - * acknowledgment: - * "This product includes software developed by the OpenSSL Project - * for use in the OpenSSL Toolkit (http://www.openssl.org/)" - * - * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY - * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR - * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR - * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT - * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, - * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED - * OF THE POSSIBILITY OF SUCH DAMAGE. - * ==================================================================== - * - * This product includes cryptographic software written by Eric Young - * (eay@cryptsoft.com). This product includes software written by Tim - * Hudson (tjh@cryptsoft.com). - * - */ - - Original SSLeay License - ----------------------- - -/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) - * All rights reserved. - * - * This package is an SSL implementation written - * by Eric Young (eay@cryptsoft.com). - * The implementation was written so as to conform with Netscapes SSL. - * - * This library is free for commercial and non-commercial use as long as - * the following conditions are aheared to. The following conditions - * apply to all code found in this distribution, be it the RC4, RSA, - * lhash, DES, etc., code; not just the SSL code. The SSL documentation - * included with this distribution is covered by the same copyright terms - * except that the holder is Tim Hudson (tjh@cryptsoft.com). - * - * Copyright remains Eric Young's, and as such any Copyright notices in - * the code are not to be removed. - * If this package is used in a product, Eric Young should be given attribution - * as the author of the parts of the library used. - * This can be in the form of a textual message at program startup or - * in documentation (online or textual) provided with the package. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. All advertising materials mentioning features or use of this software - * must display the following acknowledgement: - * "This product includes cryptographic software written by - * Eric Young (eay@cryptsoft.com)" - * The word 'cryptographic' can be left out if the rouines from the library - * being used are not cryptographic related :-). - * 4. If you include any Windows specific code (or a derivative thereof) from - * the apps directory (application code) you must include an acknowledgement: - * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" - * - * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND - * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE - * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - * SUCH DAMAGE. - * - * The licence and distribution terms for any publically available version or - * derivative of this code cannot be changed. i.e. this code cannot simply be - * copied and put under another distribution licence - * [including the GNU Public Licence.] - */ - - -ISC license used for completely new code in BoringSSL: - -/* Copyright (c) 2015, Google Inc. - * - * Permission to use, copy, modify, and/or distribute this software for any - * purpose with or without fee is hereby granted, provided that the above - * copyright notice and this permission notice appear in all copies. - * - * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES - * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF - * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY - * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES - * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION - * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN - * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ - - -The code in third_party/fiat carries the MIT license: - -Copyright (c) 2015-2016 the fiat-crypto authors (see -https://github.com/mit-plv/fiat-crypto/blob/master/AUTHORS). - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - -Licenses for support code -------------------------- - -Parts of the TLS test suite are under the Go license. This code is not included -in BoringSSL (i.e. libcrypto and libssl) when compiled, however, so -distributing code linked against BoringSSL does not trigger this license: - -Copyright (c) 2009 The Go Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - -BoringSSL uses the Chromium test infrastructure to run a continuous build, -trybots etc. The scripts which manage this, and the script for generating build -metadata, are under the Chromium license. Distributing code linked against -BoringSSL does not trigger this license. - -Copyright 2015 The Chromium Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - -## FirebaseAppCheckInterop - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. - - -## FirebaseAuth - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. - - -## FirebaseCore - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. - - -## FirebaseCoreInternal - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. - - -## FirebaseFirestore - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. - - --------------------------- -nlohmann_json --------------------------- -MIT License - -Copyright (c) 2013-2020 Niels Lohmann - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - --------------------------- -FirestoreEncoder --------------------------- - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. - - - -## Runtime Library Exception to the Apache 2.0 License: ## - - - As an exception, if you use this Software to compile your source code and - portions of this Software are embedded into the binary product as a result, - you may redistribute such product without providing attribution as would - otherwise be required by Sections 4(a), 4(b) and 4(d) of the License. - - - -## GTMSessionFetcher - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. - - -## GoogleUtilities - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. - -================================================================================ - -The following copyright from Landon J. Fuller applies to the isAppEncrypted -function in Environment/third_party/GULAppEnvironmentUtil.m. - -Copyright (c) 2017 Landon J. Fuller -All rights reserved. - -Permission is hereby granted, free of charge, to any person obtaining a copy of -this software and associated documentation files (the "Software"), to deal in -the Software without restriction, including without limitation the rights to -use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of -the Software, and to permit persons to whom the Software is furnished to do so, -subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS -FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR -COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER -IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN -CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -Comment from -iPhone Dev Wiki -Crack Prevention: App Store binaries are signed by both their developer -and Apple. This encrypts the binary so that decryption keys are needed in order -to make the binary readable. When iOS executes the binary, the decryption keys -are used to decrypt the binary into a readable state where it is then loaded -into memory and executed. iOS can tell the encryption status of a binary via the -cryptid structure member of LC_ENCRYPTION_INFO MachO load command. If cryptid is -a non-zero value then the binary is encrypted. - -'Cracking' works by letting the kernel decrypt the binary then siphoning the -decrypted data into a new binary file, resigning, and repackaging. This will -only work on jailbroken devices as codesignature validation has been removed. -Resigning takes place because while the codesignature doesn't have to be valid -thanks to the jailbreak, it does have to be in place unless you have AppSync or -similar to disable codesignature checks. - -More information at Landon -Fuller's blog - - -## PromisesObjC - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. - - -## RecaptchaInterop - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. - - -## abseil - - - Apache License - Version 2.0, January 2004 - https://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - https://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. - - - -## gRPC-C++ - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. - ------------------------------------------------------------ - -BSD 3-Clause License - -Copyright 2016, Google Inc. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - -1. Redistributions of source code must retain the above copyright notice, -this list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright notice, -this list of conditions and the following disclaimer in the documentation -and/or other materials provided with the distribution. - -3. Neither the name of the copyright holder nor the names of its -contributors may be used to endorse or promote products derived from this -software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE -LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF -THE POSSIBILITY OF SUCH DAMAGE. - ------------------------------------------------------------ - -Mozilla Public License Version 2.0 -================================== - -1. Definitions --------------- - -1.1. "Contributor" - means each individual or legal entity that creates, contributes to - the creation of, or owns Covered Software. - -1.2. "Contributor Version" - means the combination of the Contributions of others (if any) used - by a Contributor and that particular Contributor's Contribution. - -1.3. "Contribution" - means Covered Software of a particular Contributor. - -1.4. "Covered Software" - means Source Code Form to which the initial Contributor has attached - the notice in Exhibit A, the Executable Form of such Source Code - Form, and Modifications of such Source Code Form, in each case - including portions thereof. - -1.5. "Incompatible With Secondary Licenses" - means - - (a) that the initial Contributor has attached the notice described - in Exhibit B to the Covered Software; or - - (b) that the Covered Software was made available under the terms of - version 1.1 or earlier of the License, but not also under the - terms of a Secondary License. - -1.6. "Executable Form" - means any form of the work other than Source Code Form. - -1.7. "Larger Work" - means a work that combines Covered Software with other material, in - a separate file or files, that is not Covered Software. - -1.8. "License" - means this document. - -1.9. "Licensable" - means having the right to grant, to the maximum extent possible, - whether at the time of the initial grant or subsequently, any and - all of the rights conveyed by this License. - -1.10. "Modifications" - means any of the following: - - (a) any file in Source Code Form that results from an addition to, - deletion from, or modification of the contents of Covered - Software; or - - (b) any new file in Source Code Form that contains any Covered - Software. - -1.11. "Patent Claims" of a Contributor - means any patent claim(s), including without limitation, method, - process, and apparatus claims, in any patent Licensable by such - Contributor that would be infringed, but for the grant of the - License, by the making, using, selling, offering for sale, having - made, import, or transfer of either its Contributions or its - Contributor Version. - -1.12. "Secondary License" - means either the GNU General Public License, Version 2.0, the GNU - Lesser General Public License, Version 2.1, the GNU Affero General - Public License, Version 3.0, or any later versions of those - licenses. - -1.13. "Source Code Form" - means the form of the work preferred for making modifications. - -1.14. "You" (or "Your") - means an individual or a legal entity exercising rights under this - License. For legal entities, "You" includes any entity that - controls, is controlled by, or is under common control with You. For - purposes of this definition, "control" means (a) the power, direct - or indirect, to cause the direction or management of such entity, - whether by contract or otherwise, or (b) ownership of more than - fifty percent (50%) of the outstanding shares or beneficial - ownership of such entity. - -2. License Grants and Conditions --------------------------------- - -2.1. Grants - -Each Contributor hereby grants You a world-wide, royalty-free, -non-exclusive license: - -(a) under intellectual property rights (other than patent or trademark) - Licensable by such Contributor to use, reproduce, make available, - modify, display, perform, distribute, and otherwise exploit its - Contributions, either on an unmodified basis, with Modifications, or - as part of a Larger Work; and - -(b) under Patent Claims of such Contributor to make, use, sell, offer - for sale, have made, import, and otherwise transfer either its - Contributions or its Contributor Version. - -2.2. Effective Date - -The licenses granted in Section 2.1 with respect to any Contribution -become effective for each Contribution on the date the Contributor first -distributes such Contribution. - -2.3. Limitations on Grant Scope - -The licenses granted in this Section 2 are the only rights granted under -this License. No additional rights or licenses will be implied from the -distribution or licensing of Covered Software under this License. -Notwithstanding Section 2.1(b) above, no patent license is granted by a -Contributor: - -(a) for any code that a Contributor has removed from Covered Software; - or - -(b) for infringements caused by: (i) Your and any other third party's - modifications of Covered Software, or (ii) the combination of its - Contributions with other software (except as part of its Contributor - Version); or - -(c) under Patent Claims infringed by Covered Software in the absence of - its Contributions. - -This License does not grant any rights in the trademarks, service marks, -or logos of any Contributor (except as may be necessary to comply with -the notice requirements in Section 3.4). - -2.4. Subsequent Licenses - -No Contributor makes additional grants as a result of Your choice to -distribute the Covered Software under a subsequent version of this -License (see Section 10.2) or under the terms of a Secondary License (if -permitted under the terms of Section 3.3). - -2.5. Representation - -Each Contributor represents that the Contributor believes its -Contributions are its original creation(s) or it has sufficient rights -to grant the rights to its Contributions conveyed by this License. - -2.6. Fair Use - -This License is not intended to limit any rights You have under -applicable copyright doctrines of fair use, fair dealing, or other -equivalents. - -2.7. Conditions - -Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted -in Section 2.1. - -3. Responsibilities -------------------- - -3.1. Distribution of Source Form - -All distribution of Covered Software in Source Code Form, including any -Modifications that You create or to which You contribute, must be under -the terms of this License. You must inform recipients that the Source -Code Form of the Covered Software is governed by the terms of this -License, and how they can obtain a copy of this License. You may not -attempt to alter or restrict the recipients' rights in the Source Code -Form. - -3.2. Distribution of Executable Form - -If You distribute Covered Software in Executable Form then: - -(a) such Covered Software must also be made available in Source Code - Form, as described in Section 3.1, and You must inform recipients of - the Executable Form how they can obtain a copy of such Source Code - Form by reasonable means in a timely manner, at a charge no more - than the cost of distribution to the recipient; and - -(b) You may distribute such Executable Form under the terms of this - License, or sublicense it under different terms, provided that the - license for the Executable Form does not attempt to limit or alter - the recipients' rights in the Source Code Form under this License. - -3.3. Distribution of a Larger Work - -You may create and distribute a Larger Work under terms of Your choice, -provided that You also comply with the requirements of this License for -the Covered Software. If the Larger Work is a combination of Covered -Software with a work governed by one or more Secondary Licenses, and the -Covered Software is not Incompatible With Secondary Licenses, this -License permits You to additionally distribute such Covered Software -under the terms of such Secondary License(s), so that the recipient of -the Larger Work may, at their option, further distribute the Covered -Software under the terms of either this License or such Secondary -License(s). - -3.4. Notices - -You may not remove or alter the substance of any license notices -(including copyright notices, patent notices, disclaimers of warranty, -or limitations of liability) contained within the Source Code Form of -the Covered Software, except that You may alter any license notices to -the extent required to remedy known factual inaccuracies. - -3.5. Application of Additional Terms - -You may choose to offer, and to charge a fee for, warranty, support, -indemnity or liability obligations to one or more recipients of Covered -Software. However, You may do so only on Your own behalf, and not on -behalf of any Contributor. You must make it absolutely clear that any -such warranty, support, indemnity, or liability obligation is offered by -You alone, and You hereby agree to indemnify every Contributor for any -liability incurred by such Contributor as a result of warranty, support, -indemnity or liability terms You offer. You may include additional -disclaimers of warranty and limitations of liability specific to any -jurisdiction. - -4. Inability to Comply Due to Statute or Regulation ---------------------------------------------------- - -If it is impossible for You to comply with any of the terms of this -License with respect to some or all of the Covered Software due to -statute, judicial order, or regulation then You must: (a) comply with -the terms of this License to the maximum extent possible; and (b) -describe the limitations and the code they affect. Such description must -be placed in a text file included with all distributions of the Covered -Software under this License. Except to the extent prohibited by statute -or regulation, such description must be sufficiently detailed for a -recipient of ordinary skill to be able to understand it. - -5. Termination --------------- - -5.1. The rights granted under this License will terminate automatically -if You fail to comply with any of its terms. However, if You become -compliant, then the rights granted under this License from a particular -Contributor are reinstated (a) provisionally, unless and until such -Contributor explicitly and finally terminates Your grants, and (b) on an -ongoing basis, if such Contributor fails to notify You of the -non-compliance by some reasonable means prior to 60 days after You have -come back into compliance. Moreover, Your grants from a particular -Contributor are reinstated on an ongoing basis if such Contributor -notifies You of the non-compliance by some reasonable means, this is the -first time You have received notice of non-compliance with this License -from such Contributor, and You become compliant prior to 30 days after -Your receipt of the notice. - -5.2. If You initiate litigation against any entity by asserting a patent -infringement claim (excluding declaratory judgment actions, -counter-claims, and cross-claims) alleging that a Contributor Version -directly or indirectly infringes any patent, then the rights granted to -You by any and all Contributors for the Covered Software under Section -2.1 of this License shall terminate. - -5.3. In the event of termination under Sections 5.1 or 5.2 above, all -end user license agreements (excluding distributors and resellers) which -have been validly granted by You or Your distributors under this License -prior to termination shall survive termination. - -************************************************************************ -* * -* 6. Disclaimer of Warranty * -* ------------------------- * -* * -* Covered Software is provided under this License on an "as is" * -* basis, without warranty of any kind, either expressed, implied, or * -* statutory, including, without limitation, warranties that the * -* Covered Software is free of defects, merchantable, fit for a * -* particular purpose or non-infringing. The entire risk as to the * -* quality and performance of the Covered Software is with You. * -* Should any Covered Software prove defective in any respect, You * -* (not any Contributor) assume the cost of any necessary servicing, * -* repair, or correction. This disclaimer of warranty constitutes an * -* essential part of this License. No use of any Covered Software is * -* authorized under this License except under this disclaimer. * -* * -************************************************************************ - -************************************************************************ -* * -* 7. Limitation of Liability * -* -------------------------- * -* * -* Under no circumstances and under no legal theory, whether tort * -* (including negligence), contract, or otherwise, shall any * -* Contributor, or anyone who distributes Covered Software as * -* permitted above, be liable to You for any direct, indirect, * -* special, incidental, or consequential damages of any character * -* including, without limitation, damages for lost profits, loss of * -* goodwill, work stoppage, computer failure or malfunction, or any * -* and all other commercial damages or losses, even if such party * -* shall have been informed of the possibility of such damages. This * -* limitation of liability shall not apply to liability for death or * -* personal injury resulting from such party's negligence to the * -* extent applicable law prohibits such limitation. Some * -* jurisdictions do not allow the exclusion or limitation of * -* incidental or consequential damages, so this exclusion and * -* limitation may not apply to You. * -* * -************************************************************************ - -8. Litigation -------------- - -Any litigation relating to this License may be brought only in the -courts of a jurisdiction where the defendant maintains its principal -place of business and such litigation shall be governed by laws of that -jurisdiction, without reference to its conflict-of-law provisions. -Nothing in this Section shall prevent a party's ability to bring -cross-claims or counter-claims. - -9. Miscellaneous ----------------- - -This License represents the complete agreement concerning the subject -matter hereof. If any provision of this License is held to be -unenforceable, such provision shall be reformed only to the extent -necessary to make it enforceable. Any law or regulation which provides -that the language of a contract shall be construed against the drafter -shall not be used to construe this License against a Contributor. - -10. Versions of the License ---------------------------- - -10.1. New Versions - -Mozilla Foundation is the license steward. Except as provided in Section -10.3, no one other than the license steward has the right to modify or -publish new versions of this License. Each version will be given a -distinguishing version number. - -10.2. Effect of New Versions - -You may distribute the Covered Software under the terms of the version -of the License under which You originally received the Covered Software, -or under the terms of any subsequent version published by the license -steward. - -10.3. Modified Versions - -If you create software not governed by this License, and you want to -create a new license for such software, you may create and use a -modified version of this License if you rename the license and remove -any references to the name of the license steward (except to note that -such modified license differs from this License). - -10.4. Distributing Source Code Form that is Incompatible With Secondary -Licenses - -If You choose to distribute Source Code Form that is Incompatible With -Secondary Licenses under the terms of this version of the License, the -notice described in Exhibit B of this License must be attached. - -Exhibit A - Source Code Form License Notice -------------------------------------------- - - This Source Code Form is subject to the terms of the Mozilla Public - License, v. 2.0. If a copy of the MPL was not distributed with this - file, You can obtain one at http://mozilla.org/MPL/2.0/. - -If it is not possible or desirable to put the notice in a particular -file, then You may include the notice in a location (such as a LICENSE -file in a relevant directory) where a recipient would be likely to look -for such a notice. - -You may add additional accurate notices of copyright ownership. - -Exhibit B - "Incompatible With Secondary Licenses" Notice ---------------------------------------------------------- - - This Source Code Form is "Incompatible With Secondary Licenses", as - defined by the Mozilla Public License, v. 2.0. - - -## gRPC-Core - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. - ------------------------------------------------------------ - -BSD 3-Clause License - -Copyright 2016, Google Inc. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - -1. Redistributions of source code must retain the above copyright notice, -this list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright notice, -this list of conditions and the following disclaimer in the documentation -and/or other materials provided with the distribution. - -3. Neither the name of the copyright holder nor the names of its -contributors may be used to endorse or promote products derived from this -software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE -LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF -THE POSSIBILITY OF SUCH DAMAGE. - ------------------------------------------------------------ - -Mozilla Public License Version 2.0 -================================== - -1. Definitions --------------- - -1.1. "Contributor" - means each individual or legal entity that creates, contributes to - the creation of, or owns Covered Software. - -1.2. "Contributor Version" - means the combination of the Contributions of others (if any) used - by a Contributor and that particular Contributor's Contribution. - -1.3. "Contribution" - means Covered Software of a particular Contributor. - -1.4. "Covered Software" - means Source Code Form to which the initial Contributor has attached - the notice in Exhibit A, the Executable Form of such Source Code - Form, and Modifications of such Source Code Form, in each case - including portions thereof. - -1.5. "Incompatible With Secondary Licenses" - means - - (a) that the initial Contributor has attached the notice described - in Exhibit B to the Covered Software; or - - (b) that the Covered Software was made available under the terms of - version 1.1 or earlier of the License, but not also under the - terms of a Secondary License. - -1.6. "Executable Form" - means any form of the work other than Source Code Form. - -1.7. "Larger Work" - means a work that combines Covered Software with other material, in - a separate file or files, that is not Covered Software. - -1.8. "License" - means this document. - -1.9. "Licensable" - means having the right to grant, to the maximum extent possible, - whether at the time of the initial grant or subsequently, any and - all of the rights conveyed by this License. - -1.10. "Modifications" - means any of the following: - - (a) any file in Source Code Form that results from an addition to, - deletion from, or modification of the contents of Covered - Software; or - - (b) any new file in Source Code Form that contains any Covered - Software. - -1.11. "Patent Claims" of a Contributor - means any patent claim(s), including without limitation, method, - process, and apparatus claims, in any patent Licensable by such - Contributor that would be infringed, but for the grant of the - License, by the making, using, selling, offering for sale, having - made, import, or transfer of either its Contributions or its - Contributor Version. - -1.12. "Secondary License" - means either the GNU General Public License, Version 2.0, the GNU - Lesser General Public License, Version 2.1, the GNU Affero General - Public License, Version 3.0, or any later versions of those - licenses. - -1.13. "Source Code Form" - means the form of the work preferred for making modifications. - -1.14. "You" (or "Your") - means an individual or a legal entity exercising rights under this - License. For legal entities, "You" includes any entity that - controls, is controlled by, or is under common control with You. For - purposes of this definition, "control" means (a) the power, direct - or indirect, to cause the direction or management of such entity, - whether by contract or otherwise, or (b) ownership of more than - fifty percent (50%) of the outstanding shares or beneficial - ownership of such entity. - -2. License Grants and Conditions --------------------------------- - -2.1. Grants - -Each Contributor hereby grants You a world-wide, royalty-free, -non-exclusive license: - -(a) under intellectual property rights (other than patent or trademark) - Licensable by such Contributor to use, reproduce, make available, - modify, display, perform, distribute, and otherwise exploit its - Contributions, either on an unmodified basis, with Modifications, or - as part of a Larger Work; and - -(b) under Patent Claims of such Contributor to make, use, sell, offer - for sale, have made, import, and otherwise transfer either its - Contributions or its Contributor Version. - -2.2. Effective Date - -The licenses granted in Section 2.1 with respect to any Contribution -become effective for each Contribution on the date the Contributor first -distributes such Contribution. - -2.3. Limitations on Grant Scope - -The licenses granted in this Section 2 are the only rights granted under -this License. No additional rights or licenses will be implied from the -distribution or licensing of Covered Software under this License. -Notwithstanding Section 2.1(b) above, no patent license is granted by a -Contributor: - -(a) for any code that a Contributor has removed from Covered Software; - or - -(b) for infringements caused by: (i) Your and any other third party's - modifications of Covered Software, or (ii) the combination of its - Contributions with other software (except as part of its Contributor - Version); or - -(c) under Patent Claims infringed by Covered Software in the absence of - its Contributions. - -This License does not grant any rights in the trademarks, service marks, -or logos of any Contributor (except as may be necessary to comply with -the notice requirements in Section 3.4). - -2.4. Subsequent Licenses - -No Contributor makes additional grants as a result of Your choice to -distribute the Covered Software under a subsequent version of this -License (see Section 10.2) or under the terms of a Secondary License (if -permitted under the terms of Section 3.3). - -2.5. Representation - -Each Contributor represents that the Contributor believes its -Contributions are its original creation(s) or it has sufficient rights -to grant the rights to its Contributions conveyed by this License. - -2.6. Fair Use - -This License is not intended to limit any rights You have under -applicable copyright doctrines of fair use, fair dealing, or other -equivalents. - -2.7. Conditions - -Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted -in Section 2.1. - -3. Responsibilities -------------------- - -3.1. Distribution of Source Form - -All distribution of Covered Software in Source Code Form, including any -Modifications that You create or to which You contribute, must be under -the terms of this License. You must inform recipients that the Source -Code Form of the Covered Software is governed by the terms of this -License, and how they can obtain a copy of this License. You may not -attempt to alter or restrict the recipients' rights in the Source Code -Form. - -3.2. Distribution of Executable Form - -If You distribute Covered Software in Executable Form then: - -(a) such Covered Software must also be made available in Source Code - Form, as described in Section 3.1, and You must inform recipients of - the Executable Form how they can obtain a copy of such Source Code - Form by reasonable means in a timely manner, at a charge no more - than the cost of distribution to the recipient; and - -(b) You may distribute such Executable Form under the terms of this - License, or sublicense it under different terms, provided that the - license for the Executable Form does not attempt to limit or alter - the recipients' rights in the Source Code Form under this License. - -3.3. Distribution of a Larger Work - -You may create and distribute a Larger Work under terms of Your choice, -provided that You also comply with the requirements of this License for -the Covered Software. If the Larger Work is a combination of Covered -Software with a work governed by one or more Secondary Licenses, and the -Covered Software is not Incompatible With Secondary Licenses, this -License permits You to additionally distribute such Covered Software -under the terms of such Secondary License(s), so that the recipient of -the Larger Work may, at their option, further distribute the Covered -Software under the terms of either this License or such Secondary -License(s). - -3.4. Notices - -You may not remove or alter the substance of any license notices -(including copyright notices, patent notices, disclaimers of warranty, -or limitations of liability) contained within the Source Code Form of -the Covered Software, except that You may alter any license notices to -the extent required to remedy known factual inaccuracies. - -3.5. Application of Additional Terms - -You may choose to offer, and to charge a fee for, warranty, support, -indemnity or liability obligations to one or more recipients of Covered -Software. However, You may do so only on Your own behalf, and not on -behalf of any Contributor. You must make it absolutely clear that any -such warranty, support, indemnity, or liability obligation is offered by -You alone, and You hereby agree to indemnify every Contributor for any -liability incurred by such Contributor as a result of warranty, support, -indemnity or liability terms You offer. You may include additional -disclaimers of warranty and limitations of liability specific to any -jurisdiction. - -4. Inability to Comply Due to Statute or Regulation ---------------------------------------------------- - -If it is impossible for You to comply with any of the terms of this -License with respect to some or all of the Covered Software due to -statute, judicial order, or regulation then You must: (a) comply with -the terms of this License to the maximum extent possible; and (b) -describe the limitations and the code they affect. Such description must -be placed in a text file included with all distributions of the Covered -Software under this License. Except to the extent prohibited by statute -or regulation, such description must be sufficiently detailed for a -recipient of ordinary skill to be able to understand it. - -5. Termination --------------- - -5.1. The rights granted under this License will terminate automatically -if You fail to comply with any of its terms. However, if You become -compliant, then the rights granted under this License from a particular -Contributor are reinstated (a) provisionally, unless and until such -Contributor explicitly and finally terminates Your grants, and (b) on an -ongoing basis, if such Contributor fails to notify You of the -non-compliance by some reasonable means prior to 60 days after You have -come back into compliance. Moreover, Your grants from a particular -Contributor are reinstated on an ongoing basis if such Contributor -notifies You of the non-compliance by some reasonable means, this is the -first time You have received notice of non-compliance with this License -from such Contributor, and You become compliant prior to 30 days after -Your receipt of the notice. - -5.2. If You initiate litigation against any entity by asserting a patent -infringement claim (excluding declaratory judgment actions, -counter-claims, and cross-claims) alleging that a Contributor Version -directly or indirectly infringes any patent, then the rights granted to -You by any and all Contributors for the Covered Software under Section -2.1 of this License shall terminate. - -5.3. In the event of termination under Sections 5.1 or 5.2 above, all -end user license agreements (excluding distributors and resellers) which -have been validly granted by You or Your distributors under this License -prior to termination shall survive termination. - -************************************************************************ -* * -* 6. Disclaimer of Warranty * -* ------------------------- * -* * -* Covered Software is provided under this License on an "as is" * -* basis, without warranty of any kind, either expressed, implied, or * -* statutory, including, without limitation, warranties that the * -* Covered Software is free of defects, merchantable, fit for a * -* particular purpose or non-infringing. The entire risk as to the * -* quality and performance of the Covered Software is with You. * -* Should any Covered Software prove defective in any respect, You * -* (not any Contributor) assume the cost of any necessary servicing, * -* repair, or correction. This disclaimer of warranty constitutes an * -* essential part of this License. No use of any Covered Software is * -* authorized under this License except under this disclaimer. * -* * -************************************************************************ - -************************************************************************ -* * -* 7. Limitation of Liability * -* -------------------------- * -* * -* Under no circumstances and under no legal theory, whether tort * -* (including negligence), contract, or otherwise, shall any * -* Contributor, or anyone who distributes Covered Software as * -* permitted above, be liable to You for any direct, indirect, * -* special, incidental, or consequential damages of any character * -* including, without limitation, damages for lost profits, loss of * -* goodwill, work stoppage, computer failure or malfunction, or any * -* and all other commercial damages or losses, even if such party * -* shall have been informed of the possibility of such damages. This * -* limitation of liability shall not apply to liability for death or * -* personal injury resulting from such party's negligence to the * -* extent applicable law prohibits such limitation. Some * -* jurisdictions do not allow the exclusion or limitation of * -* incidental or consequential damages, so this exclusion and * -* limitation may not apply to You. * -* * -************************************************************************ - -8. Litigation -------------- - -Any litigation relating to this License may be brought only in the -courts of a jurisdiction where the defendant maintains its principal -place of business and such litigation shall be governed by laws of that -jurisdiction, without reference to its conflict-of-law provisions. -Nothing in this Section shall prevent a party's ability to bring -cross-claims or counter-claims. - -9. Miscellaneous ----------------- - -This License represents the complete agreement concerning the subject -matter hereof. If any provision of this License is held to be -unenforceable, such provision shall be reformed only to the extent -necessary to make it enforceable. Any law or regulation which provides -that the language of a contract shall be construed against the drafter -shall not be used to construe this License against a Contributor. - -10. Versions of the License ---------------------------- - -10.1. New Versions - -Mozilla Foundation is the license steward. Except as provided in Section -10.3, no one other than the license steward has the right to modify or -publish new versions of this License. Each version will be given a -distinguishing version number. - -10.2. Effect of New Versions - -You may distribute the Covered Software under the terms of the version -of the License under which You originally received the Covered Software, -or under the terms of any subsequent version published by the license -steward. - -10.3. Modified Versions - -If you create software not governed by this License, and you want to -create a new license for such software, you may create and use a -modified version of this License if you rename the license and remove -any references to the name of the license steward (except to note that -such modified license differs from this License). - -10.4. Distributing Source Code Form that is Incompatible With Secondary -Licenses - -If You choose to distribute Source Code Form that is Incompatible With -Secondary Licenses under the terms of this version of the License, the -notice described in Exhibit B of this License must be attached. - -Exhibit A - Source Code Form License Notice -------------------------------------------- - - This Source Code Form is subject to the terms of the Mozilla Public - License, v. 2.0. If a copy of the MPL was not distributed with this - file, You can obtain one at http://mozilla.org/MPL/2.0/. - -If it is not possible or desirable to put the notice in a particular -file, then You may include the notice in a location (such as a LICENSE -file in a relevant directory) where a recipient would be likely to look -for such a notice. - -You may add additional accurate notices of copyright ownership. - -Exhibit B - "Incompatible With Secondary Licenses" Notice ---------------------------------------------------------- - - This Source Code Form is "Incompatible With Secondary Licenses", as - defined by the Mozilla Public License, v. 2.0. - - -## leveldb-library - -Copyright (c) 2011 The LevelDB Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - -## nanopb - -Copyright (c) 2011 Petteri Aimonen - -This software is provided 'as-is', without any express or -implied warranty. In no event will the authors be held liable -for any damages arising from the use of this software. - -Permission is granted to anyone to use this software for any -purpose, including commercial applications, and to alter it and -redistribute it freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you - must not claim that you wrote the original software. If you use - this software in a product, an acknowledgment in the product - documentation would be appreciated but is not required. - -2. Altered source versions must be plainly marked as such, and - must not be misrepresented as being the original software. - -3. This notice may not be removed or altered from any source - distribution. - Generated by CocoaPods - https://cocoapods.org diff --git a/iosApp/Pods/Target Support Files/Pods-iosApp/Pods-iosApp-acknowledgements.plist b/iosApp/Pods/Target Support Files/Pods-iosApp/Pods-iosApp-acknowledgements.plist index 3b89ebf0f..7acbad1ea 100644 --- a/iosApp/Pods/Target Support Files/Pods-iosApp/Pods-iosApp-acknowledgements.plist +++ b/iosApp/Pods/Target Support Files/Pods-iosApp/Pods-iosApp-acknowledgements.plist @@ -12,3983 +12,6 @@ Type PSGroupSpecifier - - FooterText - BoringSSL is a fork of OpenSSL. As such, large parts of it fall under OpenSSL -licensing. Files that are completely new have a Google copyright and an ISC -license. This license is reproduced at the bottom of this file. - -Contributors to BoringSSL are required to follow the CLA rules for Chromium: -https://cla.developers.google.com/clas - -Files in third_party/ have their own licenses, as described therein. The MIT -license, for third_party/fiat, which, unlike other third_party directories, is -compiled into non-test libraries, is included below. - -The OpenSSL toolkit stays under a dual license, i.e. both the conditions of the -OpenSSL License and the original SSLeay license apply to the toolkit. See below -for the actual license texts. Actually both licenses are BSD-style Open Source -licenses. In case of any license issues related to OpenSSL please contact -openssl-core@openssl.org. - -The following are Google-internal bug numbers where explicit permission from -some authors is recorded for use of their work. (This is purely for our own -record keeping.) - 27287199 - 27287880 - 27287883 - - OpenSSL License - --------------- - -/* ==================================================================== - * Copyright (c) 1998-2011 The OpenSSL Project. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in - * the documentation and/or other materials provided with the - * distribution. - * - * 3. All advertising materials mentioning features or use of this - * software must display the following acknowledgment: - * "This product includes software developed by the OpenSSL Project - * for use in the OpenSSL Toolkit. (http://www.openssl.org/)" - * - * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to - * endorse or promote products derived from this software without - * prior written permission. For written permission, please contact - * openssl-core@openssl.org. - * - * 5. Products derived from this software may not be called "OpenSSL" - * nor may "OpenSSL" appear in their names without prior written - * permission of the OpenSSL Project. - * - * 6. Redistributions of any form whatsoever must retain the following - * acknowledgment: - * "This product includes software developed by the OpenSSL Project - * for use in the OpenSSL Toolkit (http://www.openssl.org/)" - * - * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY - * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR - * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR - * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT - * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, - * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED - * OF THE POSSIBILITY OF SUCH DAMAGE. - * ==================================================================== - * - * This product includes cryptographic software written by Eric Young - * (eay@cryptsoft.com). This product includes software written by Tim - * Hudson (tjh@cryptsoft.com). - * - */ - - Original SSLeay License - ----------------------- - -/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) - * All rights reserved. - * - * This package is an SSL implementation written - * by Eric Young (eay@cryptsoft.com). - * The implementation was written so as to conform with Netscapes SSL. - * - * This library is free for commercial and non-commercial use as long as - * the following conditions are aheared to. The following conditions - * apply to all code found in this distribution, be it the RC4, RSA, - * lhash, DES, etc., code; not just the SSL code. The SSL documentation - * included with this distribution is covered by the same copyright terms - * except that the holder is Tim Hudson (tjh@cryptsoft.com). - * - * Copyright remains Eric Young's, and as such any Copyright notices in - * the code are not to be removed. - * If this package is used in a product, Eric Young should be given attribution - * as the author of the parts of the library used. - * This can be in the form of a textual message at program startup or - * in documentation (online or textual) provided with the package. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. All advertising materials mentioning features or use of this software - * must display the following acknowledgement: - * "This product includes cryptographic software written by - * Eric Young (eay@cryptsoft.com)" - * The word 'cryptographic' can be left out if the rouines from the library - * being used are not cryptographic related :-). - * 4. If you include any Windows specific code (or a derivative thereof) from - * the apps directory (application code) you must include an acknowledgement: - * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" - * - * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND - * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE - * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - * SUCH DAMAGE. - * - * The licence and distribution terms for any publically available version or - * derivative of this code cannot be changed. i.e. this code cannot simply be - * copied and put under another distribution licence - * [including the GNU Public Licence.] - */ - - -ISC license used for completely new code in BoringSSL: - -/* Copyright (c) 2015, Google Inc. - * - * Permission to use, copy, modify, and/or distribute this software for any - * purpose with or without fee is hereby granted, provided that the above - * copyright notice and this permission notice appear in all copies. - * - * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES - * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF - * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY - * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES - * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION - * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN - * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ - - -The code in third_party/fiat carries the MIT license: - -Copyright (c) 2015-2016 the fiat-crypto authors (see -https://github.com/mit-plv/fiat-crypto/blob/master/AUTHORS). - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - -Licenses for support code -------------------------- - -Parts of the TLS test suite are under the Go license. This code is not included -in BoringSSL (i.e. libcrypto and libssl) when compiled, however, so -distributing code linked against BoringSSL does not trigger this license: - -Copyright (c) 2009 The Go Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - -BoringSSL uses the Chromium test infrastructure to run a continuous build, -trybots etc. The scripts which manage this, and the script for generating build -metadata, are under the Chromium license. Distributing code linked against -BoringSSL does not trigger this license. - -Copyright 2015 The Chromium Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - License - Mixed - Title - BoringSSL-GRPC - Type - PSGroupSpecifier - - - FooterText - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. - - License - Apache-2.0 - Title - FirebaseAppCheckInterop - Type - PSGroupSpecifier - - - FooterText - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. - - License - Apache-2.0 - Title - FirebaseAuth - Type - PSGroupSpecifier - - - FooterText - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. - - License - Apache-2.0 - Title - FirebaseCore - Type - PSGroupSpecifier - - - FooterText - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. - - License - Apache-2.0 - Title - FirebaseCoreInternal - Type - PSGroupSpecifier - - - FooterText - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. - - --------------------------- -nlohmann_json --------------------------- -MIT License - -Copyright (c) 2013-2020 Niels Lohmann - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - --------------------------- -FirestoreEncoder --------------------------- - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. - - - -## Runtime Library Exception to the Apache 2.0 License: ## - - - As an exception, if you use this Software to compile your source code and - portions of this Software are embedded into the binary product as a result, - you may redistribute such product without providing attribution as would - otherwise be required by Sections 4(a), 4(b) and 4(d) of the License. - - - License - Apache-2.0 - Title - FirebaseFirestore - Type - PSGroupSpecifier - - - FooterText - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. - - License - Apache - Title - GTMSessionFetcher - Type - PSGroupSpecifier - - - FooterText - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. - -================================================================================ - -The following copyright from Landon J. Fuller applies to the isAppEncrypted -function in Environment/third_party/GULAppEnvironmentUtil.m. - -Copyright (c) 2017 Landon J. Fuller <landon@landonf.org> -All rights reserved. - -Permission is hereby granted, free of charge, to any person obtaining a copy of -this software and associated documentation files (the "Software"), to deal in -the Software without restriction, including without limitation the rights to -use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of -the Software, and to permit persons to whom the Software is furnished to do so, -subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS -FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR -COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER -IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN -CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -Comment from -<a href="http://iphonedevwiki.net/index.php/Crack_prevention">iPhone Dev Wiki -Crack Prevention</a>: App Store binaries are signed by both their developer -and Apple. This encrypts the binary so that decryption keys are needed in order -to make the binary readable. When iOS executes the binary, the decryption keys -are used to decrypt the binary into a readable state where it is then loaded -into memory and executed. iOS can tell the encryption status of a binary via the -cryptid structure member of LC_ENCRYPTION_INFO MachO load command. If cryptid is -a non-zero value then the binary is encrypted. - -'Cracking' works by letting the kernel decrypt the binary then siphoning the -decrypted data into a new binary file, resigning, and repackaging. This will -only work on jailbroken devices as codesignature validation has been removed. -Resigning takes place because while the codesignature doesn't have to be valid -thanks to the jailbreak, it does have to be in place unless you have AppSync or -similar to disable codesignature checks. - -More information at <a href="http://landonf.org/2009/02/index.html">Landon -Fuller's blog</a> - - License - Apache - Title - GoogleUtilities - Type - PSGroupSpecifier - - - FooterText - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. - - License - Apache-2.0 - Title - PromisesObjC - Type - PSGroupSpecifier - - - FooterText - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. - - License - Apache-2.0 - Title - RecaptchaInterop - Type - PSGroupSpecifier - - - FooterText - - Apache License - Version 2.0, January 2004 - https://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - https://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. - - - License - Apache License, Version 2.0 - Title - abseil - Type - PSGroupSpecifier - - - FooterText - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. - ------------------------------------------------------------ - -BSD 3-Clause License - -Copyright 2016, Google Inc. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - -1. Redistributions of source code must retain the above copyright notice, -this list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright notice, -this list of conditions and the following disclaimer in the documentation -and/or other materials provided with the distribution. - -3. Neither the name of the copyright holder nor the names of its -contributors may be used to endorse or promote products derived from this -software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE -LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF -THE POSSIBILITY OF SUCH DAMAGE. - ------------------------------------------------------------ - -Mozilla Public License Version 2.0 -================================== - -1. Definitions --------------- - -1.1. "Contributor" - means each individual or legal entity that creates, contributes to - the creation of, or owns Covered Software. - -1.2. "Contributor Version" - means the combination of the Contributions of others (if any) used - by a Contributor and that particular Contributor's Contribution. - -1.3. "Contribution" - means Covered Software of a particular Contributor. - -1.4. "Covered Software" - means Source Code Form to which the initial Contributor has attached - the notice in Exhibit A, the Executable Form of such Source Code - Form, and Modifications of such Source Code Form, in each case - including portions thereof. - -1.5. "Incompatible With Secondary Licenses" - means - - (a) that the initial Contributor has attached the notice described - in Exhibit B to the Covered Software; or - - (b) that the Covered Software was made available under the terms of - version 1.1 or earlier of the License, but not also under the - terms of a Secondary License. - -1.6. "Executable Form" - means any form of the work other than Source Code Form. - -1.7. "Larger Work" - means a work that combines Covered Software with other material, in - a separate file or files, that is not Covered Software. - -1.8. "License" - means this document. - -1.9. "Licensable" - means having the right to grant, to the maximum extent possible, - whether at the time of the initial grant or subsequently, any and - all of the rights conveyed by this License. - -1.10. "Modifications" - means any of the following: - - (a) any file in Source Code Form that results from an addition to, - deletion from, or modification of the contents of Covered - Software; or - - (b) any new file in Source Code Form that contains any Covered - Software. - -1.11. "Patent Claims" of a Contributor - means any patent claim(s), including without limitation, method, - process, and apparatus claims, in any patent Licensable by such - Contributor that would be infringed, but for the grant of the - License, by the making, using, selling, offering for sale, having - made, import, or transfer of either its Contributions or its - Contributor Version. - -1.12. "Secondary License" - means either the GNU General Public License, Version 2.0, the GNU - Lesser General Public License, Version 2.1, the GNU Affero General - Public License, Version 3.0, or any later versions of those - licenses. - -1.13. "Source Code Form" - means the form of the work preferred for making modifications. - -1.14. "You" (or "Your") - means an individual or a legal entity exercising rights under this - License. For legal entities, "You" includes any entity that - controls, is controlled by, or is under common control with You. For - purposes of this definition, "control" means (a) the power, direct - or indirect, to cause the direction or management of such entity, - whether by contract or otherwise, or (b) ownership of more than - fifty percent (50%) of the outstanding shares or beneficial - ownership of such entity. - -2. License Grants and Conditions --------------------------------- - -2.1. Grants - -Each Contributor hereby grants You a world-wide, royalty-free, -non-exclusive license: - -(a) under intellectual property rights (other than patent or trademark) - Licensable by such Contributor to use, reproduce, make available, - modify, display, perform, distribute, and otherwise exploit its - Contributions, either on an unmodified basis, with Modifications, or - as part of a Larger Work; and - -(b) under Patent Claims of such Contributor to make, use, sell, offer - for sale, have made, import, and otherwise transfer either its - Contributions or its Contributor Version. - -2.2. Effective Date - -The licenses granted in Section 2.1 with respect to any Contribution -become effective for each Contribution on the date the Contributor first -distributes such Contribution. - -2.3. Limitations on Grant Scope - -The licenses granted in this Section 2 are the only rights granted under -this License. No additional rights or licenses will be implied from the -distribution or licensing of Covered Software under this License. -Notwithstanding Section 2.1(b) above, no patent license is granted by a -Contributor: - -(a) for any code that a Contributor has removed from Covered Software; - or - -(b) for infringements caused by: (i) Your and any other third party's - modifications of Covered Software, or (ii) the combination of its - Contributions with other software (except as part of its Contributor - Version); or - -(c) under Patent Claims infringed by Covered Software in the absence of - its Contributions. - -This License does not grant any rights in the trademarks, service marks, -or logos of any Contributor (except as may be necessary to comply with -the notice requirements in Section 3.4). - -2.4. Subsequent Licenses - -No Contributor makes additional grants as a result of Your choice to -distribute the Covered Software under a subsequent version of this -License (see Section 10.2) or under the terms of a Secondary License (if -permitted under the terms of Section 3.3). - -2.5. Representation - -Each Contributor represents that the Contributor believes its -Contributions are its original creation(s) or it has sufficient rights -to grant the rights to its Contributions conveyed by this License. - -2.6. Fair Use - -This License is not intended to limit any rights You have under -applicable copyright doctrines of fair use, fair dealing, or other -equivalents. - -2.7. Conditions - -Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted -in Section 2.1. - -3. Responsibilities -------------------- - -3.1. Distribution of Source Form - -All distribution of Covered Software in Source Code Form, including any -Modifications that You create or to which You contribute, must be under -the terms of this License. You must inform recipients that the Source -Code Form of the Covered Software is governed by the terms of this -License, and how they can obtain a copy of this License. You may not -attempt to alter or restrict the recipients' rights in the Source Code -Form. - -3.2. Distribution of Executable Form - -If You distribute Covered Software in Executable Form then: - -(a) such Covered Software must also be made available in Source Code - Form, as described in Section 3.1, and You must inform recipients of - the Executable Form how they can obtain a copy of such Source Code - Form by reasonable means in a timely manner, at a charge no more - than the cost of distribution to the recipient; and - -(b) You may distribute such Executable Form under the terms of this - License, or sublicense it under different terms, provided that the - license for the Executable Form does not attempt to limit or alter - the recipients' rights in the Source Code Form under this License. - -3.3. Distribution of a Larger Work - -You may create and distribute a Larger Work under terms of Your choice, -provided that You also comply with the requirements of this License for -the Covered Software. If the Larger Work is a combination of Covered -Software with a work governed by one or more Secondary Licenses, and the -Covered Software is not Incompatible With Secondary Licenses, this -License permits You to additionally distribute such Covered Software -under the terms of such Secondary License(s), so that the recipient of -the Larger Work may, at their option, further distribute the Covered -Software under the terms of either this License or such Secondary -License(s). - -3.4. Notices - -You may not remove or alter the substance of any license notices -(including copyright notices, patent notices, disclaimers of warranty, -or limitations of liability) contained within the Source Code Form of -the Covered Software, except that You may alter any license notices to -the extent required to remedy known factual inaccuracies. - -3.5. Application of Additional Terms - -You may choose to offer, and to charge a fee for, warranty, support, -indemnity or liability obligations to one or more recipients of Covered -Software. However, You may do so only on Your own behalf, and not on -behalf of any Contributor. You must make it absolutely clear that any -such warranty, support, indemnity, or liability obligation is offered by -You alone, and You hereby agree to indemnify every Contributor for any -liability incurred by such Contributor as a result of warranty, support, -indemnity or liability terms You offer. You may include additional -disclaimers of warranty and limitations of liability specific to any -jurisdiction. - -4. Inability to Comply Due to Statute or Regulation ---------------------------------------------------- - -If it is impossible for You to comply with any of the terms of this -License with respect to some or all of the Covered Software due to -statute, judicial order, or regulation then You must: (a) comply with -the terms of this License to the maximum extent possible; and (b) -describe the limitations and the code they affect. Such description must -be placed in a text file included with all distributions of the Covered -Software under this License. Except to the extent prohibited by statute -or regulation, such description must be sufficiently detailed for a -recipient of ordinary skill to be able to understand it. - -5. Termination --------------- - -5.1. The rights granted under this License will terminate automatically -if You fail to comply with any of its terms. However, if You become -compliant, then the rights granted under this License from a particular -Contributor are reinstated (a) provisionally, unless and until such -Contributor explicitly and finally terminates Your grants, and (b) on an -ongoing basis, if such Contributor fails to notify You of the -non-compliance by some reasonable means prior to 60 days after You have -come back into compliance. Moreover, Your grants from a particular -Contributor are reinstated on an ongoing basis if such Contributor -notifies You of the non-compliance by some reasonable means, this is the -first time You have received notice of non-compliance with this License -from such Contributor, and You become compliant prior to 30 days after -Your receipt of the notice. - -5.2. If You initiate litigation against any entity by asserting a patent -infringement claim (excluding declaratory judgment actions, -counter-claims, and cross-claims) alleging that a Contributor Version -directly or indirectly infringes any patent, then the rights granted to -You by any and all Contributors for the Covered Software under Section -2.1 of this License shall terminate. - -5.3. In the event of termination under Sections 5.1 or 5.2 above, all -end user license agreements (excluding distributors and resellers) which -have been validly granted by You or Your distributors under this License -prior to termination shall survive termination. - -************************************************************************ -* * -* 6. Disclaimer of Warranty * -* ------------------------- * -* * -* Covered Software is provided under this License on an "as is" * -* basis, without warranty of any kind, either expressed, implied, or * -* statutory, including, without limitation, warranties that the * -* Covered Software is free of defects, merchantable, fit for a * -* particular purpose or non-infringing. The entire risk as to the * -* quality and performance of the Covered Software is with You. * -* Should any Covered Software prove defective in any respect, You * -* (not any Contributor) assume the cost of any necessary servicing, * -* repair, or correction. This disclaimer of warranty constitutes an * -* essential part of this License. No use of any Covered Software is * -* authorized under this License except under this disclaimer. * -* * -************************************************************************ - -************************************************************************ -* * -* 7. Limitation of Liability * -* -------------------------- * -* * -* Under no circumstances and under no legal theory, whether tort * -* (including negligence), contract, or otherwise, shall any * -* Contributor, or anyone who distributes Covered Software as * -* permitted above, be liable to You for any direct, indirect, * -* special, incidental, or consequential damages of any character * -* including, without limitation, damages for lost profits, loss of * -* goodwill, work stoppage, computer failure or malfunction, or any * -* and all other commercial damages or losses, even if such party * -* shall have been informed of the possibility of such damages. This * -* limitation of liability shall not apply to liability for death or * -* personal injury resulting from such party's negligence to the * -* extent applicable law prohibits such limitation. Some * -* jurisdictions do not allow the exclusion or limitation of * -* incidental or consequential damages, so this exclusion and * -* limitation may not apply to You. * -* * -************************************************************************ - -8. Litigation -------------- - -Any litigation relating to this License may be brought only in the -courts of a jurisdiction where the defendant maintains its principal -place of business and such litigation shall be governed by laws of that -jurisdiction, without reference to its conflict-of-law provisions. -Nothing in this Section shall prevent a party's ability to bring -cross-claims or counter-claims. - -9. Miscellaneous ----------------- - -This License represents the complete agreement concerning the subject -matter hereof. If any provision of this License is held to be -unenforceable, such provision shall be reformed only to the extent -necessary to make it enforceable. Any law or regulation which provides -that the language of a contract shall be construed against the drafter -shall not be used to construe this License against a Contributor. - -10. Versions of the License ---------------------------- - -10.1. New Versions - -Mozilla Foundation is the license steward. Except as provided in Section -10.3, no one other than the license steward has the right to modify or -publish new versions of this License. Each version will be given a -distinguishing version number. - -10.2. Effect of New Versions - -You may distribute the Covered Software under the terms of the version -of the License under which You originally received the Covered Software, -or under the terms of any subsequent version published by the license -steward. - -10.3. Modified Versions - -If you create software not governed by this License, and you want to -create a new license for such software, you may create and use a -modified version of this License if you rename the license and remove -any references to the name of the license steward (except to note that -such modified license differs from this License). - -10.4. Distributing Source Code Form that is Incompatible With Secondary -Licenses - -If You choose to distribute Source Code Form that is Incompatible With -Secondary Licenses under the terms of this version of the License, the -notice described in Exhibit B of this License must be attached. - -Exhibit A - Source Code Form License Notice -------------------------------------------- - - This Source Code Form is subject to the terms of the Mozilla Public - License, v. 2.0. If a copy of the MPL was not distributed with this - file, You can obtain one at http://mozilla.org/MPL/2.0/. - -If it is not possible or desirable to put the notice in a particular -file, then You may include the notice in a location (such as a LICENSE -file in a relevant directory) where a recipient would be likely to look -for such a notice. - -You may add additional accurate notices of copyright ownership. - -Exhibit B - "Incompatible With Secondary Licenses" Notice ---------------------------------------------------------- - - This Source Code Form is "Incompatible With Secondary Licenses", as - defined by the Mozilla Public License, v. 2.0. - - License - Apache License, Version 2.0 - Title - gRPC-C++ - Type - PSGroupSpecifier - - - FooterText - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. - ------------------------------------------------------------ - -BSD 3-Clause License - -Copyright 2016, Google Inc. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - -1. Redistributions of source code must retain the above copyright notice, -this list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright notice, -this list of conditions and the following disclaimer in the documentation -and/or other materials provided with the distribution. - -3. Neither the name of the copyright holder nor the names of its -contributors may be used to endorse or promote products derived from this -software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE -LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF -THE POSSIBILITY OF SUCH DAMAGE. - ------------------------------------------------------------ - -Mozilla Public License Version 2.0 -================================== - -1. Definitions --------------- - -1.1. "Contributor" - means each individual or legal entity that creates, contributes to - the creation of, or owns Covered Software. - -1.2. "Contributor Version" - means the combination of the Contributions of others (if any) used - by a Contributor and that particular Contributor's Contribution. - -1.3. "Contribution" - means Covered Software of a particular Contributor. - -1.4. "Covered Software" - means Source Code Form to which the initial Contributor has attached - the notice in Exhibit A, the Executable Form of such Source Code - Form, and Modifications of such Source Code Form, in each case - including portions thereof. - -1.5. "Incompatible With Secondary Licenses" - means - - (a) that the initial Contributor has attached the notice described - in Exhibit B to the Covered Software; or - - (b) that the Covered Software was made available under the terms of - version 1.1 or earlier of the License, but not also under the - terms of a Secondary License. - -1.6. "Executable Form" - means any form of the work other than Source Code Form. - -1.7. "Larger Work" - means a work that combines Covered Software with other material, in - a separate file or files, that is not Covered Software. - -1.8. "License" - means this document. - -1.9. "Licensable" - means having the right to grant, to the maximum extent possible, - whether at the time of the initial grant or subsequently, any and - all of the rights conveyed by this License. - -1.10. "Modifications" - means any of the following: - - (a) any file in Source Code Form that results from an addition to, - deletion from, or modification of the contents of Covered - Software; or - - (b) any new file in Source Code Form that contains any Covered - Software. - -1.11. "Patent Claims" of a Contributor - means any patent claim(s), including without limitation, method, - process, and apparatus claims, in any patent Licensable by such - Contributor that would be infringed, but for the grant of the - License, by the making, using, selling, offering for sale, having - made, import, or transfer of either its Contributions or its - Contributor Version. - -1.12. "Secondary License" - means either the GNU General Public License, Version 2.0, the GNU - Lesser General Public License, Version 2.1, the GNU Affero General - Public License, Version 3.0, or any later versions of those - licenses. - -1.13. "Source Code Form" - means the form of the work preferred for making modifications. - -1.14. "You" (or "Your") - means an individual or a legal entity exercising rights under this - License. For legal entities, "You" includes any entity that - controls, is controlled by, or is under common control with You. For - purposes of this definition, "control" means (a) the power, direct - or indirect, to cause the direction or management of such entity, - whether by contract or otherwise, or (b) ownership of more than - fifty percent (50%) of the outstanding shares or beneficial - ownership of such entity. - -2. License Grants and Conditions --------------------------------- - -2.1. Grants - -Each Contributor hereby grants You a world-wide, royalty-free, -non-exclusive license: - -(a) under intellectual property rights (other than patent or trademark) - Licensable by such Contributor to use, reproduce, make available, - modify, display, perform, distribute, and otherwise exploit its - Contributions, either on an unmodified basis, with Modifications, or - as part of a Larger Work; and - -(b) under Patent Claims of such Contributor to make, use, sell, offer - for sale, have made, import, and otherwise transfer either its - Contributions or its Contributor Version. - -2.2. Effective Date - -The licenses granted in Section 2.1 with respect to any Contribution -become effective for each Contribution on the date the Contributor first -distributes such Contribution. - -2.3. Limitations on Grant Scope - -The licenses granted in this Section 2 are the only rights granted under -this License. No additional rights or licenses will be implied from the -distribution or licensing of Covered Software under this License. -Notwithstanding Section 2.1(b) above, no patent license is granted by a -Contributor: - -(a) for any code that a Contributor has removed from Covered Software; - or - -(b) for infringements caused by: (i) Your and any other third party's - modifications of Covered Software, or (ii) the combination of its - Contributions with other software (except as part of its Contributor - Version); or - -(c) under Patent Claims infringed by Covered Software in the absence of - its Contributions. - -This License does not grant any rights in the trademarks, service marks, -or logos of any Contributor (except as may be necessary to comply with -the notice requirements in Section 3.4). - -2.4. Subsequent Licenses - -No Contributor makes additional grants as a result of Your choice to -distribute the Covered Software under a subsequent version of this -License (see Section 10.2) or under the terms of a Secondary License (if -permitted under the terms of Section 3.3). - -2.5. Representation - -Each Contributor represents that the Contributor believes its -Contributions are its original creation(s) or it has sufficient rights -to grant the rights to its Contributions conveyed by this License. - -2.6. Fair Use - -This License is not intended to limit any rights You have under -applicable copyright doctrines of fair use, fair dealing, or other -equivalents. - -2.7. Conditions - -Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted -in Section 2.1. - -3. Responsibilities -------------------- - -3.1. Distribution of Source Form - -All distribution of Covered Software in Source Code Form, including any -Modifications that You create or to which You contribute, must be under -the terms of this License. You must inform recipients that the Source -Code Form of the Covered Software is governed by the terms of this -License, and how they can obtain a copy of this License. You may not -attempt to alter or restrict the recipients' rights in the Source Code -Form. - -3.2. Distribution of Executable Form - -If You distribute Covered Software in Executable Form then: - -(a) such Covered Software must also be made available in Source Code - Form, as described in Section 3.1, and You must inform recipients of - the Executable Form how they can obtain a copy of such Source Code - Form by reasonable means in a timely manner, at a charge no more - than the cost of distribution to the recipient; and - -(b) You may distribute such Executable Form under the terms of this - License, or sublicense it under different terms, provided that the - license for the Executable Form does not attempt to limit or alter - the recipients' rights in the Source Code Form under this License. - -3.3. Distribution of a Larger Work - -You may create and distribute a Larger Work under terms of Your choice, -provided that You also comply with the requirements of this License for -the Covered Software. If the Larger Work is a combination of Covered -Software with a work governed by one or more Secondary Licenses, and the -Covered Software is not Incompatible With Secondary Licenses, this -License permits You to additionally distribute such Covered Software -under the terms of such Secondary License(s), so that the recipient of -the Larger Work may, at their option, further distribute the Covered -Software under the terms of either this License or such Secondary -License(s). - -3.4. Notices - -You may not remove or alter the substance of any license notices -(including copyright notices, patent notices, disclaimers of warranty, -or limitations of liability) contained within the Source Code Form of -the Covered Software, except that You may alter any license notices to -the extent required to remedy known factual inaccuracies. - -3.5. Application of Additional Terms - -You may choose to offer, and to charge a fee for, warranty, support, -indemnity or liability obligations to one or more recipients of Covered -Software. However, You may do so only on Your own behalf, and not on -behalf of any Contributor. You must make it absolutely clear that any -such warranty, support, indemnity, or liability obligation is offered by -You alone, and You hereby agree to indemnify every Contributor for any -liability incurred by such Contributor as a result of warranty, support, -indemnity or liability terms You offer. You may include additional -disclaimers of warranty and limitations of liability specific to any -jurisdiction. - -4. Inability to Comply Due to Statute or Regulation ---------------------------------------------------- - -If it is impossible for You to comply with any of the terms of this -License with respect to some or all of the Covered Software due to -statute, judicial order, or regulation then You must: (a) comply with -the terms of this License to the maximum extent possible; and (b) -describe the limitations and the code they affect. Such description must -be placed in a text file included with all distributions of the Covered -Software under this License. Except to the extent prohibited by statute -or regulation, such description must be sufficiently detailed for a -recipient of ordinary skill to be able to understand it. - -5. Termination --------------- - -5.1. The rights granted under this License will terminate automatically -if You fail to comply with any of its terms. However, if You become -compliant, then the rights granted under this License from a particular -Contributor are reinstated (a) provisionally, unless and until such -Contributor explicitly and finally terminates Your grants, and (b) on an -ongoing basis, if such Contributor fails to notify You of the -non-compliance by some reasonable means prior to 60 days after You have -come back into compliance. Moreover, Your grants from a particular -Contributor are reinstated on an ongoing basis if such Contributor -notifies You of the non-compliance by some reasonable means, this is the -first time You have received notice of non-compliance with this License -from such Contributor, and You become compliant prior to 30 days after -Your receipt of the notice. - -5.2. If You initiate litigation against any entity by asserting a patent -infringement claim (excluding declaratory judgment actions, -counter-claims, and cross-claims) alleging that a Contributor Version -directly or indirectly infringes any patent, then the rights granted to -You by any and all Contributors for the Covered Software under Section -2.1 of this License shall terminate. - -5.3. In the event of termination under Sections 5.1 or 5.2 above, all -end user license agreements (excluding distributors and resellers) which -have been validly granted by You or Your distributors under this License -prior to termination shall survive termination. - -************************************************************************ -* * -* 6. Disclaimer of Warranty * -* ------------------------- * -* * -* Covered Software is provided under this License on an "as is" * -* basis, without warranty of any kind, either expressed, implied, or * -* statutory, including, without limitation, warranties that the * -* Covered Software is free of defects, merchantable, fit for a * -* particular purpose or non-infringing. The entire risk as to the * -* quality and performance of the Covered Software is with You. * -* Should any Covered Software prove defective in any respect, You * -* (not any Contributor) assume the cost of any necessary servicing, * -* repair, or correction. This disclaimer of warranty constitutes an * -* essential part of this License. No use of any Covered Software is * -* authorized under this License except under this disclaimer. * -* * -************************************************************************ - -************************************************************************ -* * -* 7. Limitation of Liability * -* -------------------------- * -* * -* Under no circumstances and under no legal theory, whether tort * -* (including negligence), contract, or otherwise, shall any * -* Contributor, or anyone who distributes Covered Software as * -* permitted above, be liable to You for any direct, indirect, * -* special, incidental, or consequential damages of any character * -* including, without limitation, damages for lost profits, loss of * -* goodwill, work stoppage, computer failure or malfunction, or any * -* and all other commercial damages or losses, even if such party * -* shall have been informed of the possibility of such damages. This * -* limitation of liability shall not apply to liability for death or * -* personal injury resulting from such party's negligence to the * -* extent applicable law prohibits such limitation. Some * -* jurisdictions do not allow the exclusion or limitation of * -* incidental or consequential damages, so this exclusion and * -* limitation may not apply to You. * -* * -************************************************************************ - -8. Litigation -------------- - -Any litigation relating to this License may be brought only in the -courts of a jurisdiction where the defendant maintains its principal -place of business and such litigation shall be governed by laws of that -jurisdiction, without reference to its conflict-of-law provisions. -Nothing in this Section shall prevent a party's ability to bring -cross-claims or counter-claims. - -9. Miscellaneous ----------------- - -This License represents the complete agreement concerning the subject -matter hereof. If any provision of this License is held to be -unenforceable, such provision shall be reformed only to the extent -necessary to make it enforceable. Any law or regulation which provides -that the language of a contract shall be construed against the drafter -shall not be used to construe this License against a Contributor. - -10. Versions of the License ---------------------------- - -10.1. New Versions - -Mozilla Foundation is the license steward. Except as provided in Section -10.3, no one other than the license steward has the right to modify or -publish new versions of this License. Each version will be given a -distinguishing version number. - -10.2. Effect of New Versions - -You may distribute the Covered Software under the terms of the version -of the License under which You originally received the Covered Software, -or under the terms of any subsequent version published by the license -steward. - -10.3. Modified Versions - -If you create software not governed by this License, and you want to -create a new license for such software, you may create and use a -modified version of this License if you rename the license and remove -any references to the name of the license steward (except to note that -such modified license differs from this License). - -10.4. Distributing Source Code Form that is Incompatible With Secondary -Licenses - -If You choose to distribute Source Code Form that is Incompatible With -Secondary Licenses under the terms of this version of the License, the -notice described in Exhibit B of this License must be attached. - -Exhibit A - Source Code Form License Notice -------------------------------------------- - - This Source Code Form is subject to the terms of the Mozilla Public - License, v. 2.0. If a copy of the MPL was not distributed with this - file, You can obtain one at http://mozilla.org/MPL/2.0/. - -If it is not possible or desirable to put the notice in a particular -file, then You may include the notice in a location (such as a LICENSE -file in a relevant directory) where a recipient would be likely to look -for such a notice. - -You may add additional accurate notices of copyright ownership. - -Exhibit B - "Incompatible With Secondary Licenses" Notice ---------------------------------------------------------- - - This Source Code Form is "Incompatible With Secondary Licenses", as - defined by the Mozilla Public License, v. 2.0. - - License - Apache License, Version 2.0 - Title - gRPC-Core - Type - PSGroupSpecifier - - - FooterText - Copyright (c) 2011 The LevelDB Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - License - New BSD - Title - leveldb-library - Type - PSGroupSpecifier - - - FooterText - Copyright (c) 2011 Petteri Aimonen <jpa at nanopb.mail.kapsi.fi> - -This software is provided 'as-is', without any express or -implied warranty. In no event will the authors be held liable -for any damages arising from the use of this software. - -Permission is granted to anyone to use this software for any -purpose, including commercial applications, and to alter it and -redistribute it freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you - must not claim that you wrote the original software. If you use - this software in a product, an acknowledgment in the product - documentation would be appreciated but is not required. - -2. Altered source versions must be plainly marked as such, and - must not be misrepresented as being the original software. - -3. This notice may not be removed or altered from any source - distribution. - - License - zlib - Title - nanopb - Type - PSGroupSpecifier - FooterText Generated by CocoaPods - https://cocoapods.org diff --git a/iosApp/Pods/Target Support Files/Pods-iosApp/Pods-iosApp.debug.xcconfig b/iosApp/Pods/Target Support Files/Pods-iosApp/Pods-iosApp.debug.xcconfig index 070d04b92..60daa9aab 100644 --- a/iosApp/Pods/Target Support Files/Pods-iosApp/Pods-iosApp.debug.xcconfig +++ b/iosApp/Pods/Target Support Files/Pods-iosApp/Pods-iosApp.debug.xcconfig @@ -1,12 +1,8 @@ -ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO -FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/BoringSSL-GRPC" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseAppCheckInterop" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseAuth" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreInternal" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseFirestore" "${PODS_CONFIGURATION_BUILD_DIR}/GTMSessionFetcher" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities" "${PODS_CONFIGURATION_BUILD_DIR}/PromisesObjC" "${PODS_CONFIGURATION_BUILD_DIR}/RecaptchaInterop" "${PODS_CONFIGURATION_BUILD_DIR}/abseil" "${PODS_CONFIGURATION_BUILD_DIR}/gRPC-C++" "${PODS_CONFIGURATION_BUILD_DIR}/gRPC-Core" "${PODS_CONFIGURATION_BUILD_DIR}/leveldb-library" "${PODS_CONFIGURATION_BUILD_DIR}/nanopb" "${PODS_ROOT}/../../shared/build/cocoapods/framework" -GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 $(inherited) PB_FIELD_32BIT=1 PB_NO_PACKED_STRUCTS=1 PB_ENABLE_MALLOC=1 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/BoringSSL-GRPC/openssl_grpc.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseAppCheckInterop/FirebaseAppCheckInterop.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseAuth/FirebaseAuth.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore/FirebaseCore.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreInternal/FirebaseCoreInternal.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseFirestore/FirebaseFirestore.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/GTMSessionFetcher/GTMSessionFetcher.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities/GoogleUtilities.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/PromisesObjC/FBLPromises.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/RecaptchaInterop/RecaptchaInterop.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/abseil/absl.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/gRPC-C++/grpcpp.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/gRPC-Core/grpc.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/leveldb-library/leveldb.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/nanopb/nanopb.framework/Headers" -LD_RUNPATH_SEARCH_PATHS = $(inherited) /usr/lib/swift '@executable_path/Frameworks' '@loader_path/Frameworks' -LIBRARY_SEARCH_PATHS = $(inherited) "${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" /usr/lib/swift -OTHER_LDFLAGS = $(inherited) -ObjC -l"c++" -l"z" -framework "FBLPromises" -framework "FirebaseAppCheckInterop" -framework "FirebaseAuth" -framework "FirebaseCore" -framework "FirebaseCoreInternal" -framework "FirebaseFirestore" -framework "Foundation" -framework "GTMSessionFetcher" -framework "GoogleUtilities" -framework "RecaptchaInterop" -framework "SafariServices" -framework "Security" -framework "SystemConfiguration" -framework "UIKit" -framework "absl" -framework "grpc" -framework "grpcpp" -framework "leveldb" -framework "nanopb" -framework "openssl_grpc" -framework "shared" -OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS +FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/../../shared/build/cocoapods/framework" +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' +OTHER_LDFLAGS = $(inherited) -ObjC -l"c++" -framework "shared" PODS_BUILD_DIR = ${BUILD_DIR} PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) PODS_PODFILE_DIR_PATH = ${SRCROOT}/. diff --git a/iosApp/Pods/Target Support Files/Pods-iosApp/Pods-iosApp.release.xcconfig b/iosApp/Pods/Target Support Files/Pods-iosApp/Pods-iosApp.release.xcconfig index 070d04b92..60daa9aab 100644 --- a/iosApp/Pods/Target Support Files/Pods-iosApp/Pods-iosApp.release.xcconfig +++ b/iosApp/Pods/Target Support Files/Pods-iosApp/Pods-iosApp.release.xcconfig @@ -1,12 +1,8 @@ -ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO -FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/BoringSSL-GRPC" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseAppCheckInterop" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseAuth" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreInternal" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseFirestore" "${PODS_CONFIGURATION_BUILD_DIR}/GTMSessionFetcher" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities" "${PODS_CONFIGURATION_BUILD_DIR}/PromisesObjC" "${PODS_CONFIGURATION_BUILD_DIR}/RecaptchaInterop" "${PODS_CONFIGURATION_BUILD_DIR}/abseil" "${PODS_CONFIGURATION_BUILD_DIR}/gRPC-C++" "${PODS_CONFIGURATION_BUILD_DIR}/gRPC-Core" "${PODS_CONFIGURATION_BUILD_DIR}/leveldb-library" "${PODS_CONFIGURATION_BUILD_DIR}/nanopb" "${PODS_ROOT}/../../shared/build/cocoapods/framework" -GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 $(inherited) PB_FIELD_32BIT=1 PB_NO_PACKED_STRUCTS=1 PB_ENABLE_MALLOC=1 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/BoringSSL-GRPC/openssl_grpc.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseAppCheckInterop/FirebaseAppCheckInterop.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseAuth/FirebaseAuth.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore/FirebaseCore.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreInternal/FirebaseCoreInternal.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseFirestore/FirebaseFirestore.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/GTMSessionFetcher/GTMSessionFetcher.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities/GoogleUtilities.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/PromisesObjC/FBLPromises.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/RecaptchaInterop/RecaptchaInterop.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/abseil/absl.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/gRPC-C++/grpcpp.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/gRPC-Core/grpc.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/leveldb-library/leveldb.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/nanopb/nanopb.framework/Headers" -LD_RUNPATH_SEARCH_PATHS = $(inherited) /usr/lib/swift '@executable_path/Frameworks' '@loader_path/Frameworks' -LIBRARY_SEARCH_PATHS = $(inherited) "${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" /usr/lib/swift -OTHER_LDFLAGS = $(inherited) -ObjC -l"c++" -l"z" -framework "FBLPromises" -framework "FirebaseAppCheckInterop" -framework "FirebaseAuth" -framework "FirebaseCore" -framework "FirebaseCoreInternal" -framework "FirebaseFirestore" -framework "Foundation" -framework "GTMSessionFetcher" -framework "GoogleUtilities" -framework "RecaptchaInterop" -framework "SafariServices" -framework "Security" -framework "SystemConfiguration" -framework "UIKit" -framework "absl" -framework "grpc" -framework "grpcpp" -framework "leveldb" -framework "nanopb" -framework "openssl_grpc" -framework "shared" -OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS +FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/../../shared/build/cocoapods/framework" +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' +OTHER_LDFLAGS = $(inherited) -ObjC -l"c++" -framework "shared" PODS_BUILD_DIR = ${BUILD_DIR} PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) PODS_PODFILE_DIR_PATH = ${SRCROOT}/. diff --git a/iosApp/iosApp.xcodeproj/project.pbxproj b/iosApp/iosApp.xcodeproj/project.pbxproj index 58a8ed8fb..a24f8f720 100644 --- a/iosApp/iosApp.xcodeproj/project.pbxproj +++ b/iosApp/iosApp.xcodeproj/project.pbxproj @@ -120,7 +120,6 @@ 7555FF78242A565900829871 /* Frameworks */, 7555FF79242A565900829871 /* Resources */, 7555FFB4242A642300829871 /* Embed Frameworks */, - 2E8F276B2A3F9995A4998A8D /* [CP] Embed Pods Frameworks */, ); buildRules = ( ); @@ -199,23 +198,6 @@ shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n"; showEnvVarsInLog = 0; }; - 2E8F276B2A3F9995A4998A8D /* [CP] Embed Pods Frameworks */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputFileListPaths = ( - "${PODS_ROOT}/Target Support Files/Pods-iosApp/Pods-iosApp-frameworks-${CONFIGURATION}-input-files.xcfilelist", - ); - name = "[CP] Embed Pods Frameworks"; - outputFileListPaths = ( - "${PODS_ROOT}/Target Support Files/Pods-iosApp/Pods-iosApp-frameworks-${CONFIGURATION}-output-files.xcfilelist", - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-iosApp/Pods-iosApp-frameworks.sh\"\n"; - showEnvVarsInLog = 0; - }; 7555FFB5242A651A00829871 /* ShellScript */ = { isa = PBXShellScriptBuildPhase; buildActionMask = 2147483647; diff --git a/iosApp/iosApp/iOSApp.swift b/iosApp/iosApp/iOSApp.swift index 3f6d911b8..76486489f 100644 --- a/iosApp/iosApp/iOSApp.swift +++ b/iosApp/iosApp/iOSApp.swift @@ -1,5 +1,4 @@ import SwiftUI -import Firebase @main struct iOSApp: App { @@ -7,7 +6,6 @@ struct iOSApp: App { init() { // DiHelperKt.initKoin() DiHelperKt.doInitKoin() - FirebaseApp.configure() } var body: some Scene { diff --git a/settings.gradle.kts b/settings.gradle.kts index 400e227b2..6a3340292 100644 --- a/settings.gradle.kts +++ b/settings.gradle.kts @@ -30,7 +30,6 @@ include(":core-api") include(":core-md") include(":core-commonui") include(":core-notifications") -include(":core-crashreport") include(":domain-lemmy") include(":domain-lemmy:repository") include(":domain-lemmy:data") diff --git a/shared/build.gradle.kts b/shared/build.gradle.kts index d47e85a42..835e03f12 100644 --- a/shared/build.gradle.kts +++ b/shared/build.gradle.kts @@ -61,7 +61,6 @@ kotlin { implementation(projects.coreApi) implementation(projects.coreCommonui) implementation(projects.coreNotifications) - implementation(projects.coreCrashreport) implementation(projects.domainIdentity) api(projects.resources) diff --git a/shared/src/androidMain/kotlin/com/github/diegoberaldin/raccoonforlemmy/di/DiHelper.kt b/shared/src/androidMain/kotlin/com/github/diegoberaldin/raccoonforlemmy/di/DiHelper.kt index 909b41856..2dbe84b82 100644 --- a/shared/src/androidMain/kotlin/com/github/diegoberaldin/raccoonforlemmy/di/DiHelper.kt +++ b/shared/src/androidMain/kotlin/com/github/diegoberaldin/raccoonforlemmy/di/DiHelper.kt @@ -5,7 +5,6 @@ import com.github.diegoberaldin.racconforlemmy.core.utils.hapticFeedbackModule import com.github.diegoberaldin.racconforlemmy.core.utils.shareHelperModule import com.github.diegoberaldin.raccoonforlemmy.core.api.di.coreApiModule import com.github.diegoberaldin.raccoonforlemmy.core.appearance.di.coreAppearanceModule -import com.github.diegoberaldin.raccoonforlemmy.core.crashreport.di.crashReportModule import com.github.diegoberaldin.raccoonforlemmy.core.notifications.di.coreNotificationModule import com.github.diegoberaldin.raccoonforlemmy.core.preferences.di.corePreferencesModule import com.github.diegoberaldin.raccoonforlemmy.domain.identity.di.coreIdentityModule @@ -25,7 +24,6 @@ val sharedHelperModule = module { coreApiModule, coreIdentityModule, coreNotificationModule, - crashReportModule, hapticFeedbackModule, localizationModule, shareHelperModule, diff --git a/shared/src/iosMain/kotlin/com/github/diegoberaldin/raccoonforlemmy/di/DiHelper.kt b/shared/src/iosMain/kotlin/com/github/diegoberaldin/raccoonforlemmy/di/DiHelper.kt index 149bc3036..e031353aa 100644 --- a/shared/src/iosMain/kotlin/com/github/diegoberaldin/raccoonforlemmy/di/DiHelper.kt +++ b/shared/src/iosMain/kotlin/com/github/diegoberaldin/raccoonforlemmy/di/DiHelper.kt @@ -6,7 +6,6 @@ import com.github.diegoberaldin.racconforlemmy.core.utils.hapticFeedbackModule import com.github.diegoberaldin.racconforlemmy.core.utils.shareHelperModule import com.github.diegoberaldin.raccoonforlemmy.core.api.di.coreApiModule import com.github.diegoberaldin.raccoonforlemmy.core.appearance.di.coreAppearanceModule -import com.github.diegoberaldin.raccoonforlemmy.core.crashreport.di.crashReportModule import com.github.diegoberaldin.raccoonforlemmy.core.notifications.di.coreNotificationModule import com.github.diegoberaldin.raccoonforlemmy.core.preferences.di.corePreferencesModule import com.github.diegoberaldin.raccoonforlemmy.domain.identity.di.coreIdentityModule @@ -28,7 +27,6 @@ fun initKoin() { coreApiModule, coreIdentityModule, coreNotificationModule, - crashReportModule, hapticFeedbackModule, localizationModule, shareHelperModule,