diff --git a/.bcr/metadata.template.json b/.bcr/metadata.template.json index 4556bf91d5..6003d77144 100644 --- a/.bcr/metadata.template.json +++ b/.bcr/metadata.template.json @@ -10,6 +10,11 @@ "email": "me@patrickbalestra.com", "github": "BalestraPatrick", "name": "Patrick Balestra" + }, + { + "email": "heyluispadron@gmail.com", + "github": "luispadron", + "name": "Luis Padron" } ], "repository": [ diff --git a/MODULE.bazel b/MODULE.bazel index 8d805b81c3..f6ef89d7a7 100644 --- a/MODULE.bazel +++ b/MODULE.bazel @@ -11,6 +11,7 @@ bazel_dep(name = "bazel_skylib", version = "1.3.0") bazel_dep( name = "rules_swift", version = "1.6.0", + max_compatibility_level = 2, repo_name = "build_bazel_rules_swift", ) bazel_dep( @@ -73,7 +74,7 @@ single_version_override( # For Stardoc single_version_override( module_name = "bazel_skylib", - version = "1.5.0", + version = "1.6.0", ) apple_cc_configure = use_extension( diff --git a/README.md b/README.md index 6166d40949..9a5385df8e 100644 --- a/README.md +++ b/README.md @@ -53,6 +53,7 @@ the ruleset. ## Projects using rules_xcodeproj +- amo - BazelPods - Cash App - Envoy Mobile @@ -66,6 +67,7 @@ the ruleset. - [Slack](https://www.youtube.com/watch?v=wy3Q38VJ5uQ) - Snap - Spotify +- Square - SwiftLint - Ten Ten - Tinder diff --git a/distribution/release_notes_template.md b/distribution/release_notes_template.md new file mode 100644 index 0000000000..251fb5a937 --- /dev/null +++ b/distribution/release_notes_template.md @@ -0,0 +1,96 @@ +## What’s Changed + +### Since %LAST_TAG% + +* TBD + +**Below are the changes that were in %LAST_TAG%.** + +### ⚠️ Breaking changes ⚠️ + +* TBD + +### New + +* TBD + +### Adjusted + +* TBD + +### Fixed + +* TBD + +### Ruleset Development Changes + +* TBD + +### Full Changelog + +https://github.com/buildbuddy-io/rules_xcodeproj/compare/%LAST_MINOR_TAG%...%CURRENT_TAG% + +## Contributors + +* TBD + +## Bzlmod Snippet + +```starlark +bazel_dep(name = "rules_xcodeproj", version = "%CURRENT_TAG%") +``` + +`release.tar.gz`’s `integrity`: `%INTEGRITY%` + +## Workspace Snippet + +Please use the release asset (`release.tar.gz`) from your Bazel `WORKSPACE` instead of GitHub's source asset to reduce download size and improve reproducibility. + +```starlark +load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") + +http_archive( + name = "rules_xcodeproj", + integrity = "%INTEGRITY%", + url = "https://github.com/MobileNativeFoundation/rules_xcodeproj/releases/download/%CURRENT_TAG%/release.tar.gz", +) + +load( + "@rules_xcodeproj//xcodeproj:repositories.bzl", + "xcodeproj_rules_dependencies", +) + +xcodeproj_rules_dependencies() + +load("@bazel_features//:deps.bzl", "bazel_features_deps") + +bazel_features_deps() + +load( + "@build_bazel_rules_apple//apple:repositories.bzl", + "apple_rules_dependencies", +) + +apple_rules_dependencies() + +load( + "@build_bazel_rules_swift//swift:repositories.bzl", + "swift_rules_dependencies", +) + +swift_rules_dependencies() + +load( + "@build_bazel_rules_swift//swift:extras.bzl", + "swift_rules_extra_dependencies", +) + +swift_rules_extra_dependencies() + +load( + "@build_bazel_apple_support//lib:repositories.bzl", + "apple_support_dependencies", +) + +apple_support_dependencies() +``` diff --git a/docs/bazel.md b/docs/bazel.md index b57a932384..7c62a1bcb6 100755 --- a/docs/bazel.md +++ b/docs/bazel.md @@ -33,6 +33,7 @@ load("@rules_xcodeproj//xcodeproj:defs.bzl", "xcodeproj") - [`xcschemes.env_value`](#xcschemes.env_value) - [`xcschemes.pre_post_actions.build_script`](#xcschemes.pre_post_actions.build_script) - [`xcschemes.pre_post_actions.launch_script`](#xcschemes.pre_post_actions.launch_script) + - [`xcschemes.autogeneration_config`](#xcschemes.autogeneration_config) - [Custom Xcode schemes (Legacy generation mode)](#custom-xcode-schemes-legacy-generation-mode) - [`xcode_schemes.scheme`](#xcode_schemes.scheme) - [`xcode_schemes.build_action`](#xcode_schemes.build_action) diff --git a/examples/integration/CommandLine/CommandLineToolLib/BUILD b/examples/integration/CommandLine/CommandLineToolLib/BUILD index 850086be83..4ec66638bc 100644 --- a/examples/integration/CommandLine/CommandLineToolLib/BUILD +++ b/examples/integration/CommandLine/CommandLineToolLib/BUILD @@ -27,13 +27,13 @@ cc_library( name = "private_lib", srcs = ["private_lib.c"], hdrs = ["private_lib.h"], + aspect_hints = ["@build_bazel_rules_swift//swift:auto_module"], copts = [ # This isn't needed bty anything, it's to exercise an edge case in # `FilePath` detection. "-Ibazel-out", "-Iexternal", ], - tags = ["swift_module=_Lib"], ) swift_library( @@ -55,7 +55,7 @@ swift_library( visibility = ["//CommandLine/Tests:__subpackages__"], deps = [ ":lib_impl", - "//CommandLine/swift_c_module", + "//CommandLine/swift_interop_hint:c_lib", "@examples_command_line_external//:ExternalFramework", "@examples_command_line_external//:Library", ], diff --git a/examples/integration/CommandLine/CommandLineToolLib/lib.swift b/examples/integration/CommandLine/CommandLineToolLib/lib.swift index c9e8684164..53e5b224da 100644 --- a/examples/integration/CommandLine/CommandLineToolLib/lib.swift +++ b/examples/integration/CommandLine/CommandLineToolLib/lib.swift @@ -1,5 +1,5 @@ -@_implementationOnly import _Lib @_implementationOnly import _SwiftLib +@_implementationOnly import CommandLine_CommandLineToolLib_private_lib import ExternalFramework import Foundation import ImportableLibrary diff --git a/examples/integration/CommandLine/swift_c_module/BUILD b/examples/integration/CommandLine/swift_interop_hint/BUILD similarity index 54% rename from examples/integration/CommandLine/swift_c_module/BUILD rename to examples/integration/CommandLine/swift_interop_hint/BUILD index a40aaf7ec5..7f474452eb 100644 --- a/examples/integration/CommandLine/swift_c_module/BUILD +++ b/examples/integration/CommandLine/swift_interop_hint/BUILD @@ -1,4 +1,7 @@ -load("@build_bazel_rules_swift//swift:swift.bzl", "swift_c_module") +load( + "@build_bazel_rules_swift//swift:swift_interop_hint.bzl", + "swift_interop_hint", +) cc_library( name = "c_lib", @@ -8,14 +11,12 @@ cc_library( hdrs = [ "c_lib.h", ], + aspect_hints = [":c_lib_swift_interop"], + visibility = ["//CommandLine:__subpackages__"], ) -swift_c_module( - name = "swift_c_module", +swift_interop_hint( + name = "c_lib_swift_interop", module_map = "c_lib.modulemap", module_name = "SwiftCModule", - visibility = ["//CommandLine:__subpackages__"], - deps = [ - ":c_lib", - ], ) diff --git a/examples/integration/CommandLine/swift_c_module/c_lib.c b/examples/integration/CommandLine/swift_interop_hint/c_lib.c similarity index 100% rename from examples/integration/CommandLine/swift_c_module/c_lib.c rename to examples/integration/CommandLine/swift_interop_hint/c_lib.c diff --git a/examples/integration/CommandLine/swift_c_module/c_lib.h b/examples/integration/CommandLine/swift_interop_hint/c_lib.h similarity index 100% rename from examples/integration/CommandLine/swift_c_module/c_lib.h rename to examples/integration/CommandLine/swift_interop_hint/c_lib.h diff --git a/examples/integration/CommandLine/swift_c_module/c_lib.modulemap b/examples/integration/CommandLine/swift_interop_hint/c_lib.modulemap similarity index 100% rename from examples/integration/CommandLine/swift_c_module/c_lib.modulemap rename to examples/integration/CommandLine/swift_interop_hint/c_lib.modulemap diff --git a/examples/integration/GRPC/BUILD b/examples/integration/GRPC/BUILD index 330a230d16..bf49f690c2 100644 --- a/examples/integration/GRPC/BUILD +++ b/examples/integration/GRPC/BUILD @@ -1,10 +1,6 @@ load("@build_bazel_rules_apple//apple:macos.bzl", "macos_command_line_application") -load( - "@build_bazel_rules_swift//swift:swift.bzl", - "swift_grpc_library", - "swift_library", - "swift_proto_library", -) +load("@build_bazel_rules_swift//proto:proto.bzl", "swift_proto_library") +load("@build_bazel_rules_swift//swift:swift.bzl", "swift_library") proto_library( name = "echo_proto", @@ -12,31 +8,27 @@ proto_library( ) swift_proto_library( - name = "echo_proto_swift", - deps = [":echo_proto"], -) - -swift_grpc_library( name = "echo_client_services_swift", - srcs = [":echo_proto"], - flavor = "client", - deps = [":echo_proto_swift"], + compilers = [ + "@build_bazel_rules_swift//proto/compilers:swift_client_proto", + "@build_bazel_rules_swift//proto/compilers:swift_proto", + ], + protos = [":echo_proto"], ) -swift_grpc_library( +swift_proto_library( name = "echo_server_services_swift", - srcs = [":echo_proto"], - flavor = "server", - deps = [":echo_proto_swift"], + compilers = [ + "@build_bazel_rules_swift//proto/compilers:swift_proto", + "@build_bazel_rules_swift//proto/compilers:swift_server_proto", + ], + protos = [":echo_proto"], ) swift_library( name = "echo_server.library", srcs = ["server_main.swift"], - deps = [ - ":echo_proto_swift", - ":echo_server_services_swift", - ], + deps = [":echo_server_services_swift"], ) macos_command_line_application( diff --git a/examples/integration/GRPC/client_main.swift b/examples/integration/GRPC/client_main.swift index 9a565faddc..fa95aee707 100644 --- a/examples/integration/GRPC/client_main.swift +++ b/examples/integration/GRPC/client_main.swift @@ -17,7 +17,6 @@ import SwiftProtobuf import GRPC import NIOCore import NIOPosix -import GRPC_echo_proto import GRPC_echo_client_services_swift @main diff --git a/examples/integration/GRPC/server_main.swift b/examples/integration/GRPC/server_main.swift index d69dfce5f5..c98c47b5cc 100644 --- a/examples/integration/GRPC/server_main.swift +++ b/examples/integration/GRPC/server_main.swift @@ -16,7 +16,6 @@ import Dispatch import GRPC import NIOCore import NIOPosix -import GRPC_echo_proto import GRPC_echo_server_services_swift /// Concrete implementation of the `EchoService` service definition. diff --git a/examples/integration/MODULE.bazel b/examples/integration/MODULE.bazel index d8299ea4c8..ebb3fef268 100644 --- a/examples/integration/MODULE.bazel +++ b/examples/integration/MODULE.bazel @@ -10,12 +10,12 @@ bazel_dep( ) bazel_dep( name = "rules_apple", - version = "3.5.1", + version = "3.6.0", repo_name = "build_bazel_rules_apple", ) bazel_dep( name = "rules_swift", - version = "1.18.0", + version = "2.0.0", repo_name = "build_bazel_rules_swift", ) bazel_dep(name = "bazel_skylib", version = "1.5.0") diff --git a/examples/integration/Proto/BUILD b/examples/integration/Proto/BUILD index 94fb87dde4..47c5d56a2f 100644 --- a/examples/integration/Proto/BUILD +++ b/examples/integration/Proto/BUILD @@ -1,9 +1,6 @@ load("@build_bazel_rules_apple//apple:macos.bzl", "macos_command_line_application") -load( - "@build_bazel_rules_swift//swift:swift.bzl", - "swift_library", - "swift_proto_library", -) +load("@build_bazel_rules_swift//proto:proto.bzl", "swift_proto_library") +load("@build_bazel_rules_swift//swift:swift.bzl", "swift_library") proto_library( name = "person_proto", @@ -12,15 +9,14 @@ proto_library( swift_proto_library( name = "person_proto_swift", - deps = [":person_proto"], + module_name = "Proto_person_proto", + protos = [":person_proto"], ) swift_library( name = "tool.library", srcs = ["main.swift"], - deps = [ - ":person_proto_swift", - ], + deps = [":person_proto_swift"], ) macos_command_line_application( diff --git a/examples/integration/WORKSPACE b/examples/integration/WORKSPACE index 429a7424c4..5744e3a2ee 100644 --- a/examples/integration/WORKSPACE +++ b/examples/integration/WORKSPACE @@ -1,8 +1,16 @@ +load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") + local_repository( name = "rules_xcodeproj", path = "../..", ) +http_archive( + name = "build_bazel_rules_swift", + sha256 = "32eeb4ef33c708d9c9a4ee0fa8475322ef149dabc81884ddc3b50eb2efff7843", + url = "https://github.com/bazelbuild/rules_swift/releases/download/2.0.0/rules_swift.2.0.0.tar.gz", +) + load( "@rules_xcodeproj//xcodeproj:repositories.bzl", "xcodeproj_rules_dependencies", diff --git a/examples/integration/test/fixtures/bwb.xcodeproj/project.pbxproj b/examples/integration/test/fixtures/bwb.xcodeproj/project.pbxproj index 3ae333d0b7..cc3513714f 100644 --- a/examples/integration/test/fixtures/bwb.xcodeproj/project.pbxproj +++ b/examples/integration/test/fixtures/bwb.xcodeproj/project.pbxproj @@ -25,18 +25,22 @@ /* Begin PBXBuildFile section */ 0192CA9A85F5B6350BDB9801 /* Lib.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1BC6AE4FB83C98E57FFCC79B /* Lib.swift */; }; 0346657180754C18A506D038 /* AppClip.swift in Sources */ = {isa = PBXBuildFile; fileRef = 79B50B7CCD3AC7ECE084459F /* AppClip.swift */; }; - 07ED4FAC271EDB8E59AFF1B5 /* c_lib.c in Sources */ = {isa = PBXBuildFile; fileRef = 3AEDEEABC4913622A9147C75 /* c_lib.c */; }; 099990600DA37A1CEDDFAC42 /* UITests.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7DD5DC08825B46B051D74B0 /* UITests.swift */; }; 0AD6C294B129C8943456C601 /* private_lib.c in Sources */ = {isa = PBXBuildFile; fileRef = FDE262D83CA79BF809694381 /* private_lib.c */; }; 0D38F4C869767F1A3B4648CA /* tvOSApp.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9B56D9298492068E642846F0 /* tvOSApp.swift */; }; 0F10E1E66B5D243245850C73 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = F430FA1AB345C9D772DC1948 /* main.m */; }; 119EF42BFF65423BB13B457E /* Lib.swift in Sources */ = {isa = PBXBuildFile; fileRef = 32DF223A62EA1C1BF28282E4 /* Lib.swift */; }; + 14C638B0DB6BEA2B7951FF0E /* echo.grpc.swift in Sources */ = {isa = PBXBuildFile; fileRef = B931D379E0EFD559B35B8E9A /* echo.grpc.swift */; }; 16090771122E9CFE8204077A /* main.swift in Sources */ = {isa = PBXBuildFile; fileRef = BB6099E27BEC9EBE71CF9C44 /* main.swift */; }; 16264040746CABEE00E8FB5D /* Lib.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4783734919B0856930DA0356 /* Lib.swift */; }; + 16B93F5D76A14B8F770C3985 /* echo.pb.swift in Sources */ = {isa = PBXBuildFile; fileRef = 042EAB96DA763E9A1F7AD3BA /* echo.pb.swift */; }; 16C8B0DDC77672C5D32F2ADB /* client_main.swift in Sources */ = {isa = PBXBuildFile; fileRef = 807438DF70F38B5587CA5799 /* client_main.swift */; }; + 185A5DA00CDEFDCD68754340 /* c_lib.c in Sources */ = {isa = PBXBuildFile; fileRef = 69499F4F0302554471289142 /* c_lib.c */; }; 187BD99CD3A48F37F7B84459 /* Lib.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6C6EE1DE3180397105BD9AB8 /* Lib.swift */; }; 1AAB28E11CF97A3D132330C0 /* Lib.swift in Sources */ = {isa = PBXBuildFile; fileRef = D5BA1DF93D9A29808A8B7843 /* Lib.swift */; }; 22601CBB75917C10B904BE0C /* Lib.swift in Sources */ = {isa = PBXBuildFile; fileRef = DA94784E4E5A9A2D490D9B8C /* Lib.swift */; }; + 24CFE354B7E2058E8F0E5110 /* Person.pb.swift in Sources */ = {isa = PBXBuildFile; fileRef = E9F7AFA9AF275CD0BE87B112 /* Person.pb.swift */; }; + 2908E74CB908D0ADA0A19A04 /* echo.grpc.swift in Sources */ = {isa = PBXBuildFile; fileRef = 31DA05FD726F38E72910F6A9 /* echo.grpc.swift */; }; 29C65FCF6E86E56E691F709C /* TestingUtils.swift in Sources */ = {isa = PBXBuildFile; fileRef = EEFAE18BAC51AE832DAEFB84 /* TestingUtils.swift */; }; 2BD74950D211A4072C51A73B /* WatchOSAppExtensionTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = B175955D9351877CB9A87F1D /* WatchOSAppExtensionTests.swift */; }; 2D4CAA83F7115BFA298D144F /* Lib.swift in Sources */ = {isa = PBXBuildFile; fileRef = 001180D1D42E3BF78C11FFA7 /* Lib.swift */; }; @@ -44,6 +48,7 @@ 2FDF644045F0B48556D63A99 /* Answers.h in Headers */ = {isa = PBXBuildFile; fileRef = 9FB807E65788589E5F03DF37 /* Answers.h */; settings = {ATTRIBUTES = (Public, ); }; }; 3081128CDE59998764657230 /* UndesiredScheme.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5D11CA1EFACA836892405D87 /* UndesiredScheme.swift */; }; 31B42E3007585BD6AEC8A380 /* private_lib.c in Sources */ = {isa = PBXBuildFile; fileRef = FDE262D83CA79BF809694381 /* private_lib.c */; }; + 34687500A1161E011E782206 /* c_lib.c in Sources */ = {isa = PBXBuildFile; fileRef = 69499F4F0302554471289142 /* c_lib.c */; }; 360B96836FE8A752496FEEF0 /* UITestsLaunchTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3011BD0422D96A2C7321B982 /* UITestsLaunchTests.swift */; }; 37A264D4244A371BCF944571 /* UI.h in Headers */ = {isa = PBXBuildFile; fileRef = 7012DFA199E3E0FCA0E6EEBF /* UI.h */; settings = {ATTRIBUTES = (Public, ); }; }; 3A6B00540B8D62609935A1B3 /* Intents.swift in Sources */ = {isa = PBXBuildFile; fileRef = D5341A19872B8B19AA038184 /* Intents.swift */; }; @@ -56,19 +61,24 @@ 54CD08F33D9E8D0FEF192DC7 /* ContentView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 43483C0C029D669DC6D9079A /* ContentView.swift */; }; 5868F1D42CA1CCE7A5A59449 /* Lib.swift in Sources */ = {isa = PBXBuildFile; fileRef = 52A6C028E444B9DE1667DD52 /* Lib.swift */; }; 597B10A29992D4684098C31F /* private_lib.swift in Sources */ = {isa = PBXBuildFile; fileRef = 34051E31629F66435DD61AF0 /* private_lib.swift */; }; + 5AD68F1BD1317EAEC715DBEB /* echo.grpc.swift in Sources */ = {isa = PBXBuildFile; fileRef = 32EC55AFB1089E19FEB72AFB /* echo.grpc.swift */; }; 5BB12B0D2A9C652CC7E07F4B /* Lib.swift in Sources */ = {isa = PBXBuildFile; fileRef = E21754912667DF24C36148FF /* Lib.swift */; }; 5E60B63BE683E8071C4F0DDB /* main.c in Sources */ = {isa = PBXBuildFile; fileRef = B74F36B217CBAEC380D87116 /* main.c */; }; 5FB8DE696A4FA2F82D0A6109 /* Resources.swift in Sources */ = {isa = PBXBuildFile; fileRef = 930A52F1C2814B98802A80A4 /* Resources.swift */; }; + 6872CCAE01F2AE83AAE9136A /* echo.pb.swift in Sources */ = {isa = PBXBuildFile; fileRef = A9615ECBD49214C4C3921D8E /* echo.pb.swift */; }; 694A685A37347B20E09E1E9A /* lib.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5363C149251A898407013539 /* lib.swift */; }; 6971A19C39B3A02C2BAA2393 /* UnwantedScheme.swift in Sources */ = {isa = PBXBuildFile; fileRef = E8919C51A5446537BFF377EB /* UnwantedScheme.swift */; }; 6A7413D8D6BE154EDEB5CF58 /* ContentView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 43483C0C029D669DC6D9079A /* ContentView.swift */; }; 6B33336E02CD6CE84C9F9868 /* Lib.swift in Sources */ = {isa = PBXBuildFile; fileRef = 03B94FBC5421C72DAB7F5AC9 /* Lib.swift */; }; 6B46EEF360502117ED89FFB2 /* Intents.swift in Sources */ = {isa = PBXBuildFile; fileRef = 950DBA0AB67AB1405278ED3D /* Intents.swift */; }; + 72D8F74711C833F81E9507EA /* c_lib.c in Sources */ = {isa = PBXBuildFile; fileRef = 69499F4F0302554471289142 /* c_lib.c */; }; 760ABF9512C3850DE96C7C85 /* BasicTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4FCEA6FBBD853B4BDA57B3E8 /* BasicTests.swift */; }; 798751511348F37448E1B040 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = F430FA1AB345C9D772DC1948 /* main.m */; }; 7B6708BF1E70C0A3A0F46689 /* UITestsLaunchTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 880946C1160FA32CCC519C3A /* UITestsLaunchTests.swift */; }; + 7B6B66D68D5E68D1D53CDEA1 /* echo.pb.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1E9428897C78361B2E99F617 /* echo.pb.swift */; }; 7D7FE1C33688DAF1E43D91AC /* lib.m in Sources */ = {isa = PBXBuildFile; fileRef = C7D6E9EA886ACE2FD42D136F /* lib.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; 7F38D771E40988D33DE3D0FB /* Lib.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6250B8730C0A9DE6B810A647 /* Lib.swift */; }; + 835632EF9C156819BBDE4EC2 /* echo.grpc.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3C07E52B07D70121DAEA45C6 /* echo.grpc.swift */; }; 83F3FC7CC1B3DAC64048DBDF /* ContentView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 43483C0C029D669DC6D9079A /* ContentView.swift */; }; 8AC643781C3D076B39DAF1CD /* Intents.swift in Sources */ = {isa = PBXBuildFile; fileRef = D011EF6C9AAEBA32F3476773 /* Intents.swift */; }; 8B62EA8A1B5A321633B25351 /* private_lib.swift in Sources */ = {isa = PBXBuildFile; fileRef = 34051E31629F66435DD61AF0 /* private_lib.swift */; }; @@ -85,8 +95,6 @@ 958F79A07C9B9C1DF58A32A7 /* Lib.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4BCE680EBA917F77D903C5C0 /* Lib.swift */; }; 972384D709D7AEC178D78608 /* Foo.m in Sources */ = {isa = PBXBuildFile; fileRef = 10FD9C062371287B427F5031 /* Foo.m */; }; 9AF7F24C0EE2C64201361073 /* _CompileStub_.m in Sources */ = {isa = PBXBuildFile; fileRef = E84DBAC32A7C151ED97289BA /* _CompileStub_.m */; }; - 9BE67DD7D6F1660FE925C2C8 /* c_lib.c in Sources */ = {isa = PBXBuildFile; fileRef = 3AEDEEABC4913622A9147C75 /* c_lib.c */; }; - 9CD61643F56424D4F4C2E4AD /* c_lib.c in Sources */ = {isa = PBXBuildFile; fileRef = 3AEDEEABC4913622A9147C75 /* c_lib.c */; }; 9F7F69679259E801761A5541 /* _CompileStub_.m in Sources */ = {isa = PBXBuildFile; fileRef = E84DBAC32A7C151ED97289BA /* _CompileStub_.m */; }; 9F952405EBCAE1EF1B0FCC3C /* lib.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5363C149251A898407013539 /* lib.swift */; }; A10F27A20EC6F140B14CD2DB /* RealAnswer.h in Headers */ = {isa = PBXBuildFile; fileRef = BEEA406D7D2D485AEDBB4F40 /* RealAnswer.h */; }; @@ -96,6 +104,7 @@ AA14ADB9AB55FC901FA19C7B /* WatchOSAppUITestsLaunchTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4BBEFC3129595A4FBE25EC1D /* WatchOSAppUITestsLaunchTests.swift */; }; AAC2A3728B87AA1C1033E2EB /* BasicTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4FCEA6FBBD853B4BDA57B3E8 /* BasicTests.swift */; }; AC68EAC0B2AD0CB7F70B9942 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = F430FA1AB345C9D772DC1948 /* main.m */; }; + AF75DA7CDF22A9CB6C708FA3 /* echo.pb.swift in Sources */ = {isa = PBXBuildFile; fileRef = A9713154E5DF5A99B6A3867C /* echo.pb.swift */; }; B2BBC17FF84C00D5DE654466 /* UnitTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 57A195462C22D04EEE52ADA1 /* UnitTests.swift */; }; B44B7CC233D2D58587B61E95 /* lib.c in Sources */ = {isa = PBXBuildFile; fileRef = 1A67F1DA7F1DF5DF89155CC8 /* lib.c */; }; B57BEBDCCED2712EC6550D85 /* UITests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4881EEC5A32BE56448E19924 /* UITests.swift */; }; @@ -126,6 +135,7 @@ F18E2A47BE4C47BA7F64F09C /* _CompileStub_.m in Sources */ = {isa = PBXBuildFile; fileRef = E84DBAC32A7C151ED97289BA /* _CompileStub_.m */; }; F2681457AB648610AD700FDB /* SwiftUnitTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 62A6DC8C0E0B91CA7A026111 /* SwiftUnitTests.swift */; }; F4C5274A7B5B2E256F71D552 /* private_lib.swift in Sources */ = {isa = PBXBuildFile; fileRef = 34051E31629F66435DD61AF0 /* private_lib.swift */; }; + F6BF1651E8841B85A15D140C /* Person.pb.swift in Sources */ = {isa = PBXBuildFile; fileRef = 96E026E8D442AD20EE4D58C9 /* Person.pb.swift */; }; F724B387DD13AC266E4CEB2E /* TestingUtils.swift in Sources */ = {isa = PBXBuildFile; fileRef = DE84A63C0FDE6C7CDF7F1DFF /* TestingUtils.swift */; }; FCB86A47A76203D74D810C51 /* Lib.swift in Sources */ = {isa = PBXBuildFile; fileRef = 753611881B3193D15DAF3F33 /* Lib.swift */; }; /* End PBXBuildFile section */ @@ -159,6 +169,13 @@ remoteGlobalIDString = 7E7D155EBCA520F35DEA3571; remoteInfo = BazelDependencies; }; + 16FF8EFB7626EB446C615771 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 0805833D09730531AD081697 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 7E7D155EBCA520F35DEA3571; + remoteInfo = BazelDependencies; + }; 1AD51B418C8BE1F5FA15FEDC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 0805833D09730531AD081697 /* Project object */; @@ -481,6 +498,13 @@ remoteGlobalIDString = 7E7D155EBCA520F35DEA3571; remoteInfo = BazelDependencies; }; + A40E66A0E634958A8564586B /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 0805833D09730531AD081697 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 7E7D155EBCA520F35DEA3571; + remoteInfo = BazelDependencies; + }; A649ADF25A384947B0A5D62A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 0805833D09730531AD081697 /* Project object */; @@ -579,6 +603,13 @@ remoteGlobalIDString = 7E7D155EBCA520F35DEA3571; remoteInfo = BazelDependencies; }; + D3CE7840CE14A94748E2EA9E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 0805833D09730531AD081697 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 7E7D155EBCA520F35DEA3571; + remoteInfo = BazelDependencies; + }; DA3D8D1E0394587D9F6140FE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 0805833D09730531AD081697 /* Project object */; @@ -709,38 +740,36 @@ /* Begin PBXFileReference section */ 001180D1D42E3BF78C11FFA7 /* Lib.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Lib.swift; sourceTree = ""; }; - 003F6229F63B344925AB7CC7 /* iOSApp.120.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = iOSApp.120.link.params; sourceTree = ""; }; 00B82F58F6A287A7CF75B06B /* AppClip.library.rules_xcodeproj.swift.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = AppClip.library.rules_xcodeproj.swift.compile.params; sourceTree = ""; }; 00F1BCDDB69255CFDAAE691C /* FXPageControl.rules_xcodeproj.c.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = FXPageControl.rules_xcodeproj.c.compile.params; sourceTree = ""; }; - 014DB46CD9D68156DC64A1A3 /* watchOS.192.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = watchOS.192.link.params; sourceTree = ""; }; 01506E1C822A25B4F703986A /* BUILD */ = {isa = PBXFileReference; explicitFileType = text.script.python; path = BUILD; sourceTree = ""; }; 0156075391A8046358CF5FEE /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; 01806D3CA226DD6241362D85 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; + 01AE31C744AC333C8E7ADB43 /* macOSAppUITests.145.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = macOSAppUITests.145.link.params; sourceTree = ""; }; + 01DFF0795F5379AF3A389A3D /* iOS.91.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = iOS.91.link.params; sourceTree = ""; }; 020AF219F3B55D5F1AD74A59 /* echo_server */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = echo_server; sourceTree = BUILT_PRODUCTS_DIR; }; - 02A4079A550BE2060E2BD30A /* echo.proto */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.protobuf; path = echo.proto; sourceTree = ""; }; + 02A01684B90A681A1887172A /* iOSAppSwiftUnitTests.103.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = iOSAppSwiftUnitTests.103.link.params; sourceTree = ""; }; 02DE116B74CE8E784FC15575 /* macOSAppUITests.library.rules_xcodeproj.swift.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = macOSAppUITests.library.rules_xcodeproj.swift.compile.params; sourceTree = ""; }; 038320F9F7CE6BEEA7E160F5 /* watchOSAppExtensionUnitTests.library.rules_xcodeproj.swift.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = watchOSAppExtensionUnitTests.library.rules_xcodeproj.swift.compile.params; sourceTree = ""; }; 038AAB842527AD4A302BE531 /* tvOSApp.library.rules_xcodeproj.swift.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = tvOSApp.library.rules_xcodeproj.swift.compile.params; sourceTree = ""; }; 03B94FBC5421C72DAB7F5AC9 /* Lib.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Lib.swift; sourceTree = ""; }; 041524B64CC4C2FD35CE9116 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; 0422C5584D1CA51268B71FD2 /* UndesiredScheme_Swift.rules_xcodeproj.swift.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = UndesiredScheme_Swift.rules_xcodeproj.swift.compile.params; sourceTree = ""; }; + 042EAB96DA763E9A1F7AD3BA /* echo.pb.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = echo.pb.swift; sourceTree = ""; }; 0431293E1F8BF2633CEC85C1 /* BUILD */ = {isa = PBXFileReference; explicitFileType = text.script.python; path = BUILD; sourceTree = ""; }; 046C881F75864316A858C2BC /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; 048E29FCE46EE15A4750C155 /* tvOSAppUnitTests.library.rules_xcodeproj.swift.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = tvOSAppUnitTests.library.rules_xcodeproj.swift.compile.params; sourceTree = ""; }; + 0580B013B51855485DF0FD0D /* FrameworkCoreUtilsObjC.82.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = FrameworkCoreUtilsObjC.82.link.params; sourceTree = ""; }; 05D0811137067EF8D6D87B85 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; 061CBC41689100AE676E6AEF /* WidgetExtension.library.rules_xcodeproj.swift.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = WidgetExtension.library.rules_xcodeproj.swift.compile.params; sourceTree = ""; }; 06437B6418C28F8A59D225CB /* Lib.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Lib.swift; sourceTree = ""; }; 06483C6ED81946150E50116C /* tvOS.23.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = tvOS.23.link.params; sourceTree = ""; }; 06E753F67E122657CA2C081A /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; - 0756B0004604F752C6590AB7 /* echo_server.51.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = echo_server.51.link.params; sourceTree = ""; }; 084939F2F69438CEC964DDE8 /* Utils.rules_xcodeproj.c.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = Utils.rules_xcodeproj.c.compile.params; sourceTree = ""; }; 08781E5C77EF5BAC278B80A1 /* UniversalCommandLineTool.170.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = UniversalCommandLineTool.170.link.params; sourceTree = ""; }; 0982B680A74E8BD8A971CC76 /* watchOSAppExtension.appex */ = {isa = PBXFileReference; explicitFileType = "wrapper.app-extension"; includeInIndex = 0; path = watchOSAppExtension.appex; sourceTree = BUILT_PRODUCTS_DIR; }; 0985135CD454A10EA72778D3 /* FrenchLocalizableResourcesOutput */ = {isa = PBXFileReference; lastKnownFileType = file; path = FrenchLocalizableResourcesOutput; sourceTree = ""; }; 099E286126EFC4010CCB7C9E /* merge.sh */ = {isa = PBXFileReference; lastKnownFileType = text.script.sh; path = merge.sh; sourceTree = ""; }; - 09B3C1E1A91A8030637227A7 /* iOS.88.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = iOS.88.link.params; sourceTree = ""; }; - 0A4E0F21AD561B6766EB604E /* LibFramework.watchOS.183.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = LibFramework.watchOS.183.link.params; sourceTree = ""; }; - 0A65520BBB21CB0D145281D0 /* tool.105.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = tool.105.link.params; sourceTree = ""; }; 0A6BE0195B0DA16D76C4FE56 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; 0AC4510A7DA151F18C63D5E5 /* Info.withbundleid.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.withbundleid.plist; sourceTree = ""; }; 0AD42CE0917ADB3E3845FD65 /* BUILD */ = {isa = PBXFileReference; explicitFileType = text.script.python; path = BUILD; sourceTree = ""; }; @@ -759,7 +788,6 @@ 0D64CAAD1BD4C5184A2E6176 /* libcc_external_lib_impl.a */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.dylib"; includeInIndex = 0; name = libcc_external_lib_impl.a; path = "bazel-out/CONFIGURATION-STABLE-2/bin/external/examples_cc_external~/libcc_external_lib_impl.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 0DB0E74428F7475E0565E82F /* Entitlements.withbundleid.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Entitlements.withbundleid.plist; sourceTree = ""; }; 0DC7E83C227435C87BA3E123 /* watchOSAppExtension.library.rules_xcodeproj.swift.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = watchOSAppExtension.library.rules_xcodeproj.swift.compile.params; sourceTree = ""; }; - 0DE3C75C88AFEB7EE7E53939 /* BUILD */ = {isa = PBXFileReference; explicitFileType = text.script.python; path = BUILD; sourceTree = ""; }; 0E1B34DB03119E2880F01891 /* Greeting.swift.stencil */ = {isa = PBXFileReference; lastKnownFileType = file; path = Greeting.swift.stencil; sourceTree = ""; }; 0E41532AE259072CD6425BE3 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; 0EBD8F245B059F4F6F6FB96F /* BUILD */ = {isa = PBXFileReference; explicitFileType = text.script.python; path = BUILD; sourceTree = ""; }; @@ -772,27 +800,27 @@ 0FE3F9FB629D547AA0E42114 /* UIFramework.watchOS.16.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = UIFramework.watchOS.16.link.params; sourceTree = ""; }; 101B954D2D18EA120A195989 /* lib_impl.rules_xcodeproj.c.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = lib_impl.rules_xcodeproj.c.compile.params; sourceTree = ""; }; 104ED9339D694DDA622B25DB /* MixedAnswer_objc_modulemap-module.modulemap */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.module-map"; path = "MixedAnswer_objc_modulemap-module.modulemap"; sourceTree = ""; }; - 10CDE8F1FA50FE32EE1D2D83 /* tvOSAppUITests.143.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = tvOSAppUITests.143.link.params; sourceTree = ""; }; 10FD9C062371287B427F5031 /* Foo.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = Foo.m; sourceTree = ""; }; 11133BC465FEAA49104B03FC /* MixedAnswer.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MixedAnswer.h; sourceTree = ""; }; 11428B24C139C5E9873A145A /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; 118F57721060672BAD6379CE /* iMessageAppExtension.library.rules_xcodeproj.swift.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = iMessageAppExtension.library.rules_xcodeproj.swift.compile.params; sourceTree = ""; }; 11FE2DE2CA5B7BD170BBCE92 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; 1206B4AD8B5B4005E681312A /* iOSApp.library.rules_xcodeproj.swift.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = iOSApp.library.rules_xcodeproj.swift.compile.params; sourceTree = ""; }; + 12601311D6470B9CF3C4F110 /* tvOS.93.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = tvOS.93.link.params; sourceTree = ""; }; 126F2298A2765CB7A2B29335 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; 12839FE0CD4C3662A07E7AC1 /* MixedAnswer_swift_modulemap-module.modulemap */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.module-map"; path = "MixedAnswer_swift_modulemap-module.modulemap"; sourceTree = ""; }; 12B2179B6021F5F75229954F /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; }; 133CD34793306BC2366A5BE5 /* TestingUtils-Swift.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "TestingUtils-Swift.h"; sourceTree = ""; }; 13B29FB638C93BBC3B8E05C1 /* CryptoSwift.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = CryptoSwift.framework; sourceTree = ""; }; 1448BF917645F508F801937B /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; - 145DD9FFE7326DD0057A6728 /* iOSAppObjCUnitTests.133.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = iOSAppObjCUnitTests.133.link.params; sourceTree = ""; }; 145EAD34E090ECF98C7ADF39 /* MessagesViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MessagesViewController.swift; sourceTree = ""; }; 148A986349BB88D9D9953B53 /* BUILD */ = {isa = PBXFileReference; explicitFileType = text.script.python; path = BUILD; sourceTree = ""; }; + 14A72D7948A9048D0CB53DDC /* c_lib.rules_xcodeproj.c.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = c_lib.rules_xcodeproj.c.compile.params; sourceTree = ""; }; 1587C46A1E40FB50A27CE23D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; 15A6973CB98E7CA53A64305B /* Launchd.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Launchd.plist; sourceTree = ""; }; 15BF6FBD9CFE69586F307A4B /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; 161C94720E4F153437C31F87 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; - 1769FC8660C855984B603598 /* UIFramework.watchOS.117.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = UIFramework.watchOS.117.link.params; sourceTree = ""; }; + 171D783B2681A7FA0E0F900D /* libperson_proto_swift.a */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.dylib"; includeInIndex = 0; name = libperson_proto_swift.a; path = "bazel-out/CONFIGURATION-STABLE-26/bin/Proto/libperson_proto_swift.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 18415E66E93C0748CA465D7C /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; 186168D46E70981E3765F9B6 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; }; 18D5174364CF195EF9A3EF14 /* iOSAppSwiftUnitTestSuite.48.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = iOSAppSwiftUnitTestSuite.48.link.params; sourceTree = ""; }; @@ -801,97 +829,109 @@ 19D827D0FBA00A99E8413DA9 /* iOSAppUITestSuite.library.rules_xcodeproj.swift.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = iOSAppUITestSuite.library.rules_xcodeproj.swift.compile.params; sourceTree = ""; }; 1A2A384BE76802B63A2D5562 /* macOSApp.library.rules_xcodeproj.swift.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = macOSApp.library.rules_xcodeproj.swift.compile.params; sourceTree = ""; }; 1A67F1DA7F1DF5DF89155CC8 /* lib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = lib.c; sourceTree = ""; }; - 1AC54D33C5CC6413FF1A19F0 /* CommandLineToolTests.172.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = CommandLineToolTests.172.link.params; sourceTree = ""; }; 1BC6AE4FB83C98E57FFCC79B /* Lib.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Lib.swift; sourceTree = ""; }; 1BF04E699B9FCFDB010B7F50 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; 1BF2030E8B34BC5C90108D6F /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; 1C185B8AB07D4422FA56D6A5 /* liblib_swift.a */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.dylib"; includeInIndex = 0; name = liblib_swift.a; path = "bazel-out/CONFIGURATION-STABLE-30/bin/CommandLine/CommandLineToolLib/liblib_swift.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 1CA6C8B45E613F690948ED10 /* AppClip.174.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = AppClip.174.link.params; sourceTree = ""; }; - 1CBB5F089D270189983E2E42 /* c_lib.rules_xcodeproj.c.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = c_lib.rules_xcodeproj.c.compile.params; sourceTree = ""; }; + 1C362F9CE48FD341AE0F90F4 /* UIFramework.tvOS.200.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = UIFramework.tvOS.200.link.params; sourceTree = ""; }; 1D1177806FD1B277EEDB91BB /* LibFramework.tvOS.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = LibFramework.tvOS.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 1D3E4060B4DF95BC213F3639 /* Model.xcdatamodel */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcdatamodel; path = Model.xcdatamodel; sourceTree = ""; }; 1E84E717BC47B0961159FC23 /* tvOSAppUnitTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = tvOSAppUnitTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; + 1E9428897C78361B2E99F617 /* echo.pb.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = echo.pb.swift; sourceTree = ""; }; + 1ECC7C78860BF7C244846FDF /* watchOSAppExtensionUnitTests.149.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = watchOSAppExtensionUnitTests.149.link.params; sourceTree = ""; }; 211F5D02396A5F7F21B372C0 /* CommandLineToolTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = CommandLineToolTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; 2151F6C6235F6156AD4FF936 /* FXPageControl.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FXPageControl.h; sourceTree = ""; }; 215E227A05737685F3F4DB52 /* echo_server.library.rules_xcodeproj.swift.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = echo_server.library.rules_xcodeproj.swift.compile.params; sourceTree = ""; }; 222CF04F551342682A2DEA9D /* LibFramework.watchOS.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = LibFramework.watchOS.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 2389FC2E3790FF01911CDBCC /* iOSAppObjCUnitTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = iOSAppObjCUnitTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; - 246221126DAC28EE34F192FE /* c_lib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = c_lib.h; sourceTree = ""; }; + 23D5E17642A0DF52D863A4AA /* FrameworkCoreUtilsObjC.186.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = FrameworkCoreUtilsObjC.186.link.params; sourceTree = ""; }; 24755399772DD0870E438577 /* UI.rules_xcodeproj.swift.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = UI.rules_xcodeproj.swift.compile.params; sourceTree = ""; }; 24DFA8D89A965A7C2A56DD13 /* Library.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Library.h; sourceTree = ""; }; 24FE17F74B9D49419A6CC231 /* FrenchLocalizableResourcesOutput */ = {isa = PBXFileReference; lastKnownFileType = file; path = FrenchLocalizableResourcesOutput; sourceTree = ""; }; 251509D3375CDB577E5103D4 /* MixedAnswerLib_Swift.rules_xcodeproj.swift.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = MixedAnswerLib_Swift.rules_xcodeproj.swift.compile.params; sourceTree = ""; }; 2522B6D410760A316C93D186 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; 2584698BDD314083DF9CAC33 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; + 25D5C10E9E98CC02290AE2CB /* UIFramework.watchOS.86.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = UIFramework.watchOS.86.link.params; sourceTree = ""; }; 25F3BAEB4375EB717A347CDE /* Info.extension.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.extension.plist; sourceTree = ""; }; + 264179E81C7347B689CE1D14 /* iOS.195.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = iOS.195.link.params; sourceTree = ""; }; + 2659F220073993E3A0DBAAB1 /* CommandLineTool.164.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = CommandLineTool.164.link.params; sourceTree = ""; }; 26E5833F2697196812B9D228 /* watchOSApp.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = watchOSApp.app; sourceTree = BUILT_PRODUCTS_DIR; }; 2713477858FF9C33BBDBB444 /* bucket */ = {isa = PBXFileReference; lastKnownFileType = folder; path = bucket; sourceTree = ""; }; 2766B46B4832D8548DA73D85 /* TestingUtils-Swift.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "TestingUtils-Swift.h"; sourceTree = ""; }; 27BE4549A6B56DC907667ECD /* iOS.21.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = iOS.21.link.params; sourceTree = ""; }; - 27D61A9176DFDDFE2A132B4F /* UIFramework.tvOS.93.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = UIFramework.tvOS.93.link.params; sourceTree = ""; }; + 285ED1B40DE8929A9F0E4C30 /* LibFramework.watchOS.119.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = LibFramework.watchOS.119.link.params; sourceTree = ""; }; + 28E89A20CE963B4C904B38D3 /* watchOSAppUITests.148.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = watchOSAppUITests.148.link.params; sourceTree = ""; }; 28ED92F6D2E02B9FCD9A49A4 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; }; 2972D14E69C63A887582031C /* Lib.rules_xcodeproj.swift.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = Lib.rules_xcodeproj.swift.compile.params; sourceTree = ""; }; - 2AB484DC0F81BB4D2580BA84 /* FrameworkCoreUtilsObjC.180.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = FrameworkCoreUtilsObjC.180.link.params; sourceTree = ""; }; + 2A8A753ED1F615E6A705ADEE /* iOSAppSwiftUnitTests.207.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = iOSAppSwiftUnitTests.207.link.params; sourceTree = ""; }; 2ADC98409CF038E9F823958C /* BasicTests.rules_xcodeproj.swift.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = BasicTests.rules_xcodeproj.swift.compile.params; sourceTree = ""; }; 2B34197EDCA1D0D56668AEBB /* lib_swift.rules_xcodeproj.swift.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = lib_swift.rules_xcodeproj.swift.compile.params; sourceTree = ""; }; 2B40423341C5FE090E518F48 /* WidgetExtension.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = WidgetExtension.swift; sourceTree = ""; }; 2BC24CA4686BDF49A6D0B95E /* MixedAnswer_objc_modulemap-module.modulemap */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.module-map"; path = "MixedAnswer_objc_modulemap-module.modulemap"; sourceTree = ""; }; 2BF0BED51C22CB78CC271636 /* BUILD */ = {isa = PBXFileReference; explicitFileType = text.script.python; path = BUILD; sourceTree = ""; }; - 2CA787C37F28A477C90877AA /* tvOS.124.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = tvOS.124.link.params; sourceTree = ""; }; 2CBE368B8D2D265045474F52 /* Lib.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Lib.swift; sourceTree = ""; }; 2CC5589BF5C0557A407A9B41 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; 2D02E29502C6E389F8D4F3F6 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; 2D4CF05D03DCB1DC1B3C8CCC /* WidgetExtension.library.rules_xcodeproj.swift.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = WidgetExtension.library.rules_xcodeproj.swift.compile.params; sourceTree = ""; }; 2E59E0E063A4BB53872C8164 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; + 2EAB816E4DE0A5B5788F24B8 /* LibFramework.watchOS.189.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = LibFramework.watchOS.189.link.params; sourceTree = ""; }; + 2F4A69CDBEE6AE5225481906 /* c_lib.rules_xcodeproj.c.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = c_lib.rules_xcodeproj.c.compile.params; sourceTree = ""; }; 2FEAE05EEEA6790E5E797A79 /* libcc_lib_defines.a */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.dylib"; includeInIndex = 0; name = libcc_lib_defines.a; path = "bazel-out/CONFIGURATION-STABLE-2/bin/cc/lib/libcc_lib_defines.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 3011BD0422D96A2C7321B982 /* UITestsLaunchTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UITestsLaunchTests.swift; sourceTree = ""; }; 302115BBFAE734799231FA6B /* iOSApp.library.rules_xcodeproj.swift.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = iOSApp.library.rules_xcodeproj.swift.compile.params; sourceTree = ""; }; 303426424923CCBA9A8D3C07 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; 30A4069AA00E60D0D648E673 /* WatchOSAppUITests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = WatchOSAppUITests.swift; sourceTree = ""; }; 317370CB83DB554AB70E1706 /* BUILD */ = {isa = PBXFileReference; explicitFileType = text.script.python; path = BUILD; sourceTree = ""; }; + 31DA05FD726F38E72910F6A9 /* echo.grpc.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = echo.grpc.swift; sourceTree = ""; }; + 32796DB7BC520FD0B4B4849C /* UIFramework.iOS.83.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = UIFramework.iOS.83.link.params; sourceTree = ""; }; 32B0B80FD8FFE2322F720B6B /* FrenchLocalizableResourcesOutput */ = {isa = PBXFileReference; lastKnownFileType = file; path = FrenchLocalizableResourcesOutput; sourceTree = ""; }; 32B285A8DAC003C1B585184F /* watchOS.24.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = watchOS.24.link.params; sourceTree = ""; }; 32CE9C3BDA22AED5CE0F1152 /* GoogleMapsCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = GoogleMapsCore.framework; sourceTree = ""; }; 32DF223A62EA1C1BF28282E4 /* Lib.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Lib.swift; sourceTree = ""; }; + 32EC55AFB1089E19FEB72AFB /* echo.grpc.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = echo.grpc.swift; sourceTree = ""; }; 331C91FDCA4754A04846BCDA /* Preview Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = "Preview Assets.xcassets"; sourceTree = ""; }; - 332459BC670D666EA7012EB5 /* LibFramework.tvOS.92.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = LibFramework.tvOS.92.link.params; sourceTree = ""; }; + 337C1BA10E0563EE5689136F /* proto.50.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = proto.50.link.params; sourceTree = ""; }; 3385EBCD57CB6153D0612D97 /* GoogleMapsBase.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = GoogleMapsBase.framework; sourceTree = ""; }; 34051E31629F66435DD61AF0 /* private_lib.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = private_lib.swift; sourceTree = ""; }; 3423B69557C97C31CE6F81A4 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; 34CE931554BF346D6C82C695 /* Lib.rules_xcodeproj.swift.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = Lib.rules_xcodeproj.swift.compile.params; sourceTree = ""; }; 35488B6E0CB5A0E7317A967A /* TestingUtils.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TestingUtils.swift; sourceTree = ""; }; - 35658B20C1F8CF5B8BB9B46C /* macOSLib.framework.140.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = macOSLib.framework.140.link.params; sourceTree = ""; }; 35B036A96D22EE656C343480 /* disable_signing_resource_rules.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = disable_signing_resource_rules.plist; sourceTree = ""; }; + 35F12B6A8758B044E0E23A9F /* tvOSAppUnitTests.147.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = tvOSAppUnitTests.147.link.params; sourceTree = ""; }; 35FE6310804691B5601C0DCB /* cc_lib_impl.rules_xcodeproj.c.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = cc_lib_impl.rules_xcodeproj.c.compile.params; sourceTree = ""; }; - 365E76C53D496E3593C09771 /* watchOSAppExtension.84.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = watchOSAppExtension.84.link.params; sourceTree = ""; }; 3662D7E8F6E44EC1719CD796 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; 372CED1B913B8EB33623D305 /* lib2.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = lib2.h; sourceTree = ""; }; + 373D257A078F97EE00374227 /* tvOS.127.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = tvOS.127.link.params; sourceTree = ""; }; 3744E81974720C3D4AA9563D /* MixedAnswer.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MixedAnswer.swift; sourceTree = ""; }; 37CD84D37ED73BB9358614B4 /* tvOSAppUnitTests.43.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = tvOSAppUnitTests.43.link.params; sourceTree = ""; }; + 37E5D2FE0DAAE7E72CD63FC4 /* macOSApp.144.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = macOSApp.144.link.params; sourceTree = ""; }; 383E9D40C6ACFFB6E72D94E5 /* lib_impl.rules_xcodeproj.c.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = lib_impl.rules_xcodeproj.c.compile.params; sourceTree = ""; }; 38DB8D05EDFA822570E3AFE3 /* private_lib.rules_xcodeproj.c.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = private_lib.rules_xcodeproj.c.compile.params; sourceTree = ""; }; 3907A7CF59D5CA65615E6A5F /* lib_swift.rules_xcodeproj.swift.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = lib_swift.rules_xcodeproj.swift.compile.params; sourceTree = ""; }; 39785CF9A69A2957DBBCFB2C /* Utils.rules_xcodeproj.c.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = Utils.rules_xcodeproj.c.compile.params; sourceTree = ""; }; - 397D78E1E7C5EDB643370FA4 /* iOSAppObjCUnitTestSuite.148.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = iOSAppObjCUnitTestSuite.148.link.params; sourceTree = ""; }; 399487B73A64195D5E0CEAF8 /* ios app.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = "ios app.entitlements"; sourceTree = ""; }; 3A38C47C8B29F9BD7512A4A5 /* tool.rules_xcodeproj.c.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = tool.rules_xcodeproj.c.compile.params; sourceTree = ""; }; - 3A68CA4AFA324BB17DCE6F5E /* iOS.189.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = iOS.189.link.params; sourceTree = ""; }; 3A8DC9BFDCE881D9614F6F90 /* Answers.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; path = Answers.mm; sourceTree = ""; }; - 3AEDEEABC4913622A9147C75 /* c_lib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = c_lib.c; sourceTree = ""; }; 3B09D4514172B6263408BB65 /* MixedAnswer-Swift.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "MixedAnswer-Swift.h"; sourceTree = ""; }; 3B71B06909607B23A9DE8528 /* Info.withbundleid.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.withbundleid.plist; sourceTree = ""; }; + 3C036AA3E0C0D66F6AF8E609 /* iOSAppObjCUnitTestSuite.151.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = iOSAppObjCUnitTestSuite.151.link.params; sourceTree = ""; }; + 3C07E52B07D70121DAEA45C6 /* echo.grpc.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = echo.grpc.swift; sourceTree = ""; }; 3C60888EEB37F244AA0DC150 /* BUILD */ = {isa = PBXFileReference; explicitFileType = text.script.python; path = BUILD; sourceTree = ""; }; 3CAC86F6E25471ACEF54B822 /* watchOSAppExtension.library.rules_xcodeproj.swift.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = watchOSAppExtension.library.rules_xcodeproj.swift.compile.params; sourceTree = ""; }; 3CE003A6467566497A8F57F1 /* BUILD */ = {isa = PBXFileReference; explicitFileType = text.script.python; path = BUILD; sourceTree = ""; }; 3D38966BA243539B711B59B9 /* iOSAppObjCUnitTestSuite.library.rules_xcodeproj.c.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = iOSAppObjCUnitTestSuite.library.rules_xcodeproj.c.compile.params; sourceTree = ""; }; - 3D634DBB8FDF9A0D23506731 /* echo_client.50.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = echo_client.50.link.params; sourceTree = ""; }; - 3E011741E188C9E79FD4D5D1 /* AppClip.107.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = AppClip.107.link.params; sourceTree = ""; }; + 3EA8C7DB11D39C17E196E121 /* watchOS.94.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = watchOS.94.link.params; sourceTree = ""; }; + 3EBDC84E7473E71FFEBEF7CA /* iOSAppUITests.102.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = iOSAppUITests.102.link.params; sourceTree = ""; }; 3ED2E5F148FDD4DC5D61C5EB /* es */ = {isa = PBXFileReference; lastKnownFileType = text.json; name = es; path = es.lproj/unprocessed.json; sourceTree = ""; }; 3EF9DC5757D529D7F0F269F3 /* Entitlements.withbundleid.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Entitlements.withbundleid.plist; sourceTree = ""; }; 3F109099C5AD21471BD857A5 /* private.inc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = private.inc; sourceTree = ""; }; 3F5B357741138EE0583D8A5D /* Lib.rules_xcodeproj.swift.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = Lib.rules_xcodeproj.swift.compile.params; sourceTree = ""; }; 40A9F920449B4FCA89C8BF1C /* BUILD */ = {isa = PBXFileReference; explicitFileType = text.script.python; path = BUILD; sourceTree = ""; }; + 40F6DF3CD044CBBCC8C771DA /* iOSApp.89.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = iOSApp.89.link.params; sourceTree = ""; }; + 4130CE501F1162393EA68BC7 /* CommandLineTool.60.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = CommandLineTool.60.link.params; sourceTree = ""; }; + 41B63BB76B3C4ED91B5533C7 /* CommandLineToolTests.74.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = CommandLineToolTests.74.link.params; sourceTree = ""; }; 41E01F58F18891868FCCC4F9 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; + 424CD5635D557F381C19E32A /* tool.108.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = tool.108.link.params; sourceTree = ""; }; 42DD8EE47C66A0DA4F56D0D4 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; 43097A02EC03AF3E9A17D90A /* private_lib.rules_xcodeproj.c.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = private_lib.rules_xcodeproj.c.compile.params; sourceTree = ""; }; 43483C0C029D669DC6D9079A /* ContentView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ContentView.swift; sourceTree = ""; }; @@ -901,8 +941,8 @@ 45C6889BDC9850C9BA631C0C /* Lib.rules_xcodeproj.swift.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = Lib.rules_xcodeproj.swift.compile.params; sourceTree = ""; }; 462AF4564A57BCE54F8968B6 /* BUILD */ = {isa = PBXFileReference; explicitFileType = text.script.python; path = BUILD; sourceTree = ""; }; 462E92F1BC6827B4F79F40DA /* tvOSAppUITests.42.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = tvOSAppUITests.42.link.params; sourceTree = ""; }; + 463C915B80879BA00FF3DFDC /* iOSAppObjCUnitTests.136.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = iOSAppObjCUnitTests.136.link.params; sourceTree = ""; }; 4655A73D0A568A4E3DF5A2CA /* cc_lib_impl.rules_xcodeproj.c.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = cc_lib_impl.rules_xcodeproj.c.compile.params; sourceTree = ""; }; - 465A9565FDF37BE59CDBA0AC /* iMessageAppExtension.136.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = iMessageAppExtension.136.link.params; sourceTree = ""; }; 467E14C7042D9D2FE0F9D737 /* cc_lib_defines.rules_xcodeproj.c.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = cc_lib_defines.rules_xcodeproj.c.compile.params; sourceTree = ""; }; 46C15E9FDB620A840D63A3A5 /* liblib_swift.a */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.dylib"; includeInIndex = 0; name = liblib_swift.a; path = "bazel-out/CONFIGURATION-STABLE-31/bin/CommandLine/CommandLineToolLib/liblib_swift.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 46CC8F71FA34315D2B22D818 /* UnwantedScheme_Swift.rules_xcodeproj.swift.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = UnwantedScheme_Swift.rules_xcodeproj.swift.compile.params; sourceTree = ""; }; @@ -916,25 +956,23 @@ 4942A330FF2FA587642E6328 /* Preview Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = "Preview Assets.xcassets"; sourceTree = ""; }; 49B87A833795719D198FB69C /* tool.rules_xcodeproj.c.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = tool.rules_xcodeproj.c.compile.params; sourceTree = ""; }; 49E0C9248A7986A5C3C69C5D /* bucket */ = {isa = PBXFileReference; lastKnownFileType = folder; path = bucket; sourceTree = ""; }; - 4A100C74C27E2C87068105B1 /* iOSAppUITests.134.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = iOSAppUITests.134.link.params; sourceTree = ""; }; 4AB6F0E6261D874D740C3F3C /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; 4AEA2B4615BD02E36F2E788F /* iOSAppUITests.library.rules_xcodeproj.swift.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = iOSAppUITests.library.rules_xcodeproj.swift.compile.params; sourceTree = ""; }; 4B70D367D06AC0B84E75CD89 /* CryptoSwift.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = CryptoSwift.framework; sourceTree = ""; }; 4BBEFC3129595A4FBE25EC1D /* WatchOSAppUITestsLaunchTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = WatchOSAppUITestsLaunchTests.swift; sourceTree = ""; }; 4BCE680EBA917F77D903C5C0 /* Lib.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Lib.swift; sourceTree = ""; }; 4C07CCBC830B6B7E7B6C9C33 /* tvOSAppUnitTests.library.rules_xcodeproj.swift.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = tvOSAppUnitTests.library.rules_xcodeproj.swift.compile.params; sourceTree = ""; }; - 4C25CCE14C71D06AAF80C136 /* c_lib.rules_xcodeproj.c.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = c_lib.rules_xcodeproj.c.compile.params; sourceTree = ""; }; 4C376C754057E3DCC517490D /* tvOSApp.library.rules_xcodeproj.swift.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = tvOSApp.library.rules_xcodeproj.swift.compile.params; sourceTree = ""; }; 4CC521D7942237DAE794164C /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/MainInterface.storyboard; sourceTree = ""; }; - 4E964ED5567DFBB62C73C07C /* WidgetExtension.179.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = WidgetExtension.179.link.params; sourceTree = ""; }; + 4D7B8EDB90990CC7C8C08992 /* c_lib.rules_xcodeproj.c.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = c_lib.rules_xcodeproj.c.compile.params; sourceTree = ""; }; 4ECA5AD096BA2BCFBF3797A5 /* WidgetExtension.library.rules_xcodeproj.swift.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = WidgetExtension.library.rules_xcodeproj.swift.compile.params; sourceTree = ""; }; + 4F600468FA4D277AD3CE8DDE /* LibFramework.watchOS.85.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = LibFramework.watchOS.85.link.params; sourceTree = ""; }; 4F656B1E0D2A36C763DB0770 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; 4F6E71D3468529C04CBB815F /* FXPageControl.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = FXPageControl.m; sourceTree = ""; }; 4F7C912D1DD290E3F7846EAF /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; 4FB1B2C2BC96D28B518886A1 /* MixedAnswer.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MixedAnswer.h; sourceTree = ""; }; 4FCEA6FBBD853B4BDA57B3E8 /* BasicTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BasicTests.swift; sourceTree = ""; }; 50183366F0DFD33608F28F6E /* tool.library.rules_xcodeproj.swift.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = tool.library.rules_xcodeproj.swift.compile.params; sourceTree = ""; }; - 5052EEF83A2267762BC48367 /* iOSAppUITests.99.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = iOSAppUITests.99.link.params; sourceTree = ""; }; 50F52AD597E24876059F69FA /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; 515F2794037A279D56FD8A6E /* ExampleNestedResources.bundle */ = {isa = PBXFileReference; lastKnownFileType = wrapper.cfbundle; path = ExampleNestedResources.bundle; sourceTree = ""; }; 52A6C028E444B9DE1667DD52 /* Lib.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Lib.swift; sourceTree = ""; }; @@ -943,35 +981,32 @@ 53D5FD58D31A3C25D52D1647 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; 545A03DA9B0B6559CA1ADDBE /* watchOSAppUITests.library.rules_xcodeproj.swift.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = watchOSAppUITests.library.rules_xcodeproj.swift.compile.params; sourceTree = ""; }; 54A149C6731CD2A95ABBB959 /* lib_impl.rules_xcodeproj.c.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = lib_impl.rules_xcodeproj.c.compile.params; sourceTree = ""; }; + 550218D58AFE5B00CDEAE43C /* c_lib.rules_xcodeproj.c.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = c_lib.rules_xcodeproj.c.compile.params; sourceTree = ""; }; 55269A3438335A58660FF7EC /* liblib_swift.a */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.dylib"; includeInIndex = 0; name = liblib_swift.a; path = "bazel-out/CONFIGURATION-STABLE-32/bin/CommandLine/CommandLineToolLib/liblib_swift.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + 5553504FC08B3C2A703A48C3 /* UniversalCommandLineTool.66.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = UniversalCommandLineTool.66.link.params; sourceTree = ""; }; 560F2E73B436DE7B6FB50E6F /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; 5739BE5F00EE345C62D45A1E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; - 579EF68CC093C175048FB900 /* libc_lib.a */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.dylib"; includeInIndex = 0; name = libc_lib.a; path = "bazel-out/CONFIGURATION-STABLE-30/bin/CommandLine/swift_c_module/libc_lib.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + 579EF68CC093C175048FB900 /* libc_lib.a */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.dylib"; includeInIndex = 0; name = libc_lib.a; path = "bazel-out/CONFIGURATION-STABLE-30/bin/CommandLine/swift_interop_hint/libc_lib.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 57A195462C22D04EEE52ADA1 /* UnitTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UnitTests.swift; sourceTree = ""; }; 580DBA740396A7EE1950EA08 /* Lib.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Lib.swift; sourceTree = ""; }; + 5814551B308D21C55A0EC4DC /* UIFramework.tvOS.96.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = UIFramework.tvOS.96.link.params; sourceTree = ""; }; 587C9418ACCD0284D6C8243F /* Info.withbundleid.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.withbundleid.plist; sourceTree = ""; }; - 58A65A2237B8811406C30AE4 /* UIFramework.iOS.114.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = UIFramework.iOS.114.link.params; sourceTree = ""; }; 590C1F8173F7F592F432ACF0 /* SwiftGreetingsTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SwiftGreetingsTests.swift; sourceTree = ""; }; 592EEFBB1B45D1BF7E0E5BEB /* tool */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = tool; sourceTree = BUILT_PRODUCTS_DIR; }; 59350B2E750DD154008C1229 /* lib3.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = lib3.h; sourceTree = ""; }; 5943CDBFA4A38FDFF9113B4F /* MixedAnswer.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MixedAnswer.m; sourceTree = ""; }; - 5A3ED0E17BE9AE13D016A3D1 /* iOSAppUITestSuite.147.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = iOSAppUITestSuite.147.link.params; sourceTree = ""; }; 5A7175D14BDE7B844E2F5115 /* CryptoSwift.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = CryptoSwift.framework; sourceTree = ""; }; 5AD1576A6AD3437513F682AA /* BUILD */ = {isa = PBXFileReference; explicitFileType = text.script.python; path = BUILD; sourceTree = ""; }; 5B46938DDD4964E9DDE6D734 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; 5B74F39A84428B8DEB27AD00 /* libLib.a */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.dylib"; includeInIndex = 0; name = libLib.a; path = "bazel-out/CONFIGURATION-STABLE-14/bin/Lib/libLib.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 5BBB55A4862D5DE5B1943341 /* UIFramework.watchOS.184.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = UIFramework.watchOS.184.link.params; sourceTree = ""; }; - 5BD15A127C11140CC56DF414 /* UIFramework.tvOS.127.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = UIFramework.tvOS.127.link.params; sourceTree = ""; }; 5C06C804D0D054A6CC98AFE5 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; 5C7322DCC11EBAF3D6162872 /* UI.rules_xcodeproj.swift.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = UI.rules_xcodeproj.swift.compile.params; sourceTree = ""; }; 5D11CA1EFACA836892405D87 /* UndesiredScheme.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UndesiredScheme.swift; sourceTree = ""; }; 5D1ABF79BD2B800CF411882A /* proto */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = proto; sourceTree = BUILT_PRODUCTS_DIR; }; 5D317E7DD27B06F4824606AA /* private_swift_lib.rules_xcodeproj.swift.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = private_swift_lib.rules_xcodeproj.swift.compile.params; sourceTree = ""; }; - 5D388590A9A670A8A3F6C889 /* CommandLineTool.158.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = CommandLineTool.158.link.params; sourceTree = ""; }; - 5D763C86B3F318AF5D3DC74D /* watchOSAppExtension.185.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = watchOSAppExtension.185.link.params; sourceTree = ""; }; - 5D8EFCD7001ACF6858BEE400 /* c_lib.rules_xcodeproj.c.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = c_lib.rules_xcodeproj.c.compile.params; sourceTree = ""; }; + 5DD4EF5797BAE2A71274C476 /* UIFramework.watchOS.190.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = UIFramework.watchOS.190.link.params; sourceTree = ""; }; 5DE7AF00D3B4EA3E8ED7D9C8 /* BUILD */ = {isa = PBXFileReference; explicitFileType = text.script.python; path = BUILD; sourceTree = ""; }; - 5E0D33801A190555B2E66419 /* libc_lib.a */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.dylib"; includeInIndex = 0; name = libc_lib.a; path = "bazel-out/CONFIGURATION-STABLE-31/bin/CommandLine/swift_c_module/libc_lib.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + 5E0D33801A190555B2E66419 /* libc_lib.a */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.dylib"; includeInIndex = 0; name = libc_lib.a; path = "bazel-out/CONFIGURATION-STABLE-31/bin/CommandLine/swift_interop_hint/libc_lib.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 5E1C8DA469050FD522FD1B09 /* MixedAnswer_swift_modulemap-module.modulemap */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.module-map"; path = "MixedAnswer_swift_modulemap-module.modulemap"; sourceTree = ""; }; 5E41317687FE1F978B81C466 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; 5E55DA8F79F29EE0A6752C35 /* macOSApp.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = macOSApp.app; sourceTree = BUILT_PRODUCTS_DIR; }; @@ -980,17 +1015,19 @@ 5EF667DAC78BAD13D2247BE5 /* exported-symbols.lds */ = {isa = PBXFileReference; lastKnownFileType = file; path = "exported-symbols.lds"; sourceTree = ""; }; 5F5DF077B67F1DAECEA0420A /* CryptoSwift.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = CryptoSwift.framework; sourceTree = ""; }; 5F61AFA780596C635FC1AC55 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; - 5FAEE18C04588702E4F06FB3 /* BasicTests.70.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = BasicTests.70.link.params; sourceTree = ""; }; 5FB4454CDAA24989DF7ADDD2 /* MixedAnswer_swift_modulemap-module.modulemap */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.module-map"; path = "MixedAnswer_swift_modulemap-module.modulemap"; sourceTree = ""; }; 6069279C35E477AB115A0B58 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; + 60BD891A01D587BECDD7E0F1 /* LibFramework.tvOS.129.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = LibFramework.tvOS.129.link.params; sourceTree = ""; }; 60F680862A1243B2BBC49489 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; 61A2F6F1B86CF3FFA97AAE58 /* liblib_impl.a */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.dylib"; includeInIndex = 0; name = liblib_impl.a; path = "bazel-out/CONFIGURATION-STABLE-31/bin/CommandLine/CommandLineToolLib/liblib_impl.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 61AE43FD132024DB4F13DB52 /* private_lib.rules_xcodeproj.c.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = private_lib.rules_xcodeproj.c.compile.params; sourceTree = ""; }; + 61BDE712C9F6DD70B351C893 /* iOSAppSwiftUnitTestSuite.152.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = iOSAppSwiftUnitTestSuite.152.link.params; sourceTree = ""; }; 623D687C417A342B4625FC03 /* CoreUtilsObjC.rules_xcodeproj.cxx.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = CoreUtilsObjC.rules_xcodeproj.cxx.compile.params; sourceTree = ""; }; 62488D84699BE7CD22975A36 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; 6250B8730C0A9DE6B810A647 /* Lib.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Lib.swift; sourceTree = ""; }; 62A6DC8C0E0B91CA7A026111 /* SwiftUnitTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SwiftUnitTests.swift; sourceTree = ""; }; 633E459E8AF73BD134DCF6D3 /* LibSwift-Swift.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "LibSwift-Swift.h"; sourceTree = ""; }; + 6376161F5DAE4A0777891961 /* echo_client.156.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = echo_client.156.link.params; sourceTree = ""; }; 64C72716419290029B6988AD /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; 65771D060048DD2897980E72 /* TestingUtils.rules_xcodeproj.swift.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = TestingUtils.rules_xcodeproj.swift.compile.params; sourceTree = ""; }; 65B838553BA29F162F19DA25 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; @@ -1001,32 +1038,34 @@ 66E4E06396F34EA685DC743C /* echo_client */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = echo_client; sourceTree = BUILT_PRODUCTS_DIR; }; 66E86C9351785EF69B187B16 /* iOSApp.19.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = iOSApp.19.link.params; sourceTree = ""; }; 67496CA997EE1999978DD2D4 /* macOSApp.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = macOSApp.swift; sourceTree = ""; }; + 67522D146ECE3E65AC4EAC8F /* LibFramework.tvOS.199.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = LibFramework.tvOS.199.link.params; sourceTree = ""; }; 6814D646DC7C5BF62DD1E274 /* lib_impl.rules_xcodeproj.c.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = lib_impl.rules_xcodeproj.c.compile.params; sourceTree = ""; }; 68305E92564A8717EA4EBB1E /* libprivate_swift_lib.a */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.dylib"; includeInIndex = 0; name = libprivate_swift_lib.a; path = "bazel-out/CONFIGURATION-STABLE-30/bin/CommandLine/CommandLineToolLib/libprivate_swift_lib.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + 683BF08FB227AC4CC9082091 /* iOSAppObjCUnitTests.205.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = iOSAppObjCUnitTests.205.link.params; sourceTree = ""; }; 68EBC1269F9254E7F99E3A11 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; + 69152C21EABB50E9C024CCA0 /* macOSLib.framework.143.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = macOSLib.framework.143.link.params; sourceTree = ""; }; 69187F88EEB256106823FB51 /* FrenchLocalizableResourcesOutput */ = {isa = PBXFileReference; lastKnownFileType = file; path = FrenchLocalizableResourcesOutput; sourceTree = ""; }; + 69499F4F0302554471289142 /* c_lib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = c_lib.c; sourceTree = ""; }; + 69E43DDDC51D47B6231B2C59 /* watchOSAppExtension.121.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = watchOSAppExtension.121.link.params; sourceTree = ""; }; 6A3ED55D8255F0C5AAF05779 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; 6A43857EED99893587180F1C /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; 6BC7003FB816B915831E312C /* private_lib.rules_xcodeproj.c.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = private_lib.rules_xcodeproj.c.compile.params; sourceTree = ""; }; - 6C3CB5F68E378F676D5B77C1 /* UniversalCommandLineTool.69.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = UniversalCommandLineTool.69.link.params; sourceTree = ""; }; + 6C4E81961C8D6DCAD8559E09 /* c_lib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = c_lib.h; sourceTree = ""; }; 6C6EE1DE3180397105BD9AB8 /* Lib.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Lib.swift; sourceTree = ""; }; - 6CABB4F7094DCB9E049E1059 /* iOSAppObjCUnitTests.98.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = iOSAppObjCUnitTests.98.link.params; sourceTree = ""; }; + 6CED207A59579DA7A2D0274A /* watchOS.198.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = watchOS.198.link.params; sourceTree = ""; }; 6D3C5EDD868AB5BCCAC6892E /* AppClip.library.rules_xcodeproj.swift.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = AppClip.library.rules_xcodeproj.swift.compile.params; sourceTree = ""; }; 6D72CF102C1AEFFD0BC7D853 /* iOSAppObjCUnitTests.library.rules_xcodeproj.c.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = iOSAppObjCUnitTests.library.rules_xcodeproj.c.compile.params; sourceTree = ""; }; 6D7BFBA99CFB5FF29369414B /* BUILD */ = {isa = PBXFileReference; explicitFileType = text.script.python; path = BUILD; sourceTree = ""; }; 6D9C8C1A0B07E081B22A6110 /* tvOSApp.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = tvOSApp.app; sourceTree = BUILT_PRODUCTS_DIR; }; 6DD17D72779934FA6CBA2F5A /* iMessageAppExtension.library.rules_xcodeproj.swift.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = iMessageAppExtension.library.rules_xcodeproj.swift.compile.params; sourceTree = ""; }; - 6E2DD1D541F300ED838E95AF /* watchOS.91.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = watchOS.91.link.params; sourceTree = ""; }; 6E3570AEE428169902B03F41 /* private.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = private.h; sourceTree = ""; }; 6FB0A7BCEB667368FBE08914 /* CoreUtilsObjC.rules_xcodeproj.cxx.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = CoreUtilsObjC.rules_xcodeproj.cxx.compile.params; sourceTree = ""; }; 7012DFA199E3E0FCA0E6EEBF /* UI.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UI.h; sourceTree = ""; }; 711CC091A1FA1F012F56AE57 /* cc_external_lib_impl.rules_xcodeproj.c.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = cc_external_lib_impl.rules_xcodeproj.c.compile.params; sourceTree = ""; }; 715B3A4A989D1794B2962B0B /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; - 716BA5B4E8C676428E557F2A /* tvOSApp.128.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = tvOSApp.128.link.params; sourceTree = ""; }; 72280EDF81A2EB23AEFA51CA /* private_swift_lib.rules_xcodeproj.swift.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = private_swift_lib.rules_xcodeproj.swift.compile.params; sourceTree = ""; }; - 7247D5D36989035B346C97C6 /* iOSAppSwiftUnitTests.201.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = iOSAppSwiftUnitTests.201.link.params; sourceTree = ""; }; + 7272195479D305A4E61A9B48 /* iOSAppObjCUnitTests.101.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = iOSAppObjCUnitTests.101.link.params; sourceTree = ""; }; 72C8E34C8C773AAC00B616DC /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; - 7389D8A45D826AE66DD34BE3 /* watchOS.125.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = watchOS.125.link.params; sourceTree = ""; }; 73917B7C7306B4D7388ED79C /* BasicTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = BasicTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; 7399B6EB974250D5ABF31CB1 /* macOSAppUITests.library.rules_xcodeproj.swift.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = macOSAppUITests.library.rules_xcodeproj.swift.compile.params; sourceTree = ""; }; 73C77538FED7F0820E42211C /* Lib.rules_xcodeproj.swift.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = Lib.rules_xcodeproj.swift.compile.params; sourceTree = ""; }; @@ -1036,6 +1075,7 @@ 74CD1A2F3613AC9676AD63AA /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; 753611881B3193D15DAF3F33 /* Lib.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Lib.swift; sourceTree = ""; }; 7657568F3CAA4843BEF5C82D /* lib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = lib.c; sourceTree = ""; }; + 76928F80645FE9205EC0302A /* watchOS.128.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = watchOS.128.link.params; sourceTree = ""; }; 76A6058986733DDA4336DEE1 /* libUtils.a */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.dylib"; includeInIndex = 0; name = libUtils.a; path = "bazel-out/CONFIGURATION-STABLE-12/bin/iOSApp/Source/Utils/libUtils.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 77DECBC974CFAC1B530DE310 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; 77FFD1D12908C64361355182 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; @@ -1053,6 +1093,8 @@ 7B56D17749A5E31D7E39A07E /* tvOSAppUITests.library.rules_xcodeproj.swift.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = tvOSAppUITests.library.rules_xcodeproj.swift.compile.params; sourceTree = ""; }; 7BCCEF56742B7F970DDBFBD4 /* UITestsLaunchTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UITestsLaunchTests.swift; sourceTree = ""; }; 7BF5050556E742BCABC72CD2 /* Entitlements.withbundleid.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Entitlements.withbundleid.plist; sourceTree = ""; }; + 7BFCD4DBD51B65902B9DDEE9 /* tvOSApp.201.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = tvOSApp.201.link.params; sourceTree = ""; }; + 7C4B5D0AF1ABC3EB0D953152 /* c_lib.rules_xcodeproj.c.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = c_lib.rules_xcodeproj.c.compile.params; sourceTree = ""; }; 7C55A497912628B67E440D47 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; 7C83A75DD373AF9C6222A022 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; 7C979912622DDBD7BE365582 /* BasicTests.rules_xcodeproj.swift.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = BasicTests.rules_xcodeproj.swift.compile.params; sourceTree = ""; }; @@ -1063,15 +1105,11 @@ 7DDB0E60EC6469DA48A8787B /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; }; 7DEC6551D73D51A3823452E9 /* UnwantedScheme_Swift.rules_xcodeproj.swift.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = UnwantedScheme_Swift.rules_xcodeproj.swift.compile.params; sourceTree = ""; }; 7E9FD6851384B0AF0F9F86EE /* UI.rules_xcodeproj.swift.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = UI.rules_xcodeproj.swift.compile.params; sourceTree = ""; }; - 7EB736803C24D75508D4F86B /* CommandLineToolTests.71.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = CommandLineToolTests.71.link.params; sourceTree = ""; }; 7EBC1AE0B910E97EDFB37859 /* libcc_lib_impl.lo */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.dylib"; includeInIndex = 0; name = libcc_lib_impl.lo; path = "bazel-out/CONFIGURATION-STABLE-2/bin/cc/lib/impl/libcc_lib_impl.lo"; sourceTree = BUILT_PRODUCTS_DIR; }; 7EFD33DA1BC7E7196649D05D /* ObjCUnitTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ObjCUnitTests.m; sourceTree = ""; }; - 7F7B90BF0D5BB36A3FE6D4AC /* c_lib.rules_xcodeproj.c.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = c_lib.rules_xcodeproj.c.compile.params; sourceTree = ""; }; - 800A3FF7898B1B9CAE509855 /* tvOSApp.195.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = tvOSApp.195.link.params; sourceTree = ""; }; 80372DC71A698139A3F102A5 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; 807438DF70F38B5587CA5799 /* client_main.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = client_main.swift; sourceTree = ""; }; 80C4C31BA00D6A910A418BC6 /* main.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = main.c; sourceTree = ""; }; - 814E394B61720E18C9572B3C /* iOSAppSwiftUnitTestSuite.149.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = iOSAppSwiftUnitTestSuite.149.link.params; sourceTree = ""; }; 81ADEB4D40193C79091D1519 /* CommandLineTool */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = CommandLineTool; sourceTree = BUILT_PRODUCTS_DIR; }; 81CEB384343DA3EBC4532AA1 /* BUILD */ = {isa = PBXFileReference; explicitFileType = text.script.python; path = BUILD; sourceTree = ""; }; 82081A6BD08E21EB1E306B59 /* watchOSAppUITests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = watchOSAppUITests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; @@ -1083,6 +1121,7 @@ 8280474296090AE12DA4B43B /* TestingUtils.rules_xcodeproj.swift.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = TestingUtils.rules_xcodeproj.swift.compile.params; sourceTree = ""; }; 830FA6F748919E2DFE3CAD91 /* iOSAppSwiftUnitTestSuite.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = iOSAppSwiftUnitTestSuite.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; 83165F168A41AD59E59461A7 /* BUILD */ = {isa = PBXFileReference; explicitFileType = text.script.python; path = BUILD; sourceTree = ""; }; + 8332156D71A41357D4B731F7 /* AppClip.76.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = AppClip.76.link.params; sourceTree = ""; }; 83AFCF96795D66ECA00B0EF0 /* ownership.yaml */ = {isa = PBXFileReference; lastKnownFileType = text.yaml; path = ownership.yaml; sourceTree = ""; }; 83BE86FBA36D481EB3FFDAEA /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; 83CB1E3ED10A89BC70153DA6 /* nested */ = {isa = PBXFileReference; lastKnownFileType = folder; path = nested; sourceTree = ""; }; @@ -1091,20 +1130,20 @@ 845CA765AC6C879E9CF56CD2 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; 847B3D46C150D0CF60A9F5F8 /* ContentView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ContentView.swift; sourceTree = ""; }; 84D982C64D4FD100F6E0ADD2 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; + 84DA361A7DCE06E100B83EC5 /* FrameworkCoreUtilsObjC.116.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = FrameworkCoreUtilsObjC.116.link.params; sourceTree = ""; }; + 85152F8199BDE8C247CC7DD9 /* LibFramework.tvOS.95.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = LibFramework.tvOS.95.link.params; sourceTree = ""; }; + 85170D8AC81512872EFA85E8 /* BasicTests.177.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = BasicTests.177.link.params; sourceTree = ""; }; 85E974DF946451059E42A3C8 /* TestingUtils.rules_xcodeproj.swift.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = TestingUtils.rules_xcodeproj.swift.compile.params; sourceTree = ""; }; 85EA3835C75F91884EF53F01 /* verbose.cfg */ = {isa = PBXFileReference; lastKnownFileType = file; path = verbose.cfg; sourceTree = ""; }; - 85EC3C38F019CB68B8AA419D /* LibFramework.watchOS.82.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = LibFramework.watchOS.82.link.params; sourceTree = ""; }; 85FE6B2FC044696E6DF496F0 /* ExtensionAssets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = ExtensionAssets.xcassets; sourceTree = ""; }; - 866BE0EBE966F99672F90B2A /* LibFramework.watchOS.116.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = LibFramework.watchOS.116.link.params; sourceTree = ""; }; 869C0C887E86CAB594580443 /* ExampleFramework.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = ExampleFramework.framework; sourceTree = ""; }; 86C38228579043862DB702F4 /* Answer.swift.stencil */ = {isa = PBXFileReference; lastKnownFileType = file; path = Answer.swift.stencil; sourceTree = ""; }; 86C6372DCF5345E419D4C1FE /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; + 873E10D4CDD1ABBAEA9503AC /* tvOS.197.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = tvOS.197.link.params; sourceTree = ""; }; 87B06507B2938C2994CAC8D4 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; 87D7B82BFF6EB4E98980B780 /* MixedAnswer_swift_modulemap-module.modulemap */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.module-map"; path = "MixedAnswer_swift_modulemap-module.modulemap"; sourceTree = ""; }; 880946C1160FA32CCC519C3A /* UITestsLaunchTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UITestsLaunchTests.swift; sourceTree = ""; }; - 883DAC18AFDE84354E7CC0FA /* echo_server.152.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = echo_server.152.link.params; sourceTree = ""; }; 8911E1D386A8ABD992BE5B75 /* UI.rules_xcodeproj.swift.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = UI.rules_xcodeproj.swift.compile.params; sourceTree = ""; }; - 8A24312A920FE4268E254355 /* iOSAppObjCUnitTests.199.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = iOSAppObjCUnitTests.199.link.params; sourceTree = ""; }; 8A627459CC09D985B0F7F022 /* tool.library.rules_xcodeproj.c.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = tool.library.rules_xcodeproj.c.compile.params; sourceTree = ""; }; 8B7C5166377C460B896023F2 /* iOSAppSwiftUnitTests.library.rules_xcodeproj.swift.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = iOSAppSwiftUnitTests.library.rules_xcodeproj.swift.compile.params; sourceTree = ""; }; 8BA09DEA3E88D9A94FA4AE8C /* MixedAnswer.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MixedAnswer.h; sourceTree = ""; }; @@ -1115,11 +1154,11 @@ 8DB1BDAF1C736199956EB3A7 /* macOSAppUITests.41.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = macOSAppUITests.41.link.params; sourceTree = ""; }; 8DB953A91F62090EED88B929 /* MixedAnswerLib_Swift.rules_xcodeproj.swift.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = MixedAnswerLib_Swift.rules_xcodeproj.swift.compile.params; sourceTree = ""; }; 8DCB00543660FC27804E4CF8 /* cc_lib_impl.rules_xcodeproj.c.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = cc_lib_impl.rules_xcodeproj.c.compile.params; sourceTree = ""; }; + 8E15C793B568F6E14D547CF2 /* echo_server_services_swift.rules_xcodeproj.swift.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = echo_server_services_swift.rules_xcodeproj.swift.compile.params; sourceTree = ""; }; 8E73104F21719E1FB8ED8866 /* Lib.rules_xcodeproj.swift.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = Lib.rules_xcodeproj.swift.compile.params; sourceTree = ""; }; 8E8BDA4E064DAEBC22CEA8A4 /* iOSAppUITests.33.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = iOSAppUITests.33.link.params; sourceTree = ""; }; 8EB06FE8C45C39DF8FD1BA89 /* Model2.xcdatamodel */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcdatamodel; path = Model2.xcdatamodel; sourceTree = ""; }; - 8F3DEA718870C6125FB7D47C /* Bundle.129.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = Bundle.129.link.params; sourceTree = ""; }; - 8FBCD8A2B29D6C7712832793 /* echo_client.151.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = echo_client.151.link.params; sourceTree = ""; }; + 8FA2C781603CB07AB0B2AA26 /* UIFramework.iOS.187.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = UIFramework.iOS.187.link.params; sourceTree = ""; }; 90081A8A1EAF7A703FEE3D90 /* CoreUtils.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CoreUtils.pch; sourceTree = ""; }; 900E9D06CDF8D7F370E94858 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; 908761DE8B46E5DEC9D0430F /* watchOSAppExtensionUnitTests.45.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = watchOSAppExtensionUnitTests.45.link.params; sourceTree = ""; }; @@ -1131,6 +1170,7 @@ 920AE9E6999BCE3F4C662853 /* TestingUtils.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TestingUtils.swift; sourceTree = ""; }; 926FA435594EF1B920F378CE /* Intents.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Intents.swift; sourceTree = ""; }; 929911D971407693CA5BC837 /* iOSAppObjCUnitTests.library.rules_xcodeproj.c.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = iOSAppObjCUnitTests.library.rules_xcodeproj.c.compile.params; sourceTree = ""; }; + 92CA30BF88B66D25DF56FF14 /* echo_server.158.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = echo_server.158.link.params; sourceTree = ""; }; 92DC67CC5D659098E9FDFF13 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; 930A52F1C2814B98802A80A4 /* Resources.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Resources.swift; sourceTree = ""; }; 930D847F31B7CB44D6A14542 /* dir */ = {isa = PBXFileReference; lastKnownFileType = folder; path = dir; sourceTree = ""; }; @@ -1138,7 +1178,6 @@ 93D1D04313B716DB073ECDBA /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/Localizable.strings; sourceTree = ""; }; 94FDC3D0900FA4C74F2D8608 /* iOSAppSwiftUnitTests.37.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = iOSAppSwiftUnitTests.37.link.params; sourceTree = ""; }; 950DBA0AB67AB1405278ED3D /* Intents.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Intents.swift; sourceTree = ""; }; - 956B8FCBAC951535318D7DF3 /* iOS.122.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = iOS.122.link.params; sourceTree = ""; }; 9616910CE0750A17B476FD74 /* LibSwift-Swift.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "LibSwift-Swift.h"; sourceTree = ""; }; 963A2634E475B1D691E75BC5 /* TestingUtils-Swift.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "TestingUtils-Swift.h"; sourceTree = ""; }; 966429313639853B488C3F0F /* TestingUtils.rules_xcodeproj.swift.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = TestingUtils.rules_xcodeproj.swift.compile.params; sourceTree = ""; }; @@ -1146,24 +1185,24 @@ 966E54FC66ABF5BBECA91220 /* tool.library.rules_xcodeproj.c.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = tool.library.rules_xcodeproj.c.compile.params; sourceTree = ""; }; 96B73171D0A627018867D0B4 /* watchOSAppUITests.library.rules_xcodeproj.swift.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = watchOSAppUITests.library.rules_xcodeproj.swift.compile.params; sourceTree = ""; }; 96C7B164A172EBC01EB62A62 /* UI.rules_xcodeproj.swift.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = UI.rules_xcodeproj.swift.compile.params; sourceTree = ""; }; + 96E026E8D442AD20EE4D58C9 /* Person.pb.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Person.pb.swift; sourceTree = ""; }; 96E433D903880812811BA7D0 /* iOSAppUITestSuite.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = iOSAppUITestSuite.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; 971C9B4C8EA8A37D88CB2603 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; 974DBFD2390DF0F052EC4552 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; 9782627571641AA3C9C13413 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; - 97C747841C104DBB44DC3DF7 /* AppClip.73.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = AppClip.73.link.params; sourceTree = ""; }; 97DC554A57A7E90F4D17CEBE /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; 97EC99D31FABCCBE28429657 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.json; name = en; path = en.lproj/unprocessed.json; sourceTree = ""; }; 98259A8306C84CA1714B1C7B /* Info.withbundleid.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.withbundleid.plist; sourceTree = ""; }; 987FEEE3F6EAAD46236D0430 /* Lib.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Lib.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 98EB5ACDFFCC428B04758598 /* Lib.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Lib.swift; sourceTree = ""; }; 9966A745FD2E887B388AFEDF /* BUILD */ = {isa = PBXFileReference; explicitFileType = text.script.python; path = BUILD; sourceTree = ""; }; - 997695873D279B653151E31C /* iOSAppUITests.200.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = iOSAppUITests.200.link.params; sourceTree = ""; }; - 998A90B39FB08E639AFD669D /* watchOSAppUITests.145.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = watchOSAppUITests.145.link.params; sourceTree = ""; }; 9A504123E30870E68A4FA9DB /* BUILD */ = {isa = PBXFileReference; explicitFileType = text.script.python; path = BUILD; sourceTree = ""; }; + 9A899C89208B97E1CAFA5DA9 /* c_lib.rules_xcodeproj.c.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = c_lib.rules_xcodeproj.c.compile.params; sourceTree = ""; }; 9B0BCF86C3AEC8C1AEA1A448 /* macOSApp.library.rules_xcodeproj.swift.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = macOSApp.library.rules_xcodeproj.swift.compile.params; sourceTree = ""; }; 9B56D9298492068E642846F0 /* tvOSApp.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = tvOSApp.swift; sourceTree = ""; }; 9B9B00577F9503C23091539C /* Foo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Foo.h; sourceTree = ""; }; 9BA1C024C8B1BAE3BE87FF02 /* UI.rules_xcodeproj.swift.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = UI.rules_xcodeproj.swift.compile.params; sourceTree = ""; }; + 9C493F8766B53632637000EB /* libecho_client_services_swift.a */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.dylib"; includeInIndex = 0; name = libecho_client_services_swift.a; path = "bazel-out/CONFIGURATION-STABLE-26/bin/GRPC/libecho_client_services_swift.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 9C69377DAC234B94BD555853 /* tool.library.rules_xcodeproj.c.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = tool.library.rules_xcodeproj.c.compile.params; sourceTree = ""; }; 9CB7619F3249A763A446A9A8 /* watchOSAppExtensionUnitTests.library.rules_xcodeproj.swift.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = watchOSAppExtensionUnitTests.library.rules_xcodeproj.swift.compile.params; sourceTree = ""; }; 9CDBCEB57D805757F394C46A /* iOSAppObjCUnitTests.32.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = iOSAppObjCUnitTests.32.link.params; sourceTree = ""; }; @@ -1172,12 +1211,10 @@ 9D9415E94082784D98CCACC4 /* exported-symbols.lds */ = {isa = PBXFileReference; lastKnownFileType = file; path = "exported-symbols.lds"; sourceTree = ""; }; 9DB96CA6132E0D051759DB77 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; 9DF3C8CEDB7025D22ED760E8 /* LibSwift-Swift.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "LibSwift-Swift.h"; sourceTree = ""; }; - 9E154375F216D66A9813FC1F /* LibFramework.tvOS.126.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = LibFramework.tvOS.126.link.params; sourceTree = ""; }; 9E3C67424F456D9FF51EEBDA /* ContentView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ContentView.swift; sourceTree = ""; }; 9E9A34CF7D39ABC67B25D278 /* iOSAppSwiftUnitTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = iOSAppSwiftUnitTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; 9EDD583C3B1836877AAAC18F /* UIFramework.watchOS.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = UIFramework.watchOS.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 9F723936F007182BBCF1BE33 /* CoreUtilsObjC.rules_xcodeproj.cxx.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = CoreUtilsObjC.rules_xcodeproj.cxx.compile.params; sourceTree = ""; }; - 9F852A5E260ED309ABEB999E /* UniversalCommandLineTool.63.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = UniversalCommandLineTool.63.link.params; sourceTree = ""; }; 9FADC50F83228A0BC2F03239 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; 9FB807E65788589E5F03DF37 /* Answers.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Answers.h; sourceTree = ""; }; 9FF10D5AC46EA2B02EE95EDC /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; }; @@ -1195,7 +1232,6 @@ A43526B3370311547CB489D0 /* README.md */ = {isa = PBXFileReference; lastKnownFileType = net.daringfireball.markdown; path = README.md; sourceTree = ""; }; A43B7F66FF9518FDB6203F44 /* private.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = private.h; sourceTree = ""; }; A4B7C7B0B3E5966287BE381D /* BUILD */ = {isa = PBXFileReference; explicitFileType = text.script.python; path = BUILD; sourceTree = ""; }; - A4D1111B999288A006FC93A5 /* WidgetExtension.78.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = WidgetExtension.78.link.params; sourceTree = ""; }; A4D9AC2A3A59B7508B72CAE6 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; A51B0DC518D2AA2CEAE28134 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; A564C4DE29D21B686050AAEF /* iOSAppObjCUnitTestSuite.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = iOSAppObjCUnitTestSuite.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; @@ -1209,13 +1245,13 @@ A7DD5DC08825B46B051D74B0 /* UITests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UITests.swift; sourceTree = ""; }; A7F29D5A8A7E130042F17629 /* tool.library.rules_xcodeproj.c.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = tool.library.rules_xcodeproj.c.compile.params; sourceTree = ""; }; A82CEB25CF59BE7CC49E09DB /* iOSAppObjCUnitTestSuite.library.rules_xcodeproj.c.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = iOSAppObjCUnitTestSuite.library.rules_xcodeproj.c.compile.params; sourceTree = ""; }; - A8317FCBB536DE08B3BD8EB1 /* echo_proto-descriptor-set.proto.bin */ = {isa = PBXFileReference; lastKnownFileType = archive.macbinary; path = "echo_proto-descriptor-set.proto.bin"; sourceTree = ""; }; A88199163B0288C69ED0AB44 /* es */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = es; path = es.lproj/Localizable.strings; sourceTree = ""; }; A897A0E2C243A0C8EDAA8A70 /* private_swift_lib.rules_xcodeproj.swift.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = private_swift_lib.rules_xcodeproj.swift.compile.params; sourceTree = ""; }; A8F7DC9A6D6B58FDF1FF4FE3 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; A95B3F8F22E3744A555E3BE3 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; + A9615ECBD49214C4C3921D8E /* echo.pb.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = echo.pb.swift; sourceTree = ""; }; + A9713154E5DF5A99B6A3867C /* echo.pb.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = echo.pb.swift; sourceTree = ""; }; A9721D8883D73A3F13BF89BB /* Lib.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Lib.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - A9D8381D4E2E01753BF0C144 /* UniversalCommandLineTool.164.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = UniversalCommandLineTool.164.link.params; sourceTree = ""; }; A9D9FEBC0972D69FB407711D /* WidgetExtension.intentdefinition */ = {isa = PBXFileReference; lastKnownFileType = file.intentdefinition; path = WidgetExtension.intentdefinition; sourceTree = ""; }; AA9E2A64525F2D8C2E2570AA /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; AAC9F5126C0750EE2B014B1D /* libLib.a */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.dylib"; includeInIndex = 0; name = libLib.a; path = "bazel-out/CONFIGURATION-STABLE-13/bin/Lib/libLib.a"; sourceTree = BUILT_PRODUCTS_DIR; }; @@ -1225,36 +1261,34 @@ AAFE70A8BAC9F25798762199 /* iOSAppUITests.library.rules_xcodeproj.swift.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = iOSAppUITests.library.rules_xcodeproj.swift.compile.params; sourceTree = ""; }; AB04299FE31B1120FF2C32A1 /* lib_impl.rules_xcodeproj.c.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = lib_impl.rules_xcodeproj.c.compile.params; sourceTree = ""; }; AB1779733F29DBF9DF09C353 /* GoogleMaps.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = GoogleMaps.framework; sourceTree = ""; }; + AB224BF21A3760DFFD6C34C2 /* iOSAppUITestSuite.150.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = iOSAppUITestSuite.150.link.params; sourceTree = ""; }; ABEABF8BD28CE1F5D2C4FD0B /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; AC69764F8CDC5E26E11CE2FC /* Lib.rules_xcodeproj.swift.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = Lib.rules_xcodeproj.swift.compile.params; sourceTree = ""; }; - AD18BFEEE37783CFEF25C535 /* c_lib.rules_xcodeproj.c.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = c_lib.rules_xcodeproj.c.compile.params; sourceTree = ""; }; AD5AA5B6CAF4FF4AD2DF011E /* tool.library.rules_xcodeproj.swift.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = tool.library.rules_xcodeproj.swift.compile.params; sourceTree = ""; }; ADCF3AB07FEC0772D9B83B08 /* Launch.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; path = Launch.storyboard; sourceTree = ""; }; ADEDE2B5A20F0D2142C65C81 /* UIFramework.tvOS.26.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = UIFramework.tvOS.26.link.params; sourceTree = ""; }; AE2E15C9A4F2A5D7DD2E3E7E /* CommandLineLibSwiftTestsLib.rules_xcodeproj.swift.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = CommandLineLibSwiftTestsLib.rules_xcodeproj.swift.compile.params; sourceTree = ""; }; + AEF104356FC08AE2BF0B7AEA /* watchOSAppExtension.87.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = watchOSAppExtension.87.link.params; sourceTree = ""; }; AF952D0EF40631FEF757B7A3 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; - AFDFC848EBF96572C7121710 /* UIFramework.tvOS.194.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = UIFramework.tvOS.194.link.params; sourceTree = ""; }; AFEC4F2E8A6AECBC97028A29 /* lib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = lib.c; sourceTree = ""; }; B04C5C8B1C931D3138A1F88E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; B0545B79A65C992B617A3EFE /* MixedAnswer.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MixedAnswer.h; sourceTree = ""; }; B0585D439244193C4A4B5F91 /* libMixedAnswer.a */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.dylib"; includeInIndex = 0; name = libMixedAnswer.a; path = "bazel-out/CONFIGURATION-STABLE-12/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/libMixedAnswer.a"; sourceTree = BUILT_PRODUCTS_DIR; }; B07CD15B2914C3B9E00C1113 /* README.md */ = {isa = PBXFileReference; lastKnownFileType = net.daringfireball.markdown; path = README.md; sourceTree = ""; }; - B0B74FBB84611AC1427E1D68 /* c_lib.rules_xcodeproj.c.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = c_lib.rules_xcodeproj.c.compile.params; sourceTree = ""; }; B1163CCC8293D3DD7D46D598 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; }; - B141735282B4D8FEAEA243D4 /* proto.49.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = proto.49.link.params; sourceTree = ""; }; B175955D9351877CB9A87F1D /* WatchOSAppExtensionTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = WatchOSAppExtensionTests.swift; sourceTree = ""; }; B1FF58371E394B9B7DCBE2A1 /* TestingUtils.rules_xcodeproj.swift.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = TestingUtils.rules_xcodeproj.swift.compile.params; sourceTree = ""; }; B205498580ED4E95C18690FF /* aplugin.library.rules_xcodeproj.c.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = aplugin.library.rules_xcodeproj.c.compile.params; sourceTree = ""; }; B21D98E4CA7FF10FC00084A3 /* server_main.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = server_main.swift; sourceTree = ""; }; B231CF9322BBD2637A6AE540 /* FXPageControl.rules_xcodeproj.c.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = FXPageControl.rules_xcodeproj.c.compile.params; sourceTree = ""; }; B2726EA189D2F4DBAA6F3CAF /* TestingUtils-Swift.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "TestingUtils-Swift.h"; sourceTree = ""; }; + B2ACFE94F9EDABA7C9CC5FB4 /* tvOSApp.97.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = tvOSApp.97.link.params; sourceTree = ""; }; B2C9DD5B6CFD64BA881EB20F /* libcc_lib_impl.a */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.dylib"; includeInIndex = 0; name = libcc_lib_impl.a; path = "bazel-out/CONFIGURATION-STABLE-2/bin/cc/lib2/libcc_lib_impl.a"; sourceTree = BUILT_PRODUCTS_DIR; }; B2E2DC2802D1B3BB793ACFE4 /* Entitlements.withbundleid.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Entitlements.withbundleid.plist; sourceTree = ""; }; - B39076FB8865DD4841A83B56 /* iOSApp.86.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = iOSApp.86.link.params; sourceTree = ""; }; B398B97F1F3A4EEB4BA412CF /* iOSAppSwiftUnitTestSuite.library.rules_xcodeproj.swift.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = iOSAppSwiftUnitTestSuite.library.rules_xcodeproj.swift.compile.params; sourceTree = ""; }; - B3E356642E415E3B90FEAFEE /* UIFramework.watchOS.83.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = UIFramework.watchOS.83.link.params; sourceTree = ""; }; B550141A8044F4BD4AAA64CE /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; B5AD3CC017777D4D52F49CBB /* AppClip.library.rules_xcodeproj.swift.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = AppClip.library.rules_xcodeproj.swift.compile.params; sourceTree = ""; }; + B72A666361CDEE621E577BCC /* iOS.125.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = iOS.125.link.params; sourceTree = ""; }; B74F36B217CBAEC380D87116 /* main.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = main.c; sourceTree = ""; }; B78754E603F057C9E22CA472 /* AltIcon-60@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "AltIcon-60@2x.png"; sourceTree = ""; }; B78E95E776E19E104F34096F /* Preview Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = "Preview Assets.xcassets"; sourceTree = ""; }; @@ -1262,17 +1296,15 @@ B8064B94FBFE4BBD9F23C04E /* lib_swift.rules_xcodeproj.swift.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = lib_swift.rules_xcodeproj.swift.compile.params; sourceTree = ""; }; B809EEC3C7BDE467DAF5DF73 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; }; B8E219799D562E079B3FDC64 /* UnwantedScheme_Swift.rules_xcodeproj.swift.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = UnwantedScheme_Swift.rules_xcodeproj.swift.compile.params; sourceTree = ""; }; - B908226AFA4CDE81853F7A8A /* iOSApp.187.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = iOSApp.187.link.params; sourceTree = ""; }; + B931D379E0EFD559B35B8E9A /* echo.grpc.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = echo.grpc.swift; sourceTree = ""; }; B940FF048E7A19B4A32C2AC1 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; B964E782B7D8D599975DDB95 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; B9A61D6B809625E02EC51757 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; BA03CD3417D661B1AD85E976 /* UndesiredScheme_Swift.rules_xcodeproj.swift.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = UndesiredScheme_Swift.rules_xcodeproj.swift.compile.params; sourceTree = ""; }; - BAE3DD2729C0511496839F55 /* libc_lib.a */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.dylib"; includeInIndex = 0; name = libc_lib.a; path = "bazel-out/CONFIGURATION-STABLE-32/bin/CommandLine/swift_c_module/libc_lib.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - BAEA88262E011377444891A0 /* proto.150.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = proto.150.link.params; sourceTree = ""; }; + BAE3DD2729C0511496839F55 /* libc_lib.a */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.dylib"; includeInIndex = 0; name = libc_lib.a; path = "bazel-out/CONFIGURATION-STABLE-32/bin/CommandLine/swift_interop_hint/libc_lib.a"; sourceTree = BUILT_PRODUCTS_DIR; }; BB1D3A77E0F34876318CB3E1 /* WidgetExtension.11.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = WidgetExtension.11.link.params; sourceTree = ""; }; BB6099E27BEC9EBE71CF9C44 /* main.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = main.swift; sourceTree = ""; }; BB6BE02C5A469FCF0AC32050 /* UIFramework.iOS.13.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = UIFramework.iOS.13.link.params; sourceTree = ""; }; - BB86B88CBE14FF577E538DE1 /* echo_proto-descriptor-set.proto.bin */ = {isa = PBXFileReference; lastKnownFileType = archive.macbinary; path = "echo_proto-descriptor-set.proto.bin"; sourceTree = ""; }; BB88986C7442E81D509FECF3 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; BBA279B3A19D7B453ABEE909 /* Launchd.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Launchd.plist; sourceTree = ""; }; BBB1894DF18F90071A677087 /* lib3.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = lib3.h; sourceTree = ""; }; @@ -1282,10 +1314,8 @@ BC40176BF05CF8035B673F31 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; BD2A333C33D65FA17B059BE1 /* lib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = lib.h; sourceTree = ""; }; BD2F5F2A1A64D49B1D3A05F3 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; - BD8C927607878FB74C7658AC /* tvOS.191.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = tvOS.191.link.params; sourceTree = ""; }; BDD13702FC4B105C40BB6E4A /* tvOSAppUITests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = tvOSAppUITests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; BE3CDE33AABE46C1EE6C3261 /* Lib.rules_xcodeproj.swift.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = Lib.rules_xcodeproj.swift.compile.params; sourceTree = ""; }; - BE86AE255316995240DD5995 /* macOSAppUITests.142.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = macOSAppUITests.142.link.params; sourceTree = ""; }; BE90BEDA1E532A77BA76AAEA /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; BEEA406D7D2D485AEDBB4F40 /* RealAnswer.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = RealAnswer.h; sourceTree = ""; }; BEF068213F76D3AB8DDF7F1B /* Lib.rules_xcodeproj.swift.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = Lib.rules_xcodeproj.swift.compile.params; sourceTree = ""; }; @@ -1293,10 +1323,9 @@ C007883212FC5BFCAEA11526 /* UndesiredScheme_Swift.rules_xcodeproj.swift.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = UndesiredScheme_Swift.rules_xcodeproj.swift.compile.params; sourceTree = ""; }; C0D295CB73427A79639110E7 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; C10C01A7FAAECCBFFD205012 /* Launchd.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Launchd.plist; sourceTree = ""; }; + C1470E334BD5793AED15DEAF /* watchOSAppExtension.191.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = watchOSAppExtension.191.link.params; sourceTree = ""; }; C16C1AEBEADF1EA268FCFF2E /* MixedAnswerLib_Swift.rules_xcodeproj.swift.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = MixedAnswerLib_Swift.rules_xcodeproj.swift.compile.params; sourceTree = ""; }; C19AA20B55E0B345C9B73862 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; - C1A692F74CA35496E528663E /* iOSAppSwiftUnitTests.100.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = iOSAppSwiftUnitTests.100.link.params; sourceTree = ""; }; - C1D00F5C62CF97808BC53603 /* WidgetExtension.112.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = WidgetExtension.112.link.params; sourceTree = ""; }; C20416CE7AB249D6F790132C /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; C2A0D91D6F14A57EC8DB6134 /* UnwantedScheme_Swift.rules_xcodeproj.swift.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = UnwantedScheme_Swift.rules_xcodeproj.swift.compile.params; sourceTree = ""; }; C2B2DE96EAD2CCE2B80B9B69 /* libprivate_lib.a */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.dylib"; includeInIndex = 0; name = libprivate_lib.a; path = "bazel-out/CONFIGURATION-STABLE-31/bin/CommandLine/CommandLineToolLib/libprivate_lib.a"; sourceTree = BUILT_PRODUCTS_DIR; }; @@ -1304,15 +1333,19 @@ C38B83AE5951BE527701AE21 /* exported-symbols.lds */ = {isa = PBXFileReference; lastKnownFileType = file; path = "exported-symbols.lds"; sourceTree = ""; }; C4535EFE05435416A83C13E2 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; C454C50B0428F3DA857A8F1E /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; }; + C499CBAF763EC9D92D872631 /* echo_server_services_swift.rules_xcodeproj.swift.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = echo_server_services_swift.rules_xcodeproj.swift.compile.params; sourceTree = ""; }; C4E868F88A7F946716CC4525 /* GoogleMaps.bundle */ = {isa = PBXFileReference; lastKnownFileType = wrapper.cfbundle; path = GoogleMaps.bundle; sourceTree = ""; }; C4FEF7878F4C02DEE89B2A5A /* iMessageAppExtension.35.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = iMessageAppExtension.35.link.params; sourceTree = ""; }; + C55B62162D5580C11EAACD3E /* tvOSApp.131.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = tvOSApp.131.link.params; sourceTree = ""; }; C67ADAB81D943F251BFFDF35 /* private_swift_lib.rules_xcodeproj.swift.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = private_swift_lib.rules_xcodeproj.swift.compile.params; sourceTree = ""; }; C68E1BB8871F5E76DF212BAF /* UndesiredScheme_Swift.rules_xcodeproj.swift.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = UndesiredScheme_Swift.rules_xcodeproj.swift.compile.params; sourceTree = ""; }; C68F123594EC2E6077073930 /* watchOSAppExtension.library.rules_xcodeproj.swift.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = watchOSAppExtension.library.rules_xcodeproj.swift.compile.params; sourceTree = ""; }; + C6C8262DC0C610E218B41907 /* UIFramework.watchOS.120.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = UIFramework.watchOS.120.link.params; sourceTree = ""; }; C72E672A34688822B865368A /* CryptoSwift.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = CryptoSwift.framework; sourceTree = ""; }; C7D6E9EA886ACE2FD42D136F /* lib.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = lib.m; sourceTree = ""; }; C7FFF82C81A2A34F1DF8ACE4 /* TestingUtils.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TestingUtils.swift; sourceTree = ""; }; C83480BC92DDD1CA27B333EE /* nested */ = {isa = PBXFileReference; lastKnownFileType = folder; path = nested; sourceTree = ""; }; + C8B9CB2B858585B9560D11CE /* UIFramework.tvOS.130.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = UIFramework.tvOS.130.link.params; sourceTree = ""; }; C8BAA1671441B9C43CFD7722 /* tool.library.rules_xcodeproj.c.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = tool.library.rules_xcodeproj.c.compile.params; sourceTree = ""; }; C8DD100EC3FA656AEFE5A00B /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; C96D94AC43CB06634A41F859 /* CommandLineLibSwiftTestsLib.rules_xcodeproj.swift.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = CommandLineLibSwiftTestsLib.rules_xcodeproj.swift.compile.params; sourceTree = ""; }; @@ -1321,29 +1354,36 @@ CA0FA7E1E16CCBCAC217F4F3 /* BUILD */ = {isa = PBXFileReference; explicitFileType = text.script.python; path = BUILD; sourceTree = ""; }; CA78129EC5626917B17BD043 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; CB1973B93728F830BEF4C998 /* private_lib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = private_lib.h; sourceTree = ""; }; + CB22660A57EA2A684C8E86B7 /* echo_client_services_swift.rules_xcodeproj.swift.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = echo_client_services_swift.rules_xcodeproj.swift.compile.params; sourceTree = ""; }; CB38C7FF0302F53A6AAE579F /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; CB3DC152A3E3107BA02D60A1 /* macOSAppUITests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = macOSAppUITests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; CB43E2CF98B5CAF89C1A05A1 /* Lib.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Lib.swift; sourceTree = ""; }; CB56263912A21978DE76D5D6 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; CB660954863F8C21D507F0A0 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; + CC2F994119767685C7CF133D /* iOSApp.123.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = iOSApp.123.link.params; sourceTree = ""; }; CC3E4C2E2017C34B5C0D2A9C /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/Localizable.strings; sourceTree = ""; }; CCD2F2D1F24F6628E415234B /* ExampleNestedResources.bundle */ = {isa = PBXFileReference; lastKnownFileType = wrapper.cfbundle; path = ExampleNestedResources.bundle; sourceTree = ""; }; CCDA0F0E974FDFFC2172E7E3 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; CCF5665BBAC52507A0B4568B /* MixedAnswer-Swift.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "MixedAnswer-Swift.h"; sourceTree = ""; }; CD07B657B5ED92CC3963B7FD /* BUILD */ = {isa = PBXFileReference; explicitFileType = text.script.python; path = BUILD; sourceTree = ""; }; + CDA5FB3A7025701060A6342D /* Bundle.132.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = Bundle.132.link.params; sourceTree = ""; }; CEA3B5B86605752BE48FA932 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; }; CF0130174B6A8E5C8C512C94 /* BUILD */ = {isa = PBXFileReference; explicitFileType = text.script.python; path = BUILD; sourceTree = ""; }; CF83DCD0C382C86BA3F0E8EE /* Info.withbundleid.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.withbundleid.plist; sourceTree = ""; }; CFC359FD6CC502C63EB4CFF1 /* UI.rules_xcodeproj.swift.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = UI.rules_xcodeproj.swift.compile.params; sourceTree = ""; }; + CFF1443BEA11D20C19811EAF /* UIFramework.iOS.117.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = UIFramework.iOS.117.link.params; sourceTree = ""; }; D002685903F29106F8A65A46 /* LibFramework.watchOS.15.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = LibFramework.watchOS.15.link.params; sourceTree = ""; }; D011EF6C9AAEBA32F3476773 /* Intents.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Intents.swift; sourceTree = ""; }; D0F63CF3FA143619FDFF5752 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; D12B65C2EA15DCA98CF251F3 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; D13751A91221420964E06C8F /* Lib.rules_xcodeproj.swift.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = Lib.rules_xcodeproj.swift.compile.params; sourceTree = ""; }; D164C777F65A48B9C86080EB /* TestingUtils.rules_xcodeproj.swift.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = TestingUtils.rules_xcodeproj.swift.compile.params; sourceTree = ""; }; + D1A12F0E93E37578799F3AF5 /* echo_client.52.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = echo_client.52.link.params; sourceTree = ""; }; D1B564B226528AB521D08D7D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; D1F252BAD131ACC8433D7C09 /* iOSApp.library.rules_xcodeproj.swift.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = iOSApp.library.rules_xcodeproj.swift.compile.params; sourceTree = ""; }; D20093170A54E92A741D748D /* BUILD */ = {isa = PBXFileReference; explicitFileType = text.script.python; path = BUILD; sourceTree = ""; }; + D269C6D851AEDF67591F617A /* libecho_server_services_swift.a */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.dylib"; includeInIndex = 0; name = libecho_server_services_swift.a; path = "bazel-out/CONFIGURATION-STABLE-26/bin/GRPC/libecho_server_services_swift.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + D33F9739FDF626A13193A72B /* CommandLineToolTests.178.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = CommandLineToolTests.178.link.params; sourceTree = ""; }; D4255F08314C4C436A94F7CC /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; D43313794DC4D47361B3DB08 /* export_symbol_list.exp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.exports; path = export_symbol_list.exp; sourceTree = ""; }; D470E5E55EAE6BB0D629BACE /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; @@ -1353,11 +1393,10 @@ D54F6D36A02C7BF4B25CC5BF /* Lib.rules_xcodeproj.swift.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = Lib.rules_xcodeproj.swift.compile.params; sourceTree = ""; }; D56D11AEB2C1E1C49B6DEA99 /* CoreUtilsObjC.rules_xcodeproj.cxx.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = CoreUtilsObjC.rules_xcodeproj.cxx.compile.params; sourceTree = ""; }; D57326ECD169C0334D30213B /* WidgetExtension.appex */ = {isa = PBXFileReference; explicitFileType = "wrapper.app-extension"; includeInIndex = 0; path = WidgetExtension.appex; sourceTree = BUILT_PRODUCTS_DIR; }; - D5AD798A803B36BB3EE35722 /* watchOSAppExtensionUnitTests.146.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = watchOSAppExtensionUnitTests.146.link.params; sourceTree = ""; }; + D59EED0FB832EF5E99922BCE /* tvOSAppUITests.146.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = tvOSAppUITests.146.link.params; sourceTree = ""; }; D5B1B196D3BD3E293524907D /* UIFramework.iOS.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = UIFramework.iOS.framework; sourceTree = BUILT_PRODUCTS_DIR; }; D5BA1DF93D9A29808A8B7843 /* Lib.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Lib.swift; sourceTree = ""; }; D5DF1BD63106A63D0E85F768 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; - D5E4491383715A342257B15C /* UIFramework.iOS.80.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = UIFramework.iOS.80.link.params; sourceTree = ""; }; D601B80F02717DEBDD6ED6B5 /* iOSApp.library.rules_xcodeproj.swift.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = iOSApp.library.rules_xcodeproj.swift.compile.params; sourceTree = ""; }; D6D9F670D663D16F6CF93CF9 /* GoogleMapsBase.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = GoogleMapsBase.framework; sourceTree = ""; }; D7420E99839F990E4F528BAC /* libUndesiredScheme_Swift.a */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.dylib"; includeInIndex = 0; name = libUndesiredScheme_Swift.a; path = "bazel-out/CONFIGURATION-STABLE-12/bin/Lib/UndesiredSchemes/libUndesiredScheme_Swift.a"; sourceTree = BUILT_PRODUCTS_DIR; }; @@ -1366,7 +1405,9 @@ D83C1C82CBE5911386938FA4 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; D8574D553DDB85CEABF025F1 /* BUILD */ = {isa = PBXFileReference; explicitFileType = text.script.python; path = BUILD; sourceTree = ""; }; D90BC1E7B5E0A3AD12C05BCF /* UI.rules_xcodeproj.swift.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = UI.rules_xcodeproj.swift.compile.params; sourceTree = ""; }; + D99875225DA780E815BF743B /* iMessageAppExtension.139.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = iMessageAppExtension.139.link.params; sourceTree = ""; }; DA001CAF4E1F999905A629F5 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; + DA053F760DDD473A159C1E7D /* echo_server.54.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = echo_server.54.link.params; sourceTree = ""; }; DA0C45D2B24640DBC681B6CE /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; }; DA57AE53211E2525A29C280F /* Preview Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = "Preview Assets.xcassets"; sourceTree = ""; }; DA94784E4E5A9A2D490D9B8C /* Lib.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Lib.swift; sourceTree = ""; }; @@ -1374,7 +1415,6 @@ DACC65CD7A91AFF1A717DEC0 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; DB47FDE5678BB42270C9943F /* BUILD */ = {isa = PBXFileReference; explicitFileType = text.script.python; path = BUILD; sourceTree = ""; }; DB59D6290AB27A6D863AABF2 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; - DC040B206FA86D795A9C9552 /* tvOS.90.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = tvOS.90.link.params; sourceTree = ""; }; DC3DDBF3E04D3B94A4951A08 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; DC62194609628A80C37A5C01 /* TestingUtils.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TestingUtils.swift; sourceTree = ""; }; DC8C57F41E70B4717F33DB1E /* UI.rules_xcodeproj.swift.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = UI.rules_xcodeproj.swift.compile.params; sourceTree = ""; }; @@ -1384,12 +1424,13 @@ DE84A63C0FDE6C7CDF7F1DFF /* TestingUtils.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TestingUtils.swift; sourceTree = ""; }; DE9CB8006BFA883DF4FF2429 /* Info.withbundleid.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.withbundleid.plist; sourceTree = ""; }; DEB432EF1652BFD0CC5727E2 /* cc_external_lib_impl.rules_xcodeproj.c.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = cc_external_lib_impl.rules_xcodeproj.c.compile.params; sourceTree = ""; }; + DED77FD29B1A59D5D6D06911 /* UniversalCommandLineTool.72.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = UniversalCommandLineTool.72.link.params; sourceTree = ""; }; DF0EC2912B62C4D6EF6F14BC /* MixedAnswer.rules_xcodeproj.c.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = MixedAnswer.rules_xcodeproj.c.compile.params; sourceTree = ""; }; - DFBC6A3219D8EA41764DC3DE /* tvOSAppUnitTests.144.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = tvOSAppUnitTests.144.link.params; sourceTree = ""; }; DFD8238D0069AF1FDC17B574 /* lib2.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = lib2.h; sourceTree = ""; }; E02E7AC7E734D05D579EB445 /* echo_client.library.rules_xcodeproj.swift.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = echo_client.library.rules_xcodeproj.swift.compile.params; sourceTree = ""; }; E0ADB0B3FDE16DA715E6F0DF /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; E0C1EC3A7AF4F92FF853ACAE /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; + E12E21948EAAA2718A02E2E6 /* echo_client_services_swift.rules_xcodeproj.swift.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = echo_client_services_swift.rules_xcodeproj.swift.compile.params; sourceTree = ""; }; E1A7465BA8F20EF03ED73D86 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; E1B309F5FDE3AA5EDE05A6C0 /* lib2.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = lib2.h; sourceTree = ""; }; E1B4F17A1D60734356560A3B /* launch_images_ios.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = launch_images_ios.xcassets; sourceTree = ""; }; @@ -1401,19 +1442,19 @@ E24F69AC0D2698BD878720BB /* BUILD */ = {isa = PBXFileReference; explicitFileType = text.script.python; path = BUILD; sourceTree = ""; }; E26F9E7364773F9F6FF3B2A9 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; E2995B2059EE27165567BBF2 /* MixedAnswer.rules_xcodeproj.c.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = MixedAnswer.rules_xcodeproj.c.compile.params; sourceTree = ""; }; - E39FC8A3937EF7D42C658603 /* iOSAppSwiftUnitTests.138.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = iOSAppSwiftUnitTests.138.link.params; sourceTree = ""; }; E3B451C960F633D6753B2227 /* UI.rules_xcodeproj.swift.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = UI.rules_xcodeproj.swift.compile.params; sourceTree = ""; }; E3CADF7BA4F15516E511C3B6 /* DefaultTestBundle.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = DefaultTestBundle.plist; sourceTree = ""; }; E3DF2C3E4311E329C293ADCB /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; E475F19E9E0AF14E1F46E023 /* liblib_impl.a */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.dylib"; includeInIndex = 0; name = liblib_impl.a; path = "bazel-out/CONFIGURATION-STABLE-30/bin/CommandLine/CommandLineToolLib/liblib_impl.a"; sourceTree = BUILT_PRODUCTS_DIR; }; E4976A0A8B1D38CB8334D1E4 /* Lib.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Lib.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - E529021D31A5C0215BD7D95D /* watchOSAppExtension.118.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = watchOSAppExtension.118.link.params; sourceTree = ""; }; E5FA0724A8A540E85270E748 /* ExternalFramework.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = ExternalFramework.framework; path = CommandLine/external/ExternalFramework.framework; sourceTree = SOURCE_ROOT; }; E66DA40A07B7CDA238C93D0A /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; + E6A781D32E878F1E70FF3AA4 /* AppClip.110.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = AppClip.110.link.params; sourceTree = ""; }; + E7072BE34266A1CEEA4C03FA /* WidgetExtension.81.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = WidgetExtension.81.link.params; sourceTree = ""; }; E71F84FFB56CB1AF81716ACD /* libprivate_swift_lib.a */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.dylib"; includeInIndex = 0; name = libprivate_swift_lib.a; path = "bazel-out/CONFIGURATION-STABLE-31/bin/CommandLine/CommandLineToolLib/libprivate_swift_lib.a"; sourceTree = BUILT_PRODUCTS_DIR; }; E79C923D6D25B40F7A1C18FF /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; - E7A18BF4539BE77F571C91A1 /* BasicTests.171.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = BasicTests.171.link.params; sourceTree = ""; }; E84DBAC32A7C151ED97289BA /* _CompileStub_.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = _CompileStub_.m; sourceTree = DERIVED_FILE_DIR; }; + E8519C111E89B4ACA68B4688 /* BasicTests.73.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = BasicTests.73.link.params; sourceTree = ""; }; E851D6F2D8F78F93161DEF2C /* BUILD */ = {isa = PBXFileReference; explicitFileType = text.script.python; path = BUILD; sourceTree = ""; }; E8919C51A5446537BFF377EB /* UnwantedScheme.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UnwantedScheme.swift; sourceTree = ""; }; E8F2568FAD59657CEA8BBC66 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; @@ -1424,11 +1465,13 @@ E940819C20C65B054B328C8D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; E9535EC0F797C4F22FBB8F09 /* lib3.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = lib3.h; sourceTree = ""; }; E9BDC061A3F08C052015732F /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; + E9BFEC0E46BAED7410A7BEF9 /* proto.154.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = proto.154.link.params; sourceTree = ""; }; + E9F7AFA9AF275CD0BE87B112 /* Person.pb.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Person.pb.swift; sourceTree = ""; }; + EA04D4760352BC92BF1353C8 /* AppClip.180.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = AppClip.180.link.params; sourceTree = ""; }; EB134C90C2A1AE8CC10CA035 /* private_lib.rules_xcodeproj.c.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = private_lib.rules_xcodeproj.c.compile.params; sourceTree = ""; }; - EB1DE82E864F48377EEB1DFC /* macOSApp.141.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = macOSApp.141.link.params; sourceTree = ""; }; EB3AC3D65B423720D3F36A96 /* Info.withbundleid.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.withbundleid.plist; sourceTree = ""; }; EB3FB7C7066C15940ABFD2DC /* Lib.rules_xcodeproj.swift.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = Lib.rules_xcodeproj.swift.compile.params; sourceTree = ""; }; - EB81CB8BD511FD2F43F56348 /* FrameworkCoreUtilsObjC.113.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = FrameworkCoreUtilsObjC.113.link.params; sourceTree = ""; }; + EBA3F6BB41BC010FB3F57CF9 /* person_proto_swift.rules_xcodeproj.swift.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = person_proto_swift.rules_xcodeproj.swift.compile.params; sourceTree = ""; }; EC0364FA449DCF92FC42AC9B /* MixedAnswer_objc_modulemap-module.modulemap */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.module-map"; path = "MixedAnswer_objc_modulemap-module.modulemap"; sourceTree = ""; }; EC1AC410B6475C8A8C395A5D /* CryptoSwift.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = CryptoSwift.framework; sourceTree = ""; }; EC6FEFDC4CED0EF7E90B964A /* BUILD */ = {isa = PBXFileReference; explicitFileType = text.script.python; path = BUILD; sourceTree = ""; }; @@ -1441,34 +1484,38 @@ EEAC2256619B8AA10FB3C7DF /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; EEF08D14C18A11BBA149BECB /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; EEFAE18BAC51AE832DAEFB84 /* TestingUtils.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TestingUtils.swift; sourceTree = ""; }; + EF31471F1FAAC5880A47141A /* iOSAppUITests.206.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = iOSAppUITests.206.link.params; sourceTree = ""; }; + EF6BBA4330608281B06EC85B /* WidgetExtension.115.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = WidgetExtension.115.link.params; sourceTree = ""; }; F0ED87BDD1BD5F8BCB5F2868 /* UI.rules_xcodeproj.swift.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = UI.rules_xcodeproj.swift.compile.params; sourceTree = ""; }; F10161D9D9CFB958D22A906D /* iOSAppSwiftUnitTests.library.rules_xcodeproj.swift.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = iOSAppSwiftUnitTests.library.rules_xcodeproj.swift.compile.params; sourceTree = ""; }; F1EAA5F54DC2A74E1F151E58 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; F1ED07E1536AECC399BE5D4A /* bucket */ = {isa = PBXFileReference; lastKnownFileType = folder; path = bucket; sourceTree = ""; }; F206319618ABB9B381621346 /* libfoo.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; path = libfoo.dylib; sourceTree = ""; }; F2466C23EA89489C9DB23779 /* MixedAnswer-Swift.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "MixedAnswer-Swift.h"; sourceTree = ""; }; - F335DC913DA2493012FF451B /* tvOSApp.94.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = tvOSApp.94.link.params; sourceTree = ""; }; F3469FFD8EB6C52BEA4E7B0D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; F34912779764C41FD7501632 /* exported-symbols.lds */ = {isa = PBXFileReference; lastKnownFileType = file; path = "exported-symbols.lds"; sourceTree = ""; }; F3D02F87625E1133FC31A108 /* Utils.bundle */ = {isa = PBXFileReference; lastKnownFileType = wrapper.cfbundle; path = Utils.bundle; sourceTree = ""; }; F430FA1AB345C9D772DC1948 /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = ""; }; F4ABC808BF30C6E899B983D3 /* tool.library.rules_xcodeproj.c.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = tool.library.rules_xcodeproj.c.compile.params; sourceTree = ""; }; F5B04A343B6B70CAD06E1B52 /* GoogleMaps.bundle */ = {isa = PBXFileReference; lastKnownFileType = wrapper.cfbundle; path = GoogleMaps.bundle; sourceTree = ""; }; + F6EB9CCDA39E0A495CC91F44 /* BUILD */ = {isa = PBXFileReference; explicitFileType = text.script.python; path = BUILD; sourceTree = ""; }; F6F1090237FF04C38B58E42A /* iOSAppUITests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = iOSAppUITests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; F723A904BE9893FBEA3C6574 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; - F7C6F397E7BC6DBFB9856EC3 /* LibFramework.tvOS.193.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = LibFramework.tvOS.193.link.params; sourceTree = ""; }; + F7DA4B391698FAEABA09C62C /* iOSAppUITests.137.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = iOSAppUITests.137.link.params; sourceTree = ""; }; F8948F96F9754BD16B4B1C55 /* CryptoSwift.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = CryptoSwift.framework; sourceTree = ""; }; - F8A88D97FD6EC0274A262A5F /* UIFramework.iOS.181.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = UIFramework.iOS.181.link.params; sourceTree = ""; }; + F8BB65326797F3616296E86A /* WidgetExtension.185.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = WidgetExtension.185.link.params; sourceTree = ""; }; F921C7E57180C9859BE55BC9 /* impl.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = impl.h; sourceTree = ""; }; F963A417552534EFDC33DA9F /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; F9E638F023E555370973A72E /* BUILD */ = {isa = PBXFileReference; explicitFileType = text.script.python; path = BUILD; sourceTree = ""; }; F9F3AE7AFE3E0D81E9BD1583 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; - FA23A53DBE81B3C4EAB7084E /* FrameworkCoreUtilsObjC.79.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = FrameworkCoreUtilsObjC.79.link.params; sourceTree = ""; }; + FA2D73C975C4C080E2BDA419 /* person_proto_swift.rules_xcodeproj.swift.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = person_proto_swift.rules_xcodeproj.swift.compile.params; sourceTree = ""; }; FA2ECC9866D9B481C9AA3869 /* defines.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = defines.c; sourceTree = ""; }; + FAB01312636CBE437EE71DCB /* UniversalCommandLineTool.176.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = UniversalCommandLineTool.176.link.params; sourceTree = ""; }; FAB148519A328EB84D3C6345 /* AppClip.library.rules_xcodeproj.swift.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = AppClip.library.rules_xcodeproj.swift.compile.params; sourceTree = ""; }; FAB8D82F98F34AB1E21634FA /* AltIcon-60@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "AltIcon-60@3x.png"; sourceTree = ""; }; + FB07F35C1BF709B98681C077 /* iOSApp.193.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = iOSApp.193.link.params; sourceTree = ""; }; FB1BE4BEC7481255F1CECF19 /* es */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = es; path = es.lproj/Localizable.strings; sourceTree = ""; }; - FB5AA2ADEFE5E3E98ADDEBDD /* CommandLineTool.57.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = CommandLineTool.57.link.params; sourceTree = ""; }; + FB2BCBCBD37D5FDCFAF37A85 /* iOSAppSwiftUnitTests.141.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = iOSAppSwiftUnitTests.141.link.params; sourceTree = ""; }; FB83AD289E8C161D898CE568 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; FBAEB1E6D50AAF2C7105C26C /* WidgetExtension.library.rules_xcodeproj.swift.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = WidgetExtension.library.rules_xcodeproj.swift.compile.params; sourceTree = ""; }; FBF01A3E7D7B76DA04D92A0C /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; @@ -1570,16 +1617,6 @@ path = WidgetExtension; sourceTree = ""; }; - 037B220AA320614288093D94 /* swift_c_module */ = { - isa = PBXGroup; - children = ( - 0DE3C75C88AFEB7EE7E53939 /* BUILD */, - 3AEDEEABC4913622A9147C75 /* c_lib.c */, - 246221126DAC28EE34F192FE /* c_lib.h */, - ); - path = swift_c_module; - sourceTree = ""; - }; 037FB490C2E1212DD1908B81 /* rules_xcodeproj */ = { isa = PBXGroup; children = ( @@ -1759,7 +1796,7 @@ children = ( 778E90FCD6B526B05BA8C218 /* CommandLineTool */, 22C2750815515D30B1D4AA1A /* CommandLineToolLib */, - 8A3AE12CEADA4F4BAA87EB1C /* swift_c_module */, + DDE83335E88EACD2ABEB3993 /* swift_interop_hint */, ); path = CommandLine; sourceTree = ""; @@ -1803,7 +1840,7 @@ children = ( 68AF3BC21E59C69F1A199C69 /* CommandLineTool */, 4143444EDC9606F5F5BD39F7 /* CommandLineToolLib */, - 948597A4DAE849A3D7B20551 /* swift_c_module */, + F71CBB270DC037FB6F5A3D3F /* swift_interop_hint */, ); path = CommandLine; sourceTree = ""; @@ -2349,6 +2386,15 @@ path = "ios-arm64"; sourceTree = ""; }; + 21D36EFA059D3950006895A0 /* GRPC */ = { + isa = PBXGroup; + children = ( + B931D379E0EFD559B35B8E9A /* echo.grpc.swift */, + 1E9428897C78361B2E99F617 /* echo.pb.swift */, + ); + path = GRPC; + sourceTree = ""; + }; 21E6833BFBB9659A73400930 /* rules_xcodeproj */ = { isa = PBXGroup; children = ( @@ -2450,6 +2496,14 @@ path = rules_xcodeproj; sourceTree = ""; }; + 261D2083F03559B8CA0E3139 /* echo_server_services_swift */ = { + isa = PBXGroup; + children = ( + F459D320EFBFE4E807ACDB80 /* gen */, + ); + path = echo_server_services_swift; + sourceTree = ""; + }; 264CB96BBEACAEAD74B17C45 /* lib */ = { isa = PBXGroup; children = ( @@ -2502,6 +2556,14 @@ path = impl; sourceTree = ""; }; + 26D879095C33AC712F375AAE /* echo_client_services_swift */ = { + isa = PBXGroup; + children = ( + 5124E09E74DA631BFD5E76CD /* gen */, + ); + path = echo_client_services_swift; + sourceTree = ""; + }; 27089214B81E264823A2A420 /* Source */ = { isa = PBXGroup; children = ( @@ -2826,11 +2888,14 @@ 33DDEB63DDB51A734820EAF2 /* GRPC */ = { isa = PBXGroup; children = ( + 26D879095C33AC712F375AAE /* echo_client_services_swift */, 2551B63B9F976AA7177E45C6 /* echo_client.merged_infoplist-intermediates */, + 261D2083F03559B8CA0E3139 /* echo_server_services_swift */, F8A4D5480B35EF646816E48A /* echo_server.merged_infoplist-intermediates */, 0574265652A62CB832207B95 /* rules_xcodeproj */, + CB22660A57EA2A684C8E86B7 /* echo_client_services_swift.rules_xcodeproj.swift.compile.params */, 78DEF19329C9D912765A89EE /* echo_client.library.rules_xcodeproj.swift.compile.params */, - A8317FCBB536DE08B3BD8EB1 /* echo_proto-descriptor-set.proto.bin */, + C499CBAF763EC9D92D872631 /* echo_server_services_swift.rules_xcodeproj.swift.compile.params */, AAEEE68FE9E443386560C00A /* echo_server.library.rules_xcodeproj.swift.compile.params */, ); path = GRPC; @@ -3347,115 +3412,115 @@ isa = PBXGroup; children = ( A03B86865F8A1F5158A94156 /* AppClip.6.link.params */, - 97C747841C104DBB44DC3DF7 /* AppClip.73.link.params */, - 3E011741E188C9E79FD4D5D1 /* AppClip.107.link.params */, - 1CA6C8B45E613F690948ED10 /* AppClip.174.link.params */, - 5FAEE18C04588702E4F06FB3 /* BasicTests.70.link.params */, - E7A18BF4539BE77F571C91A1 /* BasicTests.171.link.params */, + 8332156D71A41357D4B731F7 /* AppClip.76.link.params */, + E6A781D32E878F1E70FF3AA4 /* AppClip.110.link.params */, + EA04D4760352BC92BF1353C8 /* AppClip.180.link.params */, + E8519C111E89B4ACA68B4688 /* BasicTests.73.link.params */, + 85170D8AC81512872EFA85E8 /* BasicTests.177.link.params */, 821CEED3DB9C25E8B39E508B /* Bundle.28.link.params */, - 8F3DEA718870C6125FB7D47C /* Bundle.129.link.params */, - FB5AA2ADEFE5E3E98ADDEBDD /* CommandLineTool.57.link.params */, - 5D388590A9A670A8A3F6C889 /* CommandLineTool.158.link.params */, - 7EB736803C24D75508D4F86B /* CommandLineToolTests.71.link.params */, - 1AC54D33C5CC6413FF1A19F0 /* CommandLineToolTests.172.link.params */, - 3D634DBB8FDF9A0D23506731 /* echo_client.50.link.params */, - 8FBCD8A2B29D6C7712832793 /* echo_client.151.link.params */, - 0756B0004604F752C6590AB7 /* echo_server.51.link.params */, - 883DAC18AFDE84354E7CC0FA /* echo_server.152.link.params */, + CDA5FB3A7025701060A6342D /* Bundle.132.link.params */, + 4130CE501F1162393EA68BC7 /* CommandLineTool.60.link.params */, + 2659F220073993E3A0DBAAB1 /* CommandLineTool.164.link.params */, + 41B63BB76B3C4ED91B5533C7 /* CommandLineToolTests.74.link.params */, + D33F9739FDF626A13193A72B /* CommandLineToolTests.178.link.params */, + D1A12F0E93E37578799F3AF5 /* echo_client.52.link.params */, + 6376161F5DAE4A0777891961 /* echo_client.156.link.params */, + DA053F760DDD473A159C1E7D /* echo_server.54.link.params */, + 92CA30BF88B66D25DF56FF14 /* echo_server.158.link.params */, 90AEBED782BF96F852E572BB /* FrameworkCoreUtilsObjC.12.link.params */, - FA23A53DBE81B3C4EAB7084E /* FrameworkCoreUtilsObjC.79.link.params */, - EB81CB8BD511FD2F43F56348 /* FrameworkCoreUtilsObjC.113.link.params */, - 2AB484DC0F81BB4D2580BA84 /* FrameworkCoreUtilsObjC.180.link.params */, + 0580B013B51855485DF0FD0D /* FrameworkCoreUtilsObjC.82.link.params */, + 84DA361A7DCE06E100B83EC5 /* FrameworkCoreUtilsObjC.116.link.params */, + 23D5E17642A0DF52D863A4AA /* FrameworkCoreUtilsObjC.186.link.params */, C4FEF7878F4C02DEE89B2A5A /* iMessageAppExtension.35.link.params */, - 465A9565FDF37BE59CDBA0AC /* iMessageAppExtension.136.link.params */, + D99875225DA780E815BF743B /* iMessageAppExtension.139.link.params */, 27BE4549A6B56DC907667ECD /* iOS.21.link.params */, - 09B3C1E1A91A8030637227A7 /* iOS.88.link.params */, - 956B8FCBAC951535318D7DF3 /* iOS.122.link.params */, - 3A68CA4AFA324BB17DCE6F5E /* iOS.189.link.params */, + 01DFF0795F5379AF3A389A3D /* iOS.91.link.params */, + B72A666361CDEE621E577BCC /* iOS.125.link.params */, + 264179E81C7347B689CE1D14 /* iOS.195.link.params */, 66E86C9351785EF69B187B16 /* iOSApp.19.link.params */, - B39076FB8865DD4841A83B56 /* iOSApp.86.link.params */, - 003F6229F63B344925AB7CC7 /* iOSApp.120.link.params */, - B908226AFA4CDE81853F7A8A /* iOSApp.187.link.params */, + 40F6DF3CD044CBBCC8C771DA /* iOSApp.89.link.params */, + CC2F994119767685C7CF133D /* iOSApp.123.link.params */, + FB07F35C1BF709B98681C077 /* iOSApp.193.link.params */, 9CDBCEB57D805757F394C46A /* iOSAppObjCUnitTests.32.link.params */, - 6CABB4F7094DCB9E049E1059 /* iOSAppObjCUnitTests.98.link.params */, - 145DD9FFE7326DD0057A6728 /* iOSAppObjCUnitTests.133.link.params */, - 8A24312A920FE4268E254355 /* iOSAppObjCUnitTests.199.link.params */, + 7272195479D305A4E61A9B48 /* iOSAppObjCUnitTests.101.link.params */, + 463C915B80879BA00FF3DFDC /* iOSAppObjCUnitTests.136.link.params */, + 683BF08FB227AC4CC9082091 /* iOSAppObjCUnitTests.205.link.params */, B79298D6044D757CFAF6A176 /* iOSAppObjCUnitTestSuite.47.link.params */, - 397D78E1E7C5EDB643370FA4 /* iOSAppObjCUnitTestSuite.148.link.params */, + 3C036AA3E0C0D66F6AF8E609 /* iOSAppObjCUnitTestSuite.151.link.params */, 94FDC3D0900FA4C74F2D8608 /* iOSAppSwiftUnitTests.37.link.params */, - C1A692F74CA35496E528663E /* iOSAppSwiftUnitTests.100.link.params */, - E39FC8A3937EF7D42C658603 /* iOSAppSwiftUnitTests.138.link.params */, - 7247D5D36989035B346C97C6 /* iOSAppSwiftUnitTests.201.link.params */, + 02A01684B90A681A1887172A /* iOSAppSwiftUnitTests.103.link.params */, + FB2BCBCBD37D5FDCFAF37A85 /* iOSAppSwiftUnitTests.141.link.params */, + 2A8A753ED1F615E6A705ADEE /* iOSAppSwiftUnitTests.207.link.params */, 18D5174364CF195EF9A3EF14 /* iOSAppSwiftUnitTestSuite.48.link.params */, - 814E394B61720E18C9572B3C /* iOSAppSwiftUnitTestSuite.149.link.params */, + 61BDE712C9F6DD70B351C893 /* iOSAppSwiftUnitTestSuite.152.link.params */, 8E8BDA4E064DAEBC22CEA8A4 /* iOSAppUITests.33.link.params */, - 5052EEF83A2267762BC48367 /* iOSAppUITests.99.link.params */, - 4A100C74C27E2C87068105B1 /* iOSAppUITests.134.link.params */, - 997695873D279B653151E31C /* iOSAppUITests.200.link.params */, + 3EBDC84E7473E71FFEBEF7CA /* iOSAppUITests.102.link.params */, + F7DA4B391698FAEABA09C62C /* iOSAppUITests.137.link.params */, + EF31471F1FAAC5880A47141A /* iOSAppUITests.206.link.params */, 79F1001FA3552826C9D9DFE8 /* iOSAppUITestSuite.46.link.params */, - 5A3ED0E17BE9AE13D016A3D1 /* iOSAppUITestSuite.147.link.params */, + AB224BF21A3760DFFD6C34C2 /* iOSAppUITestSuite.150.link.params */, DD502495CB3109F65CA688D4 /* LibFramework.tvOS.25.link.params */, - 332459BC670D666EA7012EB5 /* LibFramework.tvOS.92.link.params */, - 9E154375F216D66A9813FC1F /* LibFramework.tvOS.126.link.params */, - F7C6F397E7BC6DBFB9856EC3 /* LibFramework.tvOS.193.link.params */, + 85152F8199BDE8C247CC7DD9 /* LibFramework.tvOS.95.link.params */, + 60BD891A01D587BECDD7E0F1 /* LibFramework.tvOS.129.link.params */, + 67522D146ECE3E65AC4EAC8F /* LibFramework.tvOS.199.link.params */, D002685903F29106F8A65A46 /* LibFramework.watchOS.15.link.params */, - 85EC3C38F019CB68B8AA419D /* LibFramework.watchOS.82.link.params */, - 866BE0EBE966F99672F90B2A /* LibFramework.watchOS.116.link.params */, - 0A4E0F21AD561B6766EB604E /* LibFramework.watchOS.183.link.params */, + 4F600468FA4D277AD3CE8DDE /* LibFramework.watchOS.85.link.params */, + 285ED1B40DE8929A9F0E4C30 /* LibFramework.watchOS.119.link.params */, + 2EAB816E4DE0A5B5788F24B8 /* LibFramework.watchOS.189.link.params */, 0CC75255268D2BA5078ACC1B /* macOSApp.40.link.params */, - EB1DE82E864F48377EEB1DFC /* macOSApp.141.link.params */, + 37E5D2FE0DAAE7E72CD63FC4 /* macOSApp.144.link.params */, 8DB1BDAF1C736199956EB3A7 /* macOSAppUITests.41.link.params */, - BE86AE255316995240DD5995 /* macOSAppUITests.142.link.params */, + 01AE31C744AC333C8E7ADB43 /* macOSAppUITests.145.link.params */, 0F296009F7820C04C5FFC001 /* macOSLib.framework.39.link.params */, - 35658B20C1F8CF5B8BB9B46C /* macOSLib.framework.140.link.params */, - B141735282B4D8FEAEA243D4 /* proto.49.link.params */, - BAEA88262E011377444891A0 /* proto.150.link.params */, + 69152C21EABB50E9C024CCA0 /* macOSLib.framework.143.link.params */, + 337C1BA10E0563EE5689136F /* proto.50.link.params */, + E9BFEC0E46BAED7410A7BEF9 /* proto.154.link.params */, D50CC3FDBD2A9A04F6299696 /* tool.4.link.params */, - 0A65520BBB21CB0D145281D0 /* tool.105.link.params */, + 424CD5635D557F381C19E32A /* tool.108.link.params */, 06483C6ED81946150E50116C /* tvOS.23.link.params */, - DC040B206FA86D795A9C9552 /* tvOS.90.link.params */, - 2CA787C37F28A477C90877AA /* tvOS.124.link.params */, - BD8C927607878FB74C7658AC /* tvOS.191.link.params */, + 12601311D6470B9CF3C4F110 /* tvOS.93.link.params */, + 373D257A078F97EE00374227 /* tvOS.127.link.params */, + 873E10D4CDD1ABBAEA9503AC /* tvOS.197.link.params */, EDD65070BE1E2AAA25B39C00 /* tvOSApp.27.link.params */, - F335DC913DA2493012FF451B /* tvOSApp.94.link.params */, - 716BA5B4E8C676428E557F2A /* tvOSApp.128.link.params */, - 800A3FF7898B1B9CAE509855 /* tvOSApp.195.link.params */, + B2ACFE94F9EDABA7C9CC5FB4 /* tvOSApp.97.link.params */, + C55B62162D5580C11EAACD3E /* tvOSApp.131.link.params */, + 7BFCD4DBD51B65902B9DDEE9 /* tvOSApp.201.link.params */, 462E92F1BC6827B4F79F40DA /* tvOSAppUITests.42.link.params */, - 10CDE8F1FA50FE32EE1D2D83 /* tvOSAppUITests.143.link.params */, + D59EED0FB832EF5E99922BCE /* tvOSAppUITests.146.link.params */, 37CD84D37ED73BB9358614B4 /* tvOSAppUnitTests.43.link.params */, - DFBC6A3219D8EA41764DC3DE /* tvOSAppUnitTests.144.link.params */, + 35F12B6A8758B044E0E23A9F /* tvOSAppUnitTests.147.link.params */, BB6BE02C5A469FCF0AC32050 /* UIFramework.iOS.13.link.params */, - D5E4491383715A342257B15C /* UIFramework.iOS.80.link.params */, - 58A65A2237B8811406C30AE4 /* UIFramework.iOS.114.link.params */, - F8A88D97FD6EC0274A262A5F /* UIFramework.iOS.181.link.params */, + 32796DB7BC520FD0B4B4849C /* UIFramework.iOS.83.link.params */, + CFF1443BEA11D20C19811EAF /* UIFramework.iOS.117.link.params */, + 8FA2C781603CB07AB0B2AA26 /* UIFramework.iOS.187.link.params */, ADEDE2B5A20F0D2142C65C81 /* UIFramework.tvOS.26.link.params */, - 27D61A9176DFDDFE2A132B4F /* UIFramework.tvOS.93.link.params */, - 5BD15A127C11140CC56DF414 /* UIFramework.tvOS.127.link.params */, - AFDFC848EBF96572C7121710 /* UIFramework.tvOS.194.link.params */, + 5814551B308D21C55A0EC4DC /* UIFramework.tvOS.96.link.params */, + C8B9CB2B858585B9560D11CE /* UIFramework.tvOS.130.link.params */, + 1C362F9CE48FD341AE0F90F4 /* UIFramework.tvOS.200.link.params */, 0FE3F9FB629D547AA0E42114 /* UIFramework.watchOS.16.link.params */, - B3E356642E415E3B90FEAFEE /* UIFramework.watchOS.83.link.params */, - 1769FC8660C855984B603598 /* UIFramework.watchOS.117.link.params */, - 5BBB55A4862D5DE5B1943341 /* UIFramework.watchOS.184.link.params */, - 9F852A5E260ED309ABEB999E /* UniversalCommandLineTool.63.link.params */, - 6C3CB5F68E378F676D5B77C1 /* UniversalCommandLineTool.69.link.params */, - A9D8381D4E2E01753BF0C144 /* UniversalCommandLineTool.164.link.params */, + 25D5C10E9E98CC02290AE2CB /* UIFramework.watchOS.86.link.params */, + C6C8262DC0C610E218B41907 /* UIFramework.watchOS.120.link.params */, + 5DD4EF5797BAE2A71274C476 /* UIFramework.watchOS.190.link.params */, + 5553504FC08B3C2A703A48C3 /* UniversalCommandLineTool.66.link.params */, + DED77FD29B1A59D5D6D06911 /* UniversalCommandLineTool.72.link.params */, 08781E5C77EF5BAC278B80A1 /* UniversalCommandLineTool.170.link.params */, + FAB01312636CBE437EE71DCB /* UniversalCommandLineTool.176.link.params */, 32B285A8DAC003C1B585184F /* watchOS.24.link.params */, - 6E2DD1D541F300ED838E95AF /* watchOS.91.link.params */, - 7389D8A45D826AE66DD34BE3 /* watchOS.125.link.params */, - 014DB46CD9D68156DC64A1A3 /* watchOS.192.link.params */, + 3EA8C7DB11D39C17E196E121 /* watchOS.94.link.params */, + 76928F80645FE9205EC0302A /* watchOS.128.link.params */, + 6CED207A59579DA7A2D0274A /* watchOS.198.link.params */, FD208FC64918A9B402A2FB72 /* watchOSAppExtension.17.link.params */, - 365E76C53D496E3593C09771 /* watchOSAppExtension.84.link.params */, - E529021D31A5C0215BD7D95D /* watchOSAppExtension.118.link.params */, - 5D763C86B3F318AF5D3DC74D /* watchOSAppExtension.185.link.params */, + AEF104356FC08AE2BF0B7AEA /* watchOSAppExtension.87.link.params */, + 69E43DDDC51D47B6231B2C59 /* watchOSAppExtension.121.link.params */, + C1470E334BD5793AED15DEAF /* watchOSAppExtension.191.link.params */, 908761DE8B46E5DEC9D0430F /* watchOSAppExtensionUnitTests.45.link.params */, - D5AD798A803B36BB3EE35722 /* watchOSAppExtensionUnitTests.146.link.params */, + 1ECC7C78860BF7C244846FDF /* watchOSAppExtensionUnitTests.149.link.params */, A17B3637C2EAEFC973BFFBD3 /* watchOSAppUITests.44.link.params */, - 998A90B39FB08E639AFD669D /* watchOSAppUITests.145.link.params */, + 28E89A20CE963B4C904B38D3 /* watchOSAppUITests.148.link.params */, BB1D3A77E0F34876318CB3E1 /* WidgetExtension.11.link.params */, - A4D1111B999288A006FC93A5 /* WidgetExtension.78.link.params */, - C1D00F5C62CF97808BC53603 /* WidgetExtension.112.link.params */, - 4E964ED5567DFBB62C73C07C /* WidgetExtension.179.link.params */, + E7072BE34266A1CEEA4C03FA /* WidgetExtension.81.link.params */, + EF6BBA4330608281B06EC85B /* WidgetExtension.115.link.params */, + F8BB65326797F3616296E86A /* WidgetExtension.185.link.params */, ); path = "xcodeproj_bwb-params"; sourceTree = ""; @@ -3640,16 +3705,27 @@ 500318447D93A4EA6AA78258 /* GRPC */ = { isa = PBXGroup; children = ( + 6FBE1E2E1FE4DEF7A3C517BD /* echo_client_services_swift */, B684EF583811DEABF4670541 /* echo_client.merged_infoplist-intermediates */, + ED327F2DFF44B8DB3B78E52F /* echo_server_services_swift */, 7E2035FE43BFEF4C48C669E8 /* echo_server.merged_infoplist-intermediates */, 438F5C7670063EB800C2C02D /* rules_xcodeproj */, + E12E21948EAAA2718A02E2E6 /* echo_client_services_swift.rules_xcodeproj.swift.compile.params */, E02E7AC7E734D05D579EB445 /* echo_client.library.rules_xcodeproj.swift.compile.params */, - BB86B88CBE14FF577E538DE1 /* echo_proto-descriptor-set.proto.bin */, + 8E15C793B568F6E14D547CF2 /* echo_server_services_swift.rules_xcodeproj.swift.compile.params */, 215E227A05737685F3F4DB52 /* echo_server.library.rules_xcodeproj.swift.compile.params */, ); path = GRPC; sourceTree = ""; }; + 5124E09E74DA631BFD5E76CD /* gen */ = { + isa = PBXGroup; + children = ( + C76300BE3B0191D7670481DD /* GRPC */, + ); + path = gen; + sourceTree = ""; + }; 5129B22EA075A369B4334617 /* FrameworkCoreUtilsObjC */ = { isa = PBXGroup; children = ( @@ -3784,6 +3860,14 @@ path = Test; sourceTree = ""; }; + 5595B007E97FEE79CCAA5566 /* gen */ = { + isa = PBXGroup; + children = ( + E3AD43D10CD7D9B529EC4404 /* Proto */, + ); + path = gen; + sourceTree = ""; + }; 55B85BBFAB2B4568F3B78E26 /* CommandLineTool */ = { isa = PBXGroup; children = ( @@ -3920,7 +4004,7 @@ children = ( CCFEFF155F0460E12A0FE693 /* CommandLineTool */, DB91BF6F96E91E89643B3208 /* CommandLineToolLib */, - CFDDBD49F9F44F80F8408737 /* swift_c_module */, + CA8EC3EEAA5CFDA112EE0296 /* swift_interop_hint */, ); path = CommandLine; sourceTree = ""; @@ -4093,6 +4177,16 @@ path = CryptoSwift.xcframework; sourceTree = ""; }; + 606B126840F9D3B3F313F389 /* swift_interop_hint */ = { + isa = PBXGroup; + children = ( + F6EB9CCDA39E0A495CC91F44 /* BUILD */, + 69499F4F0302554471289142 /* c_lib.c */, + 6C4E81961C8D6DCAD8559E09 /* c_lib.h */, + ); + path = swift_interop_hint; + sourceTree = ""; + }; 60820AD86090FE38F7C3061B /* ExampleNestedResources-intermediates */ = { isa = PBXGroup; children = ( @@ -4110,6 +4204,14 @@ path = rules_xcodeproj; sourceTree = ""; }; + 61501E24A1E9AC7A60A154D8 /* gen */ = { + isa = PBXGroup; + children = ( + 9BE8CECBFDA0DD947E796A29 /* Proto */, + ); + path = gen; + sourceTree = ""; + }; 618F864B83E02528C59ADE59 /* Lib */ = { isa = PBXGroup; children = ( @@ -4253,6 +4355,14 @@ path = "examples_cc_external~"; sourceTree = ""; }; + 669E7249D08090C8E2F87714 /* swift_interop_hint */ = { + isa = PBXGroup; + children = ( + 7C4B5D0AF1ABC3EB0D953152 /* c_lib.rules_xcodeproj.c.compile.params */, + ); + path = swift_interop_hint; + sourceTree = ""; + }; 66D8739913180B125FA86068 /* bin */ = { isa = PBXGroup; children = ( @@ -4368,14 +4478,6 @@ path = "_main~non_module_deps~FXPageControl"; sourceTree = ""; }; - 6A9DF5D2E27796CFA8CF56A4 /* swift_c_module */ = { - isa = PBXGroup; - children = ( - 4C25CCE14C71D06AAF80C136 /* c_lib.rules_xcodeproj.c.compile.params */, - ); - path = swift_c_module; - sourceTree = ""; - }; 6AEBEA016ABF4416463B0DD5 /* lib3 */ = { isa = PBXGroup; children = ( @@ -4393,6 +4495,15 @@ path = FrameworkCoreUtilsObjC; sourceTree = ""; }; + 6BD07A57DC541E7512F08532 /* GRPC */ = { + isa = PBXGroup; + children = ( + 3C07E52B07D70121DAEA45C6 /* echo.grpc.swift */, + A9615ECBD49214C4C3921D8E /* echo.pb.swift */, + ); + path = GRPC; + sourceTree = ""; + }; 6BDBC57B3F3099884155104A /* rules_xcodeproj */ = { isa = PBXGroup; children = ( @@ -4477,6 +4588,14 @@ path = bin; sourceTree = ""; }; + 6FBE1E2E1FE4DEF7A3C517BD /* echo_client_services_swift */ = { + isa = PBXGroup; + children = ( + AC21DAC3719182F80E747ED2 /* gen */, + ); + path = echo_client_services_swift; + sourceTree = ""; + }; 70948A1F1AFDFD585FED0853 /* CONFIGURATION-STABLE-32 */ = { isa = PBXGroup; children = ( @@ -4508,7 +4627,7 @@ children = ( E2B5676C26612354C2386C3D /* CommandLineTool */, 7845A7FECFA4A7D485C33434 /* CommandLineToolLib */, - DB457754B5F00BC3F4BF1346 /* swift_c_module */, + A5B76602D7B3F386CF38D5CB /* swift_interop_hint */, 5BC9CDBFA9CCD8DE82242737 /* Tests */, ); path = CommandLine; @@ -4657,8 +4776,10 @@ 760FB1C2189F9E38562B5065 /* Proto */ = { isa = PBXGroup; children = ( + E32FC62C857F197ACE2AAF1E /* person_proto_swift */, 0B504968D04C8745F403C9F9 /* proto.merged_infoplist-intermediates */, CB81FC840C02E72613E78104 /* rules_xcodeproj */, + EBA3F6BB41BC010FB3F57CF9 /* person_proto_swift.rules_xcodeproj.swift.compile.params */, 50183366F0DFD33608F28F6E /* tool.library.rules_xcodeproj.swift.compile.params */, ); path = Proto; @@ -4709,7 +4830,7 @@ children = ( 43ABB3DE9FCB4CA1CDBA3143 /* CommandLineTool */, 4F4DDCCCD5F5926B9446277D /* CommandLineToolLib */, - 6A9DF5D2E27796CFA8CF56A4 /* swift_c_module */, + 98F58A6710A674C60253322E /* swift_interop_hint */, ); path = CommandLine; sourceTree = ""; @@ -4846,8 +4967,10 @@ 7BE439AB105C932010330D0E /* Proto */ = { isa = PBXGroup; children = ( + B05FFF8C887157307B520AEE /* person_proto_swift */, AF348D15AD412B4626AF5FB2 /* proto.merged_infoplist-intermediates */, 1313A5ABCE06471A3B2242B2 /* rules_xcodeproj */, + FA2D73C975C4C080E2BDA419 /* person_proto_swift.rules_xcodeproj.swift.compile.params */, AD5AA5B6CAF4FF4AD2DF011E /* tool.library.rules_xcodeproj.swift.compile.params */, ); path = Proto; @@ -4952,6 +5075,15 @@ path = CoreUtilsObjC; sourceTree = ""; }; + 82BB402BDBD7C4B302580E7F /* GRPC */ = { + isa = PBXGroup; + children = ( + 32EC55AFB1089E19FEB72AFB /* echo.grpc.swift */, + A9713154E5DF5A99B6A3867C /* echo.pb.swift */, + ); + path = GRPC; + sourceTree = ""; + }; 831F242AD540419D47554540 /* CONFIGURATION-STABLE-16 */ = { isa = PBXGroup; children = ( @@ -5121,6 +5253,8 @@ 2FEAE05EEEA6790E5E797A79 /* libcc_lib_defines.a */, B2C9DD5B6CFD64BA881EB20F /* libcc_lib_impl.a */, 7EBC1AE0B910E97EDFB37859 /* libcc_lib_impl.lo */, + 9C493F8766B53632637000EB /* libecho_client_services_swift.a */, + D269C6D851AEDF67591F617A /* libecho_server_services_swift.a */, 1D1177806FD1B277EEDB91BB /* LibFramework.tvOS.framework */, 222CF04F551342682A2DEA9D /* LibFramework.watchOS.framework */, A72784148E298BC9F8822CE8 /* libFXPageControl.a */, @@ -5135,6 +5269,7 @@ 7424BC403C054ADC85D79517 /* libLib.a */, B0585D439244193C4A4B5F91 /* libMixedAnswer.a */, A2A8FD058DE329954EC8EA34 /* libMixedAnswerLib_Swift.a */, + 171D783B2681A7FA0E0F900D /* libperson_proto_swift.a */, 5E6C4E6525A4986135D3D464 /* libprivate_lib.a */, C2B2DE96EAD2CCE2B80B9B69 /* libprivate_lib.a */, A0F9E920EF76C06757221FE8 /* libprivate_lib.a */, @@ -5174,14 +5309,6 @@ path = iMessageApp; sourceTree = ""; }; - 8A3AE12CEADA4F4BAA87EB1C /* swift_c_module */ = { - isa = PBXGroup; - children = ( - B0B74FBB84611AC1427E1D68 /* c_lib.rules_xcodeproj.c.compile.params */, - ); - path = swift_c_module; - sourceTree = ""; - }; 8AF2298612322E19A7D7F152 /* rules_xcodeproj */ = { isa = PBXGroup; children = ( @@ -5434,14 +5561,6 @@ path = watchOSApp; sourceTree = ""; }; - 948597A4DAE849A3D7B20551 /* swift_c_module */ = { - isa = PBXGroup; - children = ( - AD18BFEEE37783CFEF25C535 /* c_lib.rules_xcodeproj.c.compile.params */, - ); - path = swift_c_module; - sourceTree = ""; - }; 950DDD9F027BF2386205EE18 /* rules_xcodeproj */ = { isa = PBXGroup; children = ( @@ -5580,6 +5699,14 @@ path = TestingUtils; sourceTree = ""; }; + 98F58A6710A674C60253322E /* swift_interop_hint */ = { + isa = PBXGroup; + children = ( + 9A899C89208B97E1CAFA5DA9 /* c_lib.rules_xcodeproj.c.compile.params */, + ); + path = swift_interop_hint; + sourceTree = ""; + }; 990387431C61546182A69CFC /* Source */ = { isa = PBXGroup; children = ( @@ -5634,6 +5761,14 @@ path = MixedAnswer; sourceTree = ""; }; + 9BE8CECBFDA0DD947E796A29 /* Proto */ = { + isa = PBXGroup; + children = ( + E9F7AFA9AF275CD0BE87B112 /* Person.pb.swift */, + ); + path = Proto; + sourceTree = ""; + }; 9C2AE15134F1142C21DC0B3E /* _main~non_module_deps~FXPageControl */ = { isa = PBXGroup; children = ( @@ -5684,7 +5819,6 @@ children = ( A59D934A5407069C77D3AEF8 /* BUILD */, 807438DF70F38B5587CA5799 /* client_main.swift */, - 02A4079A550BE2060E2BD30A /* echo.proto */, 789852BB553F81B751FA4D9C /* Info.plist */, B21D98E4CA7FF10FC00084A3 /* server_main.swift */, ); @@ -5849,6 +5983,14 @@ path = Lib; sourceTree = ""; }; + A5B76602D7B3F386CF38D5CB /* swift_interop_hint */ = { + isa = PBXGroup; + children = ( + 14A72D7948A9048D0CB53DDC /* c_lib.rules_xcodeproj.c.compile.params */, + ); + path = swift_interop_hint; + sourceTree = ""; + }; A5BA2B33D5FA4FA931EEC4A9 /* rules_xcodeproj */ = { isa = PBXGroup; children = ( @@ -5983,6 +6125,14 @@ path = bin; sourceTree = ""; }; + AA7DCC04F94CD99D2A7ACBCB /* gen */ = { + isa = PBXGroup; + children = ( + 82BB402BDBD7C4B302580E7F /* GRPC */, + ); + path = gen; + sourceTree = ""; + }; AB0ED221FF676ADE1FD16CC3 /* CommandLineToolTests.__internal__.__test_bundle */ = { isa = PBXGroup; children = ( @@ -6007,6 +6157,14 @@ path = dist; sourceTree = ""; }; + AC21DAC3719182F80E747ED2 /* gen */ = { + isa = PBXGroup; + children = ( + 21D36EFA059D3950006895A0 /* GRPC */, + ); + path = gen; + sourceTree = ""; + }; AD49FF817377D24E2648C463 /* ios-arm64_armv7 */ = { isa = PBXGroup; children = ( @@ -6041,6 +6199,14 @@ path = watchOS; sourceTree = ""; }; + B05FFF8C887157307B520AEE /* person_proto_swift */ = { + isa = PBXGroup; + children = ( + 5595B007E97FEE79CCAA5566 /* gen */, + ); + path = person_proto_swift; + sourceTree = ""; + }; B070102282603C351F6725CF /* OnlyStructuredResources-intermediates */ = { isa = PBXGroup; children = ( @@ -6073,14 +6239,6 @@ path = "CommandLineTool.merged_launchdplists-intermediates"; sourceTree = ""; }; - B194A00C51FBC0490E0A1325 /* swift_c_module */ = { - isa = PBXGroup; - children = ( - 5D8EFCD7001ACF6858BEE400 /* c_lib.rules_xcodeproj.c.compile.params */, - ); - path = swift_c_module; - sourceTree = ""; - }; B22B24386F604AF2F644DB66 /* _main~non_module_deps~FXPageControl */ = { isa = PBXGroup; children = ( @@ -6556,6 +6714,15 @@ path = lib2; sourceTree = ""; }; + C76300BE3B0191D7670481DD /* GRPC */ = { + isa = PBXGroup; + children = ( + 31DA05FD726F38E72910F6A9 /* echo.grpc.swift */, + 042EAB96DA763E9A1F7AD3BA /* echo.pb.swift */, + ); + path = GRPC; + sourceTree = ""; + }; C7795AD921AE37EE4F5C6E09 /* Resources */ = { isa = PBXGroup; children = ( @@ -6632,6 +6799,14 @@ path = bin; sourceTree = ""; }; + CA8EC3EEAA5CFDA112EE0296 /* swift_interop_hint */ = { + isa = PBXGroup; + children = ( + 4D7B8EDB90990CC7C8C08992 /* c_lib.rules_xcodeproj.c.compile.params */, + ); + path = swift_interop_hint; + sourceTree = ""; + }; CB81FC840C02E72613E78104 /* rules_xcodeproj */ = { isa = PBXGroup; children = ( @@ -6769,14 +6944,6 @@ path = ExternalResources.bundle; sourceTree = ""; }; - CFDDBD49F9F44F80F8408737 /* swift_c_module */ = { - isa = PBXGroup; - children = ( - 7F7B90BF0D5BB36A3FE6D4AC /* c_lib.rules_xcodeproj.c.compile.params */, - ); - path = swift_c_module; - sourceTree = ""; - }; D0659EF82F94D65E8F5F4512 /* UIFramework.tvOS */ = { isa = PBXGroup; children = ( @@ -6882,7 +7049,7 @@ children = ( D1A6B72E4C98DC7C08FB1ADC /* CommandLineTool */, DFEC96486183189B40E7020D /* CommandLineToolLib */, - 037B220AA320614288093D94 /* swift_c_module */, + 606B126840F9D3B3F313F389 /* swift_interop_hint */, 69414082692A8C76089B7BA0 /* Tests */, ); path = CommandLine; @@ -6978,20 +7145,12 @@ path = dist; sourceTree = ""; }; - DB457754B5F00BC3F4BF1346 /* swift_c_module */ = { - isa = PBXGroup; - children = ( - 1CBB5F089D270189983E2E42 /* c_lib.rules_xcodeproj.c.compile.params */, - ); - path = swift_c_module; - sourceTree = ""; - }; DB53B4BACFB90C98D06358F8 /* CommandLine */ = { isa = PBXGroup; children = ( 432C07F4F20FEB2D4EC74A00 /* CommandLineTool */, 3B10FD57F5C22A7AB340484E /* CommandLineToolLib */, - B194A00C51FBC0490E0A1325 /* swift_c_module */, + 669E7249D08090C8E2F87714 /* swift_interop_hint */, 9FD8B86EC03BF0286ADF4842 /* Tests */, ); path = CommandLine; @@ -7100,6 +7259,14 @@ path = ExampleNestedResources; sourceTree = ""; }; + DDE83335E88EACD2ABEB3993 /* swift_interop_hint */ = { + isa = PBXGroup; + children = ( + 2F4A69CDBEE6AE5225481906 /* c_lib.rules_xcodeproj.c.compile.params */, + ); + path = swift_interop_hint; + sourceTree = ""; + }; DDEE9D7004AE8B98EBB173BB /* watchOSApp */ = { isa = PBXGroup; children = ( @@ -7254,6 +7421,14 @@ path = iOSAppSwiftUnitTests.__internal__.__test_bundle; sourceTree = ""; }; + E32FC62C857F197ACE2AAF1E /* person_proto_swift */ = { + isa = PBXGroup; + children = ( + 61501E24A1E9AC7A60A154D8 /* gen */, + ); + path = person_proto_swift; + sourceTree = ""; + }; E332D4AB75A0E1AD97A18DAF /* Resources */ = { isa = PBXGroup; children = ( @@ -7287,6 +7462,14 @@ path = tool; sourceTree = ""; }; + E3AD43D10CD7D9B529EC4404 /* Proto */ = { + isa = PBXGroup; + children = ( + 96E026E8D442AD20EE4D58C9 /* Person.pb.swift */, + ); + path = Proto; + sourceTree = ""; + }; E3DA27C11E07A41A8352DAA1 /* rules_xcodeproj */ = { isa = PBXGroup; children = ( @@ -7512,6 +7695,14 @@ path = WidgetExtension; sourceTree = ""; }; + ED327F2DFF44B8DB3B78E52F /* echo_server_services_swift */ = { + isa = PBXGroup; + children = ( + AA7DCC04F94CD99D2A7ACBCB /* gen */, + ); + path = echo_server_services_swift; + sourceTree = ""; + }; ED75DB1C68F7533C6F114FE5 /* CommandLineTool.merged_infoplist-intermediates */ = { isa = PBXGroup; children = ( @@ -7689,6 +7880,14 @@ path = OnlyStructuredResources; sourceTree = ""; }; + F459D320EFBFE4E807ACDB80 /* gen */ = { + isa = PBXGroup; + children = ( + 6BD07A57DC541E7512F08532 /* GRPC */, + ); + path = gen; + sourceTree = ""; + }; F4E6FACFCDF18072F01A75DA /* CommandLineTool.merged_infoplist-intermediates */ = { isa = PBXGroup; children = ( @@ -7732,6 +7931,14 @@ path = bin; sourceTree = ""; }; + F71CBB270DC037FB6F5A3D3F /* swift_interop_hint */ = { + isa = PBXGroup; + children = ( + 550218D58AFE5B00CDEAE43C /* c_lib.rules_xcodeproj.c.compile.params */, + ); + path = swift_interop_hint; + sourceTree = ""; + }; F73AAB1FB85D63428B515A78 /* iOSAppObjCUnitTests.__internal__.__test_bundle */ = { isa = PBXGroup; children = ( @@ -8201,6 +8408,23 @@ productReference = 2389FC2E3790FF01911CDBCC /* iOSAppObjCUnitTests.xctest */; productType = "com.apple.product-type.bundle.unit-test"; }; + 447578DA2EC5FC0562E27537 /* echo_client_services_swift */ = { + isa = PBXNativeTarget; + buildConfigurationList = AA397E9A09754A3D09692899 /* Build configuration list for PBXNativeTarget "echo_client_services_swift" */; + buildPhases = ( + DBE4C75EAC2470814BB0FD8F /* Copy Bazel Outputs / Generate Bazel Dependencies (Index Build) */, + 1364CB2F05625DC6363DED09 /* Create Compile Dependencies */, + 55BE52E199A052FECE6F266C /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + F295ADD3AD33893CA818A1BC /* PBXTargetDependency */, + ); + name = echo_client_services_swift; + productName = echo_client_services_swift; + productType = "com.apple.product-type.library.static"; + }; 47BF73AB930EF064315198C4 /* @@//cc/lib2:cc_lib_impl */ = { isa = PBXNativeTarget; buildConfigurationList = 2C86F7DCB87E5FB6C25D1617 /* Build configuration list for PBXNativeTarget "@@//cc/lib2:cc_lib_impl" */; @@ -8794,6 +9018,23 @@ productName = private_lib; productType = "com.apple.product-type.library.static"; }; + AF222E48AA122A5A928AF4D9 /* echo_server_services_swift */ = { + isa = PBXNativeTarget; + buildConfigurationList = AED07876CB9C7E3A6CEF343F /* Build configuration list for PBXNativeTarget "echo_server_services_swift" */; + buildPhases = ( + A26CD5AEAE39B55C292A24B9 /* Copy Bazel Outputs / Generate Bazel Dependencies (Index Build) */, + 64CD678F370DE7AA95245546 /* Create Compile Dependencies */, + 121825DF645ADEFE8EF08BF5 /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + 1DC4A965BF36C18F355826EC /* PBXTargetDependency */, + ); + name = echo_server_services_swift; + productName = echo_server_services_swift; + productType = "com.apple.product-type.library.static"; + }; B921D1A513161BE6BAD826B3 /* MixedAnswerLib_Swift */ = { isa = PBXNativeTarget; buildConfigurationList = 4B01695F69D3879AFAE19DCF /* Build configuration list for PBXNativeTarget "MixedAnswerLib_Swift" */; @@ -9034,6 +9275,23 @@ productReference = 66E4E06396F34EA685DC743C /* echo_client */; productType = "com.apple.product-type.tool"; }; + EA74BA2B8275C6D559E78DC6 /* Proto_person_proto */ = { + isa = PBXNativeTarget; + buildConfigurationList = C634A57372B011004DF0626B /* Build configuration list for PBXNativeTarget "Proto_person_proto" */; + buildPhases = ( + B78B2412B8877F82F62AE7A7 /* Copy Bazel Outputs / Generate Bazel Dependencies (Index Build) */, + 741E7EB6E0568AACE462EA28 /* Create Compile Dependencies */, + EE509DBC3C088504FCFD444B /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + 88712C49317127B18137063A /* PBXTargetDependency */, + ); + name = Proto_person_proto; + productName = person_proto_swift; + productType = "com.apple.product-type.library.static"; + }; EACAA4186ECECF71B7BC09C6 /* tvOS */ = { isa = PBXNativeTarget; buildConfigurationList = 00121B99D93E11CCDD1C735A /* Build configuration list for PBXNativeTarget "tvOS" */; @@ -9196,6 +9454,10 @@ LastSwiftMigration = 9999; TestTargetID = 1765D91CC168F25A5BC51603; }; + 447578DA2EC5FC0562E27537 = { + CreatedOnToolsVersion = 13.0.0; + LastSwiftMigration = 9999; + }; 47BF73AB930EF064315198C4 = { CreatedOnToolsVersion = 13.0.0; LastSwiftMigration = 9999; @@ -9335,6 +9597,10 @@ CreatedOnToolsVersion = 13.0.0; LastSwiftMigration = 9999; }; + AF222E48AA122A5A928AF4D9 = { + CreatedOnToolsVersion = 13.0.0; + LastSwiftMigration = 9999; + }; B921D1A513161BE6BAD826B3 = { CreatedOnToolsVersion = 13.0.0; LastSwiftMigration = 9999; @@ -9391,6 +9657,10 @@ CreatedOnToolsVersion = 13.0.0; LastSwiftMigration = 9999; }; + EA74BA2B8275C6D559E78DC6 = { + CreatedOnToolsVersion = 13.0.0; + LastSwiftMigration = 9999; + }; EACAA4186ECECF71B7BC09C6 = { CreatedOnToolsVersion = 13.0.0; LastSwiftMigration = 9999; @@ -9442,7 +9712,9 @@ 5826810F86C049E80D55353A /* CommandLineToolTests */, 64AE6000A6317B9C077F3B1E /* CoreUtilsObjC */, E9B0C0FFF420D465D4D33BF7 /* echo_client */, + 447578DA2EC5FC0562E27537 /* echo_client_services_swift */, 3459622C5DCAB17AD407EDD0 /* echo_server */, + AF222E48AA122A5A928AF4D9 /* echo_server_services_swift */, 703D7AC89C4B9C9E4B61A58F /* FXPageControl */, 343F031FB3DF1E87C3568525 /* iMessageApp */, 2BECDF067E07C69468ED23A3 /* iMessageAppExtension */, @@ -9474,6 +9746,7 @@ AF11E722BA9BCF53C61F7164 /* private_lib (x86_64) (71903) */, 37D05758D32A0420EE31EBE0 /* private_lib (x86_64) (c75a6) */, 1178EE46AC9E6ACA0C5B0323 /* proto */, + EA74BA2B8275C6D559E78DC6 /* Proto_person_proto */, F175A7E1019A952CA7F66BBC /* TestingUtils */, 27EDD304E889980DC176FF62 /* tool */, EACAA4186ECECF71B7BC09C6 /* tvOS */, @@ -9669,6 +9942,23 @@ shellScript = "set -euo pipefail\n\nif [[ \"$ACTION\" == \"indexbuild\" ]]; then\n cd \"$SRCROOT\"\n\n \"$BAZEL_INTEGRATION_DIR/generate_index_build_bazel_dependencies.sh\"\nelse\n \"$BAZEL_INTEGRATION_DIR/copy_outputs.sh\" \\\n \"_BazelForcedCompile_.swift\" \\\n \"\"\nfi\n"; showEnvVarsInLog = 0; }; + 1364CB2F05625DC6363DED09 /* Create Compile Dependencies */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputPaths = ( + "$(SWIFT_PARAMS_FILE)", + ); + name = "Create Compile Dependencies"; + outputPaths = ( + "$(DERIVED_FILE_DIR)/swift.compile.params", + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "set -euo pipefail\n\nperl -pe '\n s/__BAZEL_XCODE_DEVELOPER_DIR__/\\$(DEVELOPER_DIR)/g;\n s/__BAZEL_XCODE_SDKROOT__/\\$(SDKROOT)/g;\n s/\\$(\\()?([a-zA-Z_]\\w*)(?(1)\\))/$ENV{$2}/gx;\n' \"$SCRIPT_INPUT_FILE_0\" > \"$SCRIPT_OUTPUT_FILE_0\"\n"; + showEnvVarsInLog = 0; + }; 17AF25F7D42AE6AC290294D6 /* Create Compile Dependencies */ = { isa = PBXShellScriptBuildPhase; buildActionMask = 2147483647; @@ -10546,6 +10836,23 @@ shellScript = "set -euo pipefail\n\nif [[ \"$ACTION\" == \"indexbuild\" ]]; then\n cd \"$SRCROOT\"\n\n \"$BAZEL_INTEGRATION_DIR/generate_index_build_bazel_dependencies.sh\"\nelse\n \"$BAZEL_INTEGRATION_DIR/copy_outputs.sh\" \\\n \"_BazelForcedCompile_.swift\" \\\n \"\"\nfi\n"; showEnvVarsInLog = 0; }; + 64CD678F370DE7AA95245546 /* Create Compile Dependencies */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputPaths = ( + "$(SWIFT_PARAMS_FILE)", + ); + name = "Create Compile Dependencies"; + outputPaths = ( + "$(DERIVED_FILE_DIR)/swift.compile.params", + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "set -euo pipefail\n\nperl -pe '\n s/__BAZEL_XCODE_DEVELOPER_DIR__/\\$(DEVELOPER_DIR)/g;\n s/__BAZEL_XCODE_SDKROOT__/\\$(SDKROOT)/g;\n s/\\$(\\()?([a-zA-Z_]\\w*)(?(1)\\))/$ENV{$2}/gx;\n' \"$SCRIPT_INPUT_FILE_0\" > \"$SCRIPT_OUTPUT_FILE_0\"\n"; + showEnvVarsInLog = 0; + }; 67983698B1BB9E6420AC3872 /* Create Compile Dependencies */ = { isa = PBXShellScriptBuildPhase; buildActionMask = 2147483647; @@ -10680,6 +10987,23 @@ shellScript = "set -euo pipefail\n\nif [[ \"$ACTION\" == \"indexbuild\" ]]; then\n cd \"$SRCROOT\"\n\n \"$BAZEL_INTEGRATION_DIR/generate_index_build_bazel_dependencies.sh\"\nelse\n \"$BAZEL_INTEGRATION_DIR/copy_outputs.sh\" \\\n \"_BazelForcedCompile_.swift\" \\\n \"\"\nfi\n"; showEnvVarsInLog = 0; }; + 741E7EB6E0568AACE462EA28 /* Create Compile Dependencies */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputPaths = ( + "$(SWIFT_PARAMS_FILE)", + ); + name = "Create Compile Dependencies"; + outputPaths = ( + "$(DERIVED_FILE_DIR)/swift.compile.params", + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "set -euo pipefail\n\nperl -pe '\n s/__BAZEL_XCODE_DEVELOPER_DIR__/\\$(DEVELOPER_DIR)/g;\n s/__BAZEL_XCODE_SDKROOT__/\\$(SDKROOT)/g;\n s/\\$(\\()?([a-zA-Z_]\\w*)(?(1)\\))/$ENV{$2}/gx;\n' \"$SCRIPT_INPUT_FILE_0\" > \"$SCRIPT_OUTPUT_FILE_0\"\n"; + showEnvVarsInLog = 0; + }; 755E7BFB3E956E06F2425F62 /* Create Link Dependencies */ = { isa = PBXShellScriptBuildPhase; buildActionMask = 2147483647; @@ -11336,6 +11660,22 @@ shellScript = "set -euo pipefail\n\nif [[ \"$ACTION\" == \"indexbuild\" ]]; then\n cd \"$SRCROOT\"\n\n \"$BAZEL_INTEGRATION_DIR/generate_index_build_bazel_dependencies.sh\"\nelse\n \"$BAZEL_INTEGRATION_DIR/copy_outputs.sh\" \\\n \"_BazelForcedCompile_.swift\" \\\n \"\"\nfi\n"; showEnvVarsInLog = 0; }; + A26CD5AEAE39B55C292A24B9 /* Copy Bazel Outputs / Generate Bazel Dependencies (Index Build) */ = { + isa = PBXShellScriptBuildPhase; + alwaysOutOfDate = 1; + buildActionMask = 2147483647; + files = ( + ); + inputPaths = ( + ); + name = "Copy Bazel Outputs / Generate Bazel Dependencies (Index Build)"; + outputPaths = ( + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "set -euo pipefail\n\nif [[ \"$ACTION\" == \"indexbuild\" ]]; then\n cd \"$SRCROOT\"\n\n \"$BAZEL_INTEGRATION_DIR/generate_index_build_bazel_dependencies.sh\"\nelse\n \"$BAZEL_INTEGRATION_DIR/copy_outputs.sh\" \\\n \"_BazelForcedCompile_.swift\" \\\n \"\"\nfi\n"; + showEnvVarsInLog = 0; + }; A43E993CDA926A728BCFAA56 /* Create Link Dependencies */ = { isa = PBXShellScriptBuildPhase; buildActionMask = 2147483647; @@ -11537,6 +11877,22 @@ shellScript = "set -euo pipefail\n\nif [[ \"$ACTION\" == \"indexbuild\" ]]; then\n cd \"$SRCROOT\"\n\n \"$BAZEL_INTEGRATION_DIR/generate_index_build_bazel_dependencies.sh\"\nelse\n \"$BAZEL_INTEGRATION_DIR/copy_outputs.sh\" \\\n \"_BazelForcedCompile_.swift\" \\\n \"\"\nfi\n"; showEnvVarsInLog = 0; }; + B78B2412B8877F82F62AE7A7 /* Copy Bazel Outputs / Generate Bazel Dependencies (Index Build) */ = { + isa = PBXShellScriptBuildPhase; + alwaysOutOfDate = 1; + buildActionMask = 2147483647; + files = ( + ); + inputPaths = ( + ); + name = "Copy Bazel Outputs / Generate Bazel Dependencies (Index Build)"; + outputPaths = ( + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "set -euo pipefail\n\nif [[ \"$ACTION\" == \"indexbuild\" ]]; then\n cd \"$SRCROOT\"\n\n \"$BAZEL_INTEGRATION_DIR/generate_index_build_bazel_dependencies.sh\"\nelse\n \"$BAZEL_INTEGRATION_DIR/copy_outputs.sh\" \\\n \"_BazelForcedCompile_.swift\" \\\n \"\"\nfi\n"; + showEnvVarsInLog = 0; + }; B8DAD4D5E102EF1BEB0D4D68 /* Copy Bazel Outputs / Generate Bazel Dependencies (Index Build) */ = { isa = PBXShellScriptBuildPhase; alwaysOutOfDate = 1; @@ -11941,6 +12297,22 @@ shellScript = "set -euo pipefail\n\nperl -pe '\n s/__BAZEL_XCODE_DEVELOPER_DIR__/\\$(DEVELOPER_DIR)/g;\n s/__BAZEL_XCODE_SDKROOT__/\\$(SDKROOT)/g;\n s/\\$(\\()?([a-zA-Z_]\\w*)(?(1)\\))/$ENV{$2}/gx;\n' \"$SCRIPT_INPUT_FILE_0\" > \"$SCRIPT_OUTPUT_FILE_0\"\n"; showEnvVarsInLog = 0; }; + DBE4C75EAC2470814BB0FD8F /* Copy Bazel Outputs / Generate Bazel Dependencies (Index Build) */ = { + isa = PBXShellScriptBuildPhase; + alwaysOutOfDate = 1; + buildActionMask = 2147483647; + files = ( + ); + inputPaths = ( + ); + name = "Copy Bazel Outputs / Generate Bazel Dependencies (Index Build)"; + outputPaths = ( + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "set -euo pipefail\n\nif [[ \"$ACTION\" == \"indexbuild\" ]]; then\n cd \"$SRCROOT\"\n\n \"$BAZEL_INTEGRATION_DIR/generate_index_build_bazel_dependencies.sh\"\nelse\n \"$BAZEL_INTEGRATION_DIR/copy_outputs.sh\" \\\n \"_BazelForcedCompile_.swift\" \\\n \"\"\nfi\n"; + showEnvVarsInLog = 0; + }; DF38DF076C85A570C158D044 /* Create Link Dependencies */ = { isa = PBXShellScriptBuildPhase; buildActionMask = 2147483647; @@ -12405,6 +12777,17 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 121825DF645ADEFE8EF08BF5 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 6872CCAE01F2AE83AAE9136A /* echo.pb.swift in Sources */, + 835632EF9C156819BBDE4EC2 /* echo.grpc.swift in Sources */, + AF75DA7CDF22A9CB6C708FA3 /* echo.pb.swift in Sources */, + 5AD68F1BD1317EAEC715DBEB /* echo.grpc.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; 15322DF874F00827818A46D2 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -12417,7 +12800,7 @@ isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 9BE67DD7D6F1660FE925C2C8 /* c_lib.c in Sources */, + 72D8F74711C833F81E9507EA /* c_lib.c in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -12441,7 +12824,7 @@ isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 07ED4FAC271EDB8E59AFF1B5 /* c_lib.c in Sources */, + 34687500A1161E011E782206 /* c_lib.c in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -12547,11 +12930,22 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 55BE52E199A052FECE6F266C /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 2908E74CB908D0ADA0A19A04 /* echo.grpc.swift in Sources */, + 16B93F5D76A14B8F770C3985 /* echo.pb.swift in Sources */, + 14C638B0DB6BEA2B7951FF0E /* echo.grpc.swift in Sources */, + 7B6B66D68D5E68D1D53CDEA1 /* echo.pb.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; 5785D4BC65EFDECE4B7A6E93 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 9CD61643F56424D4F4C2E4AD /* c_lib.c in Sources */, + 185A5DA00CDEFDCD68754340 /* c_lib.c in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -12903,6 +13297,15 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + EE509DBC3C088504FCFD444B /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + F6BF1651E8841B85A15D140C /* Person.pb.swift in Sources */, + 24CFE354B7E2058E8F0E5110 /* Person.pb.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; F36B921A49582A50EA7A6644 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -12995,6 +13398,12 @@ target = 7E7D155EBCA520F35DEA3571 /* BazelDependencies */; targetProxy = 334E33C35297EDCE3D14FD82 /* PBXContainerItemProxy */; }; + 1DC4A965BF36C18F355826EC /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = BazelDependencies; + target = 7E7D155EBCA520F35DEA3571 /* BazelDependencies */; + targetProxy = D3CE7840CE14A94748E2EA9E /* PBXContainerItemProxy */; + }; 216ACAA73877561C3F7572A9 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = tvOSApp; @@ -13205,6 +13614,12 @@ target = 7E7D155EBCA520F35DEA3571 /* BazelDependencies */; targetProxy = FF6FA2EADC7242D8278515D8 /* PBXContainerItemProxy */; }; + 88712C49317127B18137063A /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = BazelDependencies; + target = 7E7D155EBCA520F35DEA3571 /* BazelDependencies */; + targetProxy = 16FF8EFB7626EB446C615771 /* PBXContainerItemProxy */; + }; 895042EDCC96B46AB2E119D2 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = BazelDependencies; @@ -13421,6 +13836,12 @@ target = 7E7D155EBCA520F35DEA3571 /* BazelDependencies */; targetProxy = 3207304E24A789F062BCC801 /* PBXContainerItemProxy */; }; + F295ADD3AD33893CA818A1BC /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = BazelDependencies; + target = 7E7D155EBCA520F35DEA3571 /* BazelDependencies */; + targetProxy = A40E66A0E634958A8564586B /* PBXContainerItemProxy */; + }; F39D05D495FE00BE1965A7CD /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = BazelDependencies; @@ -13506,7 +13927,7 @@ "BAZEL_TARGET_ID[sdk=macosx*]" = "$(BAZEL_TARGET_ID)"; COMPILE_TARGET_NAME = lib_swift; MACOSX_DEPLOYMENT_TARGET = 11.0; - OTHER_SWIFT_FLAGS = "-Xcc -working-directory -Xcc $(PROJECT_DIR) -working-directory $(PROJECT_DIR) -Xcc -ivfsoverlay -Xcc $(OBJROOT)/bazel-out-overlay.yaml -vfsoverlay $(OBJROOT)/bazel-out-overlay.yaml @$(DERIVED_FILE_DIR)/swift.compile.params -I$(BAZEL_OUT)/CONFIGURATION-STABLE-30/bin/CommandLine/CommandLineToolLib -F$(BAZEL_EXTERNAL)/examples_command_line_external -Xcc -F -Xcc $(BAZEL_EXTERNAL)/examples_command_line_external -Xcc -I -Xcc $(SDKROOT)/usr/include/uuid -Xcc -iquote -Xcc $(PROJECT_DIR) -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-30/bin -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/examples_command_line_external -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-30/bin/external/examples_command_line_external -Xcc -DSECRET_3=\"Hello\" -Xcc -DSECRET_2=\"World!\" -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-30/bin/CommandLine/CommandLineToolLib/lib_impl.swift.modulemap -Xcc -fmodule-map-file=$(SRCROOT)/CommandLine/swift_c_module/c_lib.modulemap -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/examples_command_line_external/ExternalFramework.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-30/bin/external/examples_command_line_external/Library.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-30/bin/CommandLine/CommandLineToolLib/private_lib.swift.modulemap -Xcc -Os -Xcc -DNDEBUG=1 -Xcc -Wno-unused-variable -Xcc -Winit-self -Xcc -Wno-extra"; + OTHER_SWIFT_FLAGS = "-Xcc -working-directory -Xcc $(PROJECT_DIR) -working-directory $(PROJECT_DIR) -Xcc -ivfsoverlay -Xcc $(OBJROOT)/bazel-out-overlay.yaml -vfsoverlay $(OBJROOT)/bazel-out-overlay.yaml @$(DERIVED_FILE_DIR)/swift.compile.params -I$(BAZEL_OUT)/CONFIGURATION-STABLE-30/bin/CommandLine/CommandLineToolLib -F$(BAZEL_EXTERNAL)/examples_command_line_external -Xcc -F -Xcc $(BAZEL_EXTERNAL)/examples_command_line_external -Xcc -I -Xcc $(SDKROOT)/usr/include/uuid -Xcc -iquote -Xcc $(PROJECT_DIR) -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-30/bin -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/examples_command_line_external -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-30/bin/external/examples_command_line_external -Xcc -DSECRET_3=\"Hello\" -Xcc -DSECRET_2=\"World!\" -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-30/bin/CommandLine/CommandLineToolLib/lib_impl_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(SRCROOT)/CommandLine/swift_interop_hint/c_lib.modulemap -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/examples_command_line_external/ExternalFramework.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-30/bin/external/examples_command_line_external/Library_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-30/bin/CommandLine/CommandLineToolLib/private_lib_modulemap/_/module.modulemap -Xcc -Os -Xcc -DNDEBUG=1 -Xcc -Wno-unused-variable -Xcc -Winit-self -Xcc -Wno-extra"; PRODUCT_MODULE_NAME = LibSwift; PRODUCT_NAME = lib_swift; SDKROOT = macosx; @@ -13528,7 +13949,7 @@ "BAZEL_TARGET_ID[sdk=macosx*]" = "$(BAZEL_TARGET_ID)"; COMPILE_TARGET_NAME = lib_swift; MACOSX_DEPLOYMENT_TARGET = 11.0; - OTHER_SWIFT_FLAGS = "-Xcc -working-directory -Xcc $(PROJECT_DIR) -working-directory $(PROJECT_DIR) -Xcc -ivfsoverlay -Xcc $(OBJROOT)/bazel-out-overlay.yaml -vfsoverlay $(OBJROOT)/bazel-out-overlay.yaml @$(DERIVED_FILE_DIR)/swift.compile.params -I$(BAZEL_OUT)/CONFIGURATION-STABLE-29/bin/CommandLine/CommandLineToolLib -F$(BAZEL_EXTERNAL)/examples_command_line_external -Xcc -F -Xcc $(BAZEL_EXTERNAL)/examples_command_line_external -Xcc -I -Xcc $(SDKROOT)/usr/include/uuid -Xcc -iquote -Xcc $(PROJECT_DIR) -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-29/bin -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/examples_command_line_external -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-29/bin/external/examples_command_line_external -Xcc -DSECRET_3=\"Hello\" -Xcc -DSECRET_2=\"World!\" -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-29/bin/CommandLine/CommandLineToolLib/lib_impl.swift.modulemap -Xcc -fmodule-map-file=$(SRCROOT)/CommandLine/swift_c_module/c_lib.modulemap -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/examples_command_line_external/ExternalFramework.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-29/bin/external/examples_command_line_external/Library.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-29/bin/CommandLine/CommandLineToolLib/private_lib.swift.modulemap -Xcc -O0 -Xcc -DDEBUG=1 -Xcc -fstack-protector -Xcc -fstack-protector-all"; + OTHER_SWIFT_FLAGS = "-Xcc -working-directory -Xcc $(PROJECT_DIR) -working-directory $(PROJECT_DIR) -Xcc -ivfsoverlay -Xcc $(OBJROOT)/bazel-out-overlay.yaml -vfsoverlay $(OBJROOT)/bazel-out-overlay.yaml @$(DERIVED_FILE_DIR)/swift.compile.params -I$(BAZEL_OUT)/CONFIGURATION-STABLE-29/bin/CommandLine/CommandLineToolLib -F$(BAZEL_EXTERNAL)/examples_command_line_external -Xcc -F -Xcc $(BAZEL_EXTERNAL)/examples_command_line_external -Xcc -I -Xcc $(SDKROOT)/usr/include/uuid -Xcc -iquote -Xcc $(PROJECT_DIR) -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-29/bin -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/examples_command_line_external -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-29/bin/external/examples_command_line_external -Xcc -DSECRET_3=\"Hello\" -Xcc -DSECRET_2=\"World!\" -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-29/bin/CommandLine/CommandLineToolLib/lib_impl_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(SRCROOT)/CommandLine/swift_interop_hint/c_lib.modulemap -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/examples_command_line_external/ExternalFramework.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-29/bin/external/examples_command_line_external/Library_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-29/bin/CommandLine/CommandLineToolLib/private_lib_modulemap/_/module.modulemap -Xcc -O0 -Xcc -DDEBUG=1 -Xcc -fstack-protector -Xcc -fstack-protector-all"; PRODUCT_MODULE_NAME = LibSwift; PRODUCT_NAME = lib_swift; SDKROOT = macosx; @@ -13592,7 +14013,7 @@ INFOPLIST_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-4/bin/UI/rules_xcodeproj/UIFramework.watchOS/Info.plist"; "INFOPLIST_FILE[sdk=watchos*]" = "$(BAZEL_OUT)/CONFIGURATION-STABLE-9/bin/UI/rules_xcodeproj/UIFramework.watchOS/Info.plist"; LINK_PARAMS_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/UIFramework.watchOS.16.link.params"; - "LINK_PARAMS_FILE[sdk=watchos*]" = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/UIFramework.watchOS.83.link.params"; + "LINK_PARAMS_FILE[sdk=watchos*]" = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/UIFramework.watchOS.86.link.params"; OTHER_LDFLAGS = "@$(DERIVED_FILE_DIR)/link.params"; OTHER_SWIFT_FLAGS = "-Xcc -working-directory -Xcc $(PROJECT_DIR) -working-directory $(PROJECT_DIR) -Xcc -ivfsoverlay -Xcc $(OBJROOT)/bazel-out-overlay.yaml -vfsoverlay $(OBJROOT)/bazel-out-overlay.yaml $(PREVIEWS_SWIFT_INCLUDE__$(ENABLE_PREVIEWS)) @$(DERIVED_FILE_DIR)/swift.compile.params -I$(BAZEL_OUT)/CONFIGURATION-STABLE-4/bin/Lib -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/watchos-arm64_i386_x86_64-simulator -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/watchos-arm64_i386_x86_64-simulator -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-4/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -Xcc -iquote -Xcc $(PROJECT_DIR) -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-4/bin -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/watchos-arm64_i386_x86_64-simulator/CryptoSwift.framework/Modules/module.modulemap -Xcc -O0 -Xcc -DDEBUG=1 -Xcc -fstack-protector -Xcc -fstack-protector-all"; "OTHER_SWIFT_FLAGS[sdk=watchos*]" = "-Xcc -working-directory -Xcc $(PROJECT_DIR) -working-directory $(PROJECT_DIR) -Xcc -ivfsoverlay -Xcc $(OBJROOT)/bazel-out-overlay.yaml -vfsoverlay $(OBJROOT)/bazel-out-overlay.yaml $(PREVIEWS_SWIFT_INCLUDE__$(ENABLE_PREVIEWS)) @$(DERIVED_FILE_DIR)/swift.compile.params -I$(BAZEL_OUT)/CONFIGURATION-STABLE-9/bin/Lib -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/watchos-arm64_32_armv7k -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/watchos-arm64_32_armv7k -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-9/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -Xcc -iquote -Xcc $(PROJECT_DIR) -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-9/bin -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/watchos-arm64_32_armv7k/CryptoSwift.framework/Modules/module.modulemap -Xcc -O0 -Xcc -DDEBUG=1 -Xcc -fstack-protector -Xcc -fstack-protector-all"; @@ -13673,8 +14094,8 @@ INFOPLIST_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/Lib/dist/dynamic/rules_xcodeproj/iOS/Info.plist"; "INFOPLIST_FILE[sdk=iphoneos*]" = "$(BAZEL_OUT)/CONFIGURATION-STABLE-17/bin/Lib/dist/dynamic/rules_xcodeproj/iOS/Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 15.0; - LINK_PARAMS_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iOS.122.link.params"; - "LINK_PARAMS_FILE[sdk=iphoneos*]" = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iOS.189.link.params"; + LINK_PARAMS_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iOS.125.link.params"; + "LINK_PARAMS_FILE[sdk=iphoneos*]" = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iOS.195.link.params"; OTHER_LDFLAGS = "@$(DERIVED_FILE_DIR)/link.params"; PREVIEW_FRAMEWORK_PATHS = "\"$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_i386_x86_64-simulator/CryptoSwift.framework\""; "PREVIEW_FRAMEWORK_PATHS[sdk=iphoneos*]" = "\"$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_armv7/CryptoSwift.framework\""; @@ -13717,7 +14138,7 @@ COMPILE_TARGET_NAME = iOSAppUITestSuite.library; INFOPLIST_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/iOSApp/Test/UITests/rules_xcodeproj/iOSAppUITestSuite.__internal__.__test_bundle/Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 15.0; - LINK_PARAMS_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iOSAppUITestSuite.147.link.params"; + LINK_PARAMS_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iOSAppUITestSuite.150.link.params"; OTHER_LDFLAGS = "@$(DERIVED_FILE_DIR)/link.params"; OTHER_SWIFT_FLAGS = "-Xcc -working-directory -Xcc $(PROJECT_DIR) -working-directory $(PROJECT_DIR) -vfsoverlay $(OBJROOT)/bazel-out-overlay.yaml @$(DERIVED_FILE_DIR)/swift.compile.params -F$(DEVELOPER_DIR)/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks -F$(SDKROOT)/Developer/Library/Frameworks -I$(DEVELOPER_DIR)/Platforms/iPhoneSimulator.platform/Developer/usr/lib -Xcc -iquote -Xcc $(PROJECT_DIR) -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin -Xcc -Os -Xcc -DNDEBUG=1 -Xcc -Wno-unused-variable -Xcc -Winit-self -Xcc -Wno-extra"; PRODUCT_BUNDLE_IDENTIFIER = "rules-xcodeproj.example.uitests"; @@ -13753,8 +14174,8 @@ COMPILE_TARGET_NAME = tvOS; INFOPLIST_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-15/bin/Lib/dist/dynamic/rules_xcodeproj/tvOS/Info.plist"; "INFOPLIST_FILE[sdk=appletvos*]" = "$(BAZEL_OUT)/CONFIGURATION-STABLE-20/bin/Lib/dist/dynamic/rules_xcodeproj/tvOS/Info.plist"; - LINK_PARAMS_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/tvOS.124.link.params"; - "LINK_PARAMS_FILE[sdk=appletvos*]" = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/tvOS.191.link.params"; + LINK_PARAMS_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/tvOS.127.link.params"; + "LINK_PARAMS_FILE[sdk=appletvos*]" = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/tvOS.197.link.params"; OTHER_LDFLAGS = "@$(DERIVED_FILE_DIR)/link.params"; PREVIEW_FRAMEWORK_PATHS = "\"$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/tvos-arm64_x86_64-simulator/CryptoSwift.framework\""; "PREVIEW_FRAMEWORK_PATHS[sdk=appletvos*]" = "\"$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/tvos-arm64/CryptoSwift.framework\""; @@ -13789,7 +14210,7 @@ "INFOPLIST_FILE[sdk=iphoneos*]" = "$(BAZEL_OUT)/CONFIGURATION-STABLE-8/bin/Lib/dist/dynamic/rules_xcodeproj/iOS/Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 15.0; LINK_PARAMS_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iOS.21.link.params"; - "LINK_PARAMS_FILE[sdk=iphoneos*]" = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iOS.88.link.params"; + "LINK_PARAMS_FILE[sdk=iphoneos*]" = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iOS.91.link.params"; OTHER_LDFLAGS = "@$(DERIVED_FILE_DIR)/link.params"; PREVIEW_FRAMEWORK_PATHS = "\"$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_i386_x86_64-simulator/CryptoSwift.framework\""; "PREVIEW_FRAMEWORK_PATHS[sdk=iphoneos*]" = "\"$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_armv7/CryptoSwift.framework\""; @@ -13822,8 +14243,8 @@ COMPILE_TARGET_NAME = watchOS; INFOPLIST_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-13/bin/Lib/dist/dynamic/rules_xcodeproj/watchOS/Info.plist"; "INFOPLIST_FILE[sdk=watchos*]" = "$(BAZEL_OUT)/CONFIGURATION-STABLE-18/bin/Lib/dist/dynamic/rules_xcodeproj/watchOS/Info.plist"; - LINK_PARAMS_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/watchOS.125.link.params"; - "LINK_PARAMS_FILE[sdk=watchos*]" = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/watchOS.192.link.params"; + LINK_PARAMS_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/watchOS.128.link.params"; + "LINK_PARAMS_FILE[sdk=watchos*]" = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/watchOS.198.link.params"; OTHER_LDFLAGS = "@$(DERIVED_FILE_DIR)/link.params"; PREVIEW_FRAMEWORK_PATHS = "\"$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/watchos-arm64_i386_x86_64-simulator/CryptoSwift.framework\""; "PREVIEW_FRAMEWORK_PATHS[sdk=watchos*]" = "\"$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/watchos-arm64_32_armv7k/CryptoSwift.framework\""; @@ -13909,8 +14330,8 @@ INFOPLIST_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/iOSApp/Test/ObjCUnitTests/rules_xcodeproj/iOSAppObjCUnitTests.__internal__.__test_bundle/Info.plist"; "INFOPLIST_FILE[sdk=iphoneos*]" = "$(BAZEL_OUT)/CONFIGURATION-STABLE-17/bin/iOSApp/Test/ObjCUnitTests/rules_xcodeproj/iOSAppObjCUnitTests.__internal__.__test_bundle/Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 15.0; - LINK_PARAMS_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iOSAppObjCUnitTests.133.link.params"; - "LINK_PARAMS_FILE[sdk=iphoneos*]" = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iOSAppObjCUnitTests.199.link.params"; + LINK_PARAMS_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iOSAppObjCUnitTests.136.link.params"; + "LINK_PARAMS_FILE[sdk=iphoneos*]" = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iOSAppObjCUnitTests.205.link.params"; OTHER_CFLAGS = "$(ASAN_OTHER_CFLAGS__$(CLANG_ADDRESS_SANITIZER))"; OTHER_LDFLAGS = "@$(DERIVED_FILE_DIR)/link.params"; PRODUCT_BUNDLE_IDENTIFIER = "rules-xcodeproj.example.objctests"; @@ -14004,14 +14425,14 @@ "INFOPLIST_FILE[sdk=iphoneos*]" = "$(BAZEL_OUT)/CONFIGURATION-STABLE-8/bin/iOSApp/Source/rules_xcodeproj/iOSApp/Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 15.0; LINK_PARAMS_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iOSApp.19.link.params"; - "LINK_PARAMS_FILE[sdk=iphoneos*]" = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iOSApp.86.link.params"; + "LINK_PARAMS_FILE[sdk=iphoneos*]" = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iOSApp.89.link.params"; OTHER_CODE_SIGN_FLAGS = ( "--digest-algorithm=sha1", "--resource-rules=external/rules_apple~/tools/codesigningtool/disable_signing_resource_rules.plist", ); OTHER_LDFLAGS = "@$(DERIVED_FILE_DIR)/link.params"; - OTHER_SWIFT_FLAGS = "-Xcc -working-directory -Xcc $(PROJECT_DIR) -working-directory $(PROJECT_DIR) -Xcc -ivfsoverlay -Xcc $(OBJROOT)/bazel-out-overlay.yaml -vfsoverlay $(OBJROOT)/bazel-out-overlay.yaml $(PREVIEWS_SWIFT_INCLUDE__$(ENABLE_PREVIEWS)) @$(DERIVED_FILE_DIR)/swift.compile.params -I$(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/Lib/UndesiredSchemes -I$(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/Lib -I$(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/UI -I$(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_i386_x86_64-simulator -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64_x86_64-simulator -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64_x86_64-simulator -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64_x86_64-simulator -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_i386_x86_64-simulator -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64_x86_64-simulator -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64_x86_64-simulator -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64_x86_64-simulator -Xcc -I -Xcc $(SRCROOT)/iOSApp/Source/CoreUtilsObjC -Xcc -I -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/iOSApp/Source/CoreUtilsObjC -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -Xcc -iquote -Xcc $(PROJECT_DIR) -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/external/_main~non_module_deps~com_google_google_maps -Xcc \"-DNEEDS_QUOTES=Two words\" -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_i386_x86_64-simulator/CryptoSwift.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_objc_modulemap.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_swift_modulemap.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_objc_modulemap-module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/iOSApp/Source/CoreUtilsObjC/CoreUtilsObjC.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64_x86_64-simulator/GoogleMapsBase.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64_x86_64-simulator/GoogleMapsCore.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64_x86_64-simulator/GoogleMaps.framework/Modules/module.modulemap -Xcc -O0 -Xcc -DDEBUG=1 -Xcc -fstack-protector -Xcc -fstack-protector-all"; - "OTHER_SWIFT_FLAGS[sdk=iphoneos*]" = "-Xcc -working-directory -Xcc $(PROJECT_DIR) -working-directory $(PROJECT_DIR) -Xcc -ivfsoverlay -Xcc $(OBJROOT)/bazel-out-overlay.yaml -vfsoverlay $(OBJROOT)/bazel-out-overlay.yaml $(PREVIEWS_SWIFT_INCLUDE__$(ENABLE_PREVIEWS)) @$(DERIVED_FILE_DIR)/swift.compile.params -I$(BAZEL_OUT)/CONFIGURATION-STABLE-8/bin/Lib/UndesiredSchemes -I$(BAZEL_OUT)/CONFIGURATION-STABLE-8/bin/Lib -I$(BAZEL_OUT)/CONFIGURATION-STABLE-8/bin/UI -I$(BAZEL_OUT)/CONFIGURATION-STABLE-8/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_armv7 -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64 -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64 -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64 -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_armv7 -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64 -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64 -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64 -Xcc -I -Xcc $(SRCROOT)/iOSApp/Source/CoreUtilsObjC -Xcc -I -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-8/bin/iOSApp/Source/CoreUtilsObjC -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-8/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -Xcc -iquote -Xcc $(PROJECT_DIR) -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-8/bin -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-8/bin/external/_main~non_module_deps~com_google_google_maps -Xcc \"-DNEEDS_QUOTES=Two words\" -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_armv7/CryptoSwift.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-8/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_objc_modulemap.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-8/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_swift_modulemap.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-8/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_objc_modulemap-module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-8/bin/iOSApp/Source/CoreUtilsObjC/CoreUtilsObjC.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64/GoogleMapsBase.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64/GoogleMapsCore.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64/GoogleMaps.framework/Modules/module.modulemap -Xcc -O0 -Xcc -DDEBUG=1 -Xcc -fstack-protector -Xcc -fstack-protector-all"; + OTHER_SWIFT_FLAGS = "-Xcc -working-directory -Xcc $(PROJECT_DIR) -working-directory $(PROJECT_DIR) -Xcc -ivfsoverlay -Xcc $(OBJROOT)/bazel-out-overlay.yaml -vfsoverlay $(OBJROOT)/bazel-out-overlay.yaml $(PREVIEWS_SWIFT_INCLUDE__$(ENABLE_PREVIEWS)) @$(DERIVED_FILE_DIR)/swift.compile.params -I$(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/Lib/UndesiredSchemes -I$(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/Lib -I$(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/UI -I$(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_i386_x86_64-simulator -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64_x86_64-simulator -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64_x86_64-simulator -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64_x86_64-simulator -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_i386_x86_64-simulator -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64_x86_64-simulator -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64_x86_64-simulator -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64_x86_64-simulator -Xcc -I -Xcc $(SRCROOT)/iOSApp/Source/CoreUtilsObjC -Xcc -I -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/iOSApp/Source/CoreUtilsObjC -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -Xcc -iquote -Xcc $(PROJECT_DIR) -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/external/_main~non_module_deps~com_google_google_maps -Xcc \"-DNEEDS_QUOTES=Two words\" -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_i386_x86_64-simulator/CryptoSwift.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_objc_modulemap_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_swift_modulemap_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_objc_modulemap-module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/iOSApp/Source/CoreUtilsObjC/CoreUtilsObjC_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64_x86_64-simulator/GoogleMapsBase.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64_x86_64-simulator/GoogleMapsCore.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64_x86_64-simulator/GoogleMaps.framework/Modules/module.modulemap -Xcc -O0 -Xcc -DDEBUG=1 -Xcc -fstack-protector -Xcc -fstack-protector-all"; + "OTHER_SWIFT_FLAGS[sdk=iphoneos*]" = "-Xcc -working-directory -Xcc $(PROJECT_DIR) -working-directory $(PROJECT_DIR) -Xcc -ivfsoverlay -Xcc $(OBJROOT)/bazel-out-overlay.yaml -vfsoverlay $(OBJROOT)/bazel-out-overlay.yaml $(PREVIEWS_SWIFT_INCLUDE__$(ENABLE_PREVIEWS)) @$(DERIVED_FILE_DIR)/swift.compile.params -I$(BAZEL_OUT)/CONFIGURATION-STABLE-8/bin/Lib/UndesiredSchemes -I$(BAZEL_OUT)/CONFIGURATION-STABLE-8/bin/Lib -I$(BAZEL_OUT)/CONFIGURATION-STABLE-8/bin/UI -I$(BAZEL_OUT)/CONFIGURATION-STABLE-8/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_armv7 -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64 -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64 -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64 -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_armv7 -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64 -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64 -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64 -Xcc -I -Xcc $(SRCROOT)/iOSApp/Source/CoreUtilsObjC -Xcc -I -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-8/bin/iOSApp/Source/CoreUtilsObjC -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-8/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -Xcc -iquote -Xcc $(PROJECT_DIR) -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-8/bin -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-8/bin/external/_main~non_module_deps~com_google_google_maps -Xcc \"-DNEEDS_QUOTES=Two words\" -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_armv7/CryptoSwift.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-8/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_objc_modulemap_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-8/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_swift_modulemap_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-8/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_objc_modulemap-module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-8/bin/iOSApp/Source/CoreUtilsObjC/CoreUtilsObjC_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64/GoogleMapsBase.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64/GoogleMapsCore.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64/GoogleMaps.framework/Modules/module.modulemap -Xcc -O0 -Xcc -DDEBUG=1 -Xcc -fstack-protector -Xcc -fstack-protector-all"; PREVIEWS_SWIFT_INCLUDE__ = ""; PREVIEWS_SWIFT_INCLUDE__NO = ""; PREVIEWS_SWIFT_INCLUDE__YES = "-I bazel-out/CONFIGURATION-STABLE-3/bin/iOSApp/Source"; @@ -14111,12 +14532,12 @@ ASAN_OTHER_CFLAGS__ = "$(ASAN_OTHER_CFLAGS__NO)"; ASAN_OTHER_CFLAGS__NO = "-working-directory $(PROJECT_DIR) -ivfsoverlay $(OBJROOT)/bazel-out-overlay.yaml @$(DERIVED_FILE_DIR)/c.compile.params"; ASAN_OTHER_CFLAGS__YES = "$(ASAN_OTHER_CFLAGS__NO) -Wno-macro-redefined -D_FORTIFY_SOURCE=0"; - BAZEL_LABEL = "@@//CommandLine/swift_c_module:c_lib"; - BAZEL_PACKAGE_BIN_DIR = "bazel-out/CONFIGURATION-STABLE-32/bin/CommandLine/swift_c_module"; - BAZEL_TARGET_ID = "@@//CommandLine/swift_c_module:c_lib CONFIGURATION-STABLE-32"; + BAZEL_LABEL = "@@//CommandLine/swift_interop_hint:c_lib"; + BAZEL_PACKAGE_BIN_DIR = "bazel-out/CONFIGURATION-STABLE-32/bin/CommandLine/swift_interop_hint"; + BAZEL_TARGET_ID = "@@//CommandLine/swift_interop_hint:c_lib CONFIGURATION-STABLE-32"; "BAZEL_TARGET_ID[sdk=macosx*]" = "$(BAZEL_TARGET_ID)"; COMPILE_TARGET_NAME = c_lib; - C_PARAMS_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-32/bin/CommandLine/swift_c_module/c_lib.rules_xcodeproj.c.compile.params"; + C_PARAMS_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-32/bin/CommandLine/swift_interop_hint/c_lib.rules_xcodeproj.c.compile.params"; MACOSX_DEPLOYMENT_TARGET = 11.0; OTHER_CFLAGS = "$(ASAN_OTHER_CFLAGS__$(CLANG_ADDRESS_SANITIZER))"; PRODUCT_NAME = c_lib; @@ -14184,7 +14605,7 @@ COMPILE_TARGET_NAME = tool.library; C_PARAMS_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-31/bin/CommandLine/CommandLineTool/tool.library.rules_xcodeproj.c.compile.params"; EXECUTABLE_EXTENSION = binary; - LINK_PARAMS_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/UniversalCommandLineTool.164.link.params"; + LINK_PARAMS_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/UniversalCommandLineTool.170.link.params"; MACOSX_DEPLOYMENT_TARGET = 11.0; OTHER_CFLAGS = "$(ASAN_OTHER_CFLAGS__$(CLANG_ADDRESS_SANITIZER))"; OTHER_LDFLAGS = "@$(DERIVED_FILE_DIR)/link.params"; @@ -14245,11 +14666,11 @@ INFOPLIST_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/iOSApp/Source/rules_xcodeproj/iOSApp/Info.plist"; "INFOPLIST_FILE[sdk=iphoneos*]" = "$(BAZEL_OUT)/CONFIGURATION-STABLE-17/bin/iOSApp/Source/rules_xcodeproj/iOSApp/Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 15.0; - LINK_PARAMS_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iOSApp.120.link.params"; - "LINK_PARAMS_FILE[sdk=iphoneos*]" = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iOSApp.187.link.params"; + LINK_PARAMS_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iOSApp.123.link.params"; + "LINK_PARAMS_FILE[sdk=iphoneos*]" = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iOSApp.193.link.params"; OTHER_LDFLAGS = "@$(DERIVED_FILE_DIR)/link.params"; - OTHER_SWIFT_FLAGS = "-Xcc -working-directory -Xcc $(PROJECT_DIR) -working-directory $(PROJECT_DIR) -Xcc -ivfsoverlay -Xcc $(OBJROOT)/bazel-out-overlay.yaml -vfsoverlay $(OBJROOT)/bazel-out-overlay.yaml $(PREVIEWS_SWIFT_INCLUDE__$(ENABLE_PREVIEWS)) @$(DERIVED_FILE_DIR)/swift.compile.params -I$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/Lib/UndesiredSchemes -I$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/Lib -I$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/UI -I$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_i386_x86_64-simulator -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64_x86_64-simulator -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64_x86_64-simulator -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64_x86_64-simulator -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_i386_x86_64-simulator -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64_x86_64-simulator -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64_x86_64-simulator -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64_x86_64-simulator -Xcc -I -Xcc $(SRCROOT)/iOSApp/Source/CoreUtilsObjC -Xcc -I -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/iOSApp/Source/CoreUtilsObjC -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -Xcc -iquote -Xcc $(PROJECT_DIR) -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/external/_main~non_module_deps~com_google_google_maps -Xcc \"-DNEEDS_QUOTES=Two words\" -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_i386_x86_64-simulator/CryptoSwift.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_objc_modulemap.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_swift_modulemap.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_objc_modulemap-module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/iOSApp/Source/CoreUtilsObjC/CoreUtilsObjC.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64_x86_64-simulator/GoogleMapsBase.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64_x86_64-simulator/GoogleMapsCore.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64_x86_64-simulator/GoogleMaps.framework/Modules/module.modulemap -Xcc -Os -Xcc -DNDEBUG=1 -Xcc -Wno-unused-variable -Xcc -Winit-self -Xcc -Wno-extra"; - "OTHER_SWIFT_FLAGS[sdk=iphoneos*]" = "-Xcc -working-directory -Xcc $(PROJECT_DIR) -working-directory $(PROJECT_DIR) -Xcc -ivfsoverlay -Xcc $(OBJROOT)/bazel-out-overlay.yaml -vfsoverlay $(OBJROOT)/bazel-out-overlay.yaml $(PREVIEWS_SWIFT_INCLUDE__$(ENABLE_PREVIEWS)) @$(DERIVED_FILE_DIR)/swift.compile.params -I$(BAZEL_OUT)/CONFIGURATION-STABLE-17/bin/Lib/UndesiredSchemes -I$(BAZEL_OUT)/CONFIGURATION-STABLE-17/bin/Lib -I$(BAZEL_OUT)/CONFIGURATION-STABLE-17/bin/UI -I$(BAZEL_OUT)/CONFIGURATION-STABLE-17/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_armv7 -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64 -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64 -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64 -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_armv7 -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64 -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64 -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64 -Xcc -I -Xcc $(SRCROOT)/iOSApp/Source/CoreUtilsObjC -Xcc -I -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-17/bin/iOSApp/Source/CoreUtilsObjC -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-17/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -Xcc -iquote -Xcc $(PROJECT_DIR) -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-17/bin -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-17/bin/external/_main~non_module_deps~com_google_google_maps -Xcc \"-DNEEDS_QUOTES=Two words\" -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_armv7/CryptoSwift.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-17/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_objc_modulemap.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-17/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_swift_modulemap.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-17/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_objc_modulemap-module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-17/bin/iOSApp/Source/CoreUtilsObjC/CoreUtilsObjC.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64/GoogleMapsBase.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64/GoogleMapsCore.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64/GoogleMaps.framework/Modules/module.modulemap -Xcc -Os -Xcc -DNDEBUG=1 -Xcc -Wno-unused-variable -Xcc -Winit-self -Xcc -Wno-extra"; + OTHER_SWIFT_FLAGS = "-Xcc -working-directory -Xcc $(PROJECT_DIR) -working-directory $(PROJECT_DIR) -Xcc -ivfsoverlay -Xcc $(OBJROOT)/bazel-out-overlay.yaml -vfsoverlay $(OBJROOT)/bazel-out-overlay.yaml $(PREVIEWS_SWIFT_INCLUDE__$(ENABLE_PREVIEWS)) @$(DERIVED_FILE_DIR)/swift.compile.params -I$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/Lib/UndesiredSchemes -I$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/Lib -I$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/UI -I$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_i386_x86_64-simulator -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64_x86_64-simulator -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64_x86_64-simulator -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64_x86_64-simulator -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_i386_x86_64-simulator -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64_x86_64-simulator -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64_x86_64-simulator -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64_x86_64-simulator -Xcc -I -Xcc $(SRCROOT)/iOSApp/Source/CoreUtilsObjC -Xcc -I -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/iOSApp/Source/CoreUtilsObjC -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -Xcc -iquote -Xcc $(PROJECT_DIR) -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/external/_main~non_module_deps~com_google_google_maps -Xcc \"-DNEEDS_QUOTES=Two words\" -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_i386_x86_64-simulator/CryptoSwift.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_objc_modulemap_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_swift_modulemap_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_objc_modulemap-module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/iOSApp/Source/CoreUtilsObjC/CoreUtilsObjC_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64_x86_64-simulator/GoogleMapsBase.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64_x86_64-simulator/GoogleMapsCore.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64_x86_64-simulator/GoogleMaps.framework/Modules/module.modulemap -Xcc -Os -Xcc -DNDEBUG=1 -Xcc -Wno-unused-variable -Xcc -Winit-self -Xcc -Wno-extra"; + "OTHER_SWIFT_FLAGS[sdk=iphoneos*]" = "-Xcc -working-directory -Xcc $(PROJECT_DIR) -working-directory $(PROJECT_DIR) -Xcc -ivfsoverlay -Xcc $(OBJROOT)/bazel-out-overlay.yaml -vfsoverlay $(OBJROOT)/bazel-out-overlay.yaml $(PREVIEWS_SWIFT_INCLUDE__$(ENABLE_PREVIEWS)) @$(DERIVED_FILE_DIR)/swift.compile.params -I$(BAZEL_OUT)/CONFIGURATION-STABLE-17/bin/Lib/UndesiredSchemes -I$(BAZEL_OUT)/CONFIGURATION-STABLE-17/bin/Lib -I$(BAZEL_OUT)/CONFIGURATION-STABLE-17/bin/UI -I$(BAZEL_OUT)/CONFIGURATION-STABLE-17/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_armv7 -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64 -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64 -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64 -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_armv7 -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64 -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64 -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64 -Xcc -I -Xcc $(SRCROOT)/iOSApp/Source/CoreUtilsObjC -Xcc -I -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-17/bin/iOSApp/Source/CoreUtilsObjC -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-17/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -Xcc -iquote -Xcc $(PROJECT_DIR) -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-17/bin -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-17/bin/external/_main~non_module_deps~com_google_google_maps -Xcc \"-DNEEDS_QUOTES=Two words\" -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_armv7/CryptoSwift.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-17/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_objc_modulemap_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-17/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_swift_modulemap_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-17/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_objc_modulemap-module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-17/bin/iOSApp/Source/CoreUtilsObjC/CoreUtilsObjC_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64/GoogleMapsBase.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64/GoogleMapsCore.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64/GoogleMaps.framework/Modules/module.modulemap -Xcc -Os -Xcc -DNDEBUG=1 -Xcc -Wno-unused-variable -Xcc -Winit-self -Xcc -Wno-extra"; PREVIEWS_SWIFT_INCLUDE__ = ""; PREVIEWS_SWIFT_INCLUDE__NO = ""; PREVIEWS_SWIFT_INCLUDE__YES = "-I bazel-out/CONFIGURATION-STABLE-12/bin/iOSApp/Source"; @@ -14299,7 +14720,7 @@ INFOPLIST_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-6/bin/UI/rules_xcodeproj/UIFramework.tvOS/Info.plist"; "INFOPLIST_FILE[sdk=appletvos*]" = "$(BAZEL_OUT)/CONFIGURATION-STABLE-11/bin/UI/rules_xcodeproj/UIFramework.tvOS/Info.plist"; LINK_PARAMS_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/UIFramework.tvOS.26.link.params"; - "LINK_PARAMS_FILE[sdk=appletvos*]" = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/UIFramework.tvOS.93.link.params"; + "LINK_PARAMS_FILE[sdk=appletvos*]" = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/UIFramework.tvOS.96.link.params"; OTHER_LDFLAGS = "@$(DERIVED_FILE_DIR)/link.params"; OTHER_SWIFT_FLAGS = "-Xcc -working-directory -Xcc $(PROJECT_DIR) -working-directory $(PROJECT_DIR) -Xcc -ivfsoverlay -Xcc $(OBJROOT)/bazel-out-overlay.yaml -vfsoverlay $(OBJROOT)/bazel-out-overlay.yaml $(PREVIEWS_SWIFT_INCLUDE__$(ENABLE_PREVIEWS)) @$(DERIVED_FILE_DIR)/swift.compile.params -I$(BAZEL_OUT)/CONFIGURATION-STABLE-6/bin/Lib -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/tvos-arm64_x86_64-simulator -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/tvos-arm64_x86_64-simulator -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-6/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -Xcc -iquote -Xcc $(PROJECT_DIR) -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-6/bin -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/tvos-arm64_x86_64-simulator/CryptoSwift.framework/Modules/module.modulemap -Xcc -O0 -Xcc -DDEBUG=1 -Xcc -fstack-protector -Xcc -fstack-protector-all"; "OTHER_SWIFT_FLAGS[sdk=appletvos*]" = "-Xcc -working-directory -Xcc $(PROJECT_DIR) -working-directory $(PROJECT_DIR) -Xcc -ivfsoverlay -Xcc $(OBJROOT)/bazel-out-overlay.yaml -vfsoverlay $(OBJROOT)/bazel-out-overlay.yaml $(PREVIEWS_SWIFT_INCLUDE__$(ENABLE_PREVIEWS)) @$(DERIVED_FILE_DIR)/swift.compile.params -I$(BAZEL_OUT)/CONFIGURATION-STABLE-11/bin/Lib -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/tvos-arm64 -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/tvos-arm64 -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-11/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -Xcc -iquote -Xcc $(PROJECT_DIR) -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-11/bin -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/tvos-arm64/CryptoSwift.framework/Modules/module.modulemap -Xcc -O0 -Xcc -DDEBUG=1 -Xcc -fstack-protector -Xcc -fstack-protector-all"; @@ -14371,6 +14792,29 @@ }; name = AppStore; }; + 2653784DE59B17D30D6B2AA7 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ARCHS = x86_64; + BAZEL_LABEL = "@@//GRPC:echo_server_services_swift"; + BAZEL_PACKAGE_BIN_DIR = "bazel-out/CONFIGURATION-STABLE-25/bin/GRPC"; + BAZEL_TARGET_ID = "@@//GRPC:echo_server_services_swift CONFIGURATION-STABLE-25"; + "BAZEL_TARGET_ID[sdk=macosx*]" = "$(BAZEL_TARGET_ID)"; + COMPILE_TARGET_NAME = echo_server_services_swift; + EXCLUDED_SOURCE_FILE_NAMES = "$(MACOSX_FILES) bazel-out/CONFIGURATION-STABLE-26/bin/GRPC/echo_server_services_swift/gen/GRPC/echo.grpc.swift bazel-out/CONFIGURATION-STABLE-26/bin/GRPC/echo_server_services_swift/gen/GRPC/echo.pb.swift"; + INCLUDED_SOURCE_FILE_NAMES = ""; + "INCLUDED_SOURCE_FILE_NAMES[sdk=macosx*]" = "$(MACOSX_FILES)"; + MACOSX_DEPLOYMENT_TARGET = 11.0; + MACOSX_FILES = "bazel-out/CONFIGURATION-STABLE-25/bin/GRPC/echo_server_services_swift/gen/GRPC/echo.grpc.swift bazel-out/CONFIGURATION-STABLE-25/bin/GRPC/echo_server_services_swift/gen/GRPC/echo.pb.swift"; + OTHER_SWIFT_FLAGS = "-Xcc -working-directory -Xcc $(PROJECT_DIR) -working-directory $(PROJECT_DIR) -Xcc -ivfsoverlay -Xcc $(OBJROOT)/bazel-out-overlay.yaml -vfsoverlay $(OBJROOT)/bazel-out-overlay.yaml @$(DERIVED_FILE_DIR)/swift.compile.params -I$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_protobuf -I$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_log -I$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio -I$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics -I$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_collections -I$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_extras -I$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_http2 -I$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl -I$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_transport_services -I$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_grpc_grpc_swift -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_atomics -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl -Xcc -iquote -Xcc $(PROJECT_DIR) -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_grpc_grpc_swift/Sources/CGRPCZlib/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift/Sources/CGRPCZlib/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOLinux/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOLinux/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOWindows/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOWindows/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOAtomics/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOAtomics/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_atomics/Sources/_AtomicsShims/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics/Sources/_AtomicsShims/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIODarwin/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIODarwin/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOLLHTTP/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOLLHTTP/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/Sources/CNIOBoringSSL/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/Sources/CNIOBoringSSL/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/Sources/CNIOBoringSSLShims/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/Sources/CNIOBoringSSLShims/include -Xcc -DSWIFT_PACKAGE -Xcc -D__APPLE_USE_RFC_3542 -Xcc -DLLHTTP_STRICT_MODE -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift/CGRPCZlib_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIOLinux_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIOWindows_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIOAtomics_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics/_AtomicsShims_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIODarwin_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIOLLHTTP_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/CNIOBoringSSL_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/CNIOBoringSSLShims_modulemap/_/module.modulemap -Xcc -O0 -Xcc -DDEBUG=1 -Xcc -fstack-protector -Xcc -fstack-protector-all"; + PRODUCT_NAME = echo_server_services_swift; + SDKROOT = macosx; + SUPPORTED_PLATFORMS = macosx; + SWIFT_PARAMS_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/GRPC/echo_server_services_swift.rules_xcodeproj.swift.compile.params"; + TARGET_NAME = echo_server_services_swift; + }; + name = Debug; + }; 281468B9DE11BDF7386534BD /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { @@ -14391,7 +14835,7 @@ C_PARAMS_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-27/bin/CommandLine/CommandLineTool/tool.library.rules_xcodeproj.c.compile.params"; EXECUTABLE_EXTENSION = ""; INFOPLIST_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-27/bin/CommandLine/CommandLineTool/rules_xcodeproj/CommandLineTool/Info.plist"; - LINK_PARAMS_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/CommandLineTool.57.link.params"; + LINK_PARAMS_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/CommandLineTool.60.link.params"; MACOSX_DEPLOYMENT_TARGET = 11.0; OTHER_CFLAGS = "$(ASAN_OTHER_CFLAGS__$(CLANG_ADDRESS_SANITIZER))"; OTHER_CODE_SIGN_FLAGS = "-v"; @@ -14527,7 +14971,7 @@ COMPILE_TARGET_NAME = aplugin.library; C_PARAMS_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-16/bin/Bundle/aplugin.library.rules_xcodeproj.c.compile.params"; INFOPLIST_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-16/bin/Bundle/rules_xcodeproj/Bundle/Info.plist"; - LINK_PARAMS_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/Bundle.129.link.params"; + LINK_PARAMS_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/Bundle.132.link.params"; MACOSX_DEPLOYMENT_TARGET = 12.0; OTHER_CFLAGS = "$(ASAN_OTHER_CFLAGS__$(CLANG_ADDRESS_SANITIZER))"; OTHER_LDFLAGS = "@$(DERIVED_FILE_DIR)/link.params"; @@ -14594,7 +15038,7 @@ INFOPLIST_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-6/bin/Lib/dist/dynamic/rules_xcodeproj/tvOS/Info.plist"; "INFOPLIST_FILE[sdk=appletvos*]" = "$(BAZEL_OUT)/CONFIGURATION-STABLE-11/bin/Lib/dist/dynamic/rules_xcodeproj/tvOS/Info.plist"; LINK_PARAMS_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/tvOS.23.link.params"; - "LINK_PARAMS_FILE[sdk=appletvos*]" = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/tvOS.90.link.params"; + "LINK_PARAMS_FILE[sdk=appletvos*]" = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/tvOS.93.link.params"; OTHER_LDFLAGS = "@$(DERIVED_FILE_DIR)/link.params"; PREVIEW_FRAMEWORK_PATHS = "\"$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/tvos-arm64_x86_64-simulator/CryptoSwift.framework\""; "PREVIEW_FRAMEWORK_PATHS[sdk=appletvos*]" = "\"$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/tvos-arm64/CryptoSwift.framework\""; @@ -14615,12 +15059,12 @@ ASAN_OTHER_CFLAGS__ = "$(ASAN_OTHER_CFLAGS__NO)"; ASAN_OTHER_CFLAGS__NO = "-working-directory $(PROJECT_DIR) -ivfsoverlay $(OBJROOT)/bazel-out-overlay.yaml @$(DERIVED_FILE_DIR)/c.compile.params"; ASAN_OTHER_CFLAGS__YES = "$(ASAN_OTHER_CFLAGS__NO) -Wno-macro-redefined -D_FORTIFY_SOURCE=0"; - BAZEL_LABEL = "@@//CommandLine/swift_c_module:c_lib"; - BAZEL_PACKAGE_BIN_DIR = "bazel-out/CONFIGURATION-STABLE-28/bin/CommandLine/swift_c_module"; - BAZEL_TARGET_ID = "@@//CommandLine/swift_c_module:c_lib CONFIGURATION-STABLE-28"; + BAZEL_LABEL = "@@//CommandLine/swift_interop_hint:c_lib"; + BAZEL_PACKAGE_BIN_DIR = "bazel-out/CONFIGURATION-STABLE-28/bin/CommandLine/swift_interop_hint"; + BAZEL_TARGET_ID = "@@//CommandLine/swift_interop_hint:c_lib CONFIGURATION-STABLE-28"; "BAZEL_TARGET_ID[sdk=macosx*]" = "$(BAZEL_TARGET_ID)"; COMPILE_TARGET_NAME = c_lib; - C_PARAMS_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-28/bin/CommandLine/swift_c_module/c_lib.rules_xcodeproj.c.compile.params"; + C_PARAMS_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-28/bin/CommandLine/swift_interop_hint/c_lib.rules_xcodeproj.c.compile.params"; MACOSX_DEPLOYMENT_TARGET = 11.0; OTHER_CFLAGS = "$(ASAN_OTHER_CFLAGS__$(CLANG_ADDRESS_SANITIZER))"; PRODUCT_NAME = c_lib; @@ -14665,7 +15109,7 @@ INFOPLIST_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-4/bin/watchOSAppExtension/rules_xcodeproj/watchOSAppExtension/Info.plist"; "INFOPLIST_FILE[sdk=watchos*]" = "$(BAZEL_OUT)/CONFIGURATION-STABLE-9/bin/watchOSAppExtension/rules_xcodeproj/watchOSAppExtension/Info.plist"; LINK_PARAMS_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/watchOSAppExtension.17.link.params"; - "LINK_PARAMS_FILE[sdk=watchos*]" = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/watchOSAppExtension.84.link.params"; + "LINK_PARAMS_FILE[sdk=watchos*]" = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/watchOSAppExtension.87.link.params"; OTHER_LDFLAGS = "@$(DERIVED_FILE_DIR)/link.params"; OTHER_SWIFT_FLAGS = "-Xcc -working-directory -Xcc $(PROJECT_DIR) -working-directory $(PROJECT_DIR) -Xcc -ivfsoverlay -Xcc $(OBJROOT)/bazel-out-overlay.yaml -vfsoverlay $(OBJROOT)/bazel-out-overlay.yaml $(PREVIEWS_SWIFT_INCLUDE__$(ENABLE_PREVIEWS)) @$(DERIVED_FILE_DIR)/swift.compile.params -I$(BAZEL_OUT)/CONFIGURATION-STABLE-4/bin/Lib -I$(BAZEL_OUT)/CONFIGURATION-STABLE-4/bin/UI -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/watchos-arm64_i386_x86_64-simulator -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/watchos-arm64_i386_x86_64-simulator -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-4/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -Xcc -iquote -Xcc $(PROJECT_DIR) -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-4/bin -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/watchos-arm64_i386_x86_64-simulator/CryptoSwift.framework/Modules/module.modulemap -Xcc -O0 -Xcc -DDEBUG=1 -Xcc -fstack-protector -Xcc -fstack-protector-all"; "OTHER_SWIFT_FLAGS[sdk=watchos*]" = "-Xcc -working-directory -Xcc $(PROJECT_DIR) -working-directory $(PROJECT_DIR) -Xcc -ivfsoverlay -Xcc $(OBJROOT)/bazel-out-overlay.yaml -vfsoverlay $(OBJROOT)/bazel-out-overlay.yaml $(PREVIEWS_SWIFT_INCLUDE__$(ENABLE_PREVIEWS)) @$(DERIVED_FILE_DIR)/swift.compile.params -I$(BAZEL_OUT)/CONFIGURATION-STABLE-9/bin/Lib -I$(BAZEL_OUT)/CONFIGURATION-STABLE-9/bin/UI -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/watchos-arm64_32_armv7k -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/watchos-arm64_32_armv7k -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-9/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -Xcc -iquote -Xcc $(PROJECT_DIR) -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-9/bin -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/watchos-arm64_32_armv7k/CryptoSwift.framework/Modules/module.modulemap -Xcc -O0 -Xcc -DDEBUG=1 -Xcc -fstack-protector -Xcc -fstack-protector-all"; @@ -14789,7 +15233,7 @@ CODE_SIGN_STYLE = Manual; COMPILE_TARGET_NAME = macOSLib.framework; INFOPLIST_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-16/bin/macOSApp/Source/rules_xcodeproj/macOSLib.framework/Info.plist"; - LINK_PARAMS_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/macOSLib.framework.140.link.params"; + LINK_PARAMS_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/macOSLib.framework.143.link.params"; MACOSX_DEPLOYMENT_TARGET = 12.0; OTHER_LDFLAGS = "@$(DERIVED_FILE_DIR)/link.params"; PREVIEW_FRAMEWORK_PATHS = "\"$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/macos-arm64_x86_64/CryptoSwift.framework\""; @@ -14821,7 +15265,7 @@ C_PARAMS_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-30/bin/CommandLine/CommandLineTool/tool.library.rules_xcodeproj.c.compile.params"; EXECUTABLE_EXTENSION = ""; INFOPLIST_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-30/bin/CommandLine/CommandLineTool/rules_xcodeproj/CommandLineTool/Info.plist"; - LINK_PARAMS_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/CommandLineTool.158.link.params"; + LINK_PARAMS_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/CommandLineTool.164.link.params"; MACOSX_DEPLOYMENT_TARGET = 11.0; OTHER_CFLAGS = "$(ASAN_OTHER_CFLAGS__$(CLANG_ADDRESS_SANITIZER))"; OTHER_CODE_SIGN_FLAGS = "-v"; @@ -14849,10 +15293,10 @@ COMPILE_TARGET_NAME = echo_client.library; EXECUTABLE_EXTENSION = ""; INFOPLIST_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/GRPC/rules_xcodeproj/echo_client/Info.plist"; - LINK_PARAMS_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/echo_client.151.link.params"; + LINK_PARAMS_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/echo_client.156.link.params"; MACOSX_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = "@$(DERIVED_FILE_DIR)/link.params"; - OTHER_SWIFT_FLAGS = "-Xcc -working-directory -Xcc $(PROJECT_DIR) -working-directory $(PROJECT_DIR) -Xcc -ivfsoverlay -Xcc $(OBJROOT)/bazel-out-overlay.yaml -vfsoverlay $(OBJROOT)/bazel-out-overlay.yaml @$(DERIVED_FILE_DIR)/swift.compile.params -I$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_protobuf -I$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/GRPC -I$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_log -I$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio -I$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics -I$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_collections -I$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_extras -I$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_http2 -I$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl -I$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_transport_services -I$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_grpc_grpc_swift -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_atomics -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl -Xcc -iquote -Xcc $(PROJECT_DIR) -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_grpc_grpc_swift/Sources/CGRPCZlib/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift/Sources/CGRPCZlib/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOLinux/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOLinux/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOWindows/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOWindows/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOAtomics/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOAtomics/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_atomics/Sources/_AtomicsShims/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics/Sources/_AtomicsShims/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIODarwin/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIODarwin/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOLLHTTP/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOLLHTTP/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/Sources/CNIOBoringSSL/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/Sources/CNIOBoringSSL/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/Sources/CNIOBoringSSLShims/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/Sources/CNIOBoringSSLShims/include -Xcc -DSWIFT_PACKAGE -Xcc -D__APPLE_USE_RFC_3542 -Xcc -DLLHTTP_STRICT_MODE -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift/CGRPCZlib.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIOLinux.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIOWindows.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIOAtomics.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics/_AtomicsShims.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIODarwin.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIOLLHTTP.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/CNIOBoringSSL.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/CNIOBoringSSLShims.swift.modulemap -Xcc -Os -Xcc -DNDEBUG=1 -Xcc -Wno-unused-variable -Xcc -Winit-self -Xcc -Wno-extra"; + OTHER_SWIFT_FLAGS = "-Xcc -working-directory -Xcc $(PROJECT_DIR) -working-directory $(PROJECT_DIR) -Xcc -ivfsoverlay -Xcc $(OBJROOT)/bazel-out-overlay.yaml -vfsoverlay $(OBJROOT)/bazel-out-overlay.yaml @$(DERIVED_FILE_DIR)/swift.compile.params -I$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_protobuf -I$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_log -I$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio -I$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics -I$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_collections -I$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_extras -I$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_http2 -I$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl -I$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_transport_services -I$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift -I$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/GRPC -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_grpc_grpc_swift -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_atomics -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl -Xcc -iquote -Xcc $(PROJECT_DIR) -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_grpc_grpc_swift/Sources/CGRPCZlib/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift/Sources/CGRPCZlib/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOLinux/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOLinux/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOWindows/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOWindows/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOAtomics/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOAtomics/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_atomics/Sources/_AtomicsShims/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics/Sources/_AtomicsShims/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIODarwin/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIODarwin/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOLLHTTP/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOLLHTTP/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/Sources/CNIOBoringSSL/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/Sources/CNIOBoringSSL/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/Sources/CNIOBoringSSLShims/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/Sources/CNIOBoringSSLShims/include -Xcc -DSWIFT_PACKAGE -Xcc -D__APPLE_USE_RFC_3542 -Xcc -DLLHTTP_STRICT_MODE -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift/CGRPCZlib_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIOLinux_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIOWindows_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIOAtomics_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics/_AtomicsShims_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIODarwin_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIOLLHTTP_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/CNIOBoringSSL_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/CNIOBoringSSLShims_modulemap/_/module.modulemap -Xcc -Os -Xcc -DNDEBUG=1 -Xcc -Wno-unused-variable -Xcc -Winit-self -Xcc -Wno-extra"; PRODUCT_MODULE_NAME = GRPC_echo_client_library; PRODUCT_NAME = echo_client; SDKROOT = macosx; @@ -14895,7 +15339,7 @@ "BAZEL_TARGET_ID[sdk=macosx*]" = "$(BAZEL_TARGET_ID)"; COMPILE_TARGET_NAME = lib_swift; MACOSX_DEPLOYMENT_TARGET = 11.0; - OTHER_SWIFT_FLAGS = "-Xcc -working-directory -Xcc $(PROJECT_DIR) -working-directory $(PROJECT_DIR) -Xcc -ivfsoverlay -Xcc $(OBJROOT)/bazel-out-overlay.yaml -vfsoverlay $(OBJROOT)/bazel-out-overlay.yaml @$(DERIVED_FILE_DIR)/swift.compile.params -I$(BAZEL_OUT)/CONFIGURATION-STABLE-27/bin/CommandLine/CommandLineToolLib -F$(BAZEL_EXTERNAL)/examples_command_line_external -Xcc -F -Xcc $(BAZEL_EXTERNAL)/examples_command_line_external -Xcc -I -Xcc $(SDKROOT)/usr/include/uuid -Xcc -iquote -Xcc $(PROJECT_DIR) -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-27/bin -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/examples_command_line_external -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-27/bin/external/examples_command_line_external -Xcc -DSECRET_3=\"Hello\" -Xcc -DSECRET_2=\"World!\" -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-27/bin/CommandLine/CommandLineToolLib/lib_impl.swift.modulemap -Xcc -fmodule-map-file=$(SRCROOT)/CommandLine/swift_c_module/c_lib.modulemap -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/examples_command_line_external/ExternalFramework.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-27/bin/external/examples_command_line_external/Library.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-27/bin/CommandLine/CommandLineToolLib/private_lib.swift.modulemap -Xcc -O0 -Xcc -DDEBUG=1 -Xcc -fstack-protector -Xcc -fstack-protector-all"; + OTHER_SWIFT_FLAGS = "-Xcc -working-directory -Xcc $(PROJECT_DIR) -working-directory $(PROJECT_DIR) -Xcc -ivfsoverlay -Xcc $(OBJROOT)/bazel-out-overlay.yaml -vfsoverlay $(OBJROOT)/bazel-out-overlay.yaml @$(DERIVED_FILE_DIR)/swift.compile.params -I$(BAZEL_OUT)/CONFIGURATION-STABLE-27/bin/CommandLine/CommandLineToolLib -F$(BAZEL_EXTERNAL)/examples_command_line_external -Xcc -F -Xcc $(BAZEL_EXTERNAL)/examples_command_line_external -Xcc -I -Xcc $(SDKROOT)/usr/include/uuid -Xcc -iquote -Xcc $(PROJECT_DIR) -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-27/bin -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/examples_command_line_external -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-27/bin/external/examples_command_line_external -Xcc -DSECRET_3=\"Hello\" -Xcc -DSECRET_2=\"World!\" -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-27/bin/CommandLine/CommandLineToolLib/lib_impl_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(SRCROOT)/CommandLine/swift_interop_hint/c_lib.modulemap -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/examples_command_line_external/ExternalFramework.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-27/bin/external/examples_command_line_external/Library_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-27/bin/CommandLine/CommandLineToolLib/private_lib_modulemap/_/module.modulemap -Xcc -O0 -Xcc -DDEBUG=1 -Xcc -fstack-protector -Xcc -fstack-protector-all"; PRODUCT_MODULE_NAME = LibSwift; PRODUCT_NAME = lib_swift; SDKROOT = macosx; @@ -14930,6 +15374,7 @@ CXX = "$(BAZEL_INTEGRATION_DIR)/clang.sh"; DEBUG_INFORMATION_FORMAT = dwarf; DSTROOT = "$(PROJECT_TEMP_DIR)"; + ENABLE_DEBUG_DYLIB = NO; ENABLE_DEFAULT_SEARCH_PATHS = NO; ENABLE_STRICT_OBJC_MSGSEND = YES; ENABLE_USER_SCRIPT_SANDBOXING = NO; @@ -14943,12 +15388,12 @@ INDEX_IMPORT = "fixture-index-import-path"; INSTALL_PATH = "$(BAZEL_PACKAGE_BIN_DIR)/$(TARGET_NAME)/bin"; INTERNAL_DIR = "$(PROJECT_FILE_PATH)/rules_xcodeproj"; - LD = "$(BAZEL_INTEGRATION_DIR)/ld.sh"; - LDPLUSPLUS = "$(BAZEL_INTEGRATION_DIR)/ld.sh"; + LD = "$(BAZEL_INTEGRATION_DIR)/ld"; + LDPLUSPLUS = "$(BAZEL_INTEGRATION_DIR)/ld"; LD_DYLIB_INSTALL_NAME = ""; LD_OBJC_ABI_VERSION = ""; LD_RUNPATH_SEARCH_PATHS = ""; - LIBTOOL = "$(BAZEL_INTEGRATION_DIR)/libtool.sh"; + LIBTOOL = "$(BAZEL_INTEGRATION_DIR)/libtool"; ONLY_ACTIVE_ARCH = YES; PROJECT_DIR = "$(INDEXING_PROJECT_DIR__$(INDEX_ENABLE_BUILD_ARENA))"; RESOLVED_REPOSITORIES = "\"external/examples_command_line_external/ImportableLibrary\" \"$(SRCROOT)/CommandLine/external/ImportableLibrary\" \"external/examples_ios_app_external~\" \"$(SRCROOT)/iOSApp/external\" \"external/examples_cc_external~\" \"$(SRCROOT)/cc/external\" \".\" \"$(SRCROOT)\""; @@ -15001,8 +15446,8 @@ "DEVELOPMENT_TEAM[sdk=appletvos*]" = V82V4GQZXM; INFOPLIST_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-15/bin/tvOSApp/Source/rules_xcodeproj/tvOSApp/Info.plist"; "INFOPLIST_FILE[sdk=appletvos*]" = "$(BAZEL_OUT)/CONFIGURATION-STABLE-20/bin/tvOSApp/Source/rules_xcodeproj/tvOSApp/Info.plist"; - LINK_PARAMS_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/tvOSApp.128.link.params"; - "LINK_PARAMS_FILE[sdk=appletvos*]" = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/tvOSApp.195.link.params"; + LINK_PARAMS_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/tvOSApp.131.link.params"; + "LINK_PARAMS_FILE[sdk=appletvos*]" = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/tvOSApp.201.link.params"; OTHER_LDFLAGS = "@$(DERIVED_FILE_DIR)/link.params"; OTHER_SWIFT_FLAGS = "-Xcc -working-directory -Xcc $(PROJECT_DIR) -working-directory $(PROJECT_DIR) -Xcc -ivfsoverlay -Xcc $(OBJROOT)/bazel-out-overlay.yaml -vfsoverlay $(OBJROOT)/bazel-out-overlay.yaml $(PREVIEWS_SWIFT_INCLUDE__$(ENABLE_PREVIEWS)) @$(DERIVED_FILE_DIR)/swift.compile.params -I$(BAZEL_OUT)/CONFIGURATION-STABLE-15/bin/Lib -I$(BAZEL_OUT)/CONFIGURATION-STABLE-15/bin/UI -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/tvos-arm64_x86_64-simulator -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/tvos-arm64_x86_64-simulator -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-15/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -Xcc -iquote -Xcc $(PROJECT_DIR) -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-15/bin -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/tvos-arm64_x86_64-simulator/CryptoSwift.framework/Modules/module.modulemap -Xcc -Os -Xcc -DNDEBUG=1 -Xcc -Wno-unused-variable -Xcc -Winit-self -Xcc -Wno-extra"; "OTHER_SWIFT_FLAGS[sdk=appletvos*]" = "-Xcc -working-directory -Xcc $(PROJECT_DIR) -working-directory $(PROJECT_DIR) -Xcc -ivfsoverlay -Xcc $(OBJROOT)/bazel-out-overlay.yaml -vfsoverlay $(OBJROOT)/bazel-out-overlay.yaml $(PREVIEWS_SWIFT_INCLUDE__$(ENABLE_PREVIEWS)) @$(DERIVED_FILE_DIR)/swift.compile.params -I$(BAZEL_OUT)/CONFIGURATION-STABLE-20/bin/Lib -I$(BAZEL_OUT)/CONFIGURATION-STABLE-20/bin/UI -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/tvos-arm64 -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/tvos-arm64 -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-20/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -Xcc -iquote -Xcc $(PROJECT_DIR) -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-20/bin -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/tvos-arm64/CryptoSwift.framework/Modules/module.modulemap -Xcc -Os -Xcc -DNDEBUG=1 -Xcc -Wno-unused-variable -Xcc -Winit-self -Xcc -Wno-extra"; @@ -15056,7 +15501,7 @@ "BAZEL_TARGET_ID[sdk=macosx*]" = "$(BAZEL_TARGET_ID)"; COMPILE_TARGET_NAME = lib_swift; MACOSX_DEPLOYMENT_TARGET = 11.0; - OTHER_SWIFT_FLAGS = "-Xcc -working-directory -Xcc $(PROJECT_DIR) -working-directory $(PROJECT_DIR) -Xcc -ivfsoverlay -Xcc $(OBJROOT)/bazel-out-overlay.yaml -vfsoverlay $(OBJROOT)/bazel-out-overlay.yaml @$(DERIVED_FILE_DIR)/swift.compile.params -I$(BAZEL_OUT)/CONFIGURATION-STABLE-31/bin/CommandLine/CommandLineToolLib -F$(BAZEL_EXTERNAL)/examples_command_line_external -Xcc -F -Xcc $(BAZEL_EXTERNAL)/examples_command_line_external -Xcc -I -Xcc $(SDKROOT)/usr/include/uuid -Xcc -iquote -Xcc $(PROJECT_DIR) -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-31/bin -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/examples_command_line_external -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-31/bin/external/examples_command_line_external -Xcc -DSECRET_3=\"Hello\" -Xcc -DSECRET_2=\"World!\" -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-31/bin/CommandLine/CommandLineToolLib/lib_impl.swift.modulemap -Xcc -fmodule-map-file=$(SRCROOT)/CommandLine/swift_c_module/c_lib.modulemap -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/examples_command_line_external/ExternalFramework.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-31/bin/external/examples_command_line_external/Library.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-31/bin/CommandLine/CommandLineToolLib/private_lib.swift.modulemap -Xcc -Os -Xcc -DNDEBUG=1 -Xcc -Wno-unused-variable -Xcc -Winit-self -Xcc -Wno-extra"; + OTHER_SWIFT_FLAGS = "-Xcc -working-directory -Xcc $(PROJECT_DIR) -working-directory $(PROJECT_DIR) -Xcc -ivfsoverlay -Xcc $(OBJROOT)/bazel-out-overlay.yaml -vfsoverlay $(OBJROOT)/bazel-out-overlay.yaml @$(DERIVED_FILE_DIR)/swift.compile.params -I$(BAZEL_OUT)/CONFIGURATION-STABLE-31/bin/CommandLine/CommandLineToolLib -F$(BAZEL_EXTERNAL)/examples_command_line_external -Xcc -F -Xcc $(BAZEL_EXTERNAL)/examples_command_line_external -Xcc -I -Xcc $(SDKROOT)/usr/include/uuid -Xcc -iquote -Xcc $(PROJECT_DIR) -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-31/bin -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/examples_command_line_external -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-31/bin/external/examples_command_line_external -Xcc -DSECRET_3=\"Hello\" -Xcc -DSECRET_2=\"World!\" -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-31/bin/CommandLine/CommandLineToolLib/lib_impl_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(SRCROOT)/CommandLine/swift_interop_hint/c_lib.modulemap -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/examples_command_line_external/ExternalFramework.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-31/bin/external/examples_command_line_external/Library_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-31/bin/CommandLine/CommandLineToolLib/private_lib_modulemap/_/module.modulemap -Xcc -Os -Xcc -DNDEBUG=1 -Xcc -Wno-unused-variable -Xcc -Winit-self -Xcc -Wno-extra"; PRODUCT_MODULE_NAME = LibSwift; PRODUCT_NAME = lib_swift; SDKROOT = macosx; @@ -15068,6 +15513,31 @@ }; name = AppStore; }; + 408FE4A624505AC326611185 /* AppStore */ = { + isa = XCBuildConfiguration; + buildSettings = { + ARCHS = x86_64; + BAZEL_LABEL = "@@//Proto:person_proto_swift"; + BAZEL_PACKAGE_BIN_DIR = "bazel-out/CONFIGURATION-STABLE-26/bin/Proto"; + BAZEL_TARGET_ID = "@@//Proto:person_proto_swift CONFIGURATION-STABLE-26"; + "BAZEL_TARGET_ID[sdk=macosx*]" = "$(BAZEL_TARGET_ID)"; + COMPILE_TARGET_NAME = person_proto_swift; + EXCLUDED_SOURCE_FILE_NAMES = "$(MACOSX_FILES) bazel-out/CONFIGURATION-STABLE-25/bin/Proto/person_proto_swift/gen/Proto/Person.pb.swift"; + INCLUDED_SOURCE_FILE_NAMES = ""; + "INCLUDED_SOURCE_FILE_NAMES[sdk=macosx*]" = "$(MACOSX_FILES)"; + MACOSX_DEPLOYMENT_TARGET = 11.0; + MACOSX_FILES = "bazel-out/CONFIGURATION-STABLE-26/bin/Proto/person_proto_swift/gen/Proto/Person.pb.swift"; + OTHER_SWIFT_FLAGS = "-Xcc -working-directory -Xcc $(PROJECT_DIR) -working-directory $(PROJECT_DIR) -vfsoverlay $(OBJROOT)/bazel-out-overlay.yaml @$(DERIVED_FILE_DIR)/swift.compile.params -I$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_protobuf -Xcc -iquote -Xcc $(PROJECT_DIR) -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin -Xcc -Os -Xcc -DNDEBUG=1 -Xcc -Wno-unused-variable -Xcc -Winit-self -Xcc -Wno-extra"; + PRODUCT_MODULE_NAME = Proto_person_proto; + PRODUCT_NAME = person_proto_swift; + SDKROOT = macosx; + SUPPORTED_PLATFORMS = macosx; + SWIFT_COMPILATION_MODE = wholemodule; + SWIFT_PARAMS_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/Proto/person_proto_swift.rules_xcodeproj.swift.compile.params"; + TARGET_NAME = person_proto_swift; + }; + name = AppStore; + }; 418F2EBB1C1ABFE9DE01C7C0 /* AppStore */ = { isa = XCBuildConfiguration; buildSettings = { @@ -15090,7 +15560,7 @@ CODE_SIGN_STYLE = Manual; COMPILE_TARGET_NAME = watchOSAppUITests.library; INFOPLIST_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-13/bin/watchOSApp/Test/UITests/rules_xcodeproj/watchOSAppUITests.__internal__.__test_bundle/Info.plist"; - LINK_PARAMS_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/watchOSAppUITests.145.link.params"; + LINK_PARAMS_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/watchOSAppUITests.148.link.params"; OTHER_LDFLAGS = "@$(DERIVED_FILE_DIR)/link.params"; OTHER_SWIFT_FLAGS = "-Xcc -working-directory -Xcc $(PROJECT_DIR) -working-directory $(PROJECT_DIR) -vfsoverlay $(OBJROOT)/bazel-out-overlay.yaml @$(DERIVED_FILE_DIR)/swift.compile.params -F$(DEVELOPER_DIR)/Platforms/WatchSimulator.platform/Developer/Library/Frameworks -F$(SDKROOT)/Developer/Library/Frameworks -I$(DEVELOPER_DIR)/Platforms/WatchSimulator.platform/Developer/usr/lib -Xcc -iquote -Xcc $(PROJECT_DIR) -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-13/bin -Xcc -Os -Xcc -DNDEBUG=1 -Xcc -Wno-unused-variable -Xcc -Winit-self -Xcc -Wno-extra"; PRODUCT_BUNDLE_IDENTIFIER = "rules-xcodeproj.example.watchTests"; @@ -15153,11 +15623,11 @@ INFOPLIST_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/iOSApp/Test/SwiftUnitTests/rules_xcodeproj/iOSAppSwiftUnitTests.__internal__.__test_bundle/Info.plist"; "INFOPLIST_FILE[sdk=iphoneos*]" = "$(BAZEL_OUT)/CONFIGURATION-STABLE-17/bin/iOSApp/Test/SwiftUnitTests/rules_xcodeproj/iOSAppSwiftUnitTests.__internal__.__test_bundle/Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 15.0; - LINK_PARAMS_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iOSAppSwiftUnitTests.138.link.params"; - "LINK_PARAMS_FILE[sdk=iphoneos*]" = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iOSAppSwiftUnitTests.201.link.params"; + LINK_PARAMS_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iOSAppSwiftUnitTests.141.link.params"; + "LINK_PARAMS_FILE[sdk=iphoneos*]" = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iOSAppSwiftUnitTests.207.link.params"; OTHER_LDFLAGS = "@$(DERIVED_FILE_DIR)/link.params"; - OTHER_SWIFT_FLAGS = "-Xcc -working-directory -Xcc $(PROJECT_DIR) -working-directory $(PROJECT_DIR) -Xcc -ivfsoverlay -Xcc $(OBJROOT)/bazel-out-overlay.yaml -vfsoverlay $(OBJROOT)/bazel-out-overlay.yaml $(PREVIEWS_SWIFT_INCLUDE__$(ENABLE_PREVIEWS)) @$(DERIVED_FILE_DIR)/swift.compile.params -F$(DEVELOPER_DIR)/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks -F$(SDKROOT)/Developer/Library/Frameworks -I$(DEVELOPER_DIR)/Platforms/iPhoneSimulator.platform/Developer/usr/lib -I$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/Lib/UndesiredSchemes -I$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/Lib -I$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/UI -I$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer -I$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/iOSApp/Source -I$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/iOSApp/Test/TestingUtils -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_i386_x86_64-simulator -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64_x86_64-simulator -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64_x86_64-simulator -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64_x86_64-simulator -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_i386_x86_64-simulator -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64_x86_64-simulator -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64_x86_64-simulator -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64_x86_64-simulator -Xcc -I -Xcc $(SRCROOT)/iOSApp/Source/CoreUtilsObjC -Xcc -I -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/iOSApp/Source/CoreUtilsObjC -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -Xcc -iquote -Xcc $(PROJECT_DIR) -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/external/_main~non_module_deps~com_google_google_maps -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~FXPageControl -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/external/_main~non_module_deps~FXPageControl -Xcc \"-DNEEDS_QUOTES=Two words\" -Xcc -DAWESOME -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_i386_x86_64-simulator/CryptoSwift.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_objc_modulemap.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_swift_modulemap.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_objc_modulemap-module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/iOSApp/Source/CoreUtilsObjC/CoreUtilsObjC.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64_x86_64-simulator/GoogleMapsBase.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64_x86_64-simulator/GoogleMapsCore.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64_x86_64-simulator/GoogleMaps.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/external/_main~non_module_deps~FXPageControl/FXPageControl.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/iOSApp/Source/Utils/Utils.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/iOSApp/Test/TestingUtils/TestingUtils.swift.modulemap -Xcc -Os -Xcc -DNDEBUG=1 -Xcc -Wno-unused-variable -Xcc -Winit-self -Xcc -Wno-extra"; - "OTHER_SWIFT_FLAGS[sdk=iphoneos*]" = "-Xcc -working-directory -Xcc $(PROJECT_DIR) -working-directory $(PROJECT_DIR) -Xcc -ivfsoverlay -Xcc $(OBJROOT)/bazel-out-overlay.yaml -vfsoverlay $(OBJROOT)/bazel-out-overlay.yaml $(PREVIEWS_SWIFT_INCLUDE__$(ENABLE_PREVIEWS)) @$(DERIVED_FILE_DIR)/swift.compile.params -F$(DEVELOPER_DIR)/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F$(SDKROOT)/Developer/Library/Frameworks -I$(DEVELOPER_DIR)/Platforms/iPhoneOS.platform/Developer/usr/lib -I$(BAZEL_OUT)/CONFIGURATION-STABLE-17/bin/Lib/UndesiredSchemes -I$(BAZEL_OUT)/CONFIGURATION-STABLE-17/bin/Lib -I$(BAZEL_OUT)/CONFIGURATION-STABLE-17/bin/UI -I$(BAZEL_OUT)/CONFIGURATION-STABLE-17/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer -I$(BAZEL_OUT)/CONFIGURATION-STABLE-17/bin/iOSApp/Source -I$(BAZEL_OUT)/CONFIGURATION-STABLE-17/bin/iOSApp/Test/TestingUtils -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_armv7 -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64 -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64 -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64 -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_armv7 -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64 -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64 -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64 -Xcc -I -Xcc $(SRCROOT)/iOSApp/Source/CoreUtilsObjC -Xcc -I -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-17/bin/iOSApp/Source/CoreUtilsObjC -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-17/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -Xcc -iquote -Xcc $(PROJECT_DIR) -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-17/bin -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-17/bin/external/_main~non_module_deps~com_google_google_maps -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~FXPageControl -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-17/bin/external/_main~non_module_deps~FXPageControl -Xcc \"-DNEEDS_QUOTES=Two words\" -Xcc -DAWESOME -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_armv7/CryptoSwift.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-17/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_objc_modulemap.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-17/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_swift_modulemap.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-17/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_objc_modulemap-module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-17/bin/iOSApp/Source/CoreUtilsObjC/CoreUtilsObjC.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64/GoogleMapsBase.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64/GoogleMapsCore.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64/GoogleMaps.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-17/bin/external/_main~non_module_deps~FXPageControl/FXPageControl.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-17/bin/iOSApp/Source/Utils/Utils.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-17/bin/iOSApp/Test/TestingUtils/TestingUtils.swift.modulemap -Xcc -Os -Xcc -DNDEBUG=1 -Xcc -Wno-unused-variable -Xcc -Winit-self -Xcc -Wno-extra"; + OTHER_SWIFT_FLAGS = "-Xcc -working-directory -Xcc $(PROJECT_DIR) -working-directory $(PROJECT_DIR) -Xcc -ivfsoverlay -Xcc $(OBJROOT)/bazel-out-overlay.yaml -vfsoverlay $(OBJROOT)/bazel-out-overlay.yaml $(PREVIEWS_SWIFT_INCLUDE__$(ENABLE_PREVIEWS)) @$(DERIVED_FILE_DIR)/swift.compile.params -F$(DEVELOPER_DIR)/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks -F$(SDKROOT)/Developer/Library/Frameworks -I$(DEVELOPER_DIR)/Platforms/iPhoneSimulator.platform/Developer/usr/lib -I$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/Lib/UndesiredSchemes -I$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/Lib -I$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/UI -I$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer -I$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/iOSApp/Source -I$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/iOSApp/Test/TestingUtils -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_i386_x86_64-simulator -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64_x86_64-simulator -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64_x86_64-simulator -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64_x86_64-simulator -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_i386_x86_64-simulator -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64_x86_64-simulator -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64_x86_64-simulator -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64_x86_64-simulator -Xcc -I -Xcc $(SRCROOT)/iOSApp/Source/CoreUtilsObjC -Xcc -I -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/iOSApp/Source/CoreUtilsObjC -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -Xcc -iquote -Xcc $(PROJECT_DIR) -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/external/_main~non_module_deps~com_google_google_maps -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~FXPageControl -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/external/_main~non_module_deps~FXPageControl -Xcc \"-DNEEDS_QUOTES=Two words\" -Xcc -DAWESOME -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_i386_x86_64-simulator/CryptoSwift.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_objc_modulemap_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_swift_modulemap_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_objc_modulemap-module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/iOSApp/Source/CoreUtilsObjC/CoreUtilsObjC_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64_x86_64-simulator/GoogleMapsBase.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64_x86_64-simulator/GoogleMapsCore.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64_x86_64-simulator/GoogleMaps.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/external/_main~non_module_deps~FXPageControl/FXPageControl_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/iOSApp/Source/Utils/Utils_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/iOSApp/Test/TestingUtils/TestingUtils_modulemap/_/module.modulemap -Xcc -Os -Xcc -DNDEBUG=1 -Xcc -Wno-unused-variable -Xcc -Winit-self -Xcc -Wno-extra"; + "OTHER_SWIFT_FLAGS[sdk=iphoneos*]" = "-Xcc -working-directory -Xcc $(PROJECT_DIR) -working-directory $(PROJECT_DIR) -Xcc -ivfsoverlay -Xcc $(OBJROOT)/bazel-out-overlay.yaml -vfsoverlay $(OBJROOT)/bazel-out-overlay.yaml $(PREVIEWS_SWIFT_INCLUDE__$(ENABLE_PREVIEWS)) @$(DERIVED_FILE_DIR)/swift.compile.params -F$(DEVELOPER_DIR)/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F$(SDKROOT)/Developer/Library/Frameworks -I$(DEVELOPER_DIR)/Platforms/iPhoneOS.platform/Developer/usr/lib -I$(BAZEL_OUT)/CONFIGURATION-STABLE-17/bin/Lib/UndesiredSchemes -I$(BAZEL_OUT)/CONFIGURATION-STABLE-17/bin/Lib -I$(BAZEL_OUT)/CONFIGURATION-STABLE-17/bin/UI -I$(BAZEL_OUT)/CONFIGURATION-STABLE-17/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer -I$(BAZEL_OUT)/CONFIGURATION-STABLE-17/bin/iOSApp/Source -I$(BAZEL_OUT)/CONFIGURATION-STABLE-17/bin/iOSApp/Test/TestingUtils -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_armv7 -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64 -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64 -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64 -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_armv7 -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64 -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64 -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64 -Xcc -I -Xcc $(SRCROOT)/iOSApp/Source/CoreUtilsObjC -Xcc -I -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-17/bin/iOSApp/Source/CoreUtilsObjC -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-17/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -Xcc -iquote -Xcc $(PROJECT_DIR) -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-17/bin -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-17/bin/external/_main~non_module_deps~com_google_google_maps -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~FXPageControl -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-17/bin/external/_main~non_module_deps~FXPageControl -Xcc \"-DNEEDS_QUOTES=Two words\" -Xcc -DAWESOME -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_armv7/CryptoSwift.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-17/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_objc_modulemap_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-17/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_swift_modulemap_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-17/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_objc_modulemap-module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-17/bin/iOSApp/Source/CoreUtilsObjC/CoreUtilsObjC_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64/GoogleMapsBase.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64/GoogleMapsCore.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64/GoogleMaps.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-17/bin/external/_main~non_module_deps~FXPageControl/FXPageControl_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-17/bin/iOSApp/Source/Utils/Utils_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-17/bin/iOSApp/Test/TestingUtils/TestingUtils_modulemap/_/module.modulemap -Xcc -Os -Xcc -DNDEBUG=1 -Xcc -Wno-unused-variable -Xcc -Winit-self -Xcc -Wno-extra"; PREVIEWS_SWIFT_INCLUDE__ = ""; PREVIEWS_SWIFT_INCLUDE__NO = ""; PREVIEWS_SWIFT_INCLUDE__YES = "-I bazel-out/CONFIGURATION-STABLE-12/bin/iOSApp/Test/SwiftUnitTests"; @@ -15196,7 +15666,7 @@ CODE_SIGN_STYLE = Manual; COMPILE_TARGET_NAME = watchOSAppExtensionUnitTests.library; INFOPLIST_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-13/bin/watchOSAppExtension/Test/UnitTests/rules_xcodeproj/watchOSAppExtensionUnitTests.__internal__.__test_bundle/Info.plist"; - LINK_PARAMS_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/watchOSAppExtensionUnitTests.146.link.params"; + LINK_PARAMS_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/watchOSAppExtensionUnitTests.149.link.params"; OTHER_LDFLAGS = "@$(DERIVED_FILE_DIR)/link.params"; OTHER_SWIFT_FLAGS = "-Xcc -working-directory -Xcc $(PROJECT_DIR) -working-directory $(PROJECT_DIR) -Xcc -ivfsoverlay -Xcc $(OBJROOT)/bazel-out-overlay.yaml -vfsoverlay $(OBJROOT)/bazel-out-overlay.yaml $(PREVIEWS_SWIFT_INCLUDE__$(ENABLE_PREVIEWS)) @$(DERIVED_FILE_DIR)/swift.compile.params -F$(DEVELOPER_DIR)/Platforms/WatchSimulator.platform/Developer/Library/Frameworks -F$(SDKROOT)/Developer/Library/Frameworks -I$(DEVELOPER_DIR)/Platforms/WatchSimulator.platform/Developer/usr/lib -I$(BAZEL_OUT)/CONFIGURATION-STABLE-13/bin/Lib -I$(BAZEL_OUT)/CONFIGURATION-STABLE-13/bin/UI -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/watchos-arm64_i386_x86_64-simulator -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/watchos-arm64_i386_x86_64-simulator -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-13/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -Xcc -iquote -Xcc $(PROJECT_DIR) -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-13/bin -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/watchos-arm64_i386_x86_64-simulator/CryptoSwift.framework/Modules/module.modulemap -Xcc -Os -Xcc -DNDEBUG=1 -Xcc -Wno-unused-variable -Xcc -Winit-self -Xcc -Wno-extra"; PREVIEWS_SWIFT_INCLUDE__ = ""; @@ -15226,7 +15696,7 @@ BAZEL_TARGET_ID = "@@//CommandLine/Tests:BasicTests CONFIGURATION-STABLE-33"; "BAZEL_TARGET_ID[sdk=macosx*]" = "$(BAZEL_TARGET_ID)"; COMPILE_TARGET_NAME = BasicTests; - LINK_PARAMS_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/BasicTests.70.link.params"; + LINK_PARAMS_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/BasicTests.73.link.params"; MACOSX_DEPLOYMENT_TARGET = 12.0; OTHER_LDFLAGS = "@$(DERIVED_FILE_DIR)/link.params"; OTHER_SWIFT_FLAGS = "-Xcc -working-directory -Xcc $(PROJECT_DIR) -working-directory $(PROJECT_DIR) -vfsoverlay $(OBJROOT)/bazel-out-overlay.yaml @$(DERIVED_FILE_DIR)/swift.compile.params -F$(DEVELOPER_DIR)/Platforms/MacOSX.platform/Developer/Library/Frameworks -I$(DEVELOPER_DIR)/Platforms/MacOSX.platform/Developer/usr/lib -Xcc -iquote -Xcc $(PROJECT_DIR) -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-33/bin -Xcc -O0 -Xcc -DDEBUG=1 -Xcc -fstack-protector -Xcc -fstack-protector-all"; @@ -15261,7 +15731,7 @@ INFOPLIST_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-6/bin/Lib/rules_xcodeproj/LibFramework.tvOS/Info.plist"; "INFOPLIST_FILE[sdk=appletvos*]" = "$(BAZEL_OUT)/CONFIGURATION-STABLE-11/bin/Lib/rules_xcodeproj/LibFramework.tvOS/Info.plist"; LINK_PARAMS_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/LibFramework.tvOS.25.link.params"; - "LINK_PARAMS_FILE[sdk=appletvos*]" = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/LibFramework.tvOS.92.link.params"; + "LINK_PARAMS_FILE[sdk=appletvos*]" = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/LibFramework.tvOS.95.link.params"; OTHER_LDFLAGS = "@$(DERIVED_FILE_DIR)/link.params"; PREVIEW_FRAMEWORK_PATHS = "\"$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/tvos-arm64_x86_64-simulator/CryptoSwift.framework\""; "PREVIEW_FRAMEWORK_PATHS[sdk=appletvos*]" = "\"$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/tvos-arm64/CryptoSwift.framework\""; @@ -15296,8 +15766,8 @@ COMPILE_TARGET_NAME = LibFramework.tvOS; INFOPLIST_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-15/bin/Lib/rules_xcodeproj/LibFramework.tvOS/Info.plist"; "INFOPLIST_FILE[sdk=appletvos*]" = "$(BAZEL_OUT)/CONFIGURATION-STABLE-20/bin/Lib/rules_xcodeproj/LibFramework.tvOS/Info.plist"; - LINK_PARAMS_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/LibFramework.tvOS.126.link.params"; - "LINK_PARAMS_FILE[sdk=appletvos*]" = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/LibFramework.tvOS.193.link.params"; + LINK_PARAMS_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/LibFramework.tvOS.129.link.params"; + "LINK_PARAMS_FILE[sdk=appletvos*]" = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/LibFramework.tvOS.199.link.params"; OTHER_LDFLAGS = "@$(DERIVED_FILE_DIR)/link.params"; PREVIEW_FRAMEWORK_PATHS = "\"$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/tvos-arm64_x86_64-simulator/CryptoSwift.framework\""; "PREVIEW_FRAMEWORK_PATHS[sdk=appletvos*]" = "\"$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/tvos-arm64/CryptoSwift.framework\""; @@ -15354,7 +15824,7 @@ CODE_SIGN_STYLE = Manual; COMPILE_TARGET_NAME = macOSApp.library; INFOPLIST_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-16/bin/macOSApp/Source/rules_xcodeproj/macOSApp/Info.plist"; - LINK_PARAMS_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/macOSApp.141.link.params"; + LINK_PARAMS_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/macOSApp.144.link.params"; MACOSX_DEPLOYMENT_TARGET = 12.0; OTHER_LDFLAGS = "@$(DERIVED_FILE_DIR)/link.params"; OTHER_SWIFT_FLAGS = "-Xcc -working-directory -Xcc $(PROJECT_DIR) -working-directory $(PROJECT_DIR) -Xcc -ivfsoverlay -Xcc $(OBJROOT)/bazel-out-overlay.yaml -vfsoverlay $(OBJROOT)/bazel-out-overlay.yaml $(PREVIEWS_SWIFT_INCLUDE__$(ENABLE_PREVIEWS)) @$(DERIVED_FILE_DIR)/swift.compile.params -I$(BAZEL_OUT)/CONFIGURATION-STABLE-16/bin/Lib -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/macos-arm64_x86_64 -F$(SRCROOT)/macOSApp/third_party -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/macos-arm64_x86_64 -Xcc -F -Xcc $(SRCROOT)/macOSApp/third_party -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-16/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -Xcc -iquote -Xcc $(PROJECT_DIR) -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-16/bin -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/macos-arm64_x86_64/CryptoSwift.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(SRCROOT)/macOSApp/third_party/ExampleFramework.framework/Modules/module.modulemap -Xcc -Os -Xcc -DNDEBUG=1 -Xcc -Wno-unused-variable -Xcc -Winit-self -Xcc -Wno-extra"; @@ -15394,7 +15864,7 @@ CODE_SIGN_STYLE = Manual; COMPILE_TARGET_NAME = tvOSAppUITests.library; INFOPLIST_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-15/bin/tvOSApp/Test/UITests/rules_xcodeproj/tvOSAppUITests.__internal__.__test_bundle/Info.plist"; - LINK_PARAMS_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/tvOSAppUITests.143.link.params"; + LINK_PARAMS_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/tvOSAppUITests.146.link.params"; OTHER_LDFLAGS = "@$(DERIVED_FILE_DIR)/link.params"; OTHER_SWIFT_FLAGS = "-Xcc -working-directory -Xcc $(PROJECT_DIR) -working-directory $(PROJECT_DIR) -vfsoverlay $(OBJROOT)/bazel-out-overlay.yaml @$(DERIVED_FILE_DIR)/swift.compile.params -F$(DEVELOPER_DIR)/Platforms/AppleTVSimulator.platform/Developer/Library/Frameworks -F$(SDKROOT)/Developer/Library/Frameworks -I$(DEVELOPER_DIR)/Platforms/AppleTVSimulator.platform/Developer/usr/lib -Xcc -iquote -Xcc $(PROJECT_DIR) -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-15/bin -Xcc -Os -Xcc -DNDEBUG=1 -Xcc -Wno-unused-variable -Xcc -Winit-self -Xcc -Wno-extra"; PRODUCT_BUNDLE_IDENTIFIER = "rules-xcodeproj.example.uitests"; @@ -15429,7 +15899,7 @@ COMPILE_TARGET_NAME = tool.library; C_PARAMS_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-28/bin/CommandLine/CommandLineTool/tool.library.rules_xcodeproj.c.compile.params"; EXECUTABLE_EXTENSION = binary; - LINK_PARAMS_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/UniversalCommandLineTool.63.link.params"; + LINK_PARAMS_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/UniversalCommandLineTool.66.link.params"; MACOSX_DEPLOYMENT_TARGET = 11.0; OTHER_CFLAGS = "$(ASAN_OTHER_CFLAGS__$(CLANG_ADDRESS_SANITIZER))"; OTHER_LDFLAGS = "@$(DERIVED_FILE_DIR)/link.params"; @@ -15503,7 +15973,7 @@ COMPILE_TARGET_NAME = tool.library; C_PARAMS_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-29/bin/CommandLine/CommandLineTool/tool.library.rules_xcodeproj.c.compile.params"; EXECUTABLE_EXTENSION = binary; - LINK_PARAMS_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/UniversalCommandLineTool.69.link.params"; + LINK_PARAMS_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/UniversalCommandLineTool.72.link.params"; MACOSX_DEPLOYMENT_TARGET = 11.0; OTHER_CFLAGS = "$(ASAN_OTHER_CFLAGS__$(CLANG_ADDRESS_SANITIZER))"; OTHER_LDFLAGS = "@$(DERIVED_FILE_DIR)/link.params"; @@ -15533,7 +16003,7 @@ COMPILE_TARGET_NAME = iMessageAppExtension.library; INFOPLIST_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/iMessageApp/rules_xcodeproj/iMessageAppExtension/Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 15.0; - LINK_PARAMS_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iMessageAppExtension.136.link.params"; + LINK_PARAMS_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iMessageAppExtension.139.link.params"; OTHER_LDFLAGS = "@$(DERIVED_FILE_DIR)/link.params"; OTHER_SWIFT_FLAGS = "-Xcc -working-directory -Xcc $(PROJECT_DIR) -working-directory $(PROJECT_DIR) -Xcc -ivfsoverlay -Xcc $(OBJROOT)/bazel-out-overlay.yaml -vfsoverlay $(OBJROOT)/bazel-out-overlay.yaml $(PREVIEWS_SWIFT_INCLUDE__$(ENABLE_PREVIEWS)) @$(DERIVED_FILE_DIR)/swift.compile.params -I$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/Lib -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_i386_x86_64-simulator -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_i386_x86_64-simulator -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -Xcc -iquote -Xcc $(PROJECT_DIR) -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_i386_x86_64-simulator/CryptoSwift.framework/Modules/module.modulemap -Xcc -Os -Xcc -DNDEBUG=1 -Xcc -Wno-unused-variable -Xcc -Winit-self -Xcc -Wno-extra"; PREVIEWS_SWIFT_INCLUDE__ = ""; @@ -15586,7 +16056,7 @@ INFOPLIST_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-6/bin/tvOSApp/Source/rules_xcodeproj/tvOSApp/Info.plist"; "INFOPLIST_FILE[sdk=appletvos*]" = "$(BAZEL_OUT)/CONFIGURATION-STABLE-11/bin/tvOSApp/Source/rules_xcodeproj/tvOSApp/Info.plist"; LINK_PARAMS_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/tvOSApp.27.link.params"; - "LINK_PARAMS_FILE[sdk=appletvos*]" = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/tvOSApp.94.link.params"; + "LINK_PARAMS_FILE[sdk=appletvos*]" = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/tvOSApp.97.link.params"; OTHER_LDFLAGS = "@$(DERIVED_FILE_DIR)/link.params"; OTHER_SWIFT_FLAGS = "-Xcc -working-directory -Xcc $(PROJECT_DIR) -working-directory $(PROJECT_DIR) -Xcc -ivfsoverlay -Xcc $(OBJROOT)/bazel-out-overlay.yaml -vfsoverlay $(OBJROOT)/bazel-out-overlay.yaml $(PREVIEWS_SWIFT_INCLUDE__$(ENABLE_PREVIEWS)) @$(DERIVED_FILE_DIR)/swift.compile.params -I$(BAZEL_OUT)/CONFIGURATION-STABLE-6/bin/Lib -I$(BAZEL_OUT)/CONFIGURATION-STABLE-6/bin/UI -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/tvos-arm64_x86_64-simulator -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/tvos-arm64_x86_64-simulator -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-6/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -Xcc -iquote -Xcc $(PROJECT_DIR) -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-6/bin -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/tvos-arm64_x86_64-simulator/CryptoSwift.framework/Modules/module.modulemap -Xcc -O0 -Xcc -DDEBUG=1 -Xcc -fstack-protector -Xcc -fstack-protector-all"; "OTHER_SWIFT_FLAGS[sdk=appletvos*]" = "-Xcc -working-directory -Xcc $(PROJECT_DIR) -working-directory $(PROJECT_DIR) -Xcc -ivfsoverlay -Xcc $(OBJROOT)/bazel-out-overlay.yaml -vfsoverlay $(OBJROOT)/bazel-out-overlay.yaml $(PREVIEWS_SWIFT_INCLUDE__$(ENABLE_PREVIEWS)) @$(DERIVED_FILE_DIR)/swift.compile.params -I$(BAZEL_OUT)/CONFIGURATION-STABLE-11/bin/Lib -I$(BAZEL_OUT)/CONFIGURATION-STABLE-11/bin/UI -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/tvos-arm64 -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/tvos-arm64 -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-11/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -Xcc -iquote -Xcc $(PROJECT_DIR) -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-11/bin -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/tvos-arm64/CryptoSwift.framework/Modules/module.modulemap -Xcc -O0 -Xcc -DDEBUG=1 -Xcc -fstack-protector -Xcc -fstack-protector-all"; @@ -15687,7 +16157,7 @@ "INFOPLIST_FILE[sdk=iphoneos*]" = "$(BAZEL_OUT)/CONFIGURATION-STABLE-8/bin/UI/rules_xcodeproj/UIFramework.iOS/Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 15.0; LINK_PARAMS_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/UIFramework.iOS.13.link.params"; - "LINK_PARAMS_FILE[sdk=iphoneos*]" = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/UIFramework.iOS.80.link.params"; + "LINK_PARAMS_FILE[sdk=iphoneos*]" = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/UIFramework.iOS.83.link.params"; OTHER_LDFLAGS = "@$(DERIVED_FILE_DIR)/link.params"; OTHER_SWIFT_FLAGS = "-Xcc -working-directory -Xcc $(PROJECT_DIR) -working-directory $(PROJECT_DIR) -Xcc -ivfsoverlay -Xcc $(OBJROOT)/bazel-out-overlay.yaml -vfsoverlay $(OBJROOT)/bazel-out-overlay.yaml $(PREVIEWS_SWIFT_INCLUDE__$(ENABLE_PREVIEWS)) @$(DERIVED_FILE_DIR)/swift.compile.params -I$(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/Lib -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_i386_x86_64-simulator -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_i386_x86_64-simulator -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -Xcc -iquote -Xcc $(PROJECT_DIR) -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_i386_x86_64-simulator/CryptoSwift.framework/Modules/module.modulemap -Xcc -O0 -Xcc -DDEBUG=1 -Xcc -fstack-protector -Xcc -fstack-protector-all"; "OTHER_SWIFT_FLAGS[sdk=iphoneos*]" = "-Xcc -working-directory -Xcc $(PROJECT_DIR) -working-directory $(PROJECT_DIR) -Xcc -ivfsoverlay -Xcc $(OBJROOT)/bazel-out-overlay.yaml -vfsoverlay $(OBJROOT)/bazel-out-overlay.yaml $(PREVIEWS_SWIFT_INCLUDE__$(ENABLE_PREVIEWS)) @$(DERIVED_FILE_DIR)/swift.compile.params -I$(BAZEL_OUT)/CONFIGURATION-STABLE-8/bin/Lib -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_armv7 -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_armv7 -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-8/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -Xcc -iquote -Xcc $(PROJECT_DIR) -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-8/bin -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_armv7/CryptoSwift.framework/Modules/module.modulemap -Xcc -O0 -Xcc -DDEBUG=1 -Xcc -fstack-protector -Xcc -fstack-protector-all"; @@ -15777,8 +16247,8 @@ IPHONEOS_DEPLOYMENT_TARGET = 15.0; IPHONEOS_FILES = "bazel-out/CONFIGURATION-STABLE-17/bin/WidgetExtension/Intents.swift"; IPHONESIMULATOR_FILES = "bazel-out/CONFIGURATION-STABLE-12/bin/WidgetExtension/Intents.swift"; - LINK_PARAMS_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/WidgetExtension.112.link.params"; - "LINK_PARAMS_FILE[sdk=iphoneos*]" = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/WidgetExtension.179.link.params"; + LINK_PARAMS_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/WidgetExtension.115.link.params"; + "LINK_PARAMS_FILE[sdk=iphoneos*]" = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/WidgetExtension.185.link.params"; OTHER_LDFLAGS = "@$(DERIVED_FILE_DIR)/link.params"; OTHER_SWIFT_FLAGS = "-Xcc -working-directory -Xcc $(PROJECT_DIR) -working-directory $(PROJECT_DIR) -Xcc -ivfsoverlay -Xcc $(OBJROOT)/bazel-out-overlay.yaml -vfsoverlay $(OBJROOT)/bazel-out-overlay.yaml $(PREVIEWS_SWIFT_INCLUDE__$(ENABLE_PREVIEWS)) @$(DERIVED_FILE_DIR)/swift.compile.params -I$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/Lib -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_i386_x86_64-simulator -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_i386_x86_64-simulator -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -Xcc -iquote -Xcc $(PROJECT_DIR) -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_i386_x86_64-simulator/CryptoSwift.framework/Modules/module.modulemap -Xcc -Os -Xcc -DNDEBUG=1 -Xcc -Wno-unused-variable -Xcc -Winit-self -Xcc -Wno-extra"; "OTHER_SWIFT_FLAGS[sdk=iphoneos*]" = "-Xcc -working-directory -Xcc $(PROJECT_DIR) -working-directory $(PROJECT_DIR) -Xcc -ivfsoverlay -Xcc $(OBJROOT)/bazel-out-overlay.yaml -vfsoverlay $(OBJROOT)/bazel-out-overlay.yaml $(PREVIEWS_SWIFT_INCLUDE__$(ENABLE_PREVIEWS)) @$(DERIVED_FILE_DIR)/swift.compile.params -I$(BAZEL_OUT)/CONFIGURATION-STABLE-17/bin/Lib -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_armv7 -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_armv7 -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-17/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -Xcc -iquote -Xcc $(PROJECT_DIR) -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-17/bin -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_armv7/CryptoSwift.framework/Modules/module.modulemap -Xcc -Os -Xcc -DNDEBUG=1 -Xcc -Wno-unused-variable -Xcc -Winit-self -Xcc -Wno-extra"; @@ -15856,8 +16326,8 @@ "DEVELOPMENT_TEAM[sdk=watchos*]" = V82V4GQZXM; INFOPLIST_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-13/bin/watchOSAppExtension/rules_xcodeproj/watchOSAppExtension/Info.plist"; "INFOPLIST_FILE[sdk=watchos*]" = "$(BAZEL_OUT)/CONFIGURATION-STABLE-18/bin/watchOSAppExtension/rules_xcodeproj/watchOSAppExtension/Info.plist"; - LINK_PARAMS_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/watchOSAppExtension.118.link.params"; - "LINK_PARAMS_FILE[sdk=watchos*]" = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/watchOSAppExtension.185.link.params"; + LINK_PARAMS_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/watchOSAppExtension.121.link.params"; + "LINK_PARAMS_FILE[sdk=watchos*]" = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/watchOSAppExtension.191.link.params"; OTHER_LDFLAGS = "@$(DERIVED_FILE_DIR)/link.params"; OTHER_SWIFT_FLAGS = "-Xcc -working-directory -Xcc $(PROJECT_DIR) -working-directory $(PROJECT_DIR) -Xcc -ivfsoverlay -Xcc $(OBJROOT)/bazel-out-overlay.yaml -vfsoverlay $(OBJROOT)/bazel-out-overlay.yaml $(PREVIEWS_SWIFT_INCLUDE__$(ENABLE_PREVIEWS)) @$(DERIVED_FILE_DIR)/swift.compile.params -I$(BAZEL_OUT)/CONFIGURATION-STABLE-13/bin/Lib -I$(BAZEL_OUT)/CONFIGURATION-STABLE-13/bin/UI -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/watchos-arm64_i386_x86_64-simulator -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/watchos-arm64_i386_x86_64-simulator -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-13/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -Xcc -iquote -Xcc $(PROJECT_DIR) -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-13/bin -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/watchos-arm64_i386_x86_64-simulator/CryptoSwift.framework/Modules/module.modulemap -Xcc -Os -Xcc -DNDEBUG=1 -Xcc -Wno-unused-variable -Xcc -Winit-self -Xcc -Wno-extra"; "OTHER_SWIFT_FLAGS[sdk=watchos*]" = "-Xcc -working-directory -Xcc $(PROJECT_DIR) -working-directory $(PROJECT_DIR) -Xcc -ivfsoverlay -Xcc $(OBJROOT)/bazel-out-overlay.yaml -vfsoverlay $(OBJROOT)/bazel-out-overlay.yaml $(PREVIEWS_SWIFT_INCLUDE__$(ENABLE_PREVIEWS)) @$(DERIVED_FILE_DIR)/swift.compile.params -I$(BAZEL_OUT)/CONFIGURATION-STABLE-18/bin/Lib -I$(BAZEL_OUT)/CONFIGURATION-STABLE-18/bin/UI -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/watchos-arm64_32_armv7k -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/watchos-arm64_32_armv7k -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-18/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -Xcc -iquote -Xcc $(PROJECT_DIR) -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-18/bin -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/watchos-arm64_32_armv7k/CryptoSwift.framework/Modules/module.modulemap -Xcc -Os -Xcc -DNDEBUG=1 -Xcc -Wno-unused-variable -Xcc -Winit-self -Xcc -Wno-extra"; @@ -15926,10 +16396,10 @@ "INFOPLIST_FILE[sdk=iphoneos*]" = "$(BAZEL_OUT)/CONFIGURATION-STABLE-8/bin/iOSApp/Test/SwiftUnitTests/rules_xcodeproj/iOSAppSwiftUnitTests.__internal__.__test_bundle/Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 15.0; LINK_PARAMS_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iOSAppSwiftUnitTests.37.link.params"; - "LINK_PARAMS_FILE[sdk=iphoneos*]" = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iOSAppSwiftUnitTests.100.link.params"; + "LINK_PARAMS_FILE[sdk=iphoneos*]" = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iOSAppSwiftUnitTests.103.link.params"; OTHER_LDFLAGS = "@$(DERIVED_FILE_DIR)/link.params"; - OTHER_SWIFT_FLAGS = "-Xcc -working-directory -Xcc $(PROJECT_DIR) -working-directory $(PROJECT_DIR) -Xcc -ivfsoverlay -Xcc $(OBJROOT)/bazel-out-overlay.yaml -vfsoverlay $(OBJROOT)/bazel-out-overlay.yaml $(PREVIEWS_SWIFT_INCLUDE__$(ENABLE_PREVIEWS)) @$(DERIVED_FILE_DIR)/swift.compile.params -F$(DEVELOPER_DIR)/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks -F$(SDKROOT)/Developer/Library/Frameworks -I$(DEVELOPER_DIR)/Platforms/iPhoneSimulator.platform/Developer/usr/lib -I$(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/Lib/UndesiredSchemes -I$(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/Lib -I$(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/UI -I$(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer -I$(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/iOSApp/Source -I$(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/iOSApp/Test/TestingUtils -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_i386_x86_64-simulator -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64_x86_64-simulator -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64_x86_64-simulator -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64_x86_64-simulator -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_i386_x86_64-simulator -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64_x86_64-simulator -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64_x86_64-simulator -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64_x86_64-simulator -Xcc -I -Xcc $(SRCROOT)/iOSApp/Source/CoreUtilsObjC -Xcc -I -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/iOSApp/Source/CoreUtilsObjC -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -Xcc -iquote -Xcc $(PROJECT_DIR) -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/external/_main~non_module_deps~com_google_google_maps -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~FXPageControl -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/external/_main~non_module_deps~FXPageControl -Xcc \"-DNEEDS_QUOTES=Two words\" -Xcc -DAWESOME -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_i386_x86_64-simulator/CryptoSwift.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_objc_modulemap.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_swift_modulemap.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_objc_modulemap-module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/iOSApp/Source/CoreUtilsObjC/CoreUtilsObjC.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64_x86_64-simulator/GoogleMapsBase.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64_x86_64-simulator/GoogleMapsCore.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64_x86_64-simulator/GoogleMaps.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/external/_main~non_module_deps~FXPageControl/FXPageControl.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/iOSApp/Source/Utils/Utils.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/iOSApp/Test/TestingUtils/TestingUtils.swift.modulemap -Xcc -O0 -Xcc -DDEBUG=1 -Xcc -fstack-protector -Xcc -fstack-protector-all"; - "OTHER_SWIFT_FLAGS[sdk=iphoneos*]" = "-Xcc -working-directory -Xcc $(PROJECT_DIR) -working-directory $(PROJECT_DIR) -Xcc -ivfsoverlay -Xcc $(OBJROOT)/bazel-out-overlay.yaml -vfsoverlay $(OBJROOT)/bazel-out-overlay.yaml $(PREVIEWS_SWIFT_INCLUDE__$(ENABLE_PREVIEWS)) @$(DERIVED_FILE_DIR)/swift.compile.params -F$(DEVELOPER_DIR)/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F$(SDKROOT)/Developer/Library/Frameworks -I$(DEVELOPER_DIR)/Platforms/iPhoneOS.platform/Developer/usr/lib -I$(BAZEL_OUT)/CONFIGURATION-STABLE-8/bin/Lib/UndesiredSchemes -I$(BAZEL_OUT)/CONFIGURATION-STABLE-8/bin/Lib -I$(BAZEL_OUT)/CONFIGURATION-STABLE-8/bin/UI -I$(BAZEL_OUT)/CONFIGURATION-STABLE-8/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer -I$(BAZEL_OUT)/CONFIGURATION-STABLE-8/bin/iOSApp/Source -I$(BAZEL_OUT)/CONFIGURATION-STABLE-8/bin/iOSApp/Test/TestingUtils -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_armv7 -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64 -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64 -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64 -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_armv7 -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64 -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64 -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64 -Xcc -I -Xcc $(SRCROOT)/iOSApp/Source/CoreUtilsObjC -Xcc -I -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-8/bin/iOSApp/Source/CoreUtilsObjC -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-8/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -Xcc -iquote -Xcc $(PROJECT_DIR) -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-8/bin -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-8/bin/external/_main~non_module_deps~com_google_google_maps -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~FXPageControl -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-8/bin/external/_main~non_module_deps~FXPageControl -Xcc \"-DNEEDS_QUOTES=Two words\" -Xcc -DAWESOME -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_armv7/CryptoSwift.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-8/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_objc_modulemap.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-8/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_swift_modulemap.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-8/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_objc_modulemap-module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-8/bin/iOSApp/Source/CoreUtilsObjC/CoreUtilsObjC.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64/GoogleMapsBase.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64/GoogleMapsCore.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64/GoogleMaps.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-8/bin/external/_main~non_module_deps~FXPageControl/FXPageControl.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-8/bin/iOSApp/Source/Utils/Utils.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-8/bin/iOSApp/Test/TestingUtils/TestingUtils.swift.modulemap -Xcc -O0 -Xcc -DDEBUG=1 -Xcc -fstack-protector -Xcc -fstack-protector-all"; + OTHER_SWIFT_FLAGS = "-Xcc -working-directory -Xcc $(PROJECT_DIR) -working-directory $(PROJECT_DIR) -Xcc -ivfsoverlay -Xcc $(OBJROOT)/bazel-out-overlay.yaml -vfsoverlay $(OBJROOT)/bazel-out-overlay.yaml $(PREVIEWS_SWIFT_INCLUDE__$(ENABLE_PREVIEWS)) @$(DERIVED_FILE_DIR)/swift.compile.params -F$(DEVELOPER_DIR)/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks -F$(SDKROOT)/Developer/Library/Frameworks -I$(DEVELOPER_DIR)/Platforms/iPhoneSimulator.platform/Developer/usr/lib -I$(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/Lib/UndesiredSchemes -I$(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/Lib -I$(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/UI -I$(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer -I$(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/iOSApp/Source -I$(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/iOSApp/Test/TestingUtils -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_i386_x86_64-simulator -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64_x86_64-simulator -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64_x86_64-simulator -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64_x86_64-simulator -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_i386_x86_64-simulator -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64_x86_64-simulator -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64_x86_64-simulator -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64_x86_64-simulator -Xcc -I -Xcc $(SRCROOT)/iOSApp/Source/CoreUtilsObjC -Xcc -I -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/iOSApp/Source/CoreUtilsObjC -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -Xcc -iquote -Xcc $(PROJECT_DIR) -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/external/_main~non_module_deps~com_google_google_maps -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~FXPageControl -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/external/_main~non_module_deps~FXPageControl -Xcc \"-DNEEDS_QUOTES=Two words\" -Xcc -DAWESOME -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_i386_x86_64-simulator/CryptoSwift.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_objc_modulemap_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_swift_modulemap_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_objc_modulemap-module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/iOSApp/Source/CoreUtilsObjC/CoreUtilsObjC_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64_x86_64-simulator/GoogleMapsBase.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64_x86_64-simulator/GoogleMapsCore.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64_x86_64-simulator/GoogleMaps.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/external/_main~non_module_deps~FXPageControl/FXPageControl_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/iOSApp/Source/Utils/Utils_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/iOSApp/Test/TestingUtils/TestingUtils_modulemap/_/module.modulemap -Xcc -O0 -Xcc -DDEBUG=1 -Xcc -fstack-protector -Xcc -fstack-protector-all"; + "OTHER_SWIFT_FLAGS[sdk=iphoneos*]" = "-Xcc -working-directory -Xcc $(PROJECT_DIR) -working-directory $(PROJECT_DIR) -Xcc -ivfsoverlay -Xcc $(OBJROOT)/bazel-out-overlay.yaml -vfsoverlay $(OBJROOT)/bazel-out-overlay.yaml $(PREVIEWS_SWIFT_INCLUDE__$(ENABLE_PREVIEWS)) @$(DERIVED_FILE_DIR)/swift.compile.params -F$(DEVELOPER_DIR)/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F$(SDKROOT)/Developer/Library/Frameworks -I$(DEVELOPER_DIR)/Platforms/iPhoneOS.platform/Developer/usr/lib -I$(BAZEL_OUT)/CONFIGURATION-STABLE-8/bin/Lib/UndesiredSchemes -I$(BAZEL_OUT)/CONFIGURATION-STABLE-8/bin/Lib -I$(BAZEL_OUT)/CONFIGURATION-STABLE-8/bin/UI -I$(BAZEL_OUT)/CONFIGURATION-STABLE-8/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer -I$(BAZEL_OUT)/CONFIGURATION-STABLE-8/bin/iOSApp/Source -I$(BAZEL_OUT)/CONFIGURATION-STABLE-8/bin/iOSApp/Test/TestingUtils -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_armv7 -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64 -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64 -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64 -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_armv7 -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64 -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64 -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64 -Xcc -I -Xcc $(SRCROOT)/iOSApp/Source/CoreUtilsObjC -Xcc -I -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-8/bin/iOSApp/Source/CoreUtilsObjC -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-8/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -Xcc -iquote -Xcc $(PROJECT_DIR) -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-8/bin -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-8/bin/external/_main~non_module_deps~com_google_google_maps -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~FXPageControl -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-8/bin/external/_main~non_module_deps~FXPageControl -Xcc \"-DNEEDS_QUOTES=Two words\" -Xcc -DAWESOME -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_armv7/CryptoSwift.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-8/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_objc_modulemap_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-8/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_swift_modulemap_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-8/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_objc_modulemap-module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-8/bin/iOSApp/Source/CoreUtilsObjC/CoreUtilsObjC_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64/GoogleMapsBase.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64/GoogleMapsCore.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64/GoogleMaps.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-8/bin/external/_main~non_module_deps~FXPageControl/FXPageControl_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-8/bin/iOSApp/Source/Utils/Utils_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-8/bin/iOSApp/Test/TestingUtils/TestingUtils_modulemap/_/module.modulemap -Xcc -O0 -Xcc -DDEBUG=1 -Xcc -fstack-protector -Xcc -fstack-protector-all"; PREVIEWS_SWIFT_INCLUDE__ = ""; PREVIEWS_SWIFT_INCLUDE__NO = ""; PREVIEWS_SWIFT_INCLUDE__YES = "-I bazel-out/CONFIGURATION-STABLE-3/bin/iOSApp/Test/SwiftUnitTests"; @@ -16063,8 +16533,8 @@ INFOPLIST_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/AppClip/rules_xcodeproj/AppClip/Info.plist"; "INFOPLIST_FILE[sdk=iphoneos*]" = "$(BAZEL_OUT)/CONFIGURATION-STABLE-17/bin/AppClip/rules_xcodeproj/AppClip/Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 15.0; - LINK_PARAMS_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/AppClip.107.link.params"; - "LINK_PARAMS_FILE[sdk=iphoneos*]" = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/AppClip.174.link.params"; + LINK_PARAMS_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/AppClip.110.link.params"; + "LINK_PARAMS_FILE[sdk=iphoneos*]" = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/AppClip.180.link.params"; OTHER_LDFLAGS = "@$(DERIVED_FILE_DIR)/link.params"; OTHER_SWIFT_FLAGS = "-Xcc -working-directory -Xcc $(PROJECT_DIR) -working-directory $(PROJECT_DIR) -Xcc -ivfsoverlay -Xcc $(OBJROOT)/bazel-out-overlay.yaml -vfsoverlay $(OBJROOT)/bazel-out-overlay.yaml $(PREVIEWS_SWIFT_INCLUDE__$(ENABLE_PREVIEWS)) @$(DERIVED_FILE_DIR)/swift.compile.params -I$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/Lib -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_i386_x86_64-simulator -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_i386_x86_64-simulator -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -Xcc -iquote -Xcc $(PROJECT_DIR) -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_i386_x86_64-simulator/CryptoSwift.framework/Modules/module.modulemap -Xcc -Os -Xcc -DNDEBUG=1 -Xcc -Wno-unused-variable -Xcc -Winit-self -Xcc -Wno-extra"; "OTHER_SWIFT_FLAGS[sdk=iphoneos*]" = "-Xcc -working-directory -Xcc $(PROJECT_DIR) -working-directory $(PROJECT_DIR) -Xcc -ivfsoverlay -Xcc $(OBJROOT)/bazel-out-overlay.yaml -vfsoverlay $(OBJROOT)/bazel-out-overlay.yaml $(PREVIEWS_SWIFT_INCLUDE__$(ENABLE_PREVIEWS)) @$(DERIVED_FILE_DIR)/swift.compile.params -I$(BAZEL_OUT)/CONFIGURATION-STABLE-17/bin/Lib -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_armv7 -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_armv7 -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-17/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -Xcc -iquote -Xcc $(PROJECT_DIR) -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-17/bin -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_armv7/CryptoSwift.framework/Modules/module.modulemap -Xcc -Os -Xcc -DNDEBUG=1 -Xcc -Wno-unused-variable -Xcc -Winit-self -Xcc -Wno-extra"; @@ -16117,8 +16587,8 @@ INFOPLIST_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/UI/rules_xcodeproj/UIFramework.iOS/Info.plist"; "INFOPLIST_FILE[sdk=iphoneos*]" = "$(BAZEL_OUT)/CONFIGURATION-STABLE-17/bin/UI/rules_xcodeproj/UIFramework.iOS/Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 15.0; - LINK_PARAMS_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/UIFramework.iOS.114.link.params"; - "LINK_PARAMS_FILE[sdk=iphoneos*]" = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/UIFramework.iOS.181.link.params"; + LINK_PARAMS_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/UIFramework.iOS.117.link.params"; + "LINK_PARAMS_FILE[sdk=iphoneos*]" = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/UIFramework.iOS.187.link.params"; OTHER_LDFLAGS = "@$(DERIVED_FILE_DIR)/link.params"; OTHER_SWIFT_FLAGS = "-Xcc -working-directory -Xcc $(PROJECT_DIR) -working-directory $(PROJECT_DIR) -Xcc -ivfsoverlay -Xcc $(OBJROOT)/bazel-out-overlay.yaml -vfsoverlay $(OBJROOT)/bazel-out-overlay.yaml $(PREVIEWS_SWIFT_INCLUDE__$(ENABLE_PREVIEWS)) @$(DERIVED_FILE_DIR)/swift.compile.params -I$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/Lib -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_i386_x86_64-simulator -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_i386_x86_64-simulator -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -Xcc -iquote -Xcc $(PROJECT_DIR) -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_i386_x86_64-simulator/CryptoSwift.framework/Modules/module.modulemap -Xcc -Os -Xcc -DNDEBUG=1 -Xcc -Wno-unused-variable -Xcc -Winit-self -Xcc -Wno-extra"; "OTHER_SWIFT_FLAGS[sdk=iphoneos*]" = "-Xcc -working-directory -Xcc $(PROJECT_DIR) -working-directory $(PROJECT_DIR) -Xcc -ivfsoverlay -Xcc $(OBJROOT)/bazel-out-overlay.yaml -vfsoverlay $(OBJROOT)/bazel-out-overlay.yaml $(PREVIEWS_SWIFT_INCLUDE__$(ENABLE_PREVIEWS)) @$(DERIVED_FILE_DIR)/swift.compile.params -I$(BAZEL_OUT)/CONFIGURATION-STABLE-17/bin/Lib -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_armv7 -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_armv7 -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-17/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -Xcc -iquote -Xcc $(PROJECT_DIR) -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-17/bin -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_armv7/CryptoSwift.framework/Modules/module.modulemap -Xcc -Os -Xcc -DNDEBUG=1 -Xcc -Wno-unused-variable -Xcc -Winit-self -Xcc -Wno-extra"; @@ -16195,7 +16665,7 @@ INFOPLIST_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-4/bin/Lib/dist/dynamic/rules_xcodeproj/watchOS/Info.plist"; "INFOPLIST_FILE[sdk=watchos*]" = "$(BAZEL_OUT)/CONFIGURATION-STABLE-9/bin/Lib/dist/dynamic/rules_xcodeproj/watchOS/Info.plist"; LINK_PARAMS_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/watchOS.24.link.params"; - "LINK_PARAMS_FILE[sdk=watchos*]" = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/watchOS.91.link.params"; + "LINK_PARAMS_FILE[sdk=watchos*]" = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/watchOS.94.link.params"; OTHER_LDFLAGS = "@$(DERIVED_FILE_DIR)/link.params"; PREVIEW_FRAMEWORK_PATHS = "\"$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/watchos-arm64_i386_x86_64-simulator/CryptoSwift.framework\""; "PREVIEW_FRAMEWORK_PATHS[sdk=watchos*]" = "\"$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/watchos-arm64_32_armv7k/CryptoSwift.framework\""; @@ -16261,7 +16731,7 @@ "INFOPLIST_FILE[sdk=iphoneos*]" = "$(BAZEL_OUT)/CONFIGURATION-STABLE-8/bin/iOSApp/Test/ObjCUnitTests/rules_xcodeproj/iOSAppObjCUnitTests.__internal__.__test_bundle/Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 15.0; LINK_PARAMS_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iOSAppObjCUnitTests.32.link.params"; - "LINK_PARAMS_FILE[sdk=iphoneos*]" = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iOSAppObjCUnitTests.98.link.params"; + "LINK_PARAMS_FILE[sdk=iphoneos*]" = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iOSAppObjCUnitTests.101.link.params"; OTHER_CFLAGS = "$(ASAN_OTHER_CFLAGS__$(CLANG_ADDRESS_SANITIZER))"; OTHER_LDFLAGS = "@$(DERIVED_FILE_DIR)/link.params"; PRODUCT_BUNDLE_IDENTIFIER = "rules-xcodeproj.example.objctests"; @@ -16295,7 +16765,7 @@ COMPILE_TARGET_NAME = tool.library; EXECUTABLE_EXTENSION = ""; INFOPLIST_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/Proto/rules_xcodeproj/proto/Info.plist"; - LINK_PARAMS_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/proto.49.link.params"; + LINK_PARAMS_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/proto.50.link.params"; MACOSX_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = "@$(DERIVED_FILE_DIR)/link.params"; OTHER_SWIFT_FLAGS = "-Xcc -working-directory -Xcc $(PROJECT_DIR) -working-directory $(PROJECT_DIR) -vfsoverlay $(OBJROOT)/bazel-out-overlay.yaml @$(DERIVED_FILE_DIR)/swift.compile.params -I$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_protobuf -I$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/Proto -Xcc -iquote -Xcc $(PROJECT_DIR) -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin -Xcc -O0 -Xcc -DDEBUG=1 -Xcc -fstack-protector -Xcc -fstack-protector-all"; @@ -16338,7 +16808,7 @@ "INFOPLIST_FILE[sdk=iphoneos*]" = "$(BAZEL_OUT)/CONFIGURATION-STABLE-8/bin/AppClip/rules_xcodeproj/AppClip/Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 15.0; LINK_PARAMS_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/AppClip.6.link.params"; - "LINK_PARAMS_FILE[sdk=iphoneos*]" = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/AppClip.73.link.params"; + "LINK_PARAMS_FILE[sdk=iphoneos*]" = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/AppClip.76.link.params"; OTHER_LDFLAGS = "@$(DERIVED_FILE_DIR)/link.params"; OTHER_SWIFT_FLAGS = "-Xcc -working-directory -Xcc $(PROJECT_DIR) -working-directory $(PROJECT_DIR) -Xcc -ivfsoverlay -Xcc $(OBJROOT)/bazel-out-overlay.yaml -vfsoverlay $(OBJROOT)/bazel-out-overlay.yaml $(PREVIEWS_SWIFT_INCLUDE__$(ENABLE_PREVIEWS)) @$(DERIVED_FILE_DIR)/swift.compile.params -I$(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/Lib -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_i386_x86_64-simulator -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_i386_x86_64-simulator -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -Xcc -iquote -Xcc $(PROJECT_DIR) -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_i386_x86_64-simulator/CryptoSwift.framework/Modules/module.modulemap -Xcc -O0 -Xcc -DDEBUG=1 -Xcc -fstack-protector -Xcc -fstack-protector-all"; "OTHER_SWIFT_FLAGS[sdk=iphoneos*]" = "-Xcc -working-directory -Xcc $(PROJECT_DIR) -working-directory $(PROJECT_DIR) -Xcc -ivfsoverlay -Xcc $(OBJROOT)/bazel-out-overlay.yaml -vfsoverlay $(OBJROOT)/bazel-out-overlay.yaml $(PREVIEWS_SWIFT_INCLUDE__$(ENABLE_PREVIEWS)) @$(DERIVED_FILE_DIR)/swift.compile.params -I$(BAZEL_OUT)/CONFIGURATION-STABLE-8/bin/Lib -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_armv7 -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_armv7 -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-8/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -Xcc -iquote -Xcc $(PROJECT_DIR) -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-8/bin -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_armv7/CryptoSwift.framework/Modules/module.modulemap -Xcc -O0 -Xcc -DDEBUG=1 -Xcc -fstack-protector -Xcc -fstack-protector-all"; @@ -16404,7 +16874,7 @@ COMPILE_TARGET_NAME = tool.library; C_PARAMS_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-32/bin/CommandLine/CommandLineTool/tool.library.rules_xcodeproj.c.compile.params"; EXECUTABLE_EXTENSION = binary; - LINK_PARAMS_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/UniversalCommandLineTool.170.link.params"; + LINK_PARAMS_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/UniversalCommandLineTool.176.link.params"; MACOSX_DEPLOYMENT_TARGET = 11.0; OTHER_CFLAGS = "$(ASAN_OTHER_CFLAGS__$(CLANG_ADDRESS_SANITIZER))"; OTHER_LDFLAGS = "@$(DERIVED_FILE_DIR)/link.params"; @@ -16423,12 +16893,12 @@ ASAN_OTHER_CFLAGS__ = "$(ASAN_OTHER_CFLAGS__NO)"; ASAN_OTHER_CFLAGS__NO = "-working-directory $(PROJECT_DIR) -ivfsoverlay $(OBJROOT)/bazel-out-overlay.yaml @$(DERIVED_FILE_DIR)/c.compile.params"; ASAN_OTHER_CFLAGS__YES = "$(ASAN_OTHER_CFLAGS__NO) -Wno-macro-redefined -D_FORTIFY_SOURCE=0"; - BAZEL_LABEL = "@@//CommandLine/swift_c_module:c_lib"; - BAZEL_PACKAGE_BIN_DIR = "bazel-out/CONFIGURATION-STABLE-31/bin/CommandLine/swift_c_module"; - BAZEL_TARGET_ID = "@@//CommandLine/swift_c_module:c_lib CONFIGURATION-STABLE-31"; + BAZEL_LABEL = "@@//CommandLine/swift_interop_hint:c_lib"; + BAZEL_PACKAGE_BIN_DIR = "bazel-out/CONFIGURATION-STABLE-31/bin/CommandLine/swift_interop_hint"; + BAZEL_TARGET_ID = "@@//CommandLine/swift_interop_hint:c_lib CONFIGURATION-STABLE-31"; "BAZEL_TARGET_ID[sdk=macosx*]" = "$(BAZEL_TARGET_ID)"; COMPILE_TARGET_NAME = c_lib; - C_PARAMS_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-31/bin/CommandLine/swift_c_module/c_lib.rules_xcodeproj.c.compile.params"; + C_PARAMS_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-31/bin/CommandLine/swift_interop_hint/c_lib.rules_xcodeproj.c.compile.params"; MACOSX_DEPLOYMENT_TARGET = 11.0; OTHER_CFLAGS = "$(ASAN_OTHER_CFLAGS__$(CLANG_ADDRESS_SANITIZER))"; PRODUCT_NAME = c_lib; @@ -16459,8 +16929,8 @@ COMPILE_TARGET_NAME = LibFramework.watchOS; INFOPLIST_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-13/bin/Lib/rules_xcodeproj/LibFramework.watchOS/Info.plist"; "INFOPLIST_FILE[sdk=watchos*]" = "$(BAZEL_OUT)/CONFIGURATION-STABLE-18/bin/Lib/rules_xcodeproj/LibFramework.watchOS/Info.plist"; - LINK_PARAMS_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/LibFramework.watchOS.116.link.params"; - "LINK_PARAMS_FILE[sdk=watchos*]" = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/LibFramework.watchOS.183.link.params"; + LINK_PARAMS_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/LibFramework.watchOS.119.link.params"; + "LINK_PARAMS_FILE[sdk=watchos*]" = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/LibFramework.watchOS.189.link.params"; OTHER_LDFLAGS = "@$(DERIVED_FILE_DIR)/link.params"; PREVIEW_FRAMEWORK_PATHS = "\"$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/watchos-arm64_i386_x86_64-simulator/CryptoSwift.framework\""; "PREVIEW_FRAMEWORK_PATHS[sdk=watchos*]" = "\"$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/watchos-arm64_32_armv7k/CryptoSwift.framework\""; @@ -16549,7 +17019,7 @@ CODE_SIGN_STYLE = Manual; COMPILE_TARGET_NAME = macOSAppUITests.library; INFOPLIST_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-16/bin/macOSApp/Test/UITests/rules_xcodeproj/macOSAppUITests.__internal__.__test_bundle/Info.plist"; - LINK_PARAMS_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/macOSAppUITests.142.link.params"; + LINK_PARAMS_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/macOSAppUITests.145.link.params"; MACOSX_DEPLOYMENT_TARGET = 12.0; OTHER_LDFLAGS = "@$(DERIVED_FILE_DIR)/link.params"; OTHER_SWIFT_FLAGS = "-Xcc -working-directory -Xcc $(PROJECT_DIR) -working-directory $(PROJECT_DIR) -vfsoverlay $(OBJROOT)/bazel-out-overlay.yaml @$(DERIVED_FILE_DIR)/swift.compile.params -F$(DEVELOPER_DIR)/Platforms/MacOSX.platform/Developer/Library/Frameworks -I$(DEVELOPER_DIR)/Platforms/MacOSX.platform/Developer/usr/lib -Xcc -iquote -Xcc $(PROJECT_DIR) -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-16/bin -Xcc -Os -Xcc -DNDEBUG=1 -Xcc -Wno-unused-variable -Xcc -Winit-self -Xcc -Wno-extra"; @@ -16614,7 +17084,7 @@ CODE_SIGN_STYLE = Manual; COMPILE_TARGET_NAME = tvOSAppUnitTests.library; INFOPLIST_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-15/bin/tvOSApp/Test/UnitTests/rules_xcodeproj/tvOSAppUnitTests.__internal__.__test_bundle/Info.plist"; - LINK_PARAMS_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/tvOSAppUnitTests.144.link.params"; + LINK_PARAMS_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/tvOSAppUnitTests.147.link.params"; OTHER_LDFLAGS = "@$(DERIVED_FILE_DIR)/link.params"; OTHER_SWIFT_FLAGS = "-Xcc -working-directory -Xcc $(PROJECT_DIR) -working-directory $(PROJECT_DIR) -Xcc -ivfsoverlay -Xcc $(OBJROOT)/bazel-out-overlay.yaml -vfsoverlay $(OBJROOT)/bazel-out-overlay.yaml $(PREVIEWS_SWIFT_INCLUDE__$(ENABLE_PREVIEWS)) @$(DERIVED_FILE_DIR)/swift.compile.params -F$(DEVELOPER_DIR)/Platforms/AppleTVSimulator.platform/Developer/Library/Frameworks -F$(SDKROOT)/Developer/Library/Frameworks -I$(DEVELOPER_DIR)/Platforms/AppleTVSimulator.platform/Developer/usr/lib -I$(BAZEL_OUT)/CONFIGURATION-STABLE-15/bin/Lib -I$(BAZEL_OUT)/CONFIGURATION-STABLE-15/bin/UI -I$(BAZEL_OUT)/CONFIGURATION-STABLE-15/bin/tvOSApp/Source -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/tvos-arm64_x86_64-simulator -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/tvos-arm64_x86_64-simulator -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-15/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -Xcc -iquote -Xcc $(PROJECT_DIR) -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-15/bin -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/tvos-arm64_x86_64-simulator/CryptoSwift.framework/Modules/module.modulemap -Xcc -Os -Xcc -DNDEBUG=1 -Xcc -Wno-unused-variable -Xcc -Winit-self -Xcc -Wno-extra"; PREVIEWS_SWIFT_INCLUDE__ = ""; @@ -16651,10 +17121,10 @@ COMPILE_TARGET_NAME = echo_client.library; EXECUTABLE_EXTENSION = ""; INFOPLIST_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/GRPC/rules_xcodeproj/echo_client/Info.plist"; - LINK_PARAMS_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/echo_client.50.link.params"; + LINK_PARAMS_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/echo_client.52.link.params"; MACOSX_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = "@$(DERIVED_FILE_DIR)/link.params"; - OTHER_SWIFT_FLAGS = "-Xcc -working-directory -Xcc $(PROJECT_DIR) -working-directory $(PROJECT_DIR) -Xcc -ivfsoverlay -Xcc $(OBJROOT)/bazel-out-overlay.yaml -vfsoverlay $(OBJROOT)/bazel-out-overlay.yaml @$(DERIVED_FILE_DIR)/swift.compile.params -I$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_protobuf -I$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/GRPC -I$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_log -I$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio -I$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics -I$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_collections -I$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_extras -I$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_http2 -I$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl -I$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_transport_services -I$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_grpc_grpc_swift -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_atomics -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl -Xcc -iquote -Xcc $(PROJECT_DIR) -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_grpc_grpc_swift/Sources/CGRPCZlib/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift/Sources/CGRPCZlib/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOLinux/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOLinux/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOWindows/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOWindows/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOAtomics/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOAtomics/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_atomics/Sources/_AtomicsShims/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics/Sources/_AtomicsShims/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIODarwin/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIODarwin/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOLLHTTP/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOLLHTTP/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/Sources/CNIOBoringSSL/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/Sources/CNIOBoringSSL/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/Sources/CNIOBoringSSLShims/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/Sources/CNIOBoringSSLShims/include -Xcc -DSWIFT_PACKAGE -Xcc -D__APPLE_USE_RFC_3542 -Xcc -DLLHTTP_STRICT_MODE -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift/CGRPCZlib.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIOLinux.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIOWindows.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIOAtomics.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics/_AtomicsShims.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIODarwin.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIOLLHTTP.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/CNIOBoringSSL.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/CNIOBoringSSLShims.swift.modulemap -Xcc -O0 -Xcc -DDEBUG=1 -Xcc -fstack-protector -Xcc -fstack-protector-all"; + OTHER_SWIFT_FLAGS = "-Xcc -working-directory -Xcc $(PROJECT_DIR) -working-directory $(PROJECT_DIR) -Xcc -ivfsoverlay -Xcc $(OBJROOT)/bazel-out-overlay.yaml -vfsoverlay $(OBJROOT)/bazel-out-overlay.yaml @$(DERIVED_FILE_DIR)/swift.compile.params -I$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_protobuf -I$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_log -I$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio -I$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics -I$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_collections -I$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_extras -I$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_http2 -I$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl -I$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_transport_services -I$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift -I$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/GRPC -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_grpc_grpc_swift -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_atomics -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl -Xcc -iquote -Xcc $(PROJECT_DIR) -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_grpc_grpc_swift/Sources/CGRPCZlib/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift/Sources/CGRPCZlib/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOLinux/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOLinux/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOWindows/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOWindows/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOAtomics/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOAtomics/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_atomics/Sources/_AtomicsShims/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics/Sources/_AtomicsShims/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIODarwin/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIODarwin/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOLLHTTP/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOLLHTTP/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/Sources/CNIOBoringSSL/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/Sources/CNIOBoringSSL/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/Sources/CNIOBoringSSLShims/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/Sources/CNIOBoringSSLShims/include -Xcc -DSWIFT_PACKAGE -Xcc -D__APPLE_USE_RFC_3542 -Xcc -DLLHTTP_STRICT_MODE -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift/CGRPCZlib_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIOLinux_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIOWindows_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIOAtomics_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics/_AtomicsShims_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIODarwin_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIOLLHTTP_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/CNIOBoringSSL_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/CNIOBoringSSLShims_modulemap/_/module.modulemap -Xcc -O0 -Xcc -DDEBUG=1 -Xcc -fstack-protector -Xcc -fstack-protector-all"; PRODUCT_MODULE_NAME = GRPC_echo_client_library; PRODUCT_NAME = echo_client; SDKROOT = macosx; @@ -16680,7 +17150,7 @@ COMPILE_TARGET_NAME = tool.library; EXECUTABLE_EXTENSION = ""; INFOPLIST_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/Proto/rules_xcodeproj/proto/Info.plist"; - LINK_PARAMS_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/proto.150.link.params"; + LINK_PARAMS_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/proto.154.link.params"; MACOSX_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = "@$(DERIVED_FILE_DIR)/link.params"; OTHER_SWIFT_FLAGS = "-Xcc -working-directory -Xcc $(PROJECT_DIR) -working-directory $(PROJECT_DIR) -vfsoverlay $(OBJROOT)/bazel-out-overlay.yaml @$(DERIVED_FILE_DIR)/swift.compile.params -I$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_protobuf -I$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/Proto -Xcc -iquote -Xcc $(PROJECT_DIR) -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin -Xcc -Os -Xcc -DNDEBUG=1 -Xcc -Wno-unused-variable -Xcc -Winit-self -Xcc -Wno-extra"; @@ -16805,12 +17275,12 @@ ASAN_OTHER_CFLAGS__ = "$(ASAN_OTHER_CFLAGS__NO)"; ASAN_OTHER_CFLAGS__NO = "-working-directory $(PROJECT_DIR) -ivfsoverlay $(OBJROOT)/bazel-out-overlay.yaml @$(DERIVED_FILE_DIR)/c.compile.params"; ASAN_OTHER_CFLAGS__YES = "$(ASAN_OTHER_CFLAGS__NO) -Wno-macro-redefined -D_FORTIFY_SOURCE=0"; - BAZEL_LABEL = "@@//CommandLine/swift_c_module:c_lib"; - BAZEL_PACKAGE_BIN_DIR = "bazel-out/CONFIGURATION-STABLE-27/bin/CommandLine/swift_c_module"; - BAZEL_TARGET_ID = "@@//CommandLine/swift_c_module:c_lib CONFIGURATION-STABLE-27"; + BAZEL_LABEL = "@@//CommandLine/swift_interop_hint:c_lib"; + BAZEL_PACKAGE_BIN_DIR = "bazel-out/CONFIGURATION-STABLE-27/bin/CommandLine/swift_interop_hint"; + BAZEL_TARGET_ID = "@@//CommandLine/swift_interop_hint:c_lib CONFIGURATION-STABLE-27"; "BAZEL_TARGET_ID[sdk=macosx*]" = "$(BAZEL_TARGET_ID)"; COMPILE_TARGET_NAME = c_lib; - C_PARAMS_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-27/bin/CommandLine/swift_c_module/c_lib.rules_xcodeproj.c.compile.params"; + C_PARAMS_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-27/bin/CommandLine/swift_interop_hint/c_lib.rules_xcodeproj.c.compile.params"; MACOSX_DEPLOYMENT_TARGET = 11.0; OTHER_CFLAGS = "$(ASAN_OTHER_CFLAGS__$(CLANG_ADDRESS_SANITIZER))"; PRODUCT_NAME = c_lib; @@ -16842,7 +17312,7 @@ INFOPLIST_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-4/bin/Lib/rules_xcodeproj/LibFramework.watchOS/Info.plist"; "INFOPLIST_FILE[sdk=watchos*]" = "$(BAZEL_OUT)/CONFIGURATION-STABLE-9/bin/Lib/rules_xcodeproj/LibFramework.watchOS/Info.plist"; LINK_PARAMS_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/LibFramework.watchOS.15.link.params"; - "LINK_PARAMS_FILE[sdk=watchos*]" = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/LibFramework.watchOS.82.link.params"; + "LINK_PARAMS_FILE[sdk=watchos*]" = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/LibFramework.watchOS.85.link.params"; OTHER_LDFLAGS = "@$(DERIVED_FILE_DIR)/link.params"; PREVIEW_FRAMEWORK_PATHS = "\"$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/watchos-arm64_i386_x86_64-simulator/CryptoSwift.framework\""; "PREVIEW_FRAMEWORK_PATHS[sdk=watchos*]" = "\"$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/watchos-arm64_32_armv7k/CryptoSwift.framework\""; @@ -16872,10 +17342,10 @@ COMPILE_TARGET_NAME = echo_server.library; EXECUTABLE_EXTENSION = ""; INFOPLIST_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/GRPC/rules_xcodeproj/echo_server/Info.plist"; - LINK_PARAMS_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/echo_server.51.link.params"; + LINK_PARAMS_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/echo_server.54.link.params"; MACOSX_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = "@$(DERIVED_FILE_DIR)/link.params"; - OTHER_SWIFT_FLAGS = "-Xcc -working-directory -Xcc $(PROJECT_DIR) -working-directory $(PROJECT_DIR) -Xcc -ivfsoverlay -Xcc $(OBJROOT)/bazel-out-overlay.yaml -vfsoverlay $(OBJROOT)/bazel-out-overlay.yaml @$(DERIVED_FILE_DIR)/swift.compile.params -I$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_protobuf -I$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/GRPC -I$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_log -I$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio -I$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics -I$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_collections -I$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_extras -I$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_http2 -I$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl -I$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_transport_services -I$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_grpc_grpc_swift -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_atomics -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl -Xcc -iquote -Xcc $(PROJECT_DIR) -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_grpc_grpc_swift/Sources/CGRPCZlib/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift/Sources/CGRPCZlib/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOLinux/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOLinux/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOWindows/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOWindows/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOAtomics/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOAtomics/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_atomics/Sources/_AtomicsShims/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics/Sources/_AtomicsShims/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIODarwin/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIODarwin/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOLLHTTP/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOLLHTTP/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/Sources/CNIOBoringSSL/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/Sources/CNIOBoringSSL/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/Sources/CNIOBoringSSLShims/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/Sources/CNIOBoringSSLShims/include -Xcc -DSWIFT_PACKAGE -Xcc -D__APPLE_USE_RFC_3542 -Xcc -DLLHTTP_STRICT_MODE -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift/CGRPCZlib.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIOLinux.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIOWindows.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIOAtomics.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics/_AtomicsShims.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIODarwin.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIOLLHTTP.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/CNIOBoringSSL.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/CNIOBoringSSLShims.swift.modulemap -Xcc -O0 -Xcc -DDEBUG=1 -Xcc -fstack-protector -Xcc -fstack-protector-all"; + OTHER_SWIFT_FLAGS = "-Xcc -working-directory -Xcc $(PROJECT_DIR) -working-directory $(PROJECT_DIR) -Xcc -ivfsoverlay -Xcc $(OBJROOT)/bazel-out-overlay.yaml -vfsoverlay $(OBJROOT)/bazel-out-overlay.yaml @$(DERIVED_FILE_DIR)/swift.compile.params -I$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_protobuf -I$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_log -I$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio -I$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics -I$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_collections -I$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_extras -I$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_http2 -I$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl -I$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_transport_services -I$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift -I$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/GRPC -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_grpc_grpc_swift -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_atomics -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl -Xcc -iquote -Xcc $(PROJECT_DIR) -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_grpc_grpc_swift/Sources/CGRPCZlib/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift/Sources/CGRPCZlib/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOLinux/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOLinux/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOWindows/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOWindows/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOAtomics/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOAtomics/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_atomics/Sources/_AtomicsShims/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics/Sources/_AtomicsShims/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIODarwin/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIODarwin/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOLLHTTP/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOLLHTTP/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/Sources/CNIOBoringSSL/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/Sources/CNIOBoringSSL/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/Sources/CNIOBoringSSLShims/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/Sources/CNIOBoringSSLShims/include -Xcc -DSWIFT_PACKAGE -Xcc -D__APPLE_USE_RFC_3542 -Xcc -DLLHTTP_STRICT_MODE -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift/CGRPCZlib_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIOLinux_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIOWindows_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIOAtomics_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics/_AtomicsShims_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIODarwin_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIOLLHTTP_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/CNIOBoringSSL_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/CNIOBoringSSLShims_modulemap/_/module.modulemap -Xcc -O0 -Xcc -DDEBUG=1 -Xcc -fstack-protector -Xcc -fstack-protector-all"; PRODUCT_MODULE_NAME = GRPC_echo_server_library; PRODUCT_NAME = echo_server; SDKROOT = macosx; @@ -16996,7 +17466,7 @@ "INFOPLIST_FILE[sdk=iphoneos*]" = "$(BAZEL_OUT)/CONFIGURATION-STABLE-8/bin/iOSApp/Source/CoreUtilsObjC/rules_xcodeproj/FrameworkCoreUtilsObjC/Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 15.0; LINK_PARAMS_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/FrameworkCoreUtilsObjC.12.link.params"; - "LINK_PARAMS_FILE[sdk=iphoneos*]" = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/FrameworkCoreUtilsObjC.79.link.params"; + "LINK_PARAMS_FILE[sdk=iphoneos*]" = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/FrameworkCoreUtilsObjC.82.link.params"; OTHER_CPLUSPLUSFLAGS = "$(ASAN_OTHER_CPLUSPLUSFLAGS__$(CLANG_ADDRESS_SANITIZER))"; OTHER_LDFLAGS = "@$(DERIVED_FILE_DIR)/link.params"; PREVIEW_FRAMEWORK_PATHS = ""; @@ -17047,6 +17517,30 @@ }; name = Debug; }; + A2146493370683A9692EF14F /* AppStore */ = { + isa = XCBuildConfiguration; + buildSettings = { + ARCHS = x86_64; + BAZEL_LABEL = "@@//GRPC:echo_server_services_swift"; + BAZEL_PACKAGE_BIN_DIR = "bazel-out/CONFIGURATION-STABLE-26/bin/GRPC"; + BAZEL_TARGET_ID = "@@//GRPC:echo_server_services_swift CONFIGURATION-STABLE-26"; + "BAZEL_TARGET_ID[sdk=macosx*]" = "$(BAZEL_TARGET_ID)"; + COMPILE_TARGET_NAME = echo_server_services_swift; + EXCLUDED_SOURCE_FILE_NAMES = "$(MACOSX_FILES) bazel-out/CONFIGURATION-STABLE-25/bin/GRPC/echo_server_services_swift/gen/GRPC/echo.grpc.swift bazel-out/CONFIGURATION-STABLE-25/bin/GRPC/echo_server_services_swift/gen/GRPC/echo.pb.swift"; + INCLUDED_SOURCE_FILE_NAMES = ""; + "INCLUDED_SOURCE_FILE_NAMES[sdk=macosx*]" = "$(MACOSX_FILES)"; + MACOSX_DEPLOYMENT_TARGET = 11.0; + MACOSX_FILES = "bazel-out/CONFIGURATION-STABLE-26/bin/GRPC/echo_server_services_swift/gen/GRPC/echo.grpc.swift bazel-out/CONFIGURATION-STABLE-26/bin/GRPC/echo_server_services_swift/gen/GRPC/echo.pb.swift"; + OTHER_SWIFT_FLAGS = "-Xcc -working-directory -Xcc $(PROJECT_DIR) -working-directory $(PROJECT_DIR) -Xcc -ivfsoverlay -Xcc $(OBJROOT)/bazel-out-overlay.yaml -vfsoverlay $(OBJROOT)/bazel-out-overlay.yaml @$(DERIVED_FILE_DIR)/swift.compile.params -I$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_protobuf -I$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_log -I$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio -I$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics -I$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_collections -I$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_extras -I$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_http2 -I$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl -I$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_transport_services -I$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_grpc_grpc_swift -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_atomics -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl -Xcc -iquote -Xcc $(PROJECT_DIR) -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_grpc_grpc_swift/Sources/CGRPCZlib/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift/Sources/CGRPCZlib/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOLinux/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOLinux/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOWindows/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOWindows/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOAtomics/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOAtomics/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_atomics/Sources/_AtomicsShims/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics/Sources/_AtomicsShims/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIODarwin/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIODarwin/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOLLHTTP/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOLLHTTP/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/Sources/CNIOBoringSSL/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/Sources/CNIOBoringSSL/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/Sources/CNIOBoringSSLShims/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/Sources/CNIOBoringSSLShims/include -Xcc -DSWIFT_PACKAGE -Xcc -D__APPLE_USE_RFC_3542 -Xcc -DLLHTTP_STRICT_MODE -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift/CGRPCZlib_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIOLinux_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIOWindows_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIOAtomics_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics/_AtomicsShims_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIODarwin_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIOLLHTTP_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/CNIOBoringSSL_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/CNIOBoringSSLShims_modulemap/_/module.modulemap -Xcc -Os -Xcc -DNDEBUG=1 -Xcc -Wno-unused-variable -Xcc -Winit-self -Xcc -Wno-extra"; + PRODUCT_NAME = echo_server_services_swift; + SDKROOT = macosx; + SUPPORTED_PLATFORMS = macosx; + SWIFT_COMPILATION_MODE = wholemodule; + SWIFT_PARAMS_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/GRPC/echo_server_services_swift.rules_xcodeproj.swift.compile.params"; + TARGET_NAME = echo_server_services_swift; + }; + name = AppStore; + }; A3569D0D5F955BF1275F9B31 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { @@ -17136,10 +17630,10 @@ COMPILE_TARGET_NAME = echo_server.library; EXECUTABLE_EXTENSION = ""; INFOPLIST_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/GRPC/rules_xcodeproj/echo_server/Info.plist"; - LINK_PARAMS_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/echo_server.152.link.params"; + LINK_PARAMS_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/echo_server.158.link.params"; MACOSX_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = "@$(DERIVED_FILE_DIR)/link.params"; - OTHER_SWIFT_FLAGS = "-Xcc -working-directory -Xcc $(PROJECT_DIR) -working-directory $(PROJECT_DIR) -Xcc -ivfsoverlay -Xcc $(OBJROOT)/bazel-out-overlay.yaml -vfsoverlay $(OBJROOT)/bazel-out-overlay.yaml @$(DERIVED_FILE_DIR)/swift.compile.params -I$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_protobuf -I$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/GRPC -I$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_log -I$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio -I$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics -I$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_collections -I$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_extras -I$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_http2 -I$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl -I$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_transport_services -I$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_grpc_grpc_swift -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_atomics -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl -Xcc -iquote -Xcc $(PROJECT_DIR) -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_grpc_grpc_swift/Sources/CGRPCZlib/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift/Sources/CGRPCZlib/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOLinux/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOLinux/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOWindows/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOWindows/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOAtomics/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOAtomics/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_atomics/Sources/_AtomicsShims/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics/Sources/_AtomicsShims/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIODarwin/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIODarwin/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOLLHTTP/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOLLHTTP/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/Sources/CNIOBoringSSL/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/Sources/CNIOBoringSSL/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/Sources/CNIOBoringSSLShims/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/Sources/CNIOBoringSSLShims/include -Xcc -DSWIFT_PACKAGE -Xcc -D__APPLE_USE_RFC_3542 -Xcc -DLLHTTP_STRICT_MODE -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift/CGRPCZlib.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIOLinux.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIOWindows.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIOAtomics.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics/_AtomicsShims.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIODarwin.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIOLLHTTP.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/CNIOBoringSSL.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/CNIOBoringSSLShims.swift.modulemap -Xcc -Os -Xcc -DNDEBUG=1 -Xcc -Wno-unused-variable -Xcc -Winit-self -Xcc -Wno-extra"; + OTHER_SWIFT_FLAGS = "-Xcc -working-directory -Xcc $(PROJECT_DIR) -working-directory $(PROJECT_DIR) -Xcc -ivfsoverlay -Xcc $(OBJROOT)/bazel-out-overlay.yaml -vfsoverlay $(OBJROOT)/bazel-out-overlay.yaml @$(DERIVED_FILE_DIR)/swift.compile.params -I$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_protobuf -I$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_log -I$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio -I$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics -I$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_collections -I$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_extras -I$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_http2 -I$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl -I$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_transport_services -I$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift -I$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/GRPC -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_grpc_grpc_swift -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_atomics -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl -Xcc -iquote -Xcc $(PROJECT_DIR) -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_grpc_grpc_swift/Sources/CGRPCZlib/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift/Sources/CGRPCZlib/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOLinux/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOLinux/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOWindows/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOWindows/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOAtomics/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOAtomics/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_atomics/Sources/_AtomicsShims/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics/Sources/_AtomicsShims/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIODarwin/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIODarwin/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOLLHTTP/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOLLHTTP/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/Sources/CNIOBoringSSL/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/Sources/CNIOBoringSSL/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/Sources/CNIOBoringSSLShims/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/Sources/CNIOBoringSSLShims/include -Xcc -DSWIFT_PACKAGE -Xcc -D__APPLE_USE_RFC_3542 -Xcc -DLLHTTP_STRICT_MODE -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift/CGRPCZlib_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIOLinux_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIOWindows_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIOAtomics_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics/_AtomicsShims_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIODarwin_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIOLLHTTP_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/CNIOBoringSSL_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/CNIOBoringSSLShims_modulemap/_/module.modulemap -Xcc -Os -Xcc -DNDEBUG=1 -Xcc -Wno-unused-variable -Xcc -Winit-self -Xcc -Wno-extra"; PRODUCT_MODULE_NAME = GRPC_echo_server_library; PRODUCT_NAME = echo_server; SDKROOT = macosx; @@ -17223,8 +17717,8 @@ COMPILE_TARGET_NAME = UI; INFOPLIST_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-13/bin/UI/rules_xcodeproj/UIFramework.watchOS/Info.plist"; "INFOPLIST_FILE[sdk=watchos*]" = "$(BAZEL_OUT)/CONFIGURATION-STABLE-18/bin/UI/rules_xcodeproj/UIFramework.watchOS/Info.plist"; - LINK_PARAMS_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/UIFramework.watchOS.117.link.params"; - "LINK_PARAMS_FILE[sdk=watchos*]" = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/UIFramework.watchOS.184.link.params"; + LINK_PARAMS_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/UIFramework.watchOS.120.link.params"; + "LINK_PARAMS_FILE[sdk=watchos*]" = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/UIFramework.watchOS.190.link.params"; OTHER_LDFLAGS = "@$(DERIVED_FILE_DIR)/link.params"; OTHER_SWIFT_FLAGS = "-Xcc -working-directory -Xcc $(PROJECT_DIR) -working-directory $(PROJECT_DIR) -Xcc -ivfsoverlay -Xcc $(OBJROOT)/bazel-out-overlay.yaml -vfsoverlay $(OBJROOT)/bazel-out-overlay.yaml $(PREVIEWS_SWIFT_INCLUDE__$(ENABLE_PREVIEWS)) @$(DERIVED_FILE_DIR)/swift.compile.params -I$(BAZEL_OUT)/CONFIGURATION-STABLE-13/bin/Lib -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/watchos-arm64_i386_x86_64-simulator -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/watchos-arm64_i386_x86_64-simulator -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-13/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -Xcc -iquote -Xcc $(PROJECT_DIR) -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-13/bin -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/watchos-arm64_i386_x86_64-simulator/CryptoSwift.framework/Modules/module.modulemap -Xcc -Os -Xcc -DNDEBUG=1 -Xcc -Wno-unused-variable -Xcc -Winit-self -Xcc -Wno-extra"; "OTHER_SWIFT_FLAGS[sdk=watchos*]" = "-Xcc -working-directory -Xcc $(PROJECT_DIR) -working-directory $(PROJECT_DIR) -Xcc -ivfsoverlay -Xcc $(OBJROOT)/bazel-out-overlay.yaml -vfsoverlay $(OBJROOT)/bazel-out-overlay.yaml $(PREVIEWS_SWIFT_INCLUDE__$(ENABLE_PREVIEWS)) @$(DERIVED_FILE_DIR)/swift.compile.params -I$(BAZEL_OUT)/CONFIGURATION-STABLE-18/bin/Lib -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/watchos-arm64_32_armv7k -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/watchos-arm64_32_armv7k -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-18/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -Xcc -iquote -Xcc $(PROJECT_DIR) -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-18/bin -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/watchos-arm64_32_armv7k/CryptoSwift.framework/Modules/module.modulemap -Xcc -Os -Xcc -DNDEBUG=1 -Xcc -Wno-unused-variable -Xcc -Winit-self -Xcc -Wno-extra"; @@ -17348,10 +17842,10 @@ CODE_SIGN_STYLE = Manual; COMPILE_TARGET_NAME = CommandLineLibSwiftTestsLib; INFOPLIST_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-30/bin/CommandLine/Tests/rules_xcodeproj/CommandLineToolTests.__internal__.__test_bundle/Info.plist"; - LINK_PARAMS_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/CommandLineToolTests.172.link.params"; + LINK_PARAMS_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/CommandLineToolTests.178.link.params"; MACOSX_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = "@$(DERIVED_FILE_DIR)/link.params"; - OTHER_SWIFT_FLAGS = "-Xcc -working-directory -Xcc $(PROJECT_DIR) -working-directory $(PROJECT_DIR) -Xcc -ivfsoverlay -Xcc $(OBJROOT)/bazel-out-overlay.yaml -vfsoverlay $(OBJROOT)/bazel-out-overlay.yaml $(PREVIEWS_SWIFT_INCLUDE__$(ENABLE_PREVIEWS)) @$(DERIVED_FILE_DIR)/swift.compile.params -F$(DEVELOPER_DIR)/Platforms/MacOSX.platform/Developer/Library/Frameworks -I$(DEVELOPER_DIR)/Platforms/MacOSX.platform/Developer/usr/lib -I$(BAZEL_OUT)/CONFIGURATION-STABLE-30/bin/CommandLine/CommandLineToolLib -F$(BAZEL_EXTERNAL)/examples_command_line_external -Xcc -F -Xcc $(BAZEL_EXTERNAL)/examples_command_line_external -Xcc -I -Xcc $(SDKROOT)/usr/include/uuid -Xcc -iquote -Xcc $(PROJECT_DIR) -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-30/bin -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/examples_command_line_external -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-30/bin/external/examples_command_line_external -Xcc -DSECRET_3=\"Hello\" -Xcc -DSECRET_2=\"World!\" -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-30/bin/CommandLine/CommandLineToolLib/lib_impl.swift.modulemap -Xcc -fmodule-map-file=$(SRCROOT)/CommandLine/swift_c_module/c_lib.modulemap -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/examples_command_line_external/ExternalFramework.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-30/bin/external/examples_command_line_external/Library.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-30/bin/CommandLine/CommandLineToolLib/lib_swift.swift.modulemap -Xcc -Os -Xcc -DNDEBUG=1 -Xcc -Wno-unused-variable -Xcc -Winit-self -Xcc -Wno-extra"; + OTHER_SWIFT_FLAGS = "-Xcc -working-directory -Xcc $(PROJECT_DIR) -working-directory $(PROJECT_DIR) -Xcc -ivfsoverlay -Xcc $(OBJROOT)/bazel-out-overlay.yaml -vfsoverlay $(OBJROOT)/bazel-out-overlay.yaml $(PREVIEWS_SWIFT_INCLUDE__$(ENABLE_PREVIEWS)) @$(DERIVED_FILE_DIR)/swift.compile.params -F$(DEVELOPER_DIR)/Platforms/MacOSX.platform/Developer/Library/Frameworks -I$(DEVELOPER_DIR)/Platforms/MacOSX.platform/Developer/usr/lib -I$(BAZEL_OUT)/CONFIGURATION-STABLE-30/bin/CommandLine/CommandLineToolLib -F$(BAZEL_EXTERNAL)/examples_command_line_external -Xcc -F -Xcc $(BAZEL_EXTERNAL)/examples_command_line_external -Xcc -I -Xcc $(SDKROOT)/usr/include/uuid -Xcc -iquote -Xcc $(PROJECT_DIR) -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-30/bin -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/examples_command_line_external -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-30/bin/external/examples_command_line_external -Xcc -DSECRET_3=\"Hello\" -Xcc -DSECRET_2=\"World!\" -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-30/bin/CommandLine/CommandLineToolLib/lib_impl_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(SRCROOT)/CommandLine/swift_interop_hint/c_lib.modulemap -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/examples_command_line_external/ExternalFramework.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-30/bin/external/examples_command_line_external/Library_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-30/bin/CommandLine/CommandLineToolLib/lib_swift_modulemap/_/module.modulemap -Xcc -Os -Xcc -DNDEBUG=1 -Xcc -Wno-unused-variable -Xcc -Winit-self -Xcc -Wno-extra"; PREVIEWS_SWIFT_INCLUDE__ = ""; PREVIEWS_SWIFT_INCLUDE__NO = ""; PREVIEWS_SWIFT_INCLUDE__YES = "-I bazel-out/CONFIGURATION-STABLE-30/bin/CommandLine/Tests"; @@ -17417,6 +17911,7 @@ CXX = "$(BAZEL_INTEGRATION_DIR)/clang.sh"; DEBUG_INFORMATION_FORMAT = dwarf; DSTROOT = "$(PROJECT_TEMP_DIR)"; + ENABLE_DEBUG_DYLIB = NO; ENABLE_DEFAULT_SEARCH_PATHS = NO; ENABLE_STRICT_OBJC_MSGSEND = YES; ENABLE_USER_SCRIPT_SANDBOXING = NO; @@ -17430,12 +17925,12 @@ INDEX_IMPORT = "fixture-index-import-path"; INSTALL_PATH = "$(BAZEL_PACKAGE_BIN_DIR)/$(TARGET_NAME)/bin"; INTERNAL_DIR = "$(PROJECT_FILE_PATH)/rules_xcodeproj"; - LD = "$(BAZEL_INTEGRATION_DIR)/ld.sh"; - LDPLUSPLUS = "$(BAZEL_INTEGRATION_DIR)/ld.sh"; + LD = "$(BAZEL_INTEGRATION_DIR)/ld"; + LDPLUSPLUS = "$(BAZEL_INTEGRATION_DIR)/ld"; LD_DYLIB_INSTALL_NAME = ""; LD_OBJC_ABI_VERSION = ""; LD_RUNPATH_SEARCH_PATHS = ""; - LIBTOOL = "$(BAZEL_INTEGRATION_DIR)/libtool.sh"; + LIBTOOL = "$(BAZEL_INTEGRATION_DIR)/libtool"; ONLY_ACTIVE_ARCH = YES; PROJECT_DIR = "$(INDEXING_PROJECT_DIR__$(INDEX_ENABLE_BUILD_ARENA))"; RESOLVED_REPOSITORIES = "\"external/examples_command_line_external/ImportableLibrary\" \"$(SRCROOT)/CommandLine/external/ImportableLibrary\" \"external/examples_ios_app_external~\" \"$(SRCROOT)/iOSApp/external\" \"external/examples_cc_external~\" \"$(SRCROOT)/cc/external\" \".\" \"$(SRCROOT)\""; @@ -17522,8 +18017,8 @@ INFOPLIST_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/iOSApp/Test/UITests/rules_xcodeproj/iOSAppUITests.__internal__.__test_bundle/Info.plist"; "INFOPLIST_FILE[sdk=iphoneos*]" = "$(BAZEL_OUT)/CONFIGURATION-STABLE-17/bin/iOSApp/Test/UITests/rules_xcodeproj/iOSAppUITests.__internal__.__test_bundle/Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 15.0; - LINK_PARAMS_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iOSAppUITests.134.link.params"; - "LINK_PARAMS_FILE[sdk=iphoneos*]" = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iOSAppUITests.200.link.params"; + LINK_PARAMS_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iOSAppUITests.137.link.params"; + "LINK_PARAMS_FILE[sdk=iphoneos*]" = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iOSAppUITests.206.link.params"; OTHER_LDFLAGS = "@$(DERIVED_FILE_DIR)/link.params"; OTHER_SWIFT_FLAGS = "-Xcc -working-directory -Xcc $(PROJECT_DIR) -working-directory $(PROJECT_DIR) -vfsoverlay $(OBJROOT)/bazel-out-overlay.yaml @$(DERIVED_FILE_DIR)/swift.compile.params -F$(DEVELOPER_DIR)/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks -F$(SDKROOT)/Developer/Library/Frameworks -I$(DEVELOPER_DIR)/Platforms/iPhoneSimulator.platform/Developer/usr/lib -Xcc -iquote -Xcc $(PROJECT_DIR) -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin -Xcc -Os -Xcc -DNDEBUG=1 -Xcc -Wno-unused-variable -Xcc -Winit-self -Xcc -Wno-extra"; "OTHER_SWIFT_FLAGS[sdk=iphoneos*]" = "-Xcc -working-directory -Xcc $(PROJECT_DIR) -working-directory $(PROJECT_DIR) -vfsoverlay $(OBJROOT)/bazel-out-overlay.yaml @$(DERIVED_FILE_DIR)/swift.compile.params -F$(DEVELOPER_DIR)/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F$(SDKROOT)/Developer/Library/Frameworks -I$(DEVELOPER_DIR)/Platforms/iPhoneOS.platform/Developer/usr/lib -Xcc -iquote -Xcc $(PROJECT_DIR) -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-17/bin -Xcc -Os -Xcc -DNDEBUG=1 -Xcc -Wno-unused-variable -Xcc -Winit-self -Xcc -Wno-extra"; @@ -17572,8 +18067,8 @@ INFOPLIST_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/iOSApp/Source/CoreUtilsObjC/rules_xcodeproj/FrameworkCoreUtilsObjC/Info.plist"; "INFOPLIST_FILE[sdk=iphoneos*]" = "$(BAZEL_OUT)/CONFIGURATION-STABLE-17/bin/iOSApp/Source/CoreUtilsObjC/rules_xcodeproj/FrameworkCoreUtilsObjC/Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 15.0; - LINK_PARAMS_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/FrameworkCoreUtilsObjC.113.link.params"; - "LINK_PARAMS_FILE[sdk=iphoneos*]" = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/FrameworkCoreUtilsObjC.180.link.params"; + LINK_PARAMS_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/FrameworkCoreUtilsObjC.116.link.params"; + "LINK_PARAMS_FILE[sdk=iphoneos*]" = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/FrameworkCoreUtilsObjC.186.link.params"; OTHER_CPLUSPLUSFLAGS = "$(ASAN_OTHER_CPLUSPLUSFLAGS__$(CLANG_ADDRESS_SANITIZER))"; OTHER_LDFLAGS = "@$(DERIVED_FILE_DIR)/link.params"; PREVIEW_FRAMEWORK_PATHS = ""; @@ -17598,7 +18093,7 @@ "BAZEL_TARGET_ID[sdk=macosx*]" = "$(BAZEL_TARGET_ID)"; COMPILE_TARGET_NAME = lib_swift; MACOSX_DEPLOYMENT_TARGET = 11.0; - OTHER_SWIFT_FLAGS = "-Xcc -working-directory -Xcc $(PROJECT_DIR) -working-directory $(PROJECT_DIR) -Xcc -ivfsoverlay -Xcc $(OBJROOT)/bazel-out-overlay.yaml -vfsoverlay $(OBJROOT)/bazel-out-overlay.yaml @$(DERIVED_FILE_DIR)/swift.compile.params -I$(BAZEL_OUT)/CONFIGURATION-STABLE-28/bin/CommandLine/CommandLineToolLib -F$(BAZEL_EXTERNAL)/examples_command_line_external -Xcc -F -Xcc $(BAZEL_EXTERNAL)/examples_command_line_external -Xcc -I -Xcc $(SDKROOT)/usr/include/uuid -Xcc -iquote -Xcc $(PROJECT_DIR) -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-28/bin -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/examples_command_line_external -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-28/bin/external/examples_command_line_external -Xcc -DSECRET_3=\"Hello\" -Xcc -DSECRET_2=\"World!\" -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-28/bin/CommandLine/CommandLineToolLib/lib_impl.swift.modulemap -Xcc -fmodule-map-file=$(SRCROOT)/CommandLine/swift_c_module/c_lib.modulemap -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/examples_command_line_external/ExternalFramework.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-28/bin/external/examples_command_line_external/Library.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-28/bin/CommandLine/CommandLineToolLib/private_lib.swift.modulemap -Xcc -O0 -Xcc -DDEBUG=1 -Xcc -fstack-protector -Xcc -fstack-protector-all"; + OTHER_SWIFT_FLAGS = "-Xcc -working-directory -Xcc $(PROJECT_DIR) -working-directory $(PROJECT_DIR) -Xcc -ivfsoverlay -Xcc $(OBJROOT)/bazel-out-overlay.yaml -vfsoverlay $(OBJROOT)/bazel-out-overlay.yaml @$(DERIVED_FILE_DIR)/swift.compile.params -I$(BAZEL_OUT)/CONFIGURATION-STABLE-28/bin/CommandLine/CommandLineToolLib -F$(BAZEL_EXTERNAL)/examples_command_line_external -Xcc -F -Xcc $(BAZEL_EXTERNAL)/examples_command_line_external -Xcc -I -Xcc $(SDKROOT)/usr/include/uuid -Xcc -iquote -Xcc $(PROJECT_DIR) -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-28/bin -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/examples_command_line_external -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-28/bin/external/examples_command_line_external -Xcc -DSECRET_3=\"Hello\" -Xcc -DSECRET_2=\"World!\" -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-28/bin/CommandLine/CommandLineToolLib/lib_impl_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(SRCROOT)/CommandLine/swift_interop_hint/c_lib.modulemap -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/examples_command_line_external/ExternalFramework.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-28/bin/external/examples_command_line_external/Library_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-28/bin/CommandLine/CommandLineToolLib/private_lib_modulemap/_/module.modulemap -Xcc -O0 -Xcc -DDEBUG=1 -Xcc -fstack-protector -Xcc -fstack-protector-all"; PRODUCT_MODULE_NAME = LibSwift; PRODUCT_NAME = lib_swift; SDKROOT = macosx; @@ -17695,7 +18190,7 @@ "INFOPLIST_FILE[sdk=iphoneos*]" = "$(BAZEL_OUT)/CONFIGURATION-STABLE-8/bin/iOSApp/Test/UITests/rules_xcodeproj/iOSAppUITests.__internal__.__test_bundle/Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 15.0; LINK_PARAMS_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iOSAppUITests.33.link.params"; - "LINK_PARAMS_FILE[sdk=iphoneos*]" = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iOSAppUITests.99.link.params"; + "LINK_PARAMS_FILE[sdk=iphoneos*]" = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iOSAppUITests.102.link.params"; OTHER_LDFLAGS = "@$(DERIVED_FILE_DIR)/link.params"; OTHER_SWIFT_FLAGS = "-Xcc -working-directory -Xcc $(PROJECT_DIR) -working-directory $(PROJECT_DIR) -vfsoverlay $(OBJROOT)/bazel-out-overlay.yaml @$(DERIVED_FILE_DIR)/swift.compile.params -F$(DEVELOPER_DIR)/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks -F$(SDKROOT)/Developer/Library/Frameworks -I$(DEVELOPER_DIR)/Platforms/iPhoneSimulator.platform/Developer/usr/lib -Xcc -iquote -Xcc $(PROJECT_DIR) -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin -Xcc -O0 -Xcc -DDEBUG=1 -Xcc -fstack-protector -Xcc -fstack-protector-all"; "OTHER_SWIFT_FLAGS[sdk=iphoneos*]" = "-Xcc -working-directory -Xcc $(PROJECT_DIR) -working-directory $(PROJECT_DIR) -vfsoverlay $(OBJROOT)/bazel-out-overlay.yaml @$(DERIVED_FILE_DIR)/swift.compile.params -F$(DEVELOPER_DIR)/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F$(SDKROOT)/Developer/Library/Frameworks -I$(DEVELOPER_DIR)/Platforms/iPhoneOS.platform/Developer/usr/lib -Xcc -iquote -Xcc $(PROJECT_DIR) -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-8/bin -Xcc -O0 -Xcc -DDEBUG=1 -Xcc -fstack-protector -Xcc -fstack-protector-all"; @@ -17743,7 +18238,7 @@ IPHONEOS_DEPLOYMENT_TARGET = 15.0; LINK_PARAMS_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iOSAppSwiftUnitTestSuite.48.link.params"; OTHER_LDFLAGS = "@$(DERIVED_FILE_DIR)/link.params"; - OTHER_SWIFT_FLAGS = "-Xcc -working-directory -Xcc $(PROJECT_DIR) -working-directory $(PROJECT_DIR) -Xcc -ivfsoverlay -Xcc $(OBJROOT)/bazel-out-overlay.yaml -vfsoverlay $(OBJROOT)/bazel-out-overlay.yaml $(PREVIEWS_SWIFT_INCLUDE__$(ENABLE_PREVIEWS)) @$(DERIVED_FILE_DIR)/swift.compile.params -F$(DEVELOPER_DIR)/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks -F$(SDKROOT)/Developer/Library/Frameworks -I$(DEVELOPER_DIR)/Platforms/iPhoneSimulator.platform/Developer/usr/lib -I$(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/Lib/UndesiredSchemes -I$(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/Lib -I$(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/UI -I$(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer -I$(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/iOSApp/Source -I$(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/iOSApp/Test/TestingUtils -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_i386_x86_64-simulator -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64_x86_64-simulator -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64_x86_64-simulator -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64_x86_64-simulator -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_i386_x86_64-simulator -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64_x86_64-simulator -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64_x86_64-simulator -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64_x86_64-simulator -Xcc -I -Xcc $(SRCROOT)/iOSApp/Source/CoreUtilsObjC -Xcc -I -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/iOSApp/Source/CoreUtilsObjC -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -Xcc -iquote -Xcc $(PROJECT_DIR) -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/external/_main~non_module_deps~com_google_google_maps -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~FXPageControl -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/external/_main~non_module_deps~FXPageControl -Xcc \"-DNEEDS_QUOTES=Two words\" -Xcc -DAWESOME -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_i386_x86_64-simulator/CryptoSwift.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_objc_modulemap.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_swift_modulemap.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_objc_modulemap-module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/iOSApp/Source/CoreUtilsObjC/CoreUtilsObjC.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64_x86_64-simulator/GoogleMapsBase.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64_x86_64-simulator/GoogleMapsCore.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64_x86_64-simulator/GoogleMaps.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/external/_main~non_module_deps~FXPageControl/FXPageControl.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/iOSApp/Source/Utils/Utils.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/iOSApp/Test/TestingUtils/TestingUtils.swift.modulemap -Xcc -O0 -Xcc -DDEBUG=1 -Xcc -fstack-protector -Xcc -fstack-protector-all"; + OTHER_SWIFT_FLAGS = "-Xcc -working-directory -Xcc $(PROJECT_DIR) -working-directory $(PROJECT_DIR) -Xcc -ivfsoverlay -Xcc $(OBJROOT)/bazel-out-overlay.yaml -vfsoverlay $(OBJROOT)/bazel-out-overlay.yaml $(PREVIEWS_SWIFT_INCLUDE__$(ENABLE_PREVIEWS)) @$(DERIVED_FILE_DIR)/swift.compile.params -F$(DEVELOPER_DIR)/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks -F$(SDKROOT)/Developer/Library/Frameworks -I$(DEVELOPER_DIR)/Platforms/iPhoneSimulator.platform/Developer/usr/lib -I$(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/Lib/UndesiredSchemes -I$(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/Lib -I$(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/UI -I$(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer -I$(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/iOSApp/Source -I$(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/iOSApp/Test/TestingUtils -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_i386_x86_64-simulator -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64_x86_64-simulator -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64_x86_64-simulator -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64_x86_64-simulator -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_i386_x86_64-simulator -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64_x86_64-simulator -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64_x86_64-simulator -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64_x86_64-simulator -Xcc -I -Xcc $(SRCROOT)/iOSApp/Source/CoreUtilsObjC -Xcc -I -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/iOSApp/Source/CoreUtilsObjC -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -Xcc -iquote -Xcc $(PROJECT_DIR) -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/external/_main~non_module_deps~com_google_google_maps -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~FXPageControl -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/external/_main~non_module_deps~FXPageControl -Xcc \"-DNEEDS_QUOTES=Two words\" -Xcc -DAWESOME -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_i386_x86_64-simulator/CryptoSwift.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_objc_modulemap_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_swift_modulemap_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_objc_modulemap-module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/iOSApp/Source/CoreUtilsObjC/CoreUtilsObjC_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64_x86_64-simulator/GoogleMapsBase.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64_x86_64-simulator/GoogleMapsCore.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64_x86_64-simulator/GoogleMaps.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/external/_main~non_module_deps~FXPageControl/FXPageControl_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/iOSApp/Source/Utils/Utils_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/iOSApp/Test/TestingUtils/TestingUtils_modulemap/_/module.modulemap -Xcc -O0 -Xcc -DDEBUG=1 -Xcc -fstack-protector -Xcc -fstack-protector-all"; PREVIEWS_SWIFT_INCLUDE__ = ""; PREVIEWS_SWIFT_INCLUDE__NO = ""; PREVIEWS_SWIFT_INCLUDE__YES = "-I bazel-out/CONFIGURATION-STABLE-3/bin/iOSApp/Test/SwiftUnitTests"; @@ -17839,9 +18334,9 @@ COMPILE_TARGET_NAME = iOSAppSwiftUnitTestSuite.library; INFOPLIST_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/iOSApp/Test/SwiftUnitTests/rules_xcodeproj/iOSAppSwiftUnitTestSuite.__internal__.__test_bundle/Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 15.0; - LINK_PARAMS_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iOSAppSwiftUnitTestSuite.149.link.params"; + LINK_PARAMS_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iOSAppSwiftUnitTestSuite.152.link.params"; OTHER_LDFLAGS = "@$(DERIVED_FILE_DIR)/link.params"; - OTHER_SWIFT_FLAGS = "-Xcc -working-directory -Xcc $(PROJECT_DIR) -working-directory $(PROJECT_DIR) -Xcc -ivfsoverlay -Xcc $(OBJROOT)/bazel-out-overlay.yaml -vfsoverlay $(OBJROOT)/bazel-out-overlay.yaml $(PREVIEWS_SWIFT_INCLUDE__$(ENABLE_PREVIEWS)) @$(DERIVED_FILE_DIR)/swift.compile.params -F$(DEVELOPER_DIR)/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks -F$(SDKROOT)/Developer/Library/Frameworks -I$(DEVELOPER_DIR)/Platforms/iPhoneSimulator.platform/Developer/usr/lib -I$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/Lib/UndesiredSchemes -I$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/Lib -I$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/UI -I$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer -I$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/iOSApp/Source -I$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/iOSApp/Test/TestingUtils -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_i386_x86_64-simulator -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64_x86_64-simulator -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64_x86_64-simulator -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64_x86_64-simulator -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_i386_x86_64-simulator -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64_x86_64-simulator -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64_x86_64-simulator -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64_x86_64-simulator -Xcc -I -Xcc $(SRCROOT)/iOSApp/Source/CoreUtilsObjC -Xcc -I -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/iOSApp/Source/CoreUtilsObjC -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -Xcc -iquote -Xcc $(PROJECT_DIR) -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/external/_main~non_module_deps~com_google_google_maps -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~FXPageControl -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/external/_main~non_module_deps~FXPageControl -Xcc \"-DNEEDS_QUOTES=Two words\" -Xcc -DAWESOME -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_i386_x86_64-simulator/CryptoSwift.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_objc_modulemap.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_swift_modulemap.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_objc_modulemap-module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/iOSApp/Source/CoreUtilsObjC/CoreUtilsObjC.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64_x86_64-simulator/GoogleMapsBase.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64_x86_64-simulator/GoogleMapsCore.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64_x86_64-simulator/GoogleMaps.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/external/_main~non_module_deps~FXPageControl/FXPageControl.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/iOSApp/Source/Utils/Utils.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/iOSApp/Test/TestingUtils/TestingUtils.swift.modulemap -Xcc -Os -Xcc -DNDEBUG=1 -Xcc -Wno-unused-variable -Xcc -Winit-self -Xcc -Wno-extra"; + OTHER_SWIFT_FLAGS = "-Xcc -working-directory -Xcc $(PROJECT_DIR) -working-directory $(PROJECT_DIR) -Xcc -ivfsoverlay -Xcc $(OBJROOT)/bazel-out-overlay.yaml -vfsoverlay $(OBJROOT)/bazel-out-overlay.yaml $(PREVIEWS_SWIFT_INCLUDE__$(ENABLE_PREVIEWS)) @$(DERIVED_FILE_DIR)/swift.compile.params -F$(DEVELOPER_DIR)/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks -F$(SDKROOT)/Developer/Library/Frameworks -I$(DEVELOPER_DIR)/Platforms/iPhoneSimulator.platform/Developer/usr/lib -I$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/Lib/UndesiredSchemes -I$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/Lib -I$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/UI -I$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer -I$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/iOSApp/Source -I$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/iOSApp/Test/TestingUtils -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_i386_x86_64-simulator -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64_x86_64-simulator -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64_x86_64-simulator -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64_x86_64-simulator -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_i386_x86_64-simulator -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64_x86_64-simulator -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64_x86_64-simulator -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64_x86_64-simulator -Xcc -I -Xcc $(SRCROOT)/iOSApp/Source/CoreUtilsObjC -Xcc -I -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/iOSApp/Source/CoreUtilsObjC -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -Xcc -iquote -Xcc $(PROJECT_DIR) -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/external/_main~non_module_deps~com_google_google_maps -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~FXPageControl -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/external/_main~non_module_deps~FXPageControl -Xcc \"-DNEEDS_QUOTES=Two words\" -Xcc -DAWESOME -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_i386_x86_64-simulator/CryptoSwift.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_objc_modulemap_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_swift_modulemap_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_objc_modulemap-module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/iOSApp/Source/CoreUtilsObjC/CoreUtilsObjC_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64_x86_64-simulator/GoogleMapsBase.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64_x86_64-simulator/GoogleMapsCore.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64_x86_64-simulator/GoogleMaps.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/external/_main~non_module_deps~FXPageControl/FXPageControl_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/iOSApp/Source/Utils/Utils_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/iOSApp/Test/TestingUtils/TestingUtils_modulemap/_/module.modulemap -Xcc -Os -Xcc -DNDEBUG=1 -Xcc -Wno-unused-variable -Xcc -Winit-self -Xcc -Wno-extra"; PREVIEWS_SWIFT_INCLUDE__ = ""; PREVIEWS_SWIFT_INCLUDE__NO = ""; PREVIEWS_SWIFT_INCLUDE__YES = "-I bazel-out/CONFIGURATION-STABLE-12/bin/iOSApp/Test/SwiftUnitTests"; @@ -17894,7 +18389,7 @@ IPHONEOS_FILES = "bazel-out/CONFIGURATION-STABLE-8/bin/WidgetExtension/Intents.swift"; IPHONESIMULATOR_FILES = "bazel-out/CONFIGURATION-STABLE-3/bin/WidgetExtension/Intents.swift"; LINK_PARAMS_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/WidgetExtension.11.link.params"; - "LINK_PARAMS_FILE[sdk=iphoneos*]" = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/WidgetExtension.78.link.params"; + "LINK_PARAMS_FILE[sdk=iphoneos*]" = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/WidgetExtension.81.link.params"; OTHER_LDFLAGS = "@$(DERIVED_FILE_DIR)/link.params"; OTHER_SWIFT_FLAGS = "-Xcc -working-directory -Xcc $(PROJECT_DIR) -working-directory $(PROJECT_DIR) -Xcc -ivfsoverlay -Xcc $(OBJROOT)/bazel-out-overlay.yaml -vfsoverlay $(OBJROOT)/bazel-out-overlay.yaml $(PREVIEWS_SWIFT_INCLUDE__$(ENABLE_PREVIEWS)) @$(DERIVED_FILE_DIR)/swift.compile.params -I$(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/Lib -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_i386_x86_64-simulator -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_i386_x86_64-simulator -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -Xcc -iquote -Xcc $(PROJECT_DIR) -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_i386_x86_64-simulator/CryptoSwift.framework/Modules/module.modulemap -Xcc -O0 -Xcc -DDEBUG=1 -Xcc -fstack-protector -Xcc -fstack-protector-all"; "OTHER_SWIFT_FLAGS[sdk=iphoneos*]" = "-Xcc -working-directory -Xcc $(PROJECT_DIR) -working-directory $(PROJECT_DIR) -Xcc -ivfsoverlay -Xcc $(OBJROOT)/bazel-out-overlay.yaml -vfsoverlay $(OBJROOT)/bazel-out-overlay.yaml $(PREVIEWS_SWIFT_INCLUDE__$(ENABLE_PREVIEWS)) @$(DERIVED_FILE_DIR)/swift.compile.params -I$(BAZEL_OUT)/CONFIGURATION-STABLE-8/bin/Lib -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_armv7 -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_armv7 -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-8/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -Xcc -iquote -Xcc $(PROJECT_DIR) -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-8/bin -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_armv7/CryptoSwift.framework/Modules/module.modulemap -Xcc -O0 -Xcc -DDEBUG=1 -Xcc -fstack-protector -Xcc -fstack-protector-all"; @@ -17915,6 +18410,29 @@ }; name = Debug; }; + C7887D386D69816B7288F331 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ARCHS = x86_64; + BAZEL_LABEL = "@@//GRPC:echo_client_services_swift"; + BAZEL_PACKAGE_BIN_DIR = "bazel-out/CONFIGURATION-STABLE-25/bin/GRPC"; + BAZEL_TARGET_ID = "@@//GRPC:echo_client_services_swift CONFIGURATION-STABLE-25"; + "BAZEL_TARGET_ID[sdk=macosx*]" = "$(BAZEL_TARGET_ID)"; + COMPILE_TARGET_NAME = echo_client_services_swift; + EXCLUDED_SOURCE_FILE_NAMES = "$(MACOSX_FILES) bazel-out/CONFIGURATION-STABLE-26/bin/GRPC/echo_client_services_swift/gen/GRPC/echo.grpc.swift bazel-out/CONFIGURATION-STABLE-26/bin/GRPC/echo_client_services_swift/gen/GRPC/echo.pb.swift"; + INCLUDED_SOURCE_FILE_NAMES = ""; + "INCLUDED_SOURCE_FILE_NAMES[sdk=macosx*]" = "$(MACOSX_FILES)"; + MACOSX_DEPLOYMENT_TARGET = 11.0; + MACOSX_FILES = "bazel-out/CONFIGURATION-STABLE-25/bin/GRPC/echo_client_services_swift/gen/GRPC/echo.grpc.swift bazel-out/CONFIGURATION-STABLE-25/bin/GRPC/echo_client_services_swift/gen/GRPC/echo.pb.swift"; + OTHER_SWIFT_FLAGS = "-Xcc -working-directory -Xcc $(PROJECT_DIR) -working-directory $(PROJECT_DIR) -Xcc -ivfsoverlay -Xcc $(OBJROOT)/bazel-out-overlay.yaml -vfsoverlay $(OBJROOT)/bazel-out-overlay.yaml @$(DERIVED_FILE_DIR)/swift.compile.params -I$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_protobuf -I$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_log -I$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio -I$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics -I$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_collections -I$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_extras -I$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_http2 -I$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl -I$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_transport_services -I$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_grpc_grpc_swift -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_atomics -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl -Xcc -iquote -Xcc $(PROJECT_DIR) -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_grpc_grpc_swift/Sources/CGRPCZlib/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift/Sources/CGRPCZlib/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOLinux/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOLinux/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOWindows/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOWindows/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOAtomics/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOAtomics/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_atomics/Sources/_AtomicsShims/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics/Sources/_AtomicsShims/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIODarwin/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIODarwin/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOLLHTTP/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOLLHTTP/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/Sources/CNIOBoringSSL/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/Sources/CNIOBoringSSL/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/Sources/CNIOBoringSSLShims/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/Sources/CNIOBoringSSLShims/include -Xcc -DSWIFT_PACKAGE -Xcc -D__APPLE_USE_RFC_3542 -Xcc -DLLHTTP_STRICT_MODE -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift/CGRPCZlib_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIOLinux_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIOWindows_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIOAtomics_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics/_AtomicsShims_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIODarwin_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIOLLHTTP_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/CNIOBoringSSL_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/CNIOBoringSSLShims_modulemap/_/module.modulemap -Xcc -O0 -Xcc -DDEBUG=1 -Xcc -fstack-protector -Xcc -fstack-protector-all"; + PRODUCT_NAME = echo_client_services_swift; + SDKROOT = macosx; + SUPPORTED_PLATFORMS = macosx; + SWIFT_PARAMS_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/GRPC/echo_client_services_swift.rules_xcodeproj.swift.compile.params"; + TARGET_NAME = echo_client_services_swift; + }; + name = Debug; + }; C7AC1547D1AD9EB8C37FCC4B /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { @@ -17990,7 +18508,7 @@ "BAZEL_TARGET_ID[sdk=macosx*]" = "$(BAZEL_TARGET_ID)"; COMPILE_TARGET_NAME = lib_swift; MACOSX_DEPLOYMENT_TARGET = 11.0; - OTHER_SWIFT_FLAGS = "-Xcc -working-directory -Xcc $(PROJECT_DIR) -working-directory $(PROJECT_DIR) -Xcc -ivfsoverlay -Xcc $(OBJROOT)/bazel-out-overlay.yaml -vfsoverlay $(OBJROOT)/bazel-out-overlay.yaml @$(DERIVED_FILE_DIR)/swift.compile.params -I$(BAZEL_OUT)/CONFIGURATION-STABLE-32/bin/CommandLine/CommandLineToolLib -F$(BAZEL_EXTERNAL)/examples_command_line_external -Xcc -F -Xcc $(BAZEL_EXTERNAL)/examples_command_line_external -Xcc -I -Xcc $(SDKROOT)/usr/include/uuid -Xcc -iquote -Xcc $(PROJECT_DIR) -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-32/bin -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/examples_command_line_external -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-32/bin/external/examples_command_line_external -Xcc -DSECRET_3=\"Hello\" -Xcc -DSECRET_2=\"World!\" -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-32/bin/CommandLine/CommandLineToolLib/lib_impl.swift.modulemap -Xcc -fmodule-map-file=$(SRCROOT)/CommandLine/swift_c_module/c_lib.modulemap -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/examples_command_line_external/ExternalFramework.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-32/bin/external/examples_command_line_external/Library.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-32/bin/CommandLine/CommandLineToolLib/private_lib.swift.modulemap -Xcc -Os -Xcc -DNDEBUG=1 -Xcc -Wno-unused-variable -Xcc -Winit-self -Xcc -Wno-extra"; + OTHER_SWIFT_FLAGS = "-Xcc -working-directory -Xcc $(PROJECT_DIR) -working-directory $(PROJECT_DIR) -Xcc -ivfsoverlay -Xcc $(OBJROOT)/bazel-out-overlay.yaml -vfsoverlay $(OBJROOT)/bazel-out-overlay.yaml @$(DERIVED_FILE_DIR)/swift.compile.params -I$(BAZEL_OUT)/CONFIGURATION-STABLE-32/bin/CommandLine/CommandLineToolLib -F$(BAZEL_EXTERNAL)/examples_command_line_external -Xcc -F -Xcc $(BAZEL_EXTERNAL)/examples_command_line_external -Xcc -I -Xcc $(SDKROOT)/usr/include/uuid -Xcc -iquote -Xcc $(PROJECT_DIR) -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-32/bin -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/examples_command_line_external -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-32/bin/external/examples_command_line_external -Xcc -DSECRET_3=\"Hello\" -Xcc -DSECRET_2=\"World!\" -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-32/bin/CommandLine/CommandLineToolLib/lib_impl_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(SRCROOT)/CommandLine/swift_interop_hint/c_lib.modulemap -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/examples_command_line_external/ExternalFramework.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-32/bin/external/examples_command_line_external/Library_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-32/bin/CommandLine/CommandLineToolLib/private_lib_modulemap/_/module.modulemap -Xcc -Os -Xcc -DNDEBUG=1 -Xcc -Wno-unused-variable -Xcc -Winit-self -Xcc -Wno-extra"; PRODUCT_MODULE_NAME = LibSwift; PRODUCT_NAME = lib_swift; SDKROOT = macosx; @@ -18040,10 +18558,10 @@ CODE_SIGN_STYLE = Manual; COMPILE_TARGET_NAME = CommandLineLibSwiftTestsLib; INFOPLIST_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-27/bin/CommandLine/Tests/rules_xcodeproj/CommandLineToolTests.__internal__.__test_bundle/Info.plist"; - LINK_PARAMS_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/CommandLineToolTests.71.link.params"; + LINK_PARAMS_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/CommandLineToolTests.74.link.params"; MACOSX_DEPLOYMENT_TARGET = 11.0; OTHER_LDFLAGS = "@$(DERIVED_FILE_DIR)/link.params"; - OTHER_SWIFT_FLAGS = "-Xcc -working-directory -Xcc $(PROJECT_DIR) -working-directory $(PROJECT_DIR) -Xcc -ivfsoverlay -Xcc $(OBJROOT)/bazel-out-overlay.yaml -vfsoverlay $(OBJROOT)/bazel-out-overlay.yaml $(PREVIEWS_SWIFT_INCLUDE__$(ENABLE_PREVIEWS)) @$(DERIVED_FILE_DIR)/swift.compile.params -F$(DEVELOPER_DIR)/Platforms/MacOSX.platform/Developer/Library/Frameworks -I$(DEVELOPER_DIR)/Platforms/MacOSX.platform/Developer/usr/lib -I$(BAZEL_OUT)/CONFIGURATION-STABLE-27/bin/CommandLine/CommandLineToolLib -F$(BAZEL_EXTERNAL)/examples_command_line_external -Xcc -F -Xcc $(BAZEL_EXTERNAL)/examples_command_line_external -Xcc -I -Xcc $(SDKROOT)/usr/include/uuid -Xcc -iquote -Xcc $(PROJECT_DIR) -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-27/bin -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/examples_command_line_external -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-27/bin/external/examples_command_line_external -Xcc -DSECRET_3=\"Hello\" -Xcc -DSECRET_2=\"World!\" -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-27/bin/CommandLine/CommandLineToolLib/lib_impl.swift.modulemap -Xcc -fmodule-map-file=$(SRCROOT)/CommandLine/swift_c_module/c_lib.modulemap -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/examples_command_line_external/ExternalFramework.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-27/bin/external/examples_command_line_external/Library.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-27/bin/CommandLine/CommandLineToolLib/lib_swift.swift.modulemap -Xcc -O0 -Xcc -DDEBUG=1 -Xcc -fstack-protector -Xcc -fstack-protector-all"; + OTHER_SWIFT_FLAGS = "-Xcc -working-directory -Xcc $(PROJECT_DIR) -working-directory $(PROJECT_DIR) -Xcc -ivfsoverlay -Xcc $(OBJROOT)/bazel-out-overlay.yaml -vfsoverlay $(OBJROOT)/bazel-out-overlay.yaml $(PREVIEWS_SWIFT_INCLUDE__$(ENABLE_PREVIEWS)) @$(DERIVED_FILE_DIR)/swift.compile.params -F$(DEVELOPER_DIR)/Platforms/MacOSX.platform/Developer/Library/Frameworks -I$(DEVELOPER_DIR)/Platforms/MacOSX.platform/Developer/usr/lib -I$(BAZEL_OUT)/CONFIGURATION-STABLE-27/bin/CommandLine/CommandLineToolLib -F$(BAZEL_EXTERNAL)/examples_command_line_external -Xcc -F -Xcc $(BAZEL_EXTERNAL)/examples_command_line_external -Xcc -I -Xcc $(SDKROOT)/usr/include/uuid -Xcc -iquote -Xcc $(PROJECT_DIR) -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-27/bin -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/examples_command_line_external -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-27/bin/external/examples_command_line_external -Xcc -DSECRET_3=\"Hello\" -Xcc -DSECRET_2=\"World!\" -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-27/bin/CommandLine/CommandLineToolLib/lib_impl_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(SRCROOT)/CommandLine/swift_interop_hint/c_lib.modulemap -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/examples_command_line_external/ExternalFramework.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-27/bin/external/examples_command_line_external/Library_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-27/bin/CommandLine/CommandLineToolLib/lib_swift_modulemap/_/module.modulemap -Xcc -O0 -Xcc -DDEBUG=1 -Xcc -fstack-protector -Xcc -fstack-protector-all"; PREVIEWS_SWIFT_INCLUDE__ = ""; PREVIEWS_SWIFT_INCLUDE__NO = ""; PREVIEWS_SWIFT_INCLUDE__YES = "-I bazel-out/CONFIGURATION-STABLE-27/bin/CommandLine/Tests"; @@ -18057,6 +18575,54 @@ }; name = Debug; }; + DEC12D6B0A174761389E9100 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ARCHS = x86_64; + BAZEL_LABEL = "@@//Proto:person_proto_swift"; + BAZEL_PACKAGE_BIN_DIR = "bazel-out/CONFIGURATION-STABLE-25/bin/Proto"; + BAZEL_TARGET_ID = "@@//Proto:person_proto_swift CONFIGURATION-STABLE-25"; + "BAZEL_TARGET_ID[sdk=macosx*]" = "$(BAZEL_TARGET_ID)"; + COMPILE_TARGET_NAME = person_proto_swift; + EXCLUDED_SOURCE_FILE_NAMES = "$(MACOSX_FILES) bazel-out/CONFIGURATION-STABLE-26/bin/Proto/person_proto_swift/gen/Proto/Person.pb.swift"; + INCLUDED_SOURCE_FILE_NAMES = ""; + "INCLUDED_SOURCE_FILE_NAMES[sdk=macosx*]" = "$(MACOSX_FILES)"; + MACOSX_DEPLOYMENT_TARGET = 11.0; + MACOSX_FILES = "bazel-out/CONFIGURATION-STABLE-25/bin/Proto/person_proto_swift/gen/Proto/Person.pb.swift"; + OTHER_SWIFT_FLAGS = "-Xcc -working-directory -Xcc $(PROJECT_DIR) -working-directory $(PROJECT_DIR) -vfsoverlay $(OBJROOT)/bazel-out-overlay.yaml @$(DERIVED_FILE_DIR)/swift.compile.params -I$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_protobuf -Xcc -iquote -Xcc $(PROJECT_DIR) -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin -Xcc -O0 -Xcc -DDEBUG=1 -Xcc -fstack-protector -Xcc -fstack-protector-all"; + PRODUCT_MODULE_NAME = Proto_person_proto; + PRODUCT_NAME = person_proto_swift; + SDKROOT = macosx; + SUPPORTED_PLATFORMS = macosx; + SWIFT_PARAMS_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/Proto/person_proto_swift.rules_xcodeproj.swift.compile.params"; + TARGET_NAME = person_proto_swift; + }; + name = Debug; + }; + DF55C3FE287DCE8ABDAD99E2 /* AppStore */ = { + isa = XCBuildConfiguration; + buildSettings = { + ARCHS = x86_64; + BAZEL_LABEL = "@@//GRPC:echo_client_services_swift"; + BAZEL_PACKAGE_BIN_DIR = "bazel-out/CONFIGURATION-STABLE-26/bin/GRPC"; + BAZEL_TARGET_ID = "@@//GRPC:echo_client_services_swift CONFIGURATION-STABLE-26"; + "BAZEL_TARGET_ID[sdk=macosx*]" = "$(BAZEL_TARGET_ID)"; + COMPILE_TARGET_NAME = echo_client_services_swift; + EXCLUDED_SOURCE_FILE_NAMES = "$(MACOSX_FILES) bazel-out/CONFIGURATION-STABLE-25/bin/GRPC/echo_client_services_swift/gen/GRPC/echo.grpc.swift bazel-out/CONFIGURATION-STABLE-25/bin/GRPC/echo_client_services_swift/gen/GRPC/echo.pb.swift"; + INCLUDED_SOURCE_FILE_NAMES = ""; + "INCLUDED_SOURCE_FILE_NAMES[sdk=macosx*]" = "$(MACOSX_FILES)"; + MACOSX_DEPLOYMENT_TARGET = 11.0; + MACOSX_FILES = "bazel-out/CONFIGURATION-STABLE-26/bin/GRPC/echo_client_services_swift/gen/GRPC/echo.grpc.swift bazel-out/CONFIGURATION-STABLE-26/bin/GRPC/echo_client_services_swift/gen/GRPC/echo.pb.swift"; + OTHER_SWIFT_FLAGS = "-Xcc -working-directory -Xcc $(PROJECT_DIR) -working-directory $(PROJECT_DIR) -Xcc -ivfsoverlay -Xcc $(OBJROOT)/bazel-out-overlay.yaml -vfsoverlay $(OBJROOT)/bazel-out-overlay.yaml @$(DERIVED_FILE_DIR)/swift.compile.params -I$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_protobuf -I$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_log -I$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio -I$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics -I$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_collections -I$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_extras -I$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_http2 -I$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl -I$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_transport_services -I$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_grpc_grpc_swift -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_atomics -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl -Xcc -iquote -Xcc $(PROJECT_DIR) -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_grpc_grpc_swift/Sources/CGRPCZlib/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift/Sources/CGRPCZlib/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOLinux/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOLinux/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOWindows/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOWindows/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOAtomics/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOAtomics/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_atomics/Sources/_AtomicsShims/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics/Sources/_AtomicsShims/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIODarwin/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIODarwin/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOLLHTTP/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOLLHTTP/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/Sources/CNIOBoringSSL/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/Sources/CNIOBoringSSL/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/Sources/CNIOBoringSSLShims/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/Sources/CNIOBoringSSLShims/include -Xcc -DSWIFT_PACKAGE -Xcc -D__APPLE_USE_RFC_3542 -Xcc -DLLHTTP_STRICT_MODE -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift/CGRPCZlib_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIOLinux_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIOWindows_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIOAtomics_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics/_AtomicsShims_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIODarwin_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIOLLHTTP_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/CNIOBoringSSL_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/CNIOBoringSSLShims_modulemap/_/module.modulemap -Xcc -Os -Xcc -DNDEBUG=1 -Xcc -Wno-unused-variable -Xcc -Winit-self -Xcc -Wno-extra"; + PRODUCT_NAME = echo_client_services_swift; + SDKROOT = macosx; + SUPPORTED_PLATFORMS = macosx; + SWIFT_COMPILATION_MODE = wholemodule; + SWIFT_PARAMS_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/GRPC/echo_client_services_swift.rules_xcodeproj.swift.compile.params"; + TARGET_NAME = echo_client_services_swift; + }; + name = AppStore; + }; E008B8DEDF35EB6F6FB6CEB1 /* AppStore */ = { isa = XCBuildConfiguration; buildSettings = { @@ -18073,7 +18639,7 @@ COMPILE_TARGET_NAME = tool; C_PARAMS_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-2/bin/cc/tool/tool.rules_xcodeproj.c.compile.params"; EXECUTABLE_EXTENSION = ""; - LINK_PARAMS_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/tool.105.link.params"; + LINK_PARAMS_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/tool.108.link.params"; MACOSX_DEPLOYMENT_TARGET = 12.0; OTHER_CFLAGS = "$(ASAN_OTHER_CFLAGS__$(CLANG_ADDRESS_SANITIZER))"; OTHER_LDFLAGS = "@$(DERIVED_FILE_DIR)/link.params"; @@ -18116,7 +18682,7 @@ C_PARAMS_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/iOSApp/Test/ObjCUnitTests/iOSAppObjCUnitTestSuite.library.rules_xcodeproj.c.compile.params"; INFOPLIST_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/iOSApp/Test/ObjCUnitTests/rules_xcodeproj/iOSAppObjCUnitTestSuite.__internal__.__test_bundle/Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 15.0; - LINK_PARAMS_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iOSAppObjCUnitTestSuite.148.link.params"; + LINK_PARAMS_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iOSAppObjCUnitTestSuite.151.link.params"; OTHER_CFLAGS = "$(ASAN_OTHER_CFLAGS__$(CLANG_ADDRESS_SANITIZER))"; OTHER_LDFLAGS = "@$(DERIVED_FILE_DIR)/link.params"; PRODUCT_BUNDLE_IDENTIFIER = "rules-xcodeproj.example.objctests"; @@ -18255,7 +18821,7 @@ BAZEL_TARGET_ID = "@@//CommandLine/Tests:BasicTests CONFIGURATION-STABLE-34"; "BAZEL_TARGET_ID[sdk=macosx*]" = "$(BAZEL_TARGET_ID)"; COMPILE_TARGET_NAME = BasicTests; - LINK_PARAMS_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/BasicTests.171.link.params"; + LINK_PARAMS_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/BasicTests.177.link.params"; MACOSX_DEPLOYMENT_TARGET = 12.0; OTHER_LDFLAGS = "@$(DERIVED_FILE_DIR)/link.params"; OTHER_SWIFT_FLAGS = "-Xcc -working-directory -Xcc $(PROJECT_DIR) -working-directory $(PROJECT_DIR) -vfsoverlay $(OBJROOT)/bazel-out-overlay.yaml @$(DERIVED_FILE_DIR)/swift.compile.params -F$(DEVELOPER_DIR)/Platforms/MacOSX.platform/Developer/Library/Frameworks -I$(DEVELOPER_DIR)/Platforms/MacOSX.platform/Developer/usr/lib -Xcc -iquote -Xcc $(PROJECT_DIR) -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-34/bin -Xcc -Os -Xcc -DNDEBUG=1 -Xcc -Wno-unused-variable -Xcc -Winit-self -Xcc -Wno-extra"; @@ -18369,12 +18935,12 @@ ASAN_OTHER_CFLAGS__ = "$(ASAN_OTHER_CFLAGS__NO)"; ASAN_OTHER_CFLAGS__NO = "-working-directory $(PROJECT_DIR) -ivfsoverlay $(OBJROOT)/bazel-out-overlay.yaml @$(DERIVED_FILE_DIR)/c.compile.params"; ASAN_OTHER_CFLAGS__YES = "$(ASAN_OTHER_CFLAGS__NO) -Wno-macro-redefined -D_FORTIFY_SOURCE=0"; - BAZEL_LABEL = "@@//CommandLine/swift_c_module:c_lib"; - BAZEL_PACKAGE_BIN_DIR = "bazel-out/CONFIGURATION-STABLE-30/bin/CommandLine/swift_c_module"; - BAZEL_TARGET_ID = "@@//CommandLine/swift_c_module:c_lib CONFIGURATION-STABLE-30"; + BAZEL_LABEL = "@@//CommandLine/swift_interop_hint:c_lib"; + BAZEL_PACKAGE_BIN_DIR = "bazel-out/CONFIGURATION-STABLE-30/bin/CommandLine/swift_interop_hint"; + BAZEL_TARGET_ID = "@@//CommandLine/swift_interop_hint:c_lib CONFIGURATION-STABLE-30"; "BAZEL_TARGET_ID[sdk=macosx*]" = "$(BAZEL_TARGET_ID)"; COMPILE_TARGET_NAME = c_lib; - C_PARAMS_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-30/bin/CommandLine/swift_c_module/c_lib.rules_xcodeproj.c.compile.params"; + C_PARAMS_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-30/bin/CommandLine/swift_interop_hint/c_lib.rules_xcodeproj.c.compile.params"; MACOSX_DEPLOYMENT_TARGET = 11.0; OTHER_CFLAGS = "$(ASAN_OTHER_CFLAGS__$(CLANG_ADDRESS_SANITIZER))"; PRODUCT_NAME = c_lib; @@ -18414,8 +18980,8 @@ COMPILE_TARGET_NAME = UI; INFOPLIST_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-15/bin/UI/rules_xcodeproj/UIFramework.tvOS/Info.plist"; "INFOPLIST_FILE[sdk=appletvos*]" = "$(BAZEL_OUT)/CONFIGURATION-STABLE-20/bin/UI/rules_xcodeproj/UIFramework.tvOS/Info.plist"; - LINK_PARAMS_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/UIFramework.tvOS.127.link.params"; - "LINK_PARAMS_FILE[sdk=appletvos*]" = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/UIFramework.tvOS.194.link.params"; + LINK_PARAMS_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/UIFramework.tvOS.130.link.params"; + "LINK_PARAMS_FILE[sdk=appletvos*]" = "$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/UIFramework.tvOS.200.link.params"; OTHER_LDFLAGS = "@$(DERIVED_FILE_DIR)/link.params"; OTHER_SWIFT_FLAGS = "-Xcc -working-directory -Xcc $(PROJECT_DIR) -working-directory $(PROJECT_DIR) -Xcc -ivfsoverlay -Xcc $(OBJROOT)/bazel-out-overlay.yaml -vfsoverlay $(OBJROOT)/bazel-out-overlay.yaml $(PREVIEWS_SWIFT_INCLUDE__$(ENABLE_PREVIEWS)) @$(DERIVED_FILE_DIR)/swift.compile.params -I$(BAZEL_OUT)/CONFIGURATION-STABLE-15/bin/Lib -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/tvos-arm64_x86_64-simulator -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/tvos-arm64_x86_64-simulator -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-15/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -Xcc -iquote -Xcc $(PROJECT_DIR) -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-15/bin -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/tvos-arm64_x86_64-simulator/CryptoSwift.framework/Modules/module.modulemap -Xcc -Os -Xcc -DNDEBUG=1 -Xcc -Wno-unused-variable -Xcc -Winit-self -Xcc -Wno-extra"; "OTHER_SWIFT_FLAGS[sdk=appletvos*]" = "-Xcc -working-directory -Xcc $(PROJECT_DIR) -working-directory $(PROJECT_DIR) -Xcc -ivfsoverlay -Xcc $(OBJROOT)/bazel-out-overlay.yaml -vfsoverlay $(OBJROOT)/bazel-out-overlay.yaml $(PREVIEWS_SWIFT_INCLUDE__$(ENABLE_PREVIEWS)) @$(DERIVED_FILE_DIR)/swift.compile.params -I$(BAZEL_OUT)/CONFIGURATION-STABLE-20/bin/Lib -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/tvos-arm64 -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/tvos-arm64 -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-20/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -Xcc -iquote -Xcc $(PROJECT_DIR) -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-20/bin -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/tvos-arm64/CryptoSwift.framework/Modules/module.modulemap -Xcc -Os -Xcc -DNDEBUG=1 -Xcc -Wno-unused-variable -Xcc -Winit-self -Xcc -Wno-extra"; @@ -18452,12 +19018,12 @@ ASAN_OTHER_CFLAGS__ = "$(ASAN_OTHER_CFLAGS__NO)"; ASAN_OTHER_CFLAGS__NO = "-working-directory $(PROJECT_DIR) -ivfsoverlay $(OBJROOT)/bazel-out-overlay.yaml @$(DERIVED_FILE_DIR)/c.compile.params"; ASAN_OTHER_CFLAGS__YES = "$(ASAN_OTHER_CFLAGS__NO) -Wno-macro-redefined -D_FORTIFY_SOURCE=0"; - BAZEL_LABEL = "@@//CommandLine/swift_c_module:c_lib"; - BAZEL_PACKAGE_BIN_DIR = "bazel-out/CONFIGURATION-STABLE-29/bin/CommandLine/swift_c_module"; - BAZEL_TARGET_ID = "@@//CommandLine/swift_c_module:c_lib CONFIGURATION-STABLE-29"; + BAZEL_LABEL = "@@//CommandLine/swift_interop_hint:c_lib"; + BAZEL_PACKAGE_BIN_DIR = "bazel-out/CONFIGURATION-STABLE-29/bin/CommandLine/swift_interop_hint"; + BAZEL_TARGET_ID = "@@//CommandLine/swift_interop_hint:c_lib CONFIGURATION-STABLE-29"; "BAZEL_TARGET_ID[sdk=macosx*]" = "$(BAZEL_TARGET_ID)"; COMPILE_TARGET_NAME = c_lib; - C_PARAMS_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-29/bin/CommandLine/swift_c_module/c_lib.rules_xcodeproj.c.compile.params"; + C_PARAMS_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-29/bin/CommandLine/swift_interop_hint/c_lib.rules_xcodeproj.c.compile.params"; MACOSX_DEPLOYMENT_TARGET = 11.0; OTHER_CFLAGS = "$(ASAN_OTHER_CFLAGS__$(CLANG_ADDRESS_SANITIZER))"; PRODUCT_NAME = c_lib; @@ -18931,6 +19497,24 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Debug; }; + AA397E9A09754A3D09692899 /* Build configuration list for PBXNativeTarget "echo_client_services_swift" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + DF55C3FE287DCE8ABDAD99E2 /* AppStore */, + C7887D386D69816B7288F331 /* Debug */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Debug; + }; + AED07876CB9C7E3A6CEF343F /* Build configuration list for PBXNativeTarget "echo_server_services_swift" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + A2146493370683A9692EF14F /* AppStore */, + 2653784DE59B17D30D6B2AA7 /* Debug */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Debug; + }; AFD0877282403DB67768BDFE /* Build configuration list for PBXNativeTarget "lib_impl (x86_64) (c75a6)" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -18985,6 +19569,15 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Debug; }; + C634A57372B011004DF0626B /* Build configuration list for PBXNativeTarget "Proto_person_proto" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 408FE4A624505AC326611185 /* AppStore */, + DEC12D6B0A174761389E9100 /* Debug */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Debug; + }; C986B7E84520EFD0454FA9C4 /* Build configuration list for PBXNativeTarget "UIFramework.tvOS" */ = { isa = XCConfigurationList; buildConfigurations = ( diff --git a/examples/integration/test/fixtures/bwb.xcodeproj/rules_xcodeproj/bazel/AppStore-swift_debug_settings.py b/examples/integration/test/fixtures/bwb.xcodeproj/rules_xcodeproj/bazel/AppStore-swift_debug_settings.py index ab800dd725..285df5b2b3 100755 --- a/examples/integration/test/fixtures/bwb.xcodeproj/rules_xcodeproj/bazel/AppStore-swift_debug_settings.py +++ b/examples/integration/test/fixtures/bwb.xcodeproj/rules_xcodeproj/bazel/AppStore-swift_debug_settings.py @@ -51,7 +51,7 @@ ] }, "arm64-apple-ios iOSApp.app/iOSApp": { - "c": "-F$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_armv7 -F$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64 -F$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64 -F$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64 -I$(PROJECT_DIR)/iOSApp/Source/CoreUtilsObjC -I$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-17/bin/iOSApp/Source/CoreUtilsObjC -iquote$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-17/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-17/bin -iquote$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-17/bin/external/_main~non_module_deps~com_google_google_maps -DNEEDS_QUOTES=Two\\ words -fmodule-map-file=$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_armv7/CryptoSwift.framework/Modules/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-17/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_objc_modulemap.swift.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-17/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_swift_modulemap.swift.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-17/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_objc_modulemap-module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-17/bin/iOSApp/Source/CoreUtilsObjC/CoreUtilsObjC.swift.modulemap -fmodule-map-file=$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64/GoogleMapsBase.framework/Modules/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64/GoogleMapsCore.framework/Modules/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64/GoogleMaps.framework/Modules/module.modulemap -Os -DNDEBUG=1 -Wno-unused-variable -Winit-self -Wno-extra -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-17/bin -Os -Wno-unused-variable -Winit-self -Wno-extra -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-17/bin -Os -Wno-unused-variable -Winit-self -Wno-extra -iquote$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-17/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-17/bin -Os -Wno-unused-variable -Winit-self -Wno-extra -iquote$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-17/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-17/bin -Os -Wno-unused-variable -Winit-self -Wno-extra -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-17/bin -Os -Wno-unused-variable -Winit-self -Wno-extra", + "c": "-F$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_armv7 -F$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64 -F$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64 -F$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64 -I$(PROJECT_DIR)/iOSApp/Source/CoreUtilsObjC -I$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-17/bin/iOSApp/Source/CoreUtilsObjC -iquote$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-17/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-17/bin -iquote$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-17/bin/external/_main~non_module_deps~com_google_google_maps -DNEEDS_QUOTES=Two\\ words -fmodule-map-file=$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_armv7/CryptoSwift.framework/Modules/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-17/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_objc_modulemap_modulemap/_/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-17/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_swift_modulemap_modulemap/_/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-17/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_objc_modulemap-module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-17/bin/iOSApp/Source/CoreUtilsObjC/CoreUtilsObjC_modulemap/_/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64/GoogleMapsBase.framework/Modules/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64/GoogleMapsCore.framework/Modules/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64/GoogleMaps.framework/Modules/module.modulemap -Os -DNDEBUG=1 -Wno-unused-variable -Winit-self -Wno-extra -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-17/bin -Os -Wno-unused-variable -Winit-self -Wno-extra -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-17/bin -Os -Wno-unused-variable -Winit-self -Wno-extra -iquote$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-17/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-17/bin -Os -Wno-unused-variable -Winit-self -Wno-extra -iquote$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-17/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-17/bin -Os -Wno-unused-variable -Winit-self -Wno-extra -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-17/bin -Os -Wno-unused-variable -Winit-self -Wno-extra", "f": [ "$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_armv7", "$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64", @@ -66,7 +66,7 @@ ] }, "arm64-apple-ios iOSAppObjCUnitTests.xctest/iOSAppObjCUnitTests": { - "c": "-F$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_armv7 -F$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64 -F$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64 -F$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64 -I$(PROJECT_DIR)/iOSApp/Source/CoreUtilsObjC -I$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-17/bin/iOSApp/Source/CoreUtilsObjC -iquote$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-17/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-17/bin -iquote$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-17/bin/external/_main~non_module_deps~com_google_google_maps -DNEEDS_QUOTES=Two\\ words -fmodule-map-file=$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_armv7/CryptoSwift.framework/Modules/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-17/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_objc_modulemap.swift.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-17/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_swift_modulemap.swift.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-17/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_objc_modulemap-module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-17/bin/iOSApp/Source/CoreUtilsObjC/CoreUtilsObjC.swift.modulemap -fmodule-map-file=$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64/GoogleMapsBase.framework/Modules/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64/GoogleMapsCore.framework/Modules/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64/GoogleMaps.framework/Modules/module.modulemap -Os -DNDEBUG=1 -Wno-unused-variable -Winit-self -Wno-extra -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-17/bin -Os -Wno-unused-variable -Winit-self -Wno-extra -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-17/bin -Os -Wno-unused-variable -Winit-self -Wno-extra -iquote$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-17/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-17/bin -Os -Wno-unused-variable -Winit-self -Wno-extra -iquote$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-17/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-17/bin -Os -Wno-unused-variable -Winit-self -Wno-extra -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-17/bin -Os -Wno-unused-variable -Winit-self -Wno-extra -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-17/bin -Os -Wno-unused-variable -Winit-self -Wno-extra", + "c": "-F$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_armv7 -F$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64 -F$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64 -F$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64 -I$(PROJECT_DIR)/iOSApp/Source/CoreUtilsObjC -I$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-17/bin/iOSApp/Source/CoreUtilsObjC -iquote$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-17/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-17/bin -iquote$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-17/bin/external/_main~non_module_deps~com_google_google_maps -DNEEDS_QUOTES=Two\\ words -fmodule-map-file=$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_armv7/CryptoSwift.framework/Modules/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-17/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_objc_modulemap_modulemap/_/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-17/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_swift_modulemap_modulemap/_/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-17/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_objc_modulemap-module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-17/bin/iOSApp/Source/CoreUtilsObjC/CoreUtilsObjC_modulemap/_/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64/GoogleMapsBase.framework/Modules/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64/GoogleMapsCore.framework/Modules/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64/GoogleMaps.framework/Modules/module.modulemap -Os -DNDEBUG=1 -Wno-unused-variable -Winit-self -Wno-extra -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-17/bin -Os -Wno-unused-variable -Winit-self -Wno-extra -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-17/bin -Os -Wno-unused-variable -Winit-self -Wno-extra -iquote$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-17/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-17/bin -Os -Wno-unused-variable -Winit-self -Wno-extra -iquote$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-17/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-17/bin -Os -Wno-unused-variable -Winit-self -Wno-extra -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-17/bin -Os -Wno-unused-variable -Winit-self -Wno-extra -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-17/bin -Os -Wno-unused-variable -Winit-self -Wno-extra", "f": [ "$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_armv7", "$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64", @@ -84,7 +84,7 @@ ] }, "arm64-apple-ios iOSAppSwiftUnitTests.xctest/iOSAppSwiftUnitTests": { - "c": "-F$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_armv7 -F$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64 -F$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64 -F$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64 -I$(PROJECT_DIR)/iOSApp/Source/CoreUtilsObjC -I$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-17/bin/iOSApp/Source/CoreUtilsObjC -iquote$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-17/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-17/bin -iquote$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-17/bin/external/_main~non_module_deps~com_google_google_maps -iquote$(PROJECT_DIR)/external/_main~non_module_deps~FXPageControl -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-17/bin/external/_main~non_module_deps~FXPageControl -DNEEDS_QUOTES=Two\\ words -DAWESOME -fmodule-map-file=$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_armv7/CryptoSwift.framework/Modules/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-17/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_objc_modulemap.swift.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-17/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_swift_modulemap.swift.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-17/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_objc_modulemap-module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-17/bin/iOSApp/Source/CoreUtilsObjC/CoreUtilsObjC.swift.modulemap -fmodule-map-file=$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64/GoogleMapsBase.framework/Modules/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64/GoogleMapsCore.framework/Modules/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64/GoogleMaps.framework/Modules/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-17/bin/external/_main~non_module_deps~FXPageControl/FXPageControl.swift.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-17/bin/iOSApp/Source/Utils/Utils.swift.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-17/bin/iOSApp/Test/TestingUtils/TestingUtils.swift.modulemap -Os -DNDEBUG=1 -Wno-unused-variable -Winit-self -Wno-extra -iquote$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-17/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-17/bin -iquote$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-17/bin/external/_main~non_module_deps~com_google_google_maps -Os -Wno-unused-variable -Winit-self -Wno-extra -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-17/bin -Os -Wno-unused-variable -Winit-self -Wno-extra -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-17/bin -Os -Wno-unused-variable -Winit-self -Wno-extra -iquote$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-17/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-17/bin -Os -Wno-unused-variable -Winit-self -Wno-extra -iquote$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-17/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-17/bin -Os -Wno-unused-variable -Winit-self -Wno-extra -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-17/bin -Os -Wno-unused-variable -Winit-self -Wno-extra -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-17/bin -Os -Wno-unused-variable -Winit-self -Wno-extra", + "c": "-F$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_armv7 -F$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64 -F$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64 -F$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64 -I$(PROJECT_DIR)/iOSApp/Source/CoreUtilsObjC -I$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-17/bin/iOSApp/Source/CoreUtilsObjC -iquote$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-17/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-17/bin -iquote$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-17/bin/external/_main~non_module_deps~com_google_google_maps -iquote$(PROJECT_DIR)/external/_main~non_module_deps~FXPageControl -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-17/bin/external/_main~non_module_deps~FXPageControl -DNEEDS_QUOTES=Two\\ words -DAWESOME -fmodule-map-file=$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_armv7/CryptoSwift.framework/Modules/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-17/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_objc_modulemap_modulemap/_/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-17/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_swift_modulemap_modulemap/_/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-17/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_objc_modulemap-module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-17/bin/iOSApp/Source/CoreUtilsObjC/CoreUtilsObjC_modulemap/_/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64/GoogleMapsBase.framework/Modules/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64/GoogleMapsCore.framework/Modules/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64/GoogleMaps.framework/Modules/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-17/bin/external/_main~non_module_deps~FXPageControl/FXPageControl_modulemap/_/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-17/bin/iOSApp/Source/Utils/Utils_modulemap/_/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-17/bin/iOSApp/Test/TestingUtils/TestingUtils_modulemap/_/module.modulemap -Os -DNDEBUG=1 -Wno-unused-variable -Winit-self -Wno-extra -iquote$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-17/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-17/bin -iquote$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-17/bin/external/_main~non_module_deps~com_google_google_maps -Os -Wno-unused-variable -Winit-self -Wno-extra -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-17/bin -Os -Wno-unused-variable -Winit-self -Wno-extra -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-17/bin -Os -Wno-unused-variable -Winit-self -Wno-extra -iquote$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-17/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-17/bin -Os -Wno-unused-variable -Winit-self -Wno-extra -iquote$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-17/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-17/bin -Os -Wno-unused-variable -Winit-self -Wno-extra -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-17/bin -Os -Wno-unused-variable -Winit-self -Wno-extra -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-17/bin -Os -Wno-unused-variable -Winit-self -Wno-extra", "f": [ "$(DEVELOPER_DIR)/Platforms/iPhoneOS.platform/Developer/Library/Frameworks", "$(SDKROOT)/Developer/Library/Frameworks", @@ -114,7 +114,7 @@ ] }, "arm64-apple-macosx tool.binary": { - "c": "-F$(PROJECT_DIR)/external/examples_command_line_external -I$(SDKROOT)/usr/include/uuid -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-31/bin -iquote$(PROJECT_DIR)/external/examples_command_line_external -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-31/bin/external/examples_command_line_external -DSECRET_3=\"Hello\" -DSECRET_2=\"World!\" -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-31/bin/CommandLine/CommandLineToolLib/lib_impl.swift.modulemap -fmodule-map-file=$(PROJECT_DIR)/CommandLine/swift_c_module/c_lib.modulemap -fmodule-map-file=$(PROJECT_DIR)/external/examples_command_line_external/ExternalFramework.framework/Modules/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-31/bin/external/examples_command_line_external/Library.swift.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-31/bin/CommandLine/CommandLineToolLib/private_lib.swift.modulemap -Os -DNDEBUG=1 -Wno-unused-variable -Winit-self -Wno-extra -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-31/bin -Os -Wno-unused-variable -Winit-self -Wno-extra", + "c": "-F$(PROJECT_DIR)/external/examples_command_line_external -I$(SDKROOT)/usr/include/uuid -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-31/bin -iquote$(PROJECT_DIR)/external/examples_command_line_external -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-31/bin/external/examples_command_line_external -DSECRET_3=\"Hello\" -DSECRET_2=\"World!\" -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-31/bin/CommandLine/CommandLineToolLib/lib_impl_modulemap/_/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/CommandLine/swift_interop_hint/c_lib.modulemap -fmodule-map-file=$(PROJECT_DIR)/external/examples_command_line_external/ExternalFramework.framework/Modules/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-31/bin/external/examples_command_line_external/Library_modulemap/_/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-31/bin/CommandLine/CommandLineToolLib/private_lib_modulemap/_/module.modulemap -Os -DNDEBUG=1 -Wno-unused-variable -Winit-self -Wno-extra -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-31/bin -Os -Wno-unused-variable -Winit-self -Wno-extra", "f": [ "$(PROJECT_DIR)/external/examples_command_line_external" ], @@ -227,7 +227,7 @@ ] }, "x86_64-apple-ios-simulator iOSApp.app/iOSApp_ExecutableName": { - "c": "-F$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_i386_x86_64-simulator -F$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64_x86_64-simulator -F$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64_x86_64-simulator -F$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64_x86_64-simulator -I$(PROJECT_DIR)/iOSApp/Source/CoreUtilsObjC -I$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin/iOSApp/Source/CoreUtilsObjC -iquote$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin -iquote$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin/external/_main~non_module_deps~com_google_google_maps -DNEEDS_QUOTES=Two\\ words -fmodule-map-file=$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_i386_x86_64-simulator/CryptoSwift.framework/Modules/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_objc_modulemap.swift.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_swift_modulemap.swift.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_objc_modulemap-module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin/iOSApp/Source/CoreUtilsObjC/CoreUtilsObjC.swift.modulemap -fmodule-map-file=$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64_x86_64-simulator/GoogleMapsBase.framework/Modules/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64_x86_64-simulator/GoogleMapsCore.framework/Modules/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64_x86_64-simulator/GoogleMaps.framework/Modules/module.modulemap -Os -DNDEBUG=1 -Wno-unused-variable -Winit-self -Wno-extra -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin -Os -Wno-unused-variable -Winit-self -Wno-extra -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin -Os -Wno-unused-variable -Winit-self -Wno-extra -iquote$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin -Os -Wno-unused-variable -Winit-self -Wno-extra -iquote$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin -Os -Wno-unused-variable -Winit-self -Wno-extra -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin -Os -Wno-unused-variable -Winit-self -Wno-extra", + "c": "-F$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_i386_x86_64-simulator -F$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64_x86_64-simulator -F$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64_x86_64-simulator -F$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64_x86_64-simulator -I$(PROJECT_DIR)/iOSApp/Source/CoreUtilsObjC -I$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin/iOSApp/Source/CoreUtilsObjC -iquote$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin -iquote$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin/external/_main~non_module_deps~com_google_google_maps -DNEEDS_QUOTES=Two\\ words -fmodule-map-file=$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_i386_x86_64-simulator/CryptoSwift.framework/Modules/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_objc_modulemap_modulemap/_/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_swift_modulemap_modulemap/_/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_objc_modulemap-module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin/iOSApp/Source/CoreUtilsObjC/CoreUtilsObjC_modulemap/_/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64_x86_64-simulator/GoogleMapsBase.framework/Modules/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64_x86_64-simulator/GoogleMapsCore.framework/Modules/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64_x86_64-simulator/GoogleMaps.framework/Modules/module.modulemap -Os -DNDEBUG=1 -Wno-unused-variable -Winit-self -Wno-extra -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin -Os -Wno-unused-variable -Winit-self -Wno-extra -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin -Os -Wno-unused-variable -Winit-self -Wno-extra -iquote$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin -Os -Wno-unused-variable -Winit-self -Wno-extra -iquote$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin -Os -Wno-unused-variable -Winit-self -Wno-extra -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin -Os -Wno-unused-variable -Winit-self -Wno-extra", "f": [ "$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_i386_x86_64-simulator", "$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64_x86_64-simulator", @@ -242,7 +242,7 @@ ] }, "x86_64-apple-ios-simulator iOSAppObjCUnitTestSuite.xctest/iOSAppObjCUnitTestSuite": { - "c": "-F$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_i386_x86_64-simulator -F$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64_x86_64-simulator -F$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64_x86_64-simulator -F$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64_x86_64-simulator -I$(PROJECT_DIR)/iOSApp/Source/CoreUtilsObjC -I$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin/iOSApp/Source/CoreUtilsObjC -iquote$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin -iquote$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin/external/_main~non_module_deps~com_google_google_maps -DNEEDS_QUOTES=Two\\ words -fmodule-map-file=$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_i386_x86_64-simulator/CryptoSwift.framework/Modules/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_objc_modulemap.swift.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_swift_modulemap.swift.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_objc_modulemap-module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin/iOSApp/Source/CoreUtilsObjC/CoreUtilsObjC.swift.modulemap -fmodule-map-file=$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64_x86_64-simulator/GoogleMapsBase.framework/Modules/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64_x86_64-simulator/GoogleMapsCore.framework/Modules/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64_x86_64-simulator/GoogleMaps.framework/Modules/module.modulemap -Os -DNDEBUG=1 -Wno-unused-variable -Winit-self -Wno-extra -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin -Os -Wno-unused-variable -Winit-self -Wno-extra -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin -Os -Wno-unused-variable -Winit-self -Wno-extra -iquote$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin -Os -Wno-unused-variable -Winit-self -Wno-extra -iquote$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin -Os -Wno-unused-variable -Winit-self -Wno-extra -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin -Os -Wno-unused-variable -Winit-self -Wno-extra -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin -Os -Wno-unused-variable -Winit-self -Wno-extra", + "c": "-F$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_i386_x86_64-simulator -F$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64_x86_64-simulator -F$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64_x86_64-simulator -F$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64_x86_64-simulator -I$(PROJECT_DIR)/iOSApp/Source/CoreUtilsObjC -I$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin/iOSApp/Source/CoreUtilsObjC -iquote$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin -iquote$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin/external/_main~non_module_deps~com_google_google_maps -DNEEDS_QUOTES=Two\\ words -fmodule-map-file=$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_i386_x86_64-simulator/CryptoSwift.framework/Modules/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_objc_modulemap_modulemap/_/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_swift_modulemap_modulemap/_/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_objc_modulemap-module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin/iOSApp/Source/CoreUtilsObjC/CoreUtilsObjC_modulemap/_/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64_x86_64-simulator/GoogleMapsBase.framework/Modules/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64_x86_64-simulator/GoogleMapsCore.framework/Modules/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64_x86_64-simulator/GoogleMaps.framework/Modules/module.modulemap -Os -DNDEBUG=1 -Wno-unused-variable -Winit-self -Wno-extra -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin -Os -Wno-unused-variable -Winit-self -Wno-extra -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin -Os -Wno-unused-variable -Winit-self -Wno-extra -iquote$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin -Os -Wno-unused-variable -Winit-self -Wno-extra -iquote$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin -Os -Wno-unused-variable -Winit-self -Wno-extra -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin -Os -Wno-unused-variable -Winit-self -Wno-extra -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin -Os -Wno-unused-variable -Winit-self -Wno-extra", "f": [ "$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_i386_x86_64-simulator", "$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64_x86_64-simulator", @@ -260,7 +260,7 @@ ] }, "x86_64-apple-ios-simulator iOSAppObjCUnitTests.xctest/iOSAppObjCUnitTests": { - "c": "-F$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_i386_x86_64-simulator -F$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64_x86_64-simulator -F$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64_x86_64-simulator -F$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64_x86_64-simulator -I$(PROJECT_DIR)/iOSApp/Source/CoreUtilsObjC -I$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin/iOSApp/Source/CoreUtilsObjC -iquote$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin -iquote$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin/external/_main~non_module_deps~com_google_google_maps -DNEEDS_QUOTES=Two\\ words -fmodule-map-file=$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_i386_x86_64-simulator/CryptoSwift.framework/Modules/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_objc_modulemap.swift.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_swift_modulemap.swift.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_objc_modulemap-module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin/iOSApp/Source/CoreUtilsObjC/CoreUtilsObjC.swift.modulemap -fmodule-map-file=$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64_x86_64-simulator/GoogleMapsBase.framework/Modules/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64_x86_64-simulator/GoogleMapsCore.framework/Modules/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64_x86_64-simulator/GoogleMaps.framework/Modules/module.modulemap -Os -DNDEBUG=1 -Wno-unused-variable -Winit-self -Wno-extra -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin -Os -Wno-unused-variable -Winit-self -Wno-extra -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin -Os -Wno-unused-variable -Winit-self -Wno-extra -iquote$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin -Os -Wno-unused-variable -Winit-self -Wno-extra -iquote$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin -Os -Wno-unused-variable -Winit-self -Wno-extra -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin -Os -Wno-unused-variable -Winit-self -Wno-extra -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin -Os -Wno-unused-variable -Winit-self -Wno-extra", + "c": "-F$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_i386_x86_64-simulator -F$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64_x86_64-simulator -F$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64_x86_64-simulator -F$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64_x86_64-simulator -I$(PROJECT_DIR)/iOSApp/Source/CoreUtilsObjC -I$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin/iOSApp/Source/CoreUtilsObjC -iquote$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin -iquote$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin/external/_main~non_module_deps~com_google_google_maps -DNEEDS_QUOTES=Two\\ words -fmodule-map-file=$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_i386_x86_64-simulator/CryptoSwift.framework/Modules/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_objc_modulemap_modulemap/_/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_swift_modulemap_modulemap/_/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_objc_modulemap-module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin/iOSApp/Source/CoreUtilsObjC/CoreUtilsObjC_modulemap/_/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64_x86_64-simulator/GoogleMapsBase.framework/Modules/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64_x86_64-simulator/GoogleMapsCore.framework/Modules/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64_x86_64-simulator/GoogleMaps.framework/Modules/module.modulemap -Os -DNDEBUG=1 -Wno-unused-variable -Winit-self -Wno-extra -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin -Os -Wno-unused-variable -Winit-self -Wno-extra -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin -Os -Wno-unused-variable -Winit-self -Wno-extra -iquote$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin -Os -Wno-unused-variable -Winit-self -Wno-extra -iquote$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin -Os -Wno-unused-variable -Winit-self -Wno-extra -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin -Os -Wno-unused-variable -Winit-self -Wno-extra -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin -Os -Wno-unused-variable -Winit-self -Wno-extra", "f": [ "$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_i386_x86_64-simulator", "$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64_x86_64-simulator", @@ -278,7 +278,7 @@ ] }, "x86_64-apple-ios-simulator iOSAppSwiftUnitTestSuite.xctest/iOSAppSwiftUnitTestSuite": { - "c": "-F$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_i386_x86_64-simulator -F$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64_x86_64-simulator -F$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64_x86_64-simulator -F$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64_x86_64-simulator -I$(PROJECT_DIR)/iOSApp/Source/CoreUtilsObjC -I$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin/iOSApp/Source/CoreUtilsObjC -iquote$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin -iquote$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin/external/_main~non_module_deps~com_google_google_maps -iquote$(PROJECT_DIR)/external/_main~non_module_deps~FXPageControl -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin/external/_main~non_module_deps~FXPageControl -DNEEDS_QUOTES=Two\\ words -DAWESOME -fmodule-map-file=$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_i386_x86_64-simulator/CryptoSwift.framework/Modules/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_objc_modulemap.swift.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_swift_modulemap.swift.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_objc_modulemap-module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin/iOSApp/Source/CoreUtilsObjC/CoreUtilsObjC.swift.modulemap -fmodule-map-file=$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64_x86_64-simulator/GoogleMapsBase.framework/Modules/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64_x86_64-simulator/GoogleMapsCore.framework/Modules/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64_x86_64-simulator/GoogleMaps.framework/Modules/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin/external/_main~non_module_deps~FXPageControl/FXPageControl.swift.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin/iOSApp/Source/Utils/Utils.swift.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin/iOSApp/Test/TestingUtils/TestingUtils.swift.modulemap -Os -DNDEBUG=1 -Wno-unused-variable -Winit-self -Wno-extra -iquote$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin -iquote$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin/external/_main~non_module_deps~com_google_google_maps -Os -Wno-unused-variable -Winit-self -Wno-extra -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin -Os -Wno-unused-variable -Winit-self -Wno-extra -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin -Os -Wno-unused-variable -Winit-self -Wno-extra -iquote$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin -Os -Wno-unused-variable -Winit-self -Wno-extra -iquote$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin -Os -Wno-unused-variable -Winit-self -Wno-extra -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin -Os -Wno-unused-variable -Winit-self -Wno-extra -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin -Os -Wno-unused-variable -Winit-self -Wno-extra", + "c": "-F$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_i386_x86_64-simulator -F$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64_x86_64-simulator -F$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64_x86_64-simulator -F$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64_x86_64-simulator -I$(PROJECT_DIR)/iOSApp/Source/CoreUtilsObjC -I$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin/iOSApp/Source/CoreUtilsObjC -iquote$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin -iquote$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin/external/_main~non_module_deps~com_google_google_maps -iquote$(PROJECT_DIR)/external/_main~non_module_deps~FXPageControl -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin/external/_main~non_module_deps~FXPageControl -DNEEDS_QUOTES=Two\\ words -DAWESOME -fmodule-map-file=$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_i386_x86_64-simulator/CryptoSwift.framework/Modules/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_objc_modulemap_modulemap/_/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_swift_modulemap_modulemap/_/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_objc_modulemap-module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin/iOSApp/Source/CoreUtilsObjC/CoreUtilsObjC_modulemap/_/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64_x86_64-simulator/GoogleMapsBase.framework/Modules/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64_x86_64-simulator/GoogleMapsCore.framework/Modules/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64_x86_64-simulator/GoogleMaps.framework/Modules/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin/external/_main~non_module_deps~FXPageControl/FXPageControl_modulemap/_/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin/iOSApp/Source/Utils/Utils_modulemap/_/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin/iOSApp/Test/TestingUtils/TestingUtils_modulemap/_/module.modulemap -Os -DNDEBUG=1 -Wno-unused-variable -Winit-self -Wno-extra -iquote$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin -iquote$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin/external/_main~non_module_deps~com_google_google_maps -Os -Wno-unused-variable -Winit-self -Wno-extra -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin -Os -Wno-unused-variable -Winit-self -Wno-extra -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin -Os -Wno-unused-variable -Winit-self -Wno-extra -iquote$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin -Os -Wno-unused-variable -Winit-self -Wno-extra -iquote$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin -Os -Wno-unused-variable -Winit-self -Wno-extra -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin -Os -Wno-unused-variable -Winit-self -Wno-extra -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin -Os -Wno-unused-variable -Winit-self -Wno-extra", "f": [ "$(DEVELOPER_DIR)/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks", "$(SDKROOT)/Developer/Library/Frameworks", @@ -298,7 +298,7 @@ ] }, "x86_64-apple-ios-simulator iOSAppSwiftUnitTests.xctest/iOSAppSwiftUnitTests": { - "c": "-F$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_i386_x86_64-simulator -F$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64_x86_64-simulator -F$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64_x86_64-simulator -F$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64_x86_64-simulator -I$(PROJECT_DIR)/iOSApp/Source/CoreUtilsObjC -I$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin/iOSApp/Source/CoreUtilsObjC -iquote$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin -iquote$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin/external/_main~non_module_deps~com_google_google_maps -iquote$(PROJECT_DIR)/external/_main~non_module_deps~FXPageControl -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin/external/_main~non_module_deps~FXPageControl -DNEEDS_QUOTES=Two\\ words -DAWESOME -fmodule-map-file=$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_i386_x86_64-simulator/CryptoSwift.framework/Modules/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_objc_modulemap.swift.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_swift_modulemap.swift.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_objc_modulemap-module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin/iOSApp/Source/CoreUtilsObjC/CoreUtilsObjC.swift.modulemap -fmodule-map-file=$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64_x86_64-simulator/GoogleMapsBase.framework/Modules/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64_x86_64-simulator/GoogleMapsCore.framework/Modules/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64_x86_64-simulator/GoogleMaps.framework/Modules/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin/external/_main~non_module_deps~FXPageControl/FXPageControl.swift.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin/iOSApp/Source/Utils/Utils.swift.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin/iOSApp/Test/TestingUtils/TestingUtils.swift.modulemap -Os -DNDEBUG=1 -Wno-unused-variable -Winit-self -Wno-extra -iquote$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin -iquote$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin/external/_main~non_module_deps~com_google_google_maps -Os -Wno-unused-variable -Winit-self -Wno-extra -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin -Os -Wno-unused-variable -Winit-self -Wno-extra -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin -Os -Wno-unused-variable -Winit-self -Wno-extra -iquote$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin -Os -Wno-unused-variable -Winit-self -Wno-extra -iquote$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin -Os -Wno-unused-variable -Winit-self -Wno-extra -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin -Os -Wno-unused-variable -Winit-self -Wno-extra -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin -Os -Wno-unused-variable -Winit-self -Wno-extra", + "c": "-F$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_i386_x86_64-simulator -F$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64_x86_64-simulator -F$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64_x86_64-simulator -F$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64_x86_64-simulator -I$(PROJECT_DIR)/iOSApp/Source/CoreUtilsObjC -I$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin/iOSApp/Source/CoreUtilsObjC -iquote$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin -iquote$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin/external/_main~non_module_deps~com_google_google_maps -iquote$(PROJECT_DIR)/external/_main~non_module_deps~FXPageControl -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin/external/_main~non_module_deps~FXPageControl -DNEEDS_QUOTES=Two\\ words -DAWESOME -fmodule-map-file=$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_i386_x86_64-simulator/CryptoSwift.framework/Modules/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_objc_modulemap_modulemap/_/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_swift_modulemap_modulemap/_/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_objc_modulemap-module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin/iOSApp/Source/CoreUtilsObjC/CoreUtilsObjC_modulemap/_/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64_x86_64-simulator/GoogleMapsBase.framework/Modules/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64_x86_64-simulator/GoogleMapsCore.framework/Modules/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64_x86_64-simulator/GoogleMaps.framework/Modules/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin/external/_main~non_module_deps~FXPageControl/FXPageControl_modulemap/_/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin/iOSApp/Source/Utils/Utils_modulemap/_/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin/iOSApp/Test/TestingUtils/TestingUtils_modulemap/_/module.modulemap -Os -DNDEBUG=1 -Wno-unused-variable -Winit-self -Wno-extra -iquote$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin -iquote$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin/external/_main~non_module_deps~com_google_google_maps -Os -Wno-unused-variable -Winit-self -Wno-extra -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin -Os -Wno-unused-variable -Winit-self -Wno-extra -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin -Os -Wno-unused-variable -Winit-self -Wno-extra -iquote$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin -Os -Wno-unused-variable -Winit-self -Wno-extra -iquote$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin -Os -Wno-unused-variable -Winit-self -Wno-extra -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin -Os -Wno-unused-variable -Winit-self -Wno-extra -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin -Os -Wno-unused-variable -Winit-self -Wno-extra", "f": [ "$(DEVELOPER_DIR)/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks", "$(SDKROOT)/Developer/Library/Frameworks", @@ -347,7 +347,7 @@ ] }, "x86_64-apple-macosx CommandLineTool": { - "c": "-F$(PROJECT_DIR)/external/examples_command_line_external -I$(SDKROOT)/usr/include/uuid -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-30/bin -iquote$(PROJECT_DIR)/external/examples_command_line_external -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-30/bin/external/examples_command_line_external -DSECRET_3=\"Hello\" -DSECRET_2=\"World!\" -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-30/bin/CommandLine/CommandLineToolLib/lib_impl.swift.modulemap -fmodule-map-file=$(PROJECT_DIR)/CommandLine/swift_c_module/c_lib.modulemap -fmodule-map-file=$(PROJECT_DIR)/external/examples_command_line_external/ExternalFramework.framework/Modules/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-30/bin/external/examples_command_line_external/Library.swift.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-30/bin/CommandLine/CommandLineToolLib/private_lib.swift.modulemap -Os -DNDEBUG=1 -Wno-unused-variable -Winit-self -Wno-extra -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-30/bin -Os -Wno-unused-variable -Winit-self -Wno-extra", + "c": "-F$(PROJECT_DIR)/external/examples_command_line_external -I$(SDKROOT)/usr/include/uuid -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-30/bin -iquote$(PROJECT_DIR)/external/examples_command_line_external -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-30/bin/external/examples_command_line_external -DSECRET_3=\"Hello\" -DSECRET_2=\"World!\" -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-30/bin/CommandLine/CommandLineToolLib/lib_impl_modulemap/_/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/CommandLine/swift_interop_hint/c_lib.modulemap -fmodule-map-file=$(PROJECT_DIR)/external/examples_command_line_external/ExternalFramework.framework/Modules/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-30/bin/external/examples_command_line_external/Library_modulemap/_/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-30/bin/CommandLine/CommandLineToolLib/private_lib_modulemap/_/module.modulemap -Os -DNDEBUG=1 -Wno-unused-variable -Winit-self -Wno-extra -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-30/bin -Os -Wno-unused-variable -Winit-self -Wno-extra", "f": [ "$(PROJECT_DIR)/external/examples_command_line_external" ], @@ -356,7 +356,7 @@ ] }, "x86_64-apple-macosx CommandLineToolTests.xctest/Contents/MacOS/CommandLineToolTests": { - "c": "-F$(PROJECT_DIR)/external/examples_command_line_external -I$(SDKROOT)/usr/include/uuid -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-30/bin -iquote$(PROJECT_DIR)/external/examples_command_line_external -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-30/bin/external/examples_command_line_external -DSECRET_3=\"Hello\" -DSECRET_2=\"World!\" -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-30/bin/CommandLine/CommandLineToolLib/lib_impl.swift.modulemap -fmodule-map-file=$(PROJECT_DIR)/CommandLine/swift_c_module/c_lib.modulemap -fmodule-map-file=$(PROJECT_DIR)/external/examples_command_line_external/ExternalFramework.framework/Modules/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-30/bin/external/examples_command_line_external/Library.swift.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-30/bin/CommandLine/CommandLineToolLib/lib_swift.swift.modulemap -Os -DNDEBUG=1 -Wno-unused-variable -Winit-self -Wno-extra -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-30/bin -iquote$(PROJECT_DIR)/external/examples_command_line_external -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-30/bin/external/examples_command_line_external -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-30/bin/CommandLine/CommandLineToolLib/private_lib.swift.modulemap -Os -Wno-unused-variable -Winit-self -Wno-extra -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-30/bin -Os -Wno-unused-variable -Winit-self -Wno-extra", + "c": "-F$(PROJECT_DIR)/external/examples_command_line_external -I$(SDKROOT)/usr/include/uuid -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-30/bin -iquote$(PROJECT_DIR)/external/examples_command_line_external -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-30/bin/external/examples_command_line_external -DSECRET_3=\"Hello\" -DSECRET_2=\"World!\" -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-30/bin/CommandLine/CommandLineToolLib/lib_impl_modulemap/_/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/CommandLine/swift_interop_hint/c_lib.modulemap -fmodule-map-file=$(PROJECT_DIR)/external/examples_command_line_external/ExternalFramework.framework/Modules/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-30/bin/external/examples_command_line_external/Library_modulemap/_/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-30/bin/CommandLine/CommandLineToolLib/lib_swift_modulemap/_/module.modulemap -Os -DNDEBUG=1 -Wno-unused-variable -Winit-self -Wno-extra -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-30/bin -iquote$(PROJECT_DIR)/external/examples_command_line_external -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-30/bin/external/examples_command_line_external -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-30/bin/CommandLine/CommandLineToolLib/private_lib_modulemap/_/module.modulemap -Os -Wno-unused-variable -Winit-self -Wno-extra -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-30/bin -Os -Wno-unused-variable -Winit-self -Wno-extra", "f": [ "$(DEVELOPER_DIR)/Platforms/MacOSX.platform/Developer/Library/Frameworks", "$(PROJECT_DIR)/external/examples_command_line_external" @@ -373,10 +373,9 @@ ] }, "x86_64-apple-macosx echo_client": { - "c": "-iquote$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift -iquote$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_apple_swift_nio -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio -iquote$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics -iquote$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-26/bin -isystem$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift/Sources/CGRPCZlib/include -isystem$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift/Sources/CGRPCZlib/include -isystem$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOLinux/include -isystem$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOLinux/include -isystem$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOWindows/include -isystem$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOWindows/include -isystem$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOAtomics/include -isystem$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOAtomics/include -isystem$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics/Sources/_AtomicsShims/include -isystem$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics/Sources/_AtomicsShims/include -isystem$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIODarwin/include -isystem$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIODarwin/include -isystem$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOLLHTTP/include -isystem$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOLLHTTP/include -isystem$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/Sources/CNIOBoringSSL/include -isystem$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/Sources/CNIOBoringSSL/include -isystem$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/Sources/CNIOBoringSSLShims/include -isystem$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/Sources/CNIOBoringSSLShims/include -DSWIFT_PACKAGE -D__APPLE_USE_RFC_3542 -DLLHTTP_STRICT_MODE -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift/CGRPCZlib.swift.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIOLinux.swift.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIOWindows.swift.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIOAtomics.swift.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics/_AtomicsShims.swift.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIODarwin.swift.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIOLLHTTP.swift.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/CNIOBoringSSL.swift.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/CNIOBoringSSLShims.swift.modulemap -Os -DNDEBUG=1 -Wno-unused-variable -Winit-self -Wno-extra", + "c": "-iquote$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift -iquote$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_apple_swift_nio -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio -iquote$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics -iquote$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-26/bin -isystem$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift/Sources/CGRPCZlib/include -isystem$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift/Sources/CGRPCZlib/include -isystem$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOLinux/include -isystem$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOLinux/include -isystem$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOWindows/include -isystem$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOWindows/include -isystem$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOAtomics/include -isystem$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOAtomics/include -isystem$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics/Sources/_AtomicsShims/include -isystem$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics/Sources/_AtomicsShims/include -isystem$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIODarwin/include -isystem$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIODarwin/include -isystem$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOLLHTTP/include -isystem$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOLLHTTP/include -isystem$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/Sources/CNIOBoringSSL/include -isystem$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/Sources/CNIOBoringSSL/include -isystem$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/Sources/CNIOBoringSSLShims/include -isystem$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/Sources/CNIOBoringSSLShims/include -DSWIFT_PACKAGE -D__APPLE_USE_RFC_3542 -DLLHTTP_STRICT_MODE -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift/CGRPCZlib_modulemap/_/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIOLinux_modulemap/_/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIOWindows_modulemap/_/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIOAtomics_modulemap/_/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics/_AtomicsShims_modulemap/_/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIODarwin_modulemap/_/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIOLLHTTP_modulemap/_/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/CNIOBoringSSL_modulemap/_/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/CNIOBoringSSLShims_modulemap/_/module.modulemap -Os -DNDEBUG=1 -Wno-unused-variable -Winit-self -Wno-extra -iquote$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift -iquote$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_apple_swift_nio -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio -iquote$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics -iquote$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-26/bin -isystem$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift/Sources/CGRPCZlib/include -isystem$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift/Sources/CGRPCZlib/include -isystem$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOLinux/include -isystem$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOLinux/include -isystem$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOWindows/include -isystem$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOWindows/include -isystem$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOAtomics/include -isystem$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOAtomics/include -isystem$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics/Sources/_AtomicsShims/include -isystem$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics/Sources/_AtomicsShims/include -isystem$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIODarwin/include -isystem$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIODarwin/include -isystem$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOLLHTTP/include -isystem$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOLLHTTP/include -isystem$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/Sources/CNIOBoringSSL/include -isystem$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/Sources/CNIOBoringSSL/include -isystem$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/Sources/CNIOBoringSSLShims/include -isystem$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/Sources/CNIOBoringSSLShims/include -Os -Wno-unused-variable -Winit-self -Wno-extra", "s": [ "$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_protobuf", - "$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-26/bin/GRPC", "$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_log", "$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio", "$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics", @@ -385,14 +384,14 @@ "$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_http2", "$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl", "$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_transport_services", - "$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift" + "$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift", + "$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-26/bin/GRPC" ] }, "x86_64-apple-macosx echo_server": { - "c": "-iquote$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift -iquote$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_apple_swift_nio -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio -iquote$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics -iquote$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-26/bin -isystem$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift/Sources/CGRPCZlib/include -isystem$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift/Sources/CGRPCZlib/include -isystem$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOLinux/include -isystem$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOLinux/include -isystem$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOWindows/include -isystem$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOWindows/include -isystem$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOAtomics/include -isystem$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOAtomics/include -isystem$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics/Sources/_AtomicsShims/include -isystem$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics/Sources/_AtomicsShims/include -isystem$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIODarwin/include -isystem$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIODarwin/include -isystem$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOLLHTTP/include -isystem$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOLLHTTP/include -isystem$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/Sources/CNIOBoringSSL/include -isystem$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/Sources/CNIOBoringSSL/include -isystem$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/Sources/CNIOBoringSSLShims/include -isystem$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/Sources/CNIOBoringSSLShims/include -DSWIFT_PACKAGE -D__APPLE_USE_RFC_3542 -DLLHTTP_STRICT_MODE -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift/CGRPCZlib.swift.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIOLinux.swift.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIOWindows.swift.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIOAtomics.swift.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics/_AtomicsShims.swift.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIODarwin.swift.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIOLLHTTP.swift.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/CNIOBoringSSL.swift.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/CNIOBoringSSLShims.swift.modulemap -Os -DNDEBUG=1 -Wno-unused-variable -Winit-self -Wno-extra", + "c": "-iquote$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift -iquote$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_apple_swift_nio -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio -iquote$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics -iquote$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-26/bin -isystem$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift/Sources/CGRPCZlib/include -isystem$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift/Sources/CGRPCZlib/include -isystem$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOLinux/include -isystem$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOLinux/include -isystem$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOWindows/include -isystem$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOWindows/include -isystem$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOAtomics/include -isystem$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOAtomics/include -isystem$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics/Sources/_AtomicsShims/include -isystem$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics/Sources/_AtomicsShims/include -isystem$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIODarwin/include -isystem$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIODarwin/include -isystem$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOLLHTTP/include -isystem$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOLLHTTP/include -isystem$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/Sources/CNIOBoringSSL/include -isystem$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/Sources/CNIOBoringSSL/include -isystem$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/Sources/CNIOBoringSSLShims/include -isystem$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/Sources/CNIOBoringSSLShims/include -DSWIFT_PACKAGE -D__APPLE_USE_RFC_3542 -DLLHTTP_STRICT_MODE -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift/CGRPCZlib_modulemap/_/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIOLinux_modulemap/_/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIOWindows_modulemap/_/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIOAtomics_modulemap/_/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics/_AtomicsShims_modulemap/_/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIODarwin_modulemap/_/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIOLLHTTP_modulemap/_/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/CNIOBoringSSL_modulemap/_/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/CNIOBoringSSLShims_modulemap/_/module.modulemap -Os -DNDEBUG=1 -Wno-unused-variable -Winit-self -Wno-extra -iquote$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift -iquote$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_apple_swift_nio -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio -iquote$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics -iquote$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-26/bin -isystem$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift/Sources/CGRPCZlib/include -isystem$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift/Sources/CGRPCZlib/include -isystem$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOLinux/include -isystem$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOLinux/include -isystem$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOWindows/include -isystem$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOWindows/include -isystem$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOAtomics/include -isystem$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOAtomics/include -isystem$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics/Sources/_AtomicsShims/include -isystem$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics/Sources/_AtomicsShims/include -isystem$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIODarwin/include -isystem$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIODarwin/include -isystem$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOLLHTTP/include -isystem$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOLLHTTP/include -isystem$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/Sources/CNIOBoringSSL/include -isystem$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/Sources/CNIOBoringSSL/include -isystem$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/Sources/CNIOBoringSSLShims/include -isystem$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/Sources/CNIOBoringSSLShims/include -Os -Wno-unused-variable -Winit-self -Wno-extra", "s": [ "$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_protobuf", - "$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-26/bin/GRPC", "$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_log", "$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio", "$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics", @@ -401,7 +400,8 @@ "$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_http2", "$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl", "$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_transport_services", - "$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift" + "$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift", + "$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-26/bin/GRPC" ] }, "x86_64-apple-macosx macOSApp.app/Contents/MacOS/macOSApp": { @@ -424,14 +424,14 @@ ] }, "x86_64-apple-macosx proto": { - "c": "-iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-26/bin -Os -DNDEBUG=1 -Wno-unused-variable -Winit-self -Wno-extra", + "c": "-iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-26/bin -Os -DNDEBUG=1 -Wno-unused-variable -Winit-self -Wno-extra -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-26/bin -Os -Wno-unused-variable -Winit-self -Wno-extra", "s": [ "$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_protobuf", "$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-26/bin/Proto" ] }, "x86_64-apple-macosx tool.binary": { - "c": "-F$(PROJECT_DIR)/external/examples_command_line_external -I$(SDKROOT)/usr/include/uuid -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-32/bin -iquote$(PROJECT_DIR)/external/examples_command_line_external -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-32/bin/external/examples_command_line_external -DSECRET_3=\"Hello\" -DSECRET_2=\"World!\" -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-32/bin/CommandLine/CommandLineToolLib/lib_impl.swift.modulemap -fmodule-map-file=$(PROJECT_DIR)/CommandLine/swift_c_module/c_lib.modulemap -fmodule-map-file=$(PROJECT_DIR)/external/examples_command_line_external/ExternalFramework.framework/Modules/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-32/bin/external/examples_command_line_external/Library.swift.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-32/bin/CommandLine/CommandLineToolLib/private_lib.swift.modulemap -Os -DNDEBUG=1 -Wno-unused-variable -Winit-self -Wno-extra -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-32/bin -Os -Wno-unused-variable -Winit-self -Wno-extra", + "c": "-F$(PROJECT_DIR)/external/examples_command_line_external -I$(SDKROOT)/usr/include/uuid -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-32/bin -iquote$(PROJECT_DIR)/external/examples_command_line_external -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-32/bin/external/examples_command_line_external -DSECRET_3=\"Hello\" -DSECRET_2=\"World!\" -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-32/bin/CommandLine/CommandLineToolLib/lib_impl_modulemap/_/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/CommandLine/swift_interop_hint/c_lib.modulemap -fmodule-map-file=$(PROJECT_DIR)/external/examples_command_line_external/ExternalFramework.framework/Modules/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-32/bin/external/examples_command_line_external/Library_modulemap/_/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-32/bin/CommandLine/CommandLineToolLib/private_lib_modulemap/_/module.modulemap -Os -DNDEBUG=1 -Wno-unused-variable -Winit-self -Wno-extra -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-32/bin -Os -Wno-unused-variable -Winit-self -Wno-extra", "f": [ "$(PROJECT_DIR)/external/examples_command_line_external" ], diff --git a/examples/integration/test/fixtures/bwb.xcodeproj/rules_xcodeproj/bazel/Debug-swift_debug_settings.py b/examples/integration/test/fixtures/bwb.xcodeproj/rules_xcodeproj/bazel/Debug-swift_debug_settings.py index 28939a5460..2ba6c51f7f 100755 --- a/examples/integration/test/fixtures/bwb.xcodeproj/rules_xcodeproj/bazel/Debug-swift_debug_settings.py +++ b/examples/integration/test/fixtures/bwb.xcodeproj/rules_xcodeproj/bazel/Debug-swift_debug_settings.py @@ -51,7 +51,7 @@ ] }, "arm64-apple-ios iOSApp.app/iOSApp": { - "c": "-F$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_armv7 -F$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64 -F$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64 -F$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64 -I$(PROJECT_DIR)/iOSApp/Source/CoreUtilsObjC -I$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-8/bin/iOSApp/Source/CoreUtilsObjC -iquote$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-8/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-8/bin -iquote$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-8/bin/external/_main~non_module_deps~com_google_google_maps -DNEEDS_QUOTES=Two\\ words -fmodule-map-file=$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_armv7/CryptoSwift.framework/Modules/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-8/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_objc_modulemap.swift.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-8/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_swift_modulemap.swift.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-8/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_objc_modulemap-module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-8/bin/iOSApp/Source/CoreUtilsObjC/CoreUtilsObjC.swift.modulemap -fmodule-map-file=$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64/GoogleMapsBase.framework/Modules/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64/GoogleMapsCore.framework/Modules/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64/GoogleMaps.framework/Modules/module.modulemap -O0 -DDEBUG=1 -fstack-protector -fstack-protector-all -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-8/bin -O0 -fstack-protector -fstack-protector-all -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-8/bin -O0 -fstack-protector -fstack-protector-all -iquote$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-8/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-8/bin -O0 -fstack-protector -fstack-protector-all -iquote$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-8/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-8/bin -O0 -fstack-protector -fstack-protector-all -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-8/bin -O0 -fstack-protector -fstack-protector-all", + "c": "-F$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_armv7 -F$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64 -F$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64 -F$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64 -I$(PROJECT_DIR)/iOSApp/Source/CoreUtilsObjC -I$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-8/bin/iOSApp/Source/CoreUtilsObjC -iquote$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-8/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-8/bin -iquote$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-8/bin/external/_main~non_module_deps~com_google_google_maps -DNEEDS_QUOTES=Two\\ words -fmodule-map-file=$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_armv7/CryptoSwift.framework/Modules/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-8/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_objc_modulemap_modulemap/_/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-8/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_swift_modulemap_modulemap/_/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-8/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_objc_modulemap-module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-8/bin/iOSApp/Source/CoreUtilsObjC/CoreUtilsObjC_modulemap/_/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64/GoogleMapsBase.framework/Modules/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64/GoogleMapsCore.framework/Modules/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64/GoogleMaps.framework/Modules/module.modulemap -O0 -DDEBUG=1 -fstack-protector -fstack-protector-all -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-8/bin -O0 -fstack-protector -fstack-protector-all -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-8/bin -O0 -fstack-protector -fstack-protector-all -iquote$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-8/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-8/bin -O0 -fstack-protector -fstack-protector-all -iquote$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-8/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-8/bin -O0 -fstack-protector -fstack-protector-all -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-8/bin -O0 -fstack-protector -fstack-protector-all", "f": [ "$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_armv7", "$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64", @@ -66,7 +66,7 @@ ] }, "arm64-apple-ios iOSAppObjCUnitTests.xctest/iOSAppObjCUnitTests": { - "c": "-F$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_armv7 -F$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64 -F$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64 -F$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64 -I$(PROJECT_DIR)/iOSApp/Source/CoreUtilsObjC -I$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-8/bin/iOSApp/Source/CoreUtilsObjC -iquote$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-8/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-8/bin -iquote$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-8/bin/external/_main~non_module_deps~com_google_google_maps -DNEEDS_QUOTES=Two\\ words -fmodule-map-file=$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_armv7/CryptoSwift.framework/Modules/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-8/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_objc_modulemap.swift.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-8/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_swift_modulemap.swift.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-8/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_objc_modulemap-module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-8/bin/iOSApp/Source/CoreUtilsObjC/CoreUtilsObjC.swift.modulemap -fmodule-map-file=$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64/GoogleMapsBase.framework/Modules/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64/GoogleMapsCore.framework/Modules/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64/GoogleMaps.framework/Modules/module.modulemap -O0 -DDEBUG=1 -fstack-protector -fstack-protector-all -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-8/bin -O0 -fstack-protector -fstack-protector-all -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-8/bin -O0 -fstack-protector -fstack-protector-all -iquote$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-8/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-8/bin -O0 -fstack-protector -fstack-protector-all -iquote$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-8/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-8/bin -O0 -fstack-protector -fstack-protector-all -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-8/bin -O0 -fstack-protector -fstack-protector-all -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-8/bin -O0 -fstack-protector -fstack-protector-all", + "c": "-F$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_armv7 -F$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64 -F$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64 -F$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64 -I$(PROJECT_DIR)/iOSApp/Source/CoreUtilsObjC -I$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-8/bin/iOSApp/Source/CoreUtilsObjC -iquote$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-8/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-8/bin -iquote$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-8/bin/external/_main~non_module_deps~com_google_google_maps -DNEEDS_QUOTES=Two\\ words -fmodule-map-file=$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_armv7/CryptoSwift.framework/Modules/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-8/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_objc_modulemap_modulemap/_/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-8/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_swift_modulemap_modulemap/_/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-8/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_objc_modulemap-module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-8/bin/iOSApp/Source/CoreUtilsObjC/CoreUtilsObjC_modulemap/_/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64/GoogleMapsBase.framework/Modules/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64/GoogleMapsCore.framework/Modules/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64/GoogleMaps.framework/Modules/module.modulemap -O0 -DDEBUG=1 -fstack-protector -fstack-protector-all -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-8/bin -O0 -fstack-protector -fstack-protector-all -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-8/bin -O0 -fstack-protector -fstack-protector-all -iquote$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-8/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-8/bin -O0 -fstack-protector -fstack-protector-all -iquote$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-8/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-8/bin -O0 -fstack-protector -fstack-protector-all -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-8/bin -O0 -fstack-protector -fstack-protector-all -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-8/bin -O0 -fstack-protector -fstack-protector-all", "f": [ "$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_armv7", "$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64", @@ -84,7 +84,7 @@ ] }, "arm64-apple-ios iOSAppSwiftUnitTests.xctest/iOSAppSwiftUnitTests": { - "c": "-F$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_armv7 -F$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64 -F$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64 -F$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64 -I$(PROJECT_DIR)/iOSApp/Source/CoreUtilsObjC -I$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-8/bin/iOSApp/Source/CoreUtilsObjC -iquote$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-8/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-8/bin -iquote$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-8/bin/external/_main~non_module_deps~com_google_google_maps -iquote$(PROJECT_DIR)/external/_main~non_module_deps~FXPageControl -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-8/bin/external/_main~non_module_deps~FXPageControl -DNEEDS_QUOTES=Two\\ words -DAWESOME -fmodule-map-file=$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_armv7/CryptoSwift.framework/Modules/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-8/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_objc_modulemap.swift.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-8/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_swift_modulemap.swift.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-8/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_objc_modulemap-module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-8/bin/iOSApp/Source/CoreUtilsObjC/CoreUtilsObjC.swift.modulemap -fmodule-map-file=$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64/GoogleMapsBase.framework/Modules/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64/GoogleMapsCore.framework/Modules/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64/GoogleMaps.framework/Modules/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-8/bin/external/_main~non_module_deps~FXPageControl/FXPageControl.swift.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-8/bin/iOSApp/Source/Utils/Utils.swift.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-8/bin/iOSApp/Test/TestingUtils/TestingUtils.swift.modulemap -O0 -DDEBUG=1 -fstack-protector -fstack-protector-all -iquote$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-8/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-8/bin -iquote$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-8/bin/external/_main~non_module_deps~com_google_google_maps -O0 -fstack-protector -fstack-protector-all -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-8/bin -O0 -fstack-protector -fstack-protector-all -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-8/bin -O0 -fstack-protector -fstack-protector-all -iquote$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-8/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-8/bin -O0 -fstack-protector -fstack-protector-all -iquote$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-8/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-8/bin -O0 -fstack-protector -fstack-protector-all -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-8/bin -O0 -fstack-protector -fstack-protector-all -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-8/bin -O0 -fstack-protector -fstack-protector-all", + "c": "-F$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_armv7 -F$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64 -F$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64 -F$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64 -I$(PROJECT_DIR)/iOSApp/Source/CoreUtilsObjC -I$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-8/bin/iOSApp/Source/CoreUtilsObjC -iquote$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-8/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-8/bin -iquote$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-8/bin/external/_main~non_module_deps~com_google_google_maps -iquote$(PROJECT_DIR)/external/_main~non_module_deps~FXPageControl -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-8/bin/external/_main~non_module_deps~FXPageControl -DNEEDS_QUOTES=Two\\ words -DAWESOME -fmodule-map-file=$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_armv7/CryptoSwift.framework/Modules/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-8/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_objc_modulemap_modulemap/_/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-8/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_swift_modulemap_modulemap/_/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-8/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_objc_modulemap-module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-8/bin/iOSApp/Source/CoreUtilsObjC/CoreUtilsObjC_modulemap/_/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64/GoogleMapsBase.framework/Modules/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64/GoogleMapsCore.framework/Modules/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64/GoogleMaps.framework/Modules/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-8/bin/external/_main~non_module_deps~FXPageControl/FXPageControl_modulemap/_/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-8/bin/iOSApp/Source/Utils/Utils_modulemap/_/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-8/bin/iOSApp/Test/TestingUtils/TestingUtils_modulemap/_/module.modulemap -O0 -DDEBUG=1 -fstack-protector -fstack-protector-all -iquote$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-8/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-8/bin -iquote$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-8/bin/external/_main~non_module_deps~com_google_google_maps -O0 -fstack-protector -fstack-protector-all -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-8/bin -O0 -fstack-protector -fstack-protector-all -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-8/bin -O0 -fstack-protector -fstack-protector-all -iquote$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-8/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-8/bin -O0 -fstack-protector -fstack-protector-all -iquote$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-8/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-8/bin -O0 -fstack-protector -fstack-protector-all -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-8/bin -O0 -fstack-protector -fstack-protector-all -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-8/bin -O0 -fstack-protector -fstack-protector-all", "f": [ "$(DEVELOPER_DIR)/Platforms/iPhoneOS.platform/Developer/Library/Frameworks", "$(SDKROOT)/Developer/Library/Frameworks", @@ -114,7 +114,7 @@ ] }, "arm64-apple-macosx tool.binary": { - "c": "-F$(PROJECT_DIR)/external/examples_command_line_external -I$(SDKROOT)/usr/include/uuid -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-28/bin -iquote$(PROJECT_DIR)/external/examples_command_line_external -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-28/bin/external/examples_command_line_external -DSECRET_3=\"Hello\" -DSECRET_2=\"World!\" -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-28/bin/CommandLine/CommandLineToolLib/lib_impl.swift.modulemap -fmodule-map-file=$(PROJECT_DIR)/CommandLine/swift_c_module/c_lib.modulemap -fmodule-map-file=$(PROJECT_DIR)/external/examples_command_line_external/ExternalFramework.framework/Modules/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-28/bin/external/examples_command_line_external/Library.swift.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-28/bin/CommandLine/CommandLineToolLib/private_lib.swift.modulemap -O0 -DDEBUG=1 -fstack-protector -fstack-protector-all -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-28/bin -O0 -fstack-protector -fstack-protector-all", + "c": "-F$(PROJECT_DIR)/external/examples_command_line_external -I$(SDKROOT)/usr/include/uuid -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-28/bin -iquote$(PROJECT_DIR)/external/examples_command_line_external -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-28/bin/external/examples_command_line_external -DSECRET_3=\"Hello\" -DSECRET_2=\"World!\" -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-28/bin/CommandLine/CommandLineToolLib/lib_impl_modulemap/_/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/CommandLine/swift_interop_hint/c_lib.modulemap -fmodule-map-file=$(PROJECT_DIR)/external/examples_command_line_external/ExternalFramework.framework/Modules/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-28/bin/external/examples_command_line_external/Library_modulemap/_/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-28/bin/CommandLine/CommandLineToolLib/private_lib_modulemap/_/module.modulemap -O0 -DDEBUG=1 -fstack-protector -fstack-protector-all -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-28/bin -O0 -fstack-protector -fstack-protector-all", "f": [ "$(PROJECT_DIR)/external/examples_command_line_external" ], @@ -227,7 +227,7 @@ ] }, "x86_64-apple-ios-simulator iOSApp.app/iOSApp_ExecutableName": { - "c": "-F$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_i386_x86_64-simulator -F$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64_x86_64-simulator -F$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64_x86_64-simulator -F$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64_x86_64-simulator -I$(PROJECT_DIR)/iOSApp/Source/CoreUtilsObjC -I$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin/iOSApp/Source/CoreUtilsObjC -iquote$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin -iquote$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin/external/_main~non_module_deps~com_google_google_maps -DNEEDS_QUOTES=Two\\ words -fmodule-map-file=$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_i386_x86_64-simulator/CryptoSwift.framework/Modules/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_objc_modulemap.swift.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_swift_modulemap.swift.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_objc_modulemap-module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin/iOSApp/Source/CoreUtilsObjC/CoreUtilsObjC.swift.modulemap -fmodule-map-file=$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64_x86_64-simulator/GoogleMapsBase.framework/Modules/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64_x86_64-simulator/GoogleMapsCore.framework/Modules/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64_x86_64-simulator/GoogleMaps.framework/Modules/module.modulemap -O0 -DDEBUG=1 -fstack-protector -fstack-protector-all -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin -O0 -fstack-protector -fstack-protector-all -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin -O0 -fstack-protector -fstack-protector-all -iquote$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin -O0 -fstack-protector -fstack-protector-all -iquote$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin -O0 -fstack-protector -fstack-protector-all -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin -O0 -fstack-protector -fstack-protector-all", + "c": "-F$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_i386_x86_64-simulator -F$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64_x86_64-simulator -F$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64_x86_64-simulator -F$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64_x86_64-simulator -I$(PROJECT_DIR)/iOSApp/Source/CoreUtilsObjC -I$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin/iOSApp/Source/CoreUtilsObjC -iquote$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin -iquote$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin/external/_main~non_module_deps~com_google_google_maps -DNEEDS_QUOTES=Two\\ words -fmodule-map-file=$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_i386_x86_64-simulator/CryptoSwift.framework/Modules/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_objc_modulemap_modulemap/_/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_swift_modulemap_modulemap/_/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_objc_modulemap-module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin/iOSApp/Source/CoreUtilsObjC/CoreUtilsObjC_modulemap/_/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64_x86_64-simulator/GoogleMapsBase.framework/Modules/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64_x86_64-simulator/GoogleMapsCore.framework/Modules/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64_x86_64-simulator/GoogleMaps.framework/Modules/module.modulemap -O0 -DDEBUG=1 -fstack-protector -fstack-protector-all -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin -O0 -fstack-protector -fstack-protector-all -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin -O0 -fstack-protector -fstack-protector-all -iquote$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin -O0 -fstack-protector -fstack-protector-all -iquote$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin -O0 -fstack-protector -fstack-protector-all -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin -O0 -fstack-protector -fstack-protector-all", "f": [ "$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_i386_x86_64-simulator", "$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64_x86_64-simulator", @@ -242,7 +242,7 @@ ] }, "x86_64-apple-ios-simulator iOSAppObjCUnitTestSuite.xctest/iOSAppObjCUnitTestSuite": { - "c": "-F$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_i386_x86_64-simulator -F$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64_x86_64-simulator -F$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64_x86_64-simulator -F$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64_x86_64-simulator -I$(PROJECT_DIR)/iOSApp/Source/CoreUtilsObjC -I$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin/iOSApp/Source/CoreUtilsObjC -iquote$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin -iquote$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin/external/_main~non_module_deps~com_google_google_maps -DNEEDS_QUOTES=Two\\ words -fmodule-map-file=$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_i386_x86_64-simulator/CryptoSwift.framework/Modules/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_objc_modulemap.swift.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_swift_modulemap.swift.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_objc_modulemap-module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin/iOSApp/Source/CoreUtilsObjC/CoreUtilsObjC.swift.modulemap -fmodule-map-file=$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64_x86_64-simulator/GoogleMapsBase.framework/Modules/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64_x86_64-simulator/GoogleMapsCore.framework/Modules/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64_x86_64-simulator/GoogleMaps.framework/Modules/module.modulemap -O0 -DDEBUG=1 -fstack-protector -fstack-protector-all -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin -O0 -fstack-protector -fstack-protector-all -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin -O0 -fstack-protector -fstack-protector-all -iquote$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin -O0 -fstack-protector -fstack-protector-all -iquote$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin -O0 -fstack-protector -fstack-protector-all -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin -O0 -fstack-protector -fstack-protector-all -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin -O0 -fstack-protector -fstack-protector-all", + "c": "-F$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_i386_x86_64-simulator -F$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64_x86_64-simulator -F$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64_x86_64-simulator -F$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64_x86_64-simulator -I$(PROJECT_DIR)/iOSApp/Source/CoreUtilsObjC -I$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin/iOSApp/Source/CoreUtilsObjC -iquote$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin -iquote$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin/external/_main~non_module_deps~com_google_google_maps -DNEEDS_QUOTES=Two\\ words -fmodule-map-file=$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_i386_x86_64-simulator/CryptoSwift.framework/Modules/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_objc_modulemap_modulemap/_/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_swift_modulemap_modulemap/_/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_objc_modulemap-module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin/iOSApp/Source/CoreUtilsObjC/CoreUtilsObjC_modulemap/_/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64_x86_64-simulator/GoogleMapsBase.framework/Modules/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64_x86_64-simulator/GoogleMapsCore.framework/Modules/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64_x86_64-simulator/GoogleMaps.framework/Modules/module.modulemap -O0 -DDEBUG=1 -fstack-protector -fstack-protector-all -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin -O0 -fstack-protector -fstack-protector-all -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin -O0 -fstack-protector -fstack-protector-all -iquote$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin -O0 -fstack-protector -fstack-protector-all -iquote$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin -O0 -fstack-protector -fstack-protector-all -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin -O0 -fstack-protector -fstack-protector-all -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin -O0 -fstack-protector -fstack-protector-all", "f": [ "$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_i386_x86_64-simulator", "$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64_x86_64-simulator", @@ -260,7 +260,7 @@ ] }, "x86_64-apple-ios-simulator iOSAppObjCUnitTests.xctest/iOSAppObjCUnitTests": { - "c": "-F$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_i386_x86_64-simulator -F$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64_x86_64-simulator -F$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64_x86_64-simulator -F$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64_x86_64-simulator -I$(PROJECT_DIR)/iOSApp/Source/CoreUtilsObjC -I$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin/iOSApp/Source/CoreUtilsObjC -iquote$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin -iquote$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin/external/_main~non_module_deps~com_google_google_maps -DNEEDS_QUOTES=Two\\ words -fmodule-map-file=$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_i386_x86_64-simulator/CryptoSwift.framework/Modules/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_objc_modulemap.swift.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_swift_modulemap.swift.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_objc_modulemap-module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin/iOSApp/Source/CoreUtilsObjC/CoreUtilsObjC.swift.modulemap -fmodule-map-file=$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64_x86_64-simulator/GoogleMapsBase.framework/Modules/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64_x86_64-simulator/GoogleMapsCore.framework/Modules/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64_x86_64-simulator/GoogleMaps.framework/Modules/module.modulemap -O0 -DDEBUG=1 -fstack-protector -fstack-protector-all -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin -O0 -fstack-protector -fstack-protector-all -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin -O0 -fstack-protector -fstack-protector-all -iquote$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin -O0 -fstack-protector -fstack-protector-all -iquote$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin -O0 -fstack-protector -fstack-protector-all -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin -O0 -fstack-protector -fstack-protector-all -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin -O0 -fstack-protector -fstack-protector-all", + "c": "-F$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_i386_x86_64-simulator -F$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64_x86_64-simulator -F$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64_x86_64-simulator -F$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64_x86_64-simulator -I$(PROJECT_DIR)/iOSApp/Source/CoreUtilsObjC -I$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin/iOSApp/Source/CoreUtilsObjC -iquote$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin -iquote$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin/external/_main~non_module_deps~com_google_google_maps -DNEEDS_QUOTES=Two\\ words -fmodule-map-file=$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_i386_x86_64-simulator/CryptoSwift.framework/Modules/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_objc_modulemap_modulemap/_/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_swift_modulemap_modulemap/_/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_objc_modulemap-module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin/iOSApp/Source/CoreUtilsObjC/CoreUtilsObjC_modulemap/_/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64_x86_64-simulator/GoogleMapsBase.framework/Modules/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64_x86_64-simulator/GoogleMapsCore.framework/Modules/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64_x86_64-simulator/GoogleMaps.framework/Modules/module.modulemap -O0 -DDEBUG=1 -fstack-protector -fstack-protector-all -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin -O0 -fstack-protector -fstack-protector-all -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin -O0 -fstack-protector -fstack-protector-all -iquote$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin -O0 -fstack-protector -fstack-protector-all -iquote$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin -O0 -fstack-protector -fstack-protector-all -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin -O0 -fstack-protector -fstack-protector-all -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin -O0 -fstack-protector -fstack-protector-all", "f": [ "$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_i386_x86_64-simulator", "$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64_x86_64-simulator", @@ -278,7 +278,7 @@ ] }, "x86_64-apple-ios-simulator iOSAppSwiftUnitTestSuite.xctest/iOSAppSwiftUnitTestSuite": { - "c": "-F$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_i386_x86_64-simulator -F$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64_x86_64-simulator -F$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64_x86_64-simulator -F$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64_x86_64-simulator -I$(PROJECT_DIR)/iOSApp/Source/CoreUtilsObjC -I$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin/iOSApp/Source/CoreUtilsObjC -iquote$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin -iquote$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin/external/_main~non_module_deps~com_google_google_maps -iquote$(PROJECT_DIR)/external/_main~non_module_deps~FXPageControl -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin/external/_main~non_module_deps~FXPageControl -DNEEDS_QUOTES=Two\\ words -DAWESOME -fmodule-map-file=$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_i386_x86_64-simulator/CryptoSwift.framework/Modules/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_objc_modulemap.swift.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_swift_modulemap.swift.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_objc_modulemap-module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin/iOSApp/Source/CoreUtilsObjC/CoreUtilsObjC.swift.modulemap -fmodule-map-file=$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64_x86_64-simulator/GoogleMapsBase.framework/Modules/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64_x86_64-simulator/GoogleMapsCore.framework/Modules/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64_x86_64-simulator/GoogleMaps.framework/Modules/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin/external/_main~non_module_deps~FXPageControl/FXPageControl.swift.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin/iOSApp/Source/Utils/Utils.swift.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin/iOSApp/Test/TestingUtils/TestingUtils.swift.modulemap -O0 -DDEBUG=1 -fstack-protector -fstack-protector-all -iquote$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin -iquote$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin/external/_main~non_module_deps~com_google_google_maps -O0 -fstack-protector -fstack-protector-all -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin -O0 -fstack-protector -fstack-protector-all -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin -O0 -fstack-protector -fstack-protector-all -iquote$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin -O0 -fstack-protector -fstack-protector-all -iquote$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin -O0 -fstack-protector -fstack-protector-all -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin -O0 -fstack-protector -fstack-protector-all -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin -O0 -fstack-protector -fstack-protector-all", + "c": "-F$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_i386_x86_64-simulator -F$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64_x86_64-simulator -F$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64_x86_64-simulator -F$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64_x86_64-simulator -I$(PROJECT_DIR)/iOSApp/Source/CoreUtilsObjC -I$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin/iOSApp/Source/CoreUtilsObjC -iquote$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin -iquote$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin/external/_main~non_module_deps~com_google_google_maps -iquote$(PROJECT_DIR)/external/_main~non_module_deps~FXPageControl -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin/external/_main~non_module_deps~FXPageControl -DNEEDS_QUOTES=Two\\ words -DAWESOME -fmodule-map-file=$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_i386_x86_64-simulator/CryptoSwift.framework/Modules/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_objc_modulemap_modulemap/_/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_swift_modulemap_modulemap/_/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_objc_modulemap-module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin/iOSApp/Source/CoreUtilsObjC/CoreUtilsObjC_modulemap/_/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64_x86_64-simulator/GoogleMapsBase.framework/Modules/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64_x86_64-simulator/GoogleMapsCore.framework/Modules/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64_x86_64-simulator/GoogleMaps.framework/Modules/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin/external/_main~non_module_deps~FXPageControl/FXPageControl_modulemap/_/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin/iOSApp/Source/Utils/Utils_modulemap/_/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin/iOSApp/Test/TestingUtils/TestingUtils_modulemap/_/module.modulemap -O0 -DDEBUG=1 -fstack-protector -fstack-protector-all -iquote$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin -iquote$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin/external/_main~non_module_deps~com_google_google_maps -O0 -fstack-protector -fstack-protector-all -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin -O0 -fstack-protector -fstack-protector-all -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin -O0 -fstack-protector -fstack-protector-all -iquote$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin -O0 -fstack-protector -fstack-protector-all -iquote$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin -O0 -fstack-protector -fstack-protector-all -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin -O0 -fstack-protector -fstack-protector-all -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin -O0 -fstack-protector -fstack-protector-all", "f": [ "$(DEVELOPER_DIR)/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks", "$(SDKROOT)/Developer/Library/Frameworks", @@ -298,7 +298,7 @@ ] }, "x86_64-apple-ios-simulator iOSAppSwiftUnitTests.xctest/iOSAppSwiftUnitTests": { - "c": "-F$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_i386_x86_64-simulator -F$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64_x86_64-simulator -F$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64_x86_64-simulator -F$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64_x86_64-simulator -I$(PROJECT_DIR)/iOSApp/Source/CoreUtilsObjC -I$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin/iOSApp/Source/CoreUtilsObjC -iquote$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin -iquote$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin/external/_main~non_module_deps~com_google_google_maps -iquote$(PROJECT_DIR)/external/_main~non_module_deps~FXPageControl -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin/external/_main~non_module_deps~FXPageControl -DNEEDS_QUOTES=Two\\ words -DAWESOME -fmodule-map-file=$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_i386_x86_64-simulator/CryptoSwift.framework/Modules/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_objc_modulemap.swift.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_swift_modulemap.swift.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_objc_modulemap-module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin/iOSApp/Source/CoreUtilsObjC/CoreUtilsObjC.swift.modulemap -fmodule-map-file=$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64_x86_64-simulator/GoogleMapsBase.framework/Modules/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64_x86_64-simulator/GoogleMapsCore.framework/Modules/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64_x86_64-simulator/GoogleMaps.framework/Modules/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin/external/_main~non_module_deps~FXPageControl/FXPageControl.swift.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin/iOSApp/Source/Utils/Utils.swift.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin/iOSApp/Test/TestingUtils/TestingUtils.swift.modulemap -O0 -DDEBUG=1 -fstack-protector -fstack-protector-all -iquote$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin -iquote$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin/external/_main~non_module_deps~com_google_google_maps -O0 -fstack-protector -fstack-protector-all -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin -O0 -fstack-protector -fstack-protector-all -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin -O0 -fstack-protector -fstack-protector-all -iquote$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin -O0 -fstack-protector -fstack-protector-all -iquote$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin -O0 -fstack-protector -fstack-protector-all -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin -O0 -fstack-protector -fstack-protector-all -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin -O0 -fstack-protector -fstack-protector-all", + "c": "-F$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_i386_x86_64-simulator -F$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64_x86_64-simulator -F$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64_x86_64-simulator -F$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64_x86_64-simulator -I$(PROJECT_DIR)/iOSApp/Source/CoreUtilsObjC -I$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin/iOSApp/Source/CoreUtilsObjC -iquote$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin -iquote$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin/external/_main~non_module_deps~com_google_google_maps -iquote$(PROJECT_DIR)/external/_main~non_module_deps~FXPageControl -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin/external/_main~non_module_deps~FXPageControl -DNEEDS_QUOTES=Two\\ words -DAWESOME -fmodule-map-file=$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_i386_x86_64-simulator/CryptoSwift.framework/Modules/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_objc_modulemap_modulemap/_/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_swift_modulemap_modulemap/_/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_objc_modulemap-module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin/iOSApp/Source/CoreUtilsObjC/CoreUtilsObjC_modulemap/_/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64_x86_64-simulator/GoogleMapsBase.framework/Modules/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64_x86_64-simulator/GoogleMapsCore.framework/Modules/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64_x86_64-simulator/GoogleMaps.framework/Modules/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin/external/_main~non_module_deps~FXPageControl/FXPageControl_modulemap/_/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin/iOSApp/Source/Utils/Utils_modulemap/_/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin/iOSApp/Test/TestingUtils/TestingUtils_modulemap/_/module.modulemap -O0 -DDEBUG=1 -fstack-protector -fstack-protector-all -iquote$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin -iquote$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin/external/_main~non_module_deps~com_google_google_maps -O0 -fstack-protector -fstack-protector-all -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin -O0 -fstack-protector -fstack-protector-all -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin -O0 -fstack-protector -fstack-protector-all -iquote$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin -O0 -fstack-protector -fstack-protector-all -iquote$(PROJECT_DIR)/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin -O0 -fstack-protector -fstack-protector-all -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin -O0 -fstack-protector -fstack-protector-all -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin -O0 -fstack-protector -fstack-protector-all", "f": [ "$(DEVELOPER_DIR)/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks", "$(SDKROOT)/Developer/Library/Frameworks", @@ -347,7 +347,7 @@ ] }, "x86_64-apple-macosx CommandLineTool": { - "c": "-F$(PROJECT_DIR)/external/examples_command_line_external -I$(SDKROOT)/usr/include/uuid -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-27/bin -iquote$(PROJECT_DIR)/external/examples_command_line_external -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-27/bin/external/examples_command_line_external -DSECRET_3=\"Hello\" -DSECRET_2=\"World!\" -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-27/bin/CommandLine/CommandLineToolLib/lib_impl.swift.modulemap -fmodule-map-file=$(PROJECT_DIR)/CommandLine/swift_c_module/c_lib.modulemap -fmodule-map-file=$(PROJECT_DIR)/external/examples_command_line_external/ExternalFramework.framework/Modules/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-27/bin/external/examples_command_line_external/Library.swift.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-27/bin/CommandLine/CommandLineToolLib/private_lib.swift.modulemap -O0 -DDEBUG=1 -fstack-protector -fstack-protector-all -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-27/bin -O0 -fstack-protector -fstack-protector-all", + "c": "-F$(PROJECT_DIR)/external/examples_command_line_external -I$(SDKROOT)/usr/include/uuid -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-27/bin -iquote$(PROJECT_DIR)/external/examples_command_line_external -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-27/bin/external/examples_command_line_external -DSECRET_3=\"Hello\" -DSECRET_2=\"World!\" -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-27/bin/CommandLine/CommandLineToolLib/lib_impl_modulemap/_/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/CommandLine/swift_interop_hint/c_lib.modulemap -fmodule-map-file=$(PROJECT_DIR)/external/examples_command_line_external/ExternalFramework.framework/Modules/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-27/bin/external/examples_command_line_external/Library_modulemap/_/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-27/bin/CommandLine/CommandLineToolLib/private_lib_modulemap/_/module.modulemap -O0 -DDEBUG=1 -fstack-protector -fstack-protector-all -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-27/bin -O0 -fstack-protector -fstack-protector-all", "f": [ "$(PROJECT_DIR)/external/examples_command_line_external" ], @@ -356,7 +356,7 @@ ] }, "x86_64-apple-macosx CommandLineToolTests.xctest/Contents/MacOS/CommandLineToolTests": { - "c": "-F$(PROJECT_DIR)/external/examples_command_line_external -I$(SDKROOT)/usr/include/uuid -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-27/bin -iquote$(PROJECT_DIR)/external/examples_command_line_external -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-27/bin/external/examples_command_line_external -DSECRET_3=\"Hello\" -DSECRET_2=\"World!\" -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-27/bin/CommandLine/CommandLineToolLib/lib_impl.swift.modulemap -fmodule-map-file=$(PROJECT_DIR)/CommandLine/swift_c_module/c_lib.modulemap -fmodule-map-file=$(PROJECT_DIR)/external/examples_command_line_external/ExternalFramework.framework/Modules/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-27/bin/external/examples_command_line_external/Library.swift.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-27/bin/CommandLine/CommandLineToolLib/lib_swift.swift.modulemap -O0 -DDEBUG=1 -fstack-protector -fstack-protector-all -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-27/bin -iquote$(PROJECT_DIR)/external/examples_command_line_external -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-27/bin/external/examples_command_line_external -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-27/bin/CommandLine/CommandLineToolLib/private_lib.swift.modulemap -O0 -fstack-protector -fstack-protector-all -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-27/bin -O0 -fstack-protector -fstack-protector-all", + "c": "-F$(PROJECT_DIR)/external/examples_command_line_external -I$(SDKROOT)/usr/include/uuid -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-27/bin -iquote$(PROJECT_DIR)/external/examples_command_line_external -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-27/bin/external/examples_command_line_external -DSECRET_3=\"Hello\" -DSECRET_2=\"World!\" -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-27/bin/CommandLine/CommandLineToolLib/lib_impl_modulemap/_/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/CommandLine/swift_interop_hint/c_lib.modulemap -fmodule-map-file=$(PROJECT_DIR)/external/examples_command_line_external/ExternalFramework.framework/Modules/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-27/bin/external/examples_command_line_external/Library_modulemap/_/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-27/bin/CommandLine/CommandLineToolLib/lib_swift_modulemap/_/module.modulemap -O0 -DDEBUG=1 -fstack-protector -fstack-protector-all -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-27/bin -iquote$(PROJECT_DIR)/external/examples_command_line_external -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-27/bin/external/examples_command_line_external -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-27/bin/CommandLine/CommandLineToolLib/private_lib_modulemap/_/module.modulemap -O0 -fstack-protector -fstack-protector-all -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-27/bin -O0 -fstack-protector -fstack-protector-all", "f": [ "$(DEVELOPER_DIR)/Platforms/MacOSX.platform/Developer/Library/Frameworks", "$(PROJECT_DIR)/external/examples_command_line_external" @@ -373,10 +373,9 @@ ] }, "x86_64-apple-macosx echo_client": { - "c": "-iquote$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift -iquote$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_apple_swift_nio -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio -iquote$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics -iquote$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-25/bin -isystem$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift/Sources/CGRPCZlib/include -isystem$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift/Sources/CGRPCZlib/include -isystem$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOLinux/include -isystem$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOLinux/include -isystem$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOWindows/include -isystem$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOWindows/include -isystem$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOAtomics/include -isystem$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOAtomics/include -isystem$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics/Sources/_AtomicsShims/include -isystem$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics/Sources/_AtomicsShims/include -isystem$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIODarwin/include -isystem$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIODarwin/include -isystem$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOLLHTTP/include -isystem$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOLLHTTP/include -isystem$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/Sources/CNIOBoringSSL/include -isystem$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/Sources/CNIOBoringSSL/include -isystem$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/Sources/CNIOBoringSSLShims/include -isystem$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/Sources/CNIOBoringSSLShims/include -DSWIFT_PACKAGE -D__APPLE_USE_RFC_3542 -DLLHTTP_STRICT_MODE -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift/CGRPCZlib.swift.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIOLinux.swift.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIOWindows.swift.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIOAtomics.swift.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics/_AtomicsShims.swift.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIODarwin.swift.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIOLLHTTP.swift.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/CNIOBoringSSL.swift.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/CNIOBoringSSLShims.swift.modulemap -O0 -DDEBUG=1 -fstack-protector -fstack-protector-all", + "c": "-iquote$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift -iquote$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_apple_swift_nio -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio -iquote$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics -iquote$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-25/bin -isystem$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift/Sources/CGRPCZlib/include -isystem$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift/Sources/CGRPCZlib/include -isystem$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOLinux/include -isystem$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOLinux/include -isystem$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOWindows/include -isystem$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOWindows/include -isystem$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOAtomics/include -isystem$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOAtomics/include -isystem$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics/Sources/_AtomicsShims/include -isystem$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics/Sources/_AtomicsShims/include -isystem$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIODarwin/include -isystem$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIODarwin/include -isystem$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOLLHTTP/include -isystem$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOLLHTTP/include -isystem$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/Sources/CNIOBoringSSL/include -isystem$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/Sources/CNIOBoringSSL/include -isystem$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/Sources/CNIOBoringSSLShims/include -isystem$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/Sources/CNIOBoringSSLShims/include -DSWIFT_PACKAGE -D__APPLE_USE_RFC_3542 -DLLHTTP_STRICT_MODE -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift/CGRPCZlib_modulemap/_/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIOLinux_modulemap/_/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIOWindows_modulemap/_/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIOAtomics_modulemap/_/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics/_AtomicsShims_modulemap/_/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIODarwin_modulemap/_/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIOLLHTTP_modulemap/_/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/CNIOBoringSSL_modulemap/_/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/CNIOBoringSSLShims_modulemap/_/module.modulemap -O0 -DDEBUG=1 -fstack-protector -fstack-protector-all -iquote$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift -iquote$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_apple_swift_nio -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio -iquote$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics -iquote$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-25/bin -isystem$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift/Sources/CGRPCZlib/include -isystem$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift/Sources/CGRPCZlib/include -isystem$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOLinux/include -isystem$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOLinux/include -isystem$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOWindows/include -isystem$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOWindows/include -isystem$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOAtomics/include -isystem$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOAtomics/include -isystem$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics/Sources/_AtomicsShims/include -isystem$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics/Sources/_AtomicsShims/include -isystem$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIODarwin/include -isystem$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIODarwin/include -isystem$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOLLHTTP/include -isystem$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOLLHTTP/include -isystem$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/Sources/CNIOBoringSSL/include -isystem$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/Sources/CNIOBoringSSL/include -isystem$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/Sources/CNIOBoringSSLShims/include -isystem$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/Sources/CNIOBoringSSLShims/include -O0 -fstack-protector -fstack-protector-all", "s": [ "$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_protobuf", - "$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-25/bin/GRPC", "$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_log", "$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio", "$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics", @@ -385,14 +384,14 @@ "$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_http2", "$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl", "$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_transport_services", - "$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift" + "$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift", + "$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-25/bin/GRPC" ] }, "x86_64-apple-macosx echo_server": { - "c": "-iquote$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift -iquote$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_apple_swift_nio -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio -iquote$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics -iquote$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-25/bin -isystem$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift/Sources/CGRPCZlib/include -isystem$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift/Sources/CGRPCZlib/include -isystem$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOLinux/include -isystem$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOLinux/include -isystem$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOWindows/include -isystem$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOWindows/include -isystem$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOAtomics/include -isystem$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOAtomics/include -isystem$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics/Sources/_AtomicsShims/include -isystem$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics/Sources/_AtomicsShims/include -isystem$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIODarwin/include -isystem$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIODarwin/include -isystem$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOLLHTTP/include -isystem$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOLLHTTP/include -isystem$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/Sources/CNIOBoringSSL/include -isystem$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/Sources/CNIOBoringSSL/include -isystem$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/Sources/CNIOBoringSSLShims/include -isystem$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/Sources/CNIOBoringSSLShims/include -DSWIFT_PACKAGE -D__APPLE_USE_RFC_3542 -DLLHTTP_STRICT_MODE -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift/CGRPCZlib.swift.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIOLinux.swift.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIOWindows.swift.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIOAtomics.swift.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics/_AtomicsShims.swift.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIODarwin.swift.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIOLLHTTP.swift.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/CNIOBoringSSL.swift.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/CNIOBoringSSLShims.swift.modulemap -O0 -DDEBUG=1 -fstack-protector -fstack-protector-all", + "c": "-iquote$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift -iquote$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_apple_swift_nio -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio -iquote$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics -iquote$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-25/bin -isystem$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift/Sources/CGRPCZlib/include -isystem$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift/Sources/CGRPCZlib/include -isystem$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOLinux/include -isystem$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOLinux/include -isystem$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOWindows/include -isystem$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOWindows/include -isystem$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOAtomics/include -isystem$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOAtomics/include -isystem$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics/Sources/_AtomicsShims/include -isystem$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics/Sources/_AtomicsShims/include -isystem$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIODarwin/include -isystem$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIODarwin/include -isystem$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOLLHTTP/include -isystem$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOLLHTTP/include -isystem$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/Sources/CNIOBoringSSL/include -isystem$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/Sources/CNIOBoringSSL/include -isystem$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/Sources/CNIOBoringSSLShims/include -isystem$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/Sources/CNIOBoringSSLShims/include -DSWIFT_PACKAGE -D__APPLE_USE_RFC_3542 -DLLHTTP_STRICT_MODE -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift/CGRPCZlib_modulemap/_/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIOLinux_modulemap/_/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIOWindows_modulemap/_/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIOAtomics_modulemap/_/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics/_AtomicsShims_modulemap/_/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIODarwin_modulemap/_/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIOLLHTTP_modulemap/_/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/CNIOBoringSSL_modulemap/_/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/CNIOBoringSSLShims_modulemap/_/module.modulemap -O0 -DDEBUG=1 -fstack-protector -fstack-protector-all -iquote$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift -iquote$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_apple_swift_nio -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio -iquote$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics -iquote$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-25/bin -isystem$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift/Sources/CGRPCZlib/include -isystem$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift/Sources/CGRPCZlib/include -isystem$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOLinux/include -isystem$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOLinux/include -isystem$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOWindows/include -isystem$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOWindows/include -isystem$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOAtomics/include -isystem$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOAtomics/include -isystem$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics/Sources/_AtomicsShims/include -isystem$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics/Sources/_AtomicsShims/include -isystem$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIODarwin/include -isystem$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIODarwin/include -isystem$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOLLHTTP/include -isystem$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOLLHTTP/include -isystem$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/Sources/CNIOBoringSSL/include -isystem$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/Sources/CNIOBoringSSL/include -isystem$(PROJECT_DIR)/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/Sources/CNIOBoringSSLShims/include -isystem$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/Sources/CNIOBoringSSLShims/include -O0 -fstack-protector -fstack-protector-all", "s": [ "$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_protobuf", - "$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-25/bin/GRPC", "$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_log", "$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio", "$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics", @@ -401,7 +400,8 @@ "$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_http2", "$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl", "$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_transport_services", - "$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift" + "$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift", + "$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-25/bin/GRPC" ] }, "x86_64-apple-macosx macOSApp.app/Contents/MacOS/macOSApp": { @@ -424,14 +424,14 @@ ] }, "x86_64-apple-macosx proto": { - "c": "-iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-25/bin -O0 -DDEBUG=1 -fstack-protector -fstack-protector-all", + "c": "-iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-25/bin -O0 -DDEBUG=1 -fstack-protector -fstack-protector-all -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-25/bin -O0 -fstack-protector -fstack-protector-all", "s": [ "$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_protobuf", "$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-25/bin/Proto" ] }, "x86_64-apple-macosx tool.binary": { - "c": "-F$(PROJECT_DIR)/external/examples_command_line_external -I$(SDKROOT)/usr/include/uuid -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-29/bin -iquote$(PROJECT_DIR)/external/examples_command_line_external -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-29/bin/external/examples_command_line_external -DSECRET_3=\"Hello\" -DSECRET_2=\"World!\" -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-29/bin/CommandLine/CommandLineToolLib/lib_impl.swift.modulemap -fmodule-map-file=$(PROJECT_DIR)/CommandLine/swift_c_module/c_lib.modulemap -fmodule-map-file=$(PROJECT_DIR)/external/examples_command_line_external/ExternalFramework.framework/Modules/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-29/bin/external/examples_command_line_external/Library.swift.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-29/bin/CommandLine/CommandLineToolLib/private_lib.swift.modulemap -O0 -DDEBUG=1 -fstack-protector -fstack-protector-all -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-29/bin -O0 -fstack-protector -fstack-protector-all", + "c": "-F$(PROJECT_DIR)/external/examples_command_line_external -I$(SDKROOT)/usr/include/uuid -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-29/bin -iquote$(PROJECT_DIR)/external/examples_command_line_external -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-29/bin/external/examples_command_line_external -DSECRET_3=\"Hello\" -DSECRET_2=\"World!\" -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-29/bin/CommandLine/CommandLineToolLib/lib_impl_modulemap/_/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/CommandLine/swift_interop_hint/c_lib.modulemap -fmodule-map-file=$(PROJECT_DIR)/external/examples_command_line_external/ExternalFramework.framework/Modules/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-29/bin/external/examples_command_line_external/Library_modulemap/_/module.modulemap -fmodule-map-file=$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-29/bin/CommandLine/CommandLineToolLib/private_lib_modulemap/_/module.modulemap -O0 -DDEBUG=1 -fstack-protector -fstack-protector-all -iquote$(PROJECT_DIR) -iquote$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-29/bin -O0 -fstack-protector -fstack-protector-all", "f": [ "$(PROJECT_DIR)/external/examples_command_line_external" ], diff --git a/examples/integration/test/fixtures/bwb.xcodeproj/rules_xcodeproj/bazel/ld.sh b/examples/integration/test/fixtures/bwb.xcodeproj/rules_xcodeproj/bazel/ld old mode 100755 new mode 100644 similarity index 100% rename from examples/integration/test/fixtures/bwb.xcodeproj/rules_xcodeproj/bazel/ld.sh rename to examples/integration/test/fixtures/bwb.xcodeproj/rules_xcodeproj/bazel/ld diff --git a/examples/integration/test/fixtures/bwb.xcodeproj/rules_xcodeproj/bazel/libtool.sh b/examples/integration/test/fixtures/bwb.xcodeproj/rules_xcodeproj/bazel/libtool old mode 100755 new mode 100644 similarity index 100% rename from examples/integration/test/fixtures/bwb.xcodeproj/rules_xcodeproj/bazel/libtool.sh rename to examples/integration/test/fixtures/bwb.xcodeproj/rules_xcodeproj/bazel/libtool diff --git a/examples/integration/test/fixtures/bwb.xcodeproj/rules_xcodeproj/generated.xcfilelist b/examples/integration/test/fixtures/bwb.xcodeproj/rules_xcodeproj/generated.xcfilelist index 12329064df..1985217b7f 100644 --- a/examples/integration/test/fixtures/bwb.xcodeproj/rules_xcodeproj/generated.xcfilelist +++ b/examples/integration/test/fixtures/bwb.xcodeproj/rules_xcodeproj/generated.xcfilelist @@ -1,112 +1,112 @@ -$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/AppClip.107.link.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/AppClip.174.link.params +$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/AppClip.110.link.params +$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/AppClip.180.link.params $(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/AppClip.6.link.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/AppClip.73.link.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/BasicTests.171.link.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/BasicTests.70.link.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/Bundle.129.link.params +$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/AppClip.76.link.params +$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/BasicTests.177.link.params +$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/BasicTests.73.link.params +$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/Bundle.132.link.params $(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/Bundle.28.link.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/CommandLineTool.158.link.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/CommandLineTool.57.link.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/CommandLineToolTests.172.link.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/CommandLineToolTests.71.link.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/FrameworkCoreUtilsObjC.113.link.params +$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/CommandLineTool.164.link.params +$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/CommandLineTool.60.link.params +$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/CommandLineToolTests.178.link.params +$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/CommandLineToolTests.74.link.params +$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/FrameworkCoreUtilsObjC.116.link.params $(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/FrameworkCoreUtilsObjC.12.link.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/FrameworkCoreUtilsObjC.180.link.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/FrameworkCoreUtilsObjC.79.link.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/LibFramework.tvOS.126.link.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/LibFramework.tvOS.193.link.params +$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/FrameworkCoreUtilsObjC.186.link.params +$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/FrameworkCoreUtilsObjC.82.link.params +$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/LibFramework.tvOS.129.link.params +$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/LibFramework.tvOS.199.link.params $(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/LibFramework.tvOS.25.link.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/LibFramework.tvOS.92.link.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/LibFramework.watchOS.116.link.params +$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/LibFramework.tvOS.95.link.params +$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/LibFramework.watchOS.119.link.params $(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/LibFramework.watchOS.15.link.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/LibFramework.watchOS.183.link.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/LibFramework.watchOS.82.link.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/UIFramework.iOS.114.link.params +$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/LibFramework.watchOS.189.link.params +$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/LibFramework.watchOS.85.link.params +$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/UIFramework.iOS.117.link.params $(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/UIFramework.iOS.13.link.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/UIFramework.iOS.181.link.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/UIFramework.iOS.80.link.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/UIFramework.tvOS.127.link.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/UIFramework.tvOS.194.link.params +$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/UIFramework.iOS.187.link.params +$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/UIFramework.iOS.83.link.params +$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/UIFramework.tvOS.130.link.params +$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/UIFramework.tvOS.200.link.params $(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/UIFramework.tvOS.26.link.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/UIFramework.tvOS.93.link.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/UIFramework.watchOS.117.link.params +$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/UIFramework.tvOS.96.link.params +$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/UIFramework.watchOS.120.link.params $(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/UIFramework.watchOS.16.link.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/UIFramework.watchOS.184.link.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/UIFramework.watchOS.83.link.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/UniversalCommandLineTool.164.link.params +$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/UIFramework.watchOS.190.link.params +$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/UIFramework.watchOS.86.link.params $(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/UniversalCommandLineTool.170.link.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/UniversalCommandLineTool.63.link.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/UniversalCommandLineTool.69.link.params +$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/UniversalCommandLineTool.176.link.params +$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/UniversalCommandLineTool.66.link.params +$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/UniversalCommandLineTool.72.link.params $(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/WidgetExtension.11.link.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/WidgetExtension.112.link.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/WidgetExtension.179.link.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/WidgetExtension.78.link.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/echo_client.151.link.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/echo_client.50.link.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/echo_server.152.link.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/echo_server.51.link.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iMessageAppExtension.136.link.params +$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/WidgetExtension.115.link.params +$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/WidgetExtension.185.link.params +$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/WidgetExtension.81.link.params +$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/echo_client.156.link.params +$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/echo_client.52.link.params +$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/echo_server.158.link.params +$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/echo_server.54.link.params +$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iMessageAppExtension.139.link.params $(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iMessageAppExtension.35.link.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iOS.122.link.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iOS.189.link.params +$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iOS.125.link.params +$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iOS.195.link.params $(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iOS.21.link.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iOS.88.link.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iOSApp.120.link.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iOSApp.187.link.params +$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iOS.91.link.params +$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iOSApp.123.link.params $(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iOSApp.19.link.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iOSApp.86.link.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iOSAppObjCUnitTestSuite.148.link.params +$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iOSApp.193.link.params +$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iOSApp.89.link.params +$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iOSAppObjCUnitTestSuite.151.link.params $(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iOSAppObjCUnitTestSuite.47.link.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iOSAppObjCUnitTests.133.link.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iOSAppObjCUnitTests.199.link.params +$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iOSAppObjCUnitTests.101.link.params +$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iOSAppObjCUnitTests.136.link.params +$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iOSAppObjCUnitTests.205.link.params $(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iOSAppObjCUnitTests.32.link.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iOSAppObjCUnitTests.98.link.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iOSAppSwiftUnitTestSuite.149.link.params +$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iOSAppSwiftUnitTestSuite.152.link.params $(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iOSAppSwiftUnitTestSuite.48.link.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iOSAppSwiftUnitTests.100.link.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iOSAppSwiftUnitTests.138.link.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iOSAppSwiftUnitTests.201.link.params +$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iOSAppSwiftUnitTests.103.link.params +$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iOSAppSwiftUnitTests.141.link.params +$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iOSAppSwiftUnitTests.207.link.params $(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iOSAppSwiftUnitTests.37.link.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iOSAppUITestSuite.147.link.params +$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iOSAppUITestSuite.150.link.params $(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iOSAppUITestSuite.46.link.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iOSAppUITests.134.link.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iOSAppUITests.200.link.params +$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iOSAppUITests.102.link.params +$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iOSAppUITests.137.link.params +$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iOSAppUITests.206.link.params $(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iOSAppUITests.33.link.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iOSAppUITests.99.link.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/macOSApp.141.link.params +$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/macOSApp.144.link.params $(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/macOSApp.40.link.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/macOSAppUITests.142.link.params +$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/macOSAppUITests.145.link.params $(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/macOSAppUITests.41.link.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/macOSLib.framework.140.link.params +$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/macOSLib.framework.143.link.params $(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/macOSLib.framework.39.link.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/proto.150.link.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/proto.49.link.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/tool.105.link.params +$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/proto.154.link.params +$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/proto.50.link.params +$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/tool.108.link.params $(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/tool.4.link.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/tvOS.124.link.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/tvOS.191.link.params +$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/tvOS.127.link.params +$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/tvOS.197.link.params $(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/tvOS.23.link.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/tvOS.90.link.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/tvOSApp.128.link.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/tvOSApp.195.link.params +$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/tvOS.93.link.params +$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/tvOSApp.131.link.params +$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/tvOSApp.201.link.params $(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/tvOSApp.27.link.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/tvOSApp.94.link.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/tvOSAppUITests.143.link.params +$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/tvOSApp.97.link.params +$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/tvOSAppUITests.146.link.params $(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/tvOSAppUITests.42.link.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/tvOSAppUnitTests.144.link.params +$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/tvOSAppUnitTests.147.link.params $(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/tvOSAppUnitTests.43.link.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/watchOS.125.link.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/watchOS.192.link.params +$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/watchOS.128.link.params +$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/watchOS.198.link.params $(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/watchOS.24.link.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/watchOS.91.link.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/watchOSAppExtension.118.link.params +$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/watchOS.94.link.params +$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/watchOSAppExtension.121.link.params $(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/watchOSAppExtension.17.link.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/watchOSAppExtension.185.link.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/watchOSAppExtension.84.link.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/watchOSAppExtensionUnitTests.146.link.params +$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/watchOSAppExtension.191.link.params +$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/watchOSAppExtension.87.link.params +$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/watchOSAppExtensionUnitTests.149.link.params $(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/watchOSAppExtensionUnitTests.45.link.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/watchOSAppUITests.145.link.params +$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/watchOSAppUITests.148.link.params $(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/watchOSAppUITests.44.link.params $(BAZEL_OUT)/CONFIGURATION-STABLE-1/bin/cc/lib/cc_lib_defines.rules_xcodeproj.c.compile.params $(BAZEL_OUT)/CONFIGURATION-STABLE-1/bin/cc/lib/impl/cc_lib_impl.rules_xcodeproj.c.compile.params @@ -294,21 +294,35 @@ $(BAZEL_OUT)/CONFIGURATION-STABLE-24/bin/watchOSApp/Info.withbundleid.plist $(BAZEL_OUT)/CONFIGURATION-STABLE-24/bin/watchOSApp/rules_xcodeproj/watchOSApp/Info.plist $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/GRPC/echo_client.library.rules_xcodeproj.swift.compile.params $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/GRPC/echo_client.merged_infoplist-intermediates/Info.plist -$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/GRPC/echo_proto-descriptor-set.proto.bin +$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/GRPC/echo_client_services_swift.rules_xcodeproj.swift.compile.params +$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/GRPC/echo_client_services_swift/gen/GRPC/echo.grpc.swift +$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/GRPC/echo_client_services_swift/gen/GRPC/echo.pb.swift $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/GRPC/echo_server.library.rules_xcodeproj.swift.compile.params $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/GRPC/echo_server.merged_infoplist-intermediates/Info.plist +$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/GRPC/echo_server_services_swift.rules_xcodeproj.swift.compile.params +$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/GRPC/echo_server_services_swift/gen/GRPC/echo.grpc.swift +$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/GRPC/echo_server_services_swift/gen/GRPC/echo.pb.swift $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/GRPC/rules_xcodeproj/echo_client/Info.plist $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/GRPC/rules_xcodeproj/echo_server/Info.plist +$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/Proto/person_proto_swift.rules_xcodeproj.swift.compile.params +$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/Proto/person_proto_swift/gen/Proto/Person.pb.swift $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/Proto/proto.merged_infoplist-intermediates/Info.plist $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/Proto/rules_xcodeproj/proto/Info.plist $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/Proto/tool.library.rules_xcodeproj.swift.compile.params $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/GRPC/echo_client.library.rules_xcodeproj.swift.compile.params $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/GRPC/echo_client.merged_infoplist-intermediates/Info.plist -$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/GRPC/echo_proto-descriptor-set.proto.bin +$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/GRPC/echo_client_services_swift.rules_xcodeproj.swift.compile.params +$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/GRPC/echo_client_services_swift/gen/GRPC/echo.grpc.swift +$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/GRPC/echo_client_services_swift/gen/GRPC/echo.pb.swift $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/GRPC/echo_server.library.rules_xcodeproj.swift.compile.params $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/GRPC/echo_server.merged_infoplist-intermediates/Info.plist +$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/GRPC/echo_server_services_swift.rules_xcodeproj.swift.compile.params +$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/GRPC/echo_server_services_swift/gen/GRPC/echo.grpc.swift +$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/GRPC/echo_server_services_swift/gen/GRPC/echo.pb.swift $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/GRPC/rules_xcodeproj/echo_client/Info.plist $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/GRPC/rules_xcodeproj/echo_server/Info.plist +$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/Proto/person_proto_swift.rules_xcodeproj.swift.compile.params +$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/Proto/person_proto_swift/gen/Proto/Person.pb.swift $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/Proto/proto.merged_infoplist-intermediates/Info.plist $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/Proto/rules_xcodeproj/proto/Info.plist $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/Proto/tool.library.rules_xcodeproj.swift.compile.params @@ -323,21 +337,21 @@ $(BAZEL_OUT)/CONFIGURATION-STABLE-27/bin/CommandLine/CommandLineToolLib/private_ $(BAZEL_OUT)/CONFIGURATION-STABLE-27/bin/CommandLine/CommandLineToolLib/private_swift_lib.rules_xcodeproj.swift.compile.params $(BAZEL_OUT)/CONFIGURATION-STABLE-27/bin/CommandLine/Tests/CommandLineLibSwiftTestsLib.rules_xcodeproj.swift.compile.params $(BAZEL_OUT)/CONFIGURATION-STABLE-27/bin/CommandLine/Tests/rules_xcodeproj/CommandLineToolTests.__internal__.__test_bundle/Info.plist -$(BAZEL_OUT)/CONFIGURATION-STABLE-27/bin/CommandLine/swift_c_module/c_lib.rules_xcodeproj.c.compile.params +$(BAZEL_OUT)/CONFIGURATION-STABLE-27/bin/CommandLine/swift_interop_hint/c_lib.rules_xcodeproj.c.compile.params $(BAZEL_OUT)/CONFIGURATION-STABLE-28/bin/CommandLine/CommandLineTool/tool.library.rules_xcodeproj.c.compile.params $(BAZEL_OUT)/CONFIGURATION-STABLE-28/bin/CommandLine/CommandLineToolLib/lib_impl.rules_xcodeproj.c.compile.params $(BAZEL_OUT)/CONFIGURATION-STABLE-28/bin/CommandLine/CommandLineToolLib/lib_swift.rules_xcodeproj.swift.compile.params $(BAZEL_OUT)/CONFIGURATION-STABLE-28/bin/CommandLine/CommandLineToolLib/private/LibSwift-Swift.h $(BAZEL_OUT)/CONFIGURATION-STABLE-28/bin/CommandLine/CommandLineToolLib/private_lib.rules_xcodeproj.c.compile.params $(BAZEL_OUT)/CONFIGURATION-STABLE-28/bin/CommandLine/CommandLineToolLib/private_swift_lib.rules_xcodeproj.swift.compile.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-28/bin/CommandLine/swift_c_module/c_lib.rules_xcodeproj.c.compile.params +$(BAZEL_OUT)/CONFIGURATION-STABLE-28/bin/CommandLine/swift_interop_hint/c_lib.rules_xcodeproj.c.compile.params $(BAZEL_OUT)/CONFIGURATION-STABLE-29/bin/CommandLine/CommandLineTool/tool.library.rules_xcodeproj.c.compile.params $(BAZEL_OUT)/CONFIGURATION-STABLE-29/bin/CommandLine/CommandLineToolLib/lib_impl.rules_xcodeproj.c.compile.params $(BAZEL_OUT)/CONFIGURATION-STABLE-29/bin/CommandLine/CommandLineToolLib/lib_swift.rules_xcodeproj.swift.compile.params $(BAZEL_OUT)/CONFIGURATION-STABLE-29/bin/CommandLine/CommandLineToolLib/private/LibSwift-Swift.h $(BAZEL_OUT)/CONFIGURATION-STABLE-29/bin/CommandLine/CommandLineToolLib/private_lib.rules_xcodeproj.c.compile.params $(BAZEL_OUT)/CONFIGURATION-STABLE-29/bin/CommandLine/CommandLineToolLib/private_swift_lib.rules_xcodeproj.swift.compile.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-29/bin/CommandLine/swift_c_module/c_lib.rules_xcodeproj.c.compile.params +$(BAZEL_OUT)/CONFIGURATION-STABLE-29/bin/CommandLine/swift_interop_hint/c_lib.rules_xcodeproj.c.compile.params $(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/AppClip/AppClip.library.rules_xcodeproj.swift.compile.params $(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/AppClip/Entitlements.withbundleid.plist $(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/AppClip/rules_xcodeproj/AppClip/Info.plist @@ -397,21 +411,21 @@ $(BAZEL_OUT)/CONFIGURATION-STABLE-30/bin/CommandLine/CommandLineToolLib/private_ $(BAZEL_OUT)/CONFIGURATION-STABLE-30/bin/CommandLine/CommandLineToolLib/private_swift_lib.rules_xcodeproj.swift.compile.params $(BAZEL_OUT)/CONFIGURATION-STABLE-30/bin/CommandLine/Tests/CommandLineLibSwiftTestsLib.rules_xcodeproj.swift.compile.params $(BAZEL_OUT)/CONFIGURATION-STABLE-30/bin/CommandLine/Tests/rules_xcodeproj/CommandLineToolTests.__internal__.__test_bundle/Info.plist -$(BAZEL_OUT)/CONFIGURATION-STABLE-30/bin/CommandLine/swift_c_module/c_lib.rules_xcodeproj.c.compile.params +$(BAZEL_OUT)/CONFIGURATION-STABLE-30/bin/CommandLine/swift_interop_hint/c_lib.rules_xcodeproj.c.compile.params $(BAZEL_OUT)/CONFIGURATION-STABLE-31/bin/CommandLine/CommandLineTool/tool.library.rules_xcodeproj.c.compile.params $(BAZEL_OUT)/CONFIGURATION-STABLE-31/bin/CommandLine/CommandLineToolLib/lib_impl.rules_xcodeproj.c.compile.params $(BAZEL_OUT)/CONFIGURATION-STABLE-31/bin/CommandLine/CommandLineToolLib/lib_swift.rules_xcodeproj.swift.compile.params $(BAZEL_OUT)/CONFIGURATION-STABLE-31/bin/CommandLine/CommandLineToolLib/private/LibSwift-Swift.h $(BAZEL_OUT)/CONFIGURATION-STABLE-31/bin/CommandLine/CommandLineToolLib/private_lib.rules_xcodeproj.c.compile.params $(BAZEL_OUT)/CONFIGURATION-STABLE-31/bin/CommandLine/CommandLineToolLib/private_swift_lib.rules_xcodeproj.swift.compile.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-31/bin/CommandLine/swift_c_module/c_lib.rules_xcodeproj.c.compile.params +$(BAZEL_OUT)/CONFIGURATION-STABLE-31/bin/CommandLine/swift_interop_hint/c_lib.rules_xcodeproj.c.compile.params $(BAZEL_OUT)/CONFIGURATION-STABLE-32/bin/CommandLine/CommandLineTool/tool.library.rules_xcodeproj.c.compile.params $(BAZEL_OUT)/CONFIGURATION-STABLE-32/bin/CommandLine/CommandLineToolLib/lib_impl.rules_xcodeproj.c.compile.params $(BAZEL_OUT)/CONFIGURATION-STABLE-32/bin/CommandLine/CommandLineToolLib/lib_swift.rules_xcodeproj.swift.compile.params $(BAZEL_OUT)/CONFIGURATION-STABLE-32/bin/CommandLine/CommandLineToolLib/private/LibSwift-Swift.h $(BAZEL_OUT)/CONFIGURATION-STABLE-32/bin/CommandLine/CommandLineToolLib/private_lib.rules_xcodeproj.c.compile.params $(BAZEL_OUT)/CONFIGURATION-STABLE-32/bin/CommandLine/CommandLineToolLib/private_swift_lib.rules_xcodeproj.swift.compile.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-32/bin/CommandLine/swift_c_module/c_lib.rules_xcodeproj.c.compile.params +$(BAZEL_OUT)/CONFIGURATION-STABLE-32/bin/CommandLine/swift_interop_hint/c_lib.rules_xcodeproj.c.compile.params $(BAZEL_OUT)/CONFIGURATION-STABLE-33/bin/CommandLine/Tests/BasicTests.rules_xcodeproj.swift.compile.params $(BAZEL_OUT)/CONFIGURATION-STABLE-34/bin/CommandLine/Tests/BasicTests.rules_xcodeproj.swift.compile.params $(BAZEL_OUT)/CONFIGURATION-STABLE-4/bin/Lib/Lib.rules_xcodeproj.swift.compile.params diff --git a/examples/integration/test/fixtures/bwb.xcodeproj/xcshareddata/xcschemes/Proto_person_proto.xcscheme b/examples/integration/test/fixtures/bwb.xcodeproj/xcshareddata/xcschemes/Proto_person_proto.xcscheme new file mode 100644 index 0000000000..2becfdb9cd --- /dev/null +++ b/examples/integration/test/fixtures/bwb.xcodeproj/xcshareddata/xcschemes/Proto_person_proto.xcscheme @@ -0,0 +1,76 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/examples/integration/test/fixtures/bwb.xcodeproj/xcshareddata/xcschemes/echo_client_services_swift.xcscheme b/examples/integration/test/fixtures/bwb.xcodeproj/xcshareddata/xcschemes/echo_client_services_swift.xcscheme new file mode 100644 index 0000000000..bba74f45ee --- /dev/null +++ b/examples/integration/test/fixtures/bwb.xcodeproj/xcshareddata/xcschemes/echo_client_services_swift.xcscheme @@ -0,0 +1,76 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/examples/integration/test/fixtures/bwb.xcodeproj/xcshareddata/xcschemes/echo_server_services_swift.xcscheme b/examples/integration/test/fixtures/bwb.xcodeproj/xcshareddata/xcschemes/echo_server_services_swift.xcscheme new file mode 100644 index 0000000000..1ced440781 --- /dev/null +++ b/examples/integration/test/fixtures/bwb.xcodeproj/xcshareddata/xcschemes/echo_server_services_swift.xcscheme @@ -0,0 +1,76 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/examples/integration/test/fixtures/bwb_project_spec.json b/examples/integration/test/fixtures/bwb_project_spec.json index 2c500cd9c6..5d1ba7387d 100644 --- a/examples/integration/test/fixtures/bwb_project_spec.json +++ b/examples/integration/test/fixtures/bwb_project_spec.json @@ -188,11 +188,10 @@ "CommandLine/CommandLineToolLib/dir with space/lib.h", "CommandLine/CommandLineToolLib/private_lib.h", "CommandLine/Tests/BUILD", - "CommandLine/swift_c_module/BUILD", - "CommandLine/swift_c_module/c_lib.h", + "CommandLine/swift_interop_hint/BUILD", + "CommandLine/swift_interop_hint/c_lib.h", "GRPC/BUILD", "GRPC/Info.plist", - "GRPC/echo.proto", "Lib/BUILD", "Lib/Info.plist", "Lib/README.md", @@ -300,14 +299,12 @@ "bazel-out/CONFIGURATION-STABLE-24/bin/watchOSApp/Info.withbundleid.plist", "bazel-out/CONFIGURATION-STABLE-24/bin/watchOSApp/rules_xcodeproj/watchOSApp/Info.plist", "bazel-out/CONFIGURATION-STABLE-25/bin/GRPC/echo_client.merged_infoplist-intermediates/Info.plist", - "bazel-out/CONFIGURATION-STABLE-25/bin/GRPC/echo_proto-descriptor-set.proto.bin", "bazel-out/CONFIGURATION-STABLE-25/bin/GRPC/echo_server.merged_infoplist-intermediates/Info.plist", "bazel-out/CONFIGURATION-STABLE-25/bin/GRPC/rules_xcodeproj/echo_client/Info.plist", "bazel-out/CONFIGURATION-STABLE-25/bin/GRPC/rules_xcodeproj/echo_server/Info.plist", "bazel-out/CONFIGURATION-STABLE-25/bin/Proto/proto.merged_infoplist-intermediates/Info.plist", "bazel-out/CONFIGURATION-STABLE-25/bin/Proto/rules_xcodeproj/proto/Info.plist", "bazel-out/CONFIGURATION-STABLE-26/bin/GRPC/echo_client.merged_infoplist-intermediates/Info.plist", - "bazel-out/CONFIGURATION-STABLE-26/bin/GRPC/echo_proto-descriptor-set.proto.bin", "bazel-out/CONFIGURATION-STABLE-26/bin/GRPC/echo_server.merged_infoplist-intermediates/Info.plist", "bazel-out/CONFIGURATION-STABLE-26/bin/GRPC/rules_xcodeproj/echo_client/Info.plist", "bazel-out/CONFIGURATION-STABLE-26/bin/GRPC/rules_xcodeproj/echo_server/Info.plist", diff --git a/examples/integration/test/fixtures/bwb_targets_spec.json b/examples/integration/test/fixtures/bwb_targets_spec.json index 0e1e1cfce1..b25a0bb2e0 100644 --- a/examples/integration/test/fixtures/bwb_targets_spec.json +++ b/examples/integration/test/fixtures/bwb_targets_spec.json @@ -876,7 +876,7 @@ "--digest-algorithm=sha1", "--resource-rules=external/rules_apple~/tools/codesigningtool/disable_signing_resource_rules.plist" ], - "OTHER_SWIFT_FLAGS": "-I$(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/Lib/UndesiredSchemes -I$(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/Lib -I$(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/UI -I$(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_i386_x86_64-simulator -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64_x86_64-simulator -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64_x86_64-simulator -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64_x86_64-simulator -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_i386_x86_64-simulator -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64_x86_64-simulator -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64_x86_64-simulator -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64_x86_64-simulator -Xcc -I -Xcc $(SRCROOT)/iOSApp/Source/CoreUtilsObjC -Xcc -I -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/iOSApp/Source/CoreUtilsObjC -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -Xcc -iquote -Xcc $(PROJECT_DIR) -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/external/_main~non_module_deps~com_google_google_maps -Xcc \"-DNEEDS_QUOTES=Two words\" -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_i386_x86_64-simulator/CryptoSwift.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_objc_modulemap.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_swift_modulemap.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_objc_modulemap-module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/iOSApp/Source/CoreUtilsObjC/CoreUtilsObjC.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64_x86_64-simulator/GoogleMapsBase.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64_x86_64-simulator/GoogleMapsCore.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64_x86_64-simulator/GoogleMaps.framework/Modules/module.modulemap -Xcc -O0 -Xcc -DDEBUG=1 -Xcc -fstack-protector -Xcc -fstack-protector-all", + "OTHER_SWIFT_FLAGS": "-I$(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/Lib/UndesiredSchemes -I$(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/Lib -I$(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/UI -I$(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_i386_x86_64-simulator -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64_x86_64-simulator -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64_x86_64-simulator -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64_x86_64-simulator -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_i386_x86_64-simulator -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64_x86_64-simulator -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64_x86_64-simulator -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64_x86_64-simulator -Xcc -I -Xcc $(SRCROOT)/iOSApp/Source/CoreUtilsObjC -Xcc -I -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/iOSApp/Source/CoreUtilsObjC -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -Xcc -iquote -Xcc $(PROJECT_DIR) -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/external/_main~non_module_deps~com_google_google_maps -Xcc \"-DNEEDS_QUOTES=Two words\" -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_i386_x86_64-simulator/CryptoSwift.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_objc_modulemap_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_swift_modulemap_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_objc_modulemap-module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/iOSApp/Source/CoreUtilsObjC/CoreUtilsObjC_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64_x86_64-simulator/GoogleMapsBase.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64_x86_64-simulator/GoogleMapsCore.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64_x86_64-simulator/GoogleMaps.framework/Modules/module.modulemap -Xcc -O0 -Xcc -DDEBUG=1 -Xcc -fstack-protector -Xcc -fstack-protector-all", "PREVIEWS_SWIFT_INCLUDE__": "", "PREVIEWS_SWIFT_INCLUDE__NO": "", "PREVIEWS_SWIFT_INCLUDE__YES": "-I bazel-out/CONFIGURATION-STABLE-3/bin/iOSApp/Source", @@ -1801,7 +1801,7 @@ "BAZEL_OUTPUTS_PRODUCT_BASENAME": "iOSAppSwiftUnitTests.xctest", "CODE_SIGN_STYLE": "Manual", "INFOPLIST_FILE": "$(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/iOSApp/Test/SwiftUnitTests/rules_xcodeproj/iOSAppSwiftUnitTests.__internal__.__test_bundle/Info.plist", - "OTHER_SWIFT_FLAGS": "-F$(DEVELOPER_DIR)/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks -F$(SDKROOT)/Developer/Library/Frameworks -I$(DEVELOPER_DIR)/Platforms/iPhoneSimulator.platform/Developer/usr/lib -I$(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/Lib/UndesiredSchemes -I$(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/Lib -I$(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/UI -I$(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer -I$(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/iOSApp/Source -I$(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/iOSApp/Test/TestingUtils -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_i386_x86_64-simulator -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64_x86_64-simulator -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64_x86_64-simulator -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64_x86_64-simulator -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_i386_x86_64-simulator -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64_x86_64-simulator -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64_x86_64-simulator -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64_x86_64-simulator -Xcc -I -Xcc $(SRCROOT)/iOSApp/Source/CoreUtilsObjC -Xcc -I -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/iOSApp/Source/CoreUtilsObjC -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -Xcc -iquote -Xcc $(PROJECT_DIR) -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/external/_main~non_module_deps~com_google_google_maps -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~FXPageControl -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/external/_main~non_module_deps~FXPageControl -Xcc \"-DNEEDS_QUOTES=Two words\" -Xcc -DAWESOME -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_i386_x86_64-simulator/CryptoSwift.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_objc_modulemap.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_swift_modulemap.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_objc_modulemap-module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/iOSApp/Source/CoreUtilsObjC/CoreUtilsObjC.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64_x86_64-simulator/GoogleMapsBase.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64_x86_64-simulator/GoogleMapsCore.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64_x86_64-simulator/GoogleMaps.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/external/_main~non_module_deps~FXPageControl/FXPageControl.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/iOSApp/Source/Utils/Utils.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/iOSApp/Test/TestingUtils/TestingUtils.swift.modulemap -Xcc -O0 -Xcc -DDEBUG=1 -Xcc -fstack-protector -Xcc -fstack-protector-all", + "OTHER_SWIFT_FLAGS": "-F$(DEVELOPER_DIR)/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks -F$(SDKROOT)/Developer/Library/Frameworks -I$(DEVELOPER_DIR)/Platforms/iPhoneSimulator.platform/Developer/usr/lib -I$(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/Lib/UndesiredSchemes -I$(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/Lib -I$(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/UI -I$(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer -I$(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/iOSApp/Source -I$(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/iOSApp/Test/TestingUtils -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_i386_x86_64-simulator -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64_x86_64-simulator -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64_x86_64-simulator -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64_x86_64-simulator -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_i386_x86_64-simulator -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64_x86_64-simulator -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64_x86_64-simulator -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64_x86_64-simulator -Xcc -I -Xcc $(SRCROOT)/iOSApp/Source/CoreUtilsObjC -Xcc -I -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/iOSApp/Source/CoreUtilsObjC -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -Xcc -iquote -Xcc $(PROJECT_DIR) -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/external/_main~non_module_deps~com_google_google_maps -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~FXPageControl -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/external/_main~non_module_deps~FXPageControl -Xcc \"-DNEEDS_QUOTES=Two words\" -Xcc -DAWESOME -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_i386_x86_64-simulator/CryptoSwift.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_objc_modulemap_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_swift_modulemap_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_objc_modulemap-module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/iOSApp/Source/CoreUtilsObjC/CoreUtilsObjC_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64_x86_64-simulator/GoogleMapsBase.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64_x86_64-simulator/GoogleMapsCore.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64_x86_64-simulator/GoogleMaps.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/external/_main~non_module_deps~FXPageControl/FXPageControl_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/iOSApp/Source/Utils/Utils_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/iOSApp/Test/TestingUtils/TestingUtils_modulemap/_/module.modulemap -Xcc -O0 -Xcc -DDEBUG=1 -Xcc -fstack-protector -Xcc -fstack-protector-all", "PREVIEWS_SWIFT_INCLUDE__": "", "PREVIEWS_SWIFT_INCLUDE__NO": "", "PREVIEWS_SWIFT_INCLUDE__YES": "-I bazel-out/CONFIGURATION-STABLE-3/bin/iOSApp/Test/SwiftUnitTests", @@ -2515,7 +2515,7 @@ "BAZEL_OUTPUTS_PRODUCT_BASENAME": "iOSAppSwiftUnitTestSuite.xctest", "CODE_SIGN_STYLE": "Manual", "INFOPLIST_FILE": "$(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/iOSApp/Test/SwiftUnitTests/rules_xcodeproj/iOSAppSwiftUnitTestSuite.__internal__.__test_bundle/Info.plist", - "OTHER_SWIFT_FLAGS": "-F$(DEVELOPER_DIR)/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks -F$(SDKROOT)/Developer/Library/Frameworks -I$(DEVELOPER_DIR)/Platforms/iPhoneSimulator.platform/Developer/usr/lib -I$(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/Lib/UndesiredSchemes -I$(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/Lib -I$(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/UI -I$(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer -I$(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/iOSApp/Source -I$(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/iOSApp/Test/TestingUtils -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_i386_x86_64-simulator -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64_x86_64-simulator -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64_x86_64-simulator -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64_x86_64-simulator -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_i386_x86_64-simulator -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64_x86_64-simulator -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64_x86_64-simulator -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64_x86_64-simulator -Xcc -I -Xcc $(SRCROOT)/iOSApp/Source/CoreUtilsObjC -Xcc -I -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/iOSApp/Source/CoreUtilsObjC -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -Xcc -iquote -Xcc $(PROJECT_DIR) -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/external/_main~non_module_deps~com_google_google_maps -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~FXPageControl -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/external/_main~non_module_deps~FXPageControl -Xcc \"-DNEEDS_QUOTES=Two words\" -Xcc -DAWESOME -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_i386_x86_64-simulator/CryptoSwift.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_objc_modulemap.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_swift_modulemap.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_objc_modulemap-module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/iOSApp/Source/CoreUtilsObjC/CoreUtilsObjC.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64_x86_64-simulator/GoogleMapsBase.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64_x86_64-simulator/GoogleMapsCore.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64_x86_64-simulator/GoogleMaps.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/external/_main~non_module_deps~FXPageControl/FXPageControl.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/iOSApp/Source/Utils/Utils.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/iOSApp/Test/TestingUtils/TestingUtils.swift.modulemap -Xcc -O0 -Xcc -DDEBUG=1 -Xcc -fstack-protector -Xcc -fstack-protector-all", + "OTHER_SWIFT_FLAGS": "-F$(DEVELOPER_DIR)/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks -F$(SDKROOT)/Developer/Library/Frameworks -I$(DEVELOPER_DIR)/Platforms/iPhoneSimulator.platform/Developer/usr/lib -I$(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/Lib/UndesiredSchemes -I$(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/Lib -I$(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/UI -I$(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer -I$(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/iOSApp/Source -I$(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/iOSApp/Test/TestingUtils -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_i386_x86_64-simulator -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64_x86_64-simulator -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64_x86_64-simulator -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64_x86_64-simulator -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_i386_x86_64-simulator -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64_x86_64-simulator -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64_x86_64-simulator -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64_x86_64-simulator -Xcc -I -Xcc $(SRCROOT)/iOSApp/Source/CoreUtilsObjC -Xcc -I -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/iOSApp/Source/CoreUtilsObjC -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -Xcc -iquote -Xcc $(PROJECT_DIR) -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/external/_main~non_module_deps~com_google_google_maps -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~FXPageControl -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/external/_main~non_module_deps~FXPageControl -Xcc \"-DNEEDS_QUOTES=Two words\" -Xcc -DAWESOME -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_i386_x86_64-simulator/CryptoSwift.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_objc_modulemap_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_swift_modulemap_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_objc_modulemap-module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/iOSApp/Source/CoreUtilsObjC/CoreUtilsObjC_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64_x86_64-simulator/GoogleMapsBase.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64_x86_64-simulator/GoogleMapsCore.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64_x86_64-simulator/GoogleMaps.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/external/_main~non_module_deps~FXPageControl/FXPageControl_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/iOSApp/Source/Utils/Utils_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/iOSApp/Test/TestingUtils/TestingUtils_modulemap/_/module.modulemap -Xcc -O0 -Xcc -DDEBUG=1 -Xcc -fstack-protector -Xcc -fstack-protector-all", "PREVIEWS_SWIFT_INCLUDE__": "", "PREVIEWS_SWIFT_INCLUDE__NO": "", "PREVIEWS_SWIFT_INCLUDE__YES": "-I bazel-out/CONFIGURATION-STABLE-3/bin/iOSApp/Test/SwiftUnitTests", @@ -2558,6 +2558,39 @@ "t": "com.apple.product-type.bundle.unit-test" } }, + "@@//Proto:person_proto_swift CONFIGURATION-STABLE-25", + { + "0": "bazel-out/CONFIGURATION-STABLE-25/bin/Proto/person_proto_swift.rules_xcodeproj.swift.compile.params", + "1": "bazel-out/CONFIGURATION-STABLE-25/bin/Proto", + "2": { + "a": "x86_64", + "m": "11.0", + "v": "macosx" + }, + "b": { + "OTHER_SWIFT_FLAGS": "-I$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_protobuf -Xcc -iquote -Xcc $(PROJECT_DIR) -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin -Xcc -O0 -Xcc -DDEBUG=1 -Xcc -fstack-protector -Xcc -fstack-protector-all", + "PRODUCT_MODULE_NAME": "Proto_person_proto" + }, + "c": "CONFIGURATION-STABLE-25", + "i": { + "s": [ + "bazel-out/CONFIGURATION-STABLE-25/bin/Proto/person_proto_swift/gen/Proto/Person.pb.swift" + ] + }, + "l": "@@//Proto:person_proto_swift", + "n": "person_proto_swift", + "o": { + "s": { + "m": "bazel-out/CONFIGURATION-STABLE-25/bin/Proto/Proto_person_proto.swiftmodule" + } + }, + "p": { + "m": "Proto_person_proto", + "n": "person_proto_swift", + "p": "bazel-out/CONFIGURATION-STABLE-25/bin/Proto/libperson_proto_swift.a", + "t": "com.apple.product-type.library.static" + } + }, "@@//Proto:proto CONFIGURATION-STABLE-25", { "0": "bazel-out/CONFIGURATION-STABLE-25/bin/Proto/tool.library.rules_xcodeproj.swift.compile.params", @@ -2573,7 +2606,7 @@ "n": "tool.library" } ], - "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/proto.49.link.params", + "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/proto.50.link.params", "b": { "BAZEL_OUTPUTS_DSYM": [ "\"bazel-out/CONFIGURATION-STABLE-25/bin/Proto/proto.dSYM\"" @@ -2607,6 +2640,39 @@ "t": "com.apple.product-type.tool" } }, + "@@//GRPC:echo_client_services_swift CONFIGURATION-STABLE-25", + { + "0": "bazel-out/CONFIGURATION-STABLE-25/bin/GRPC/echo_client_services_swift.rules_xcodeproj.swift.compile.params", + "1": "bazel-out/CONFIGURATION-STABLE-25/bin/GRPC", + "2": { + "a": "x86_64", + "m": "11.0", + "v": "macosx" + }, + "b": { + "OTHER_SWIFT_FLAGS": "-I$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_protobuf -I$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_log -I$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio -I$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics -I$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_collections -I$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_extras -I$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_http2 -I$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl -I$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_transport_services -I$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_grpc_grpc_swift -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_atomics -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl -Xcc -iquote -Xcc $(PROJECT_DIR) -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_grpc_grpc_swift/Sources/CGRPCZlib/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift/Sources/CGRPCZlib/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOLinux/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOLinux/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOWindows/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOWindows/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOAtomics/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOAtomics/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_atomics/Sources/_AtomicsShims/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics/Sources/_AtomicsShims/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIODarwin/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIODarwin/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOLLHTTP/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOLLHTTP/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/Sources/CNIOBoringSSL/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/Sources/CNIOBoringSSL/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/Sources/CNIOBoringSSLShims/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/Sources/CNIOBoringSSLShims/include -Xcc -DSWIFT_PACKAGE -Xcc -D__APPLE_USE_RFC_3542 -Xcc -DLLHTTP_STRICT_MODE -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift/CGRPCZlib_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIOLinux_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIOWindows_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIOAtomics_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics/_AtomicsShims_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIODarwin_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIOLLHTTP_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/CNIOBoringSSL_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/CNIOBoringSSLShims_modulemap/_/module.modulemap -Xcc -O0 -Xcc -DDEBUG=1 -Xcc -fstack-protector -Xcc -fstack-protector-all" + }, + "c": "CONFIGURATION-STABLE-25", + "i": { + "s": [ + "bazel-out/CONFIGURATION-STABLE-25/bin/GRPC/echo_client_services_swift/gen/GRPC/echo.grpc.swift", + "bazel-out/CONFIGURATION-STABLE-25/bin/GRPC/echo_client_services_swift/gen/GRPC/echo.pb.swift" + ] + }, + "l": "@@//GRPC:echo_client_services_swift", + "m": true, + "n": "echo_client_services_swift", + "o": { + "s": { + "m": "bazel-out/CONFIGURATION-STABLE-25/bin/GRPC/GRPC_echo_client_services_swift.swiftmodule" + } + }, + "p": { + "n": "echo_client_services_swift", + "p": "bazel-out/CONFIGURATION-STABLE-25/bin/GRPC/libecho_client_services_swift.a", + "t": "com.apple.product-type.library.static" + } + }, "@@//GRPC:echo_client CONFIGURATION-STABLE-25", { "0": "bazel-out/CONFIGURATION-STABLE-25/bin/GRPC/echo_client.library.rules_xcodeproj.swift.compile.params", @@ -2622,7 +2688,7 @@ "n": "echo_client.library" } ], - "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/echo_client.50.link.params", + "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/echo_client.52.link.params", "b": { "BAZEL_OUTPUTS_DSYM": [ "\"bazel-out/CONFIGURATION-STABLE-25/bin/GRPC/echo_client.dSYM\"" @@ -2630,7 +2696,7 @@ "BAZEL_OUTPUTS_PRODUCT": "bazel-out/CONFIGURATION-STABLE-25/bin/GRPC/echo_client_codesigned", "BAZEL_OUTPUTS_PRODUCT_BASENAME": "echo_client_codesigned", "INFOPLIST_FILE": "$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/GRPC/rules_xcodeproj/echo_client/Info.plist", - "OTHER_SWIFT_FLAGS": "-I$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_protobuf -I$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/GRPC -I$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_log -I$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio -I$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics -I$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_collections -I$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_extras -I$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_http2 -I$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl -I$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_transport_services -I$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_grpc_grpc_swift -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_atomics -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl -Xcc -iquote -Xcc $(PROJECT_DIR) -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_grpc_grpc_swift/Sources/CGRPCZlib/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift/Sources/CGRPCZlib/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOLinux/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOLinux/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOWindows/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOWindows/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOAtomics/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOAtomics/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_atomics/Sources/_AtomicsShims/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics/Sources/_AtomicsShims/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIODarwin/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIODarwin/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOLLHTTP/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOLLHTTP/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/Sources/CNIOBoringSSL/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/Sources/CNIOBoringSSL/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/Sources/CNIOBoringSSLShims/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/Sources/CNIOBoringSSLShims/include -Xcc -DSWIFT_PACKAGE -Xcc -D__APPLE_USE_RFC_3542 -Xcc -DLLHTTP_STRICT_MODE -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift/CGRPCZlib.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIOLinux.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIOWindows.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIOAtomics.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics/_AtomicsShims.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIODarwin.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIOLLHTTP.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/CNIOBoringSSL.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/CNIOBoringSSLShims.swift.modulemap -Xcc -O0 -Xcc -DDEBUG=1 -Xcc -fstack-protector -Xcc -fstack-protector-all", + "OTHER_SWIFT_FLAGS": "-I$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_protobuf -I$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_log -I$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio -I$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics -I$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_collections -I$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_extras -I$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_http2 -I$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl -I$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_transport_services -I$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift -I$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/GRPC -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_grpc_grpc_swift -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_atomics -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl -Xcc -iquote -Xcc $(PROJECT_DIR) -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_grpc_grpc_swift/Sources/CGRPCZlib/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift/Sources/CGRPCZlib/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOLinux/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOLinux/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOWindows/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOWindows/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOAtomics/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOAtomics/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_atomics/Sources/_AtomicsShims/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics/Sources/_AtomicsShims/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIODarwin/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIODarwin/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOLLHTTP/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOLLHTTP/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/Sources/CNIOBoringSSL/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/Sources/CNIOBoringSSL/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/Sources/CNIOBoringSSLShims/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/Sources/CNIOBoringSSLShims/include -Xcc -DSWIFT_PACKAGE -Xcc -D__APPLE_USE_RFC_3542 -Xcc -DLLHTTP_STRICT_MODE -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift/CGRPCZlib_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIOLinux_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIOWindows_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIOAtomics_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics/_AtomicsShims_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIODarwin_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIOLLHTTP_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/CNIOBoringSSL_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/CNIOBoringSSLShims_modulemap/_/module.modulemap -Xcc -O0 -Xcc -DDEBUG=1 -Xcc -fstack-protector -Xcc -fstack-protector-all", "PRODUCT_MODULE_NAME": "GRPC_echo_client_library" }, "c": "CONFIGURATION-STABLE-25", @@ -2657,6 +2723,39 @@ "t": "com.apple.product-type.tool" } }, + "@@//GRPC:echo_server_services_swift CONFIGURATION-STABLE-25", + { + "0": "bazel-out/CONFIGURATION-STABLE-25/bin/GRPC/echo_server_services_swift.rules_xcodeproj.swift.compile.params", + "1": "bazel-out/CONFIGURATION-STABLE-25/bin/GRPC", + "2": { + "a": "x86_64", + "m": "11.0", + "v": "macosx" + }, + "b": { + "OTHER_SWIFT_FLAGS": "-I$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_protobuf -I$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_log -I$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio -I$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics -I$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_collections -I$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_extras -I$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_http2 -I$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl -I$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_transport_services -I$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_grpc_grpc_swift -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_atomics -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl -Xcc -iquote -Xcc $(PROJECT_DIR) -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_grpc_grpc_swift/Sources/CGRPCZlib/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift/Sources/CGRPCZlib/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOLinux/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOLinux/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOWindows/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOWindows/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOAtomics/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOAtomics/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_atomics/Sources/_AtomicsShims/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics/Sources/_AtomicsShims/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIODarwin/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIODarwin/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOLLHTTP/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOLLHTTP/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/Sources/CNIOBoringSSL/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/Sources/CNIOBoringSSL/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/Sources/CNIOBoringSSLShims/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/Sources/CNIOBoringSSLShims/include -Xcc -DSWIFT_PACKAGE -Xcc -D__APPLE_USE_RFC_3542 -Xcc -DLLHTTP_STRICT_MODE -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift/CGRPCZlib_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIOLinux_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIOWindows_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIOAtomics_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics/_AtomicsShims_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIODarwin_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIOLLHTTP_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/CNIOBoringSSL_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/CNIOBoringSSLShims_modulemap/_/module.modulemap -Xcc -O0 -Xcc -DDEBUG=1 -Xcc -fstack-protector -Xcc -fstack-protector-all" + }, + "c": "CONFIGURATION-STABLE-25", + "i": { + "s": [ + "bazel-out/CONFIGURATION-STABLE-25/bin/GRPC/echo_server_services_swift/gen/GRPC/echo.pb.swift", + "bazel-out/CONFIGURATION-STABLE-25/bin/GRPC/echo_server_services_swift/gen/GRPC/echo.grpc.swift" + ] + }, + "l": "@@//GRPC:echo_server_services_swift", + "m": true, + "n": "echo_server_services_swift", + "o": { + "s": { + "m": "bazel-out/CONFIGURATION-STABLE-25/bin/GRPC/GRPC_echo_server_services_swift.swiftmodule" + } + }, + "p": { + "n": "echo_server_services_swift", + "p": "bazel-out/CONFIGURATION-STABLE-25/bin/GRPC/libecho_server_services_swift.a", + "t": "com.apple.product-type.library.static" + } + }, "@@//GRPC:echo_server CONFIGURATION-STABLE-25", { "0": "bazel-out/CONFIGURATION-STABLE-25/bin/GRPC/echo_server.library.rules_xcodeproj.swift.compile.params", @@ -2672,7 +2771,7 @@ "n": "echo_server.library" } ], - "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/echo_server.51.link.params", + "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/echo_server.54.link.params", "b": { "BAZEL_OUTPUTS_DSYM": [ "\"bazel-out/CONFIGURATION-STABLE-25/bin/GRPC/echo_server.dSYM\"" @@ -2680,7 +2779,7 @@ "BAZEL_OUTPUTS_PRODUCT": "bazel-out/CONFIGURATION-STABLE-25/bin/GRPC/echo_server_codesigned", "BAZEL_OUTPUTS_PRODUCT_BASENAME": "echo_server_codesigned", "INFOPLIST_FILE": "$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/GRPC/rules_xcodeproj/echo_server/Info.plist", - "OTHER_SWIFT_FLAGS": "-I$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_protobuf -I$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/GRPC -I$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_log -I$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio -I$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics -I$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_collections -I$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_extras -I$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_http2 -I$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl -I$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_transport_services -I$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_grpc_grpc_swift -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_atomics -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl -Xcc -iquote -Xcc $(PROJECT_DIR) -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_grpc_grpc_swift/Sources/CGRPCZlib/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift/Sources/CGRPCZlib/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOLinux/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOLinux/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOWindows/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOWindows/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOAtomics/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOAtomics/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_atomics/Sources/_AtomicsShims/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics/Sources/_AtomicsShims/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIODarwin/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIODarwin/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOLLHTTP/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOLLHTTP/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/Sources/CNIOBoringSSL/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/Sources/CNIOBoringSSL/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/Sources/CNIOBoringSSLShims/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/Sources/CNIOBoringSSLShims/include -Xcc -DSWIFT_PACKAGE -Xcc -D__APPLE_USE_RFC_3542 -Xcc -DLLHTTP_STRICT_MODE -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift/CGRPCZlib.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIOLinux.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIOWindows.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIOAtomics.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics/_AtomicsShims.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIODarwin.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIOLLHTTP.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/CNIOBoringSSL.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/CNIOBoringSSLShims.swift.modulemap -Xcc -O0 -Xcc -DDEBUG=1 -Xcc -fstack-protector -Xcc -fstack-protector-all", + "OTHER_SWIFT_FLAGS": "-I$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_protobuf -I$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_log -I$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio -I$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics -I$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_collections -I$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_extras -I$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_http2 -I$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl -I$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_transport_services -I$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift -I$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/GRPC -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_grpc_grpc_swift -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_atomics -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl -Xcc -iquote -Xcc $(PROJECT_DIR) -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_grpc_grpc_swift/Sources/CGRPCZlib/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift/Sources/CGRPCZlib/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOLinux/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOLinux/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOWindows/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOWindows/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOAtomics/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOAtomics/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_atomics/Sources/_AtomicsShims/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics/Sources/_AtomicsShims/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIODarwin/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIODarwin/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOLLHTTP/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOLLHTTP/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/Sources/CNIOBoringSSL/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/Sources/CNIOBoringSSL/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/Sources/CNIOBoringSSLShims/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/Sources/CNIOBoringSSLShims/include -Xcc -DSWIFT_PACKAGE -Xcc -D__APPLE_USE_RFC_3542 -Xcc -DLLHTTP_STRICT_MODE -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift/CGRPCZlib_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIOLinux_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIOWindows_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIOAtomics_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics/_AtomicsShims_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIODarwin_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIOLLHTTP_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/CNIOBoringSSL_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-25/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/CNIOBoringSSLShims_modulemap/_/module.modulemap -Xcc -O0 -Xcc -DDEBUG=1 -Xcc -fstack-protector -Xcc -fstack-protector-all", "PRODUCT_MODULE_NAME": "GRPC_echo_server_library" }, "c": "CONFIGURATION-STABLE-25", @@ -2734,27 +2833,27 @@ "t": "com.apple.product-type.library.static" } }, - "@@//CommandLine/swift_c_module:c_lib CONFIGURATION-STABLE-27", + "@@//CommandLine/swift_interop_hint:c_lib CONFIGURATION-STABLE-27", { - "1": "bazel-out/CONFIGURATION-STABLE-27/bin/CommandLine/swift_c_module", + "1": "bazel-out/CONFIGURATION-STABLE-27/bin/CommandLine/swift_interop_hint", "2": { "a": "x86_64", "m": "11.0", "v": "macosx" }, - "8": "bazel-out/CONFIGURATION-STABLE-27/bin/CommandLine/swift_c_module/c_lib.rules_xcodeproj.c.compile.params", + "8": "bazel-out/CONFIGURATION-STABLE-27/bin/CommandLine/swift_interop_hint/c_lib.rules_xcodeproj.c.compile.params", "c": "CONFIGURATION-STABLE-27", "f": true, "i": { "s": [ - "CommandLine/swift_c_module/c_lib.c" + "CommandLine/swift_interop_hint/c_lib.c" ] }, - "l": "@@//CommandLine/swift_c_module:c_lib", + "l": "@@//CommandLine/swift_interop_hint:c_lib", "n": "c_lib", "p": { "n": "c_lib", - "p": "bazel-out/CONFIGURATION-STABLE-27/bin/CommandLine/swift_c_module/libc_lib.a", + "p": "bazel-out/CONFIGURATION-STABLE-27/bin/CommandLine/swift_interop_hint/libc_lib.a", "t": "com.apple.product-type.library.static" } }, @@ -2825,7 +2924,7 @@ "v": "macosx" }, "b": { - "OTHER_SWIFT_FLAGS": "-I$(BAZEL_OUT)/CONFIGURATION-STABLE-27/bin/CommandLine/CommandLineToolLib -F$(BAZEL_EXTERNAL)/examples_command_line_external -Xcc -F -Xcc $(BAZEL_EXTERNAL)/examples_command_line_external -Xcc -I -Xcc $(SDKROOT)/usr/include/uuid -Xcc -iquote -Xcc $(PROJECT_DIR) -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-27/bin -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/examples_command_line_external -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-27/bin/external/examples_command_line_external -Xcc -DSECRET_3=\"Hello\" -Xcc -DSECRET_2=\"World!\" -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-27/bin/CommandLine/CommandLineToolLib/lib_impl.swift.modulemap -Xcc -fmodule-map-file=$(SRCROOT)/CommandLine/swift_c_module/c_lib.modulemap -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/examples_command_line_external/ExternalFramework.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-27/bin/external/examples_command_line_external/Library.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-27/bin/CommandLine/CommandLineToolLib/private_lib.swift.modulemap -Xcc -O0 -Xcc -DDEBUG=1 -Xcc -fstack-protector -Xcc -fstack-protector-all", + "OTHER_SWIFT_FLAGS": "-I$(BAZEL_OUT)/CONFIGURATION-STABLE-27/bin/CommandLine/CommandLineToolLib -F$(BAZEL_EXTERNAL)/examples_command_line_external -Xcc -F -Xcc $(BAZEL_EXTERNAL)/examples_command_line_external -Xcc -I -Xcc $(SDKROOT)/usr/include/uuid -Xcc -iquote -Xcc $(PROJECT_DIR) -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-27/bin -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/examples_command_line_external -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-27/bin/external/examples_command_line_external -Xcc -DSECRET_3=\"Hello\" -Xcc -DSECRET_2=\"World!\" -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-27/bin/CommandLine/CommandLineToolLib/lib_impl_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(SRCROOT)/CommandLine/swift_interop_hint/c_lib.modulemap -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/examples_command_line_external/ExternalFramework.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-27/bin/external/examples_command_line_external/Library_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-27/bin/CommandLine/CommandLineToolLib/private_lib_modulemap/_/module.modulemap -Xcc -O0 -Xcc -DDEBUG=1 -Xcc -fstack-protector -Xcc -fstack-protector-all", "PRODUCT_MODULE_NAME": "LibSwift", "SWIFT_OBJC_INTERFACE_HEADER_NAME": "private/LibSwift-Swift.h" }, @@ -2865,7 +2964,7 @@ "n": "tool.library" } ], - "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/CommandLineTool.57.link.params", + "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/CommandLineTool.60.link.params", "8": "bazel-out/CONFIGURATION-STABLE-27/bin/CommandLine/CommandLineTool/tool.library.rules_xcodeproj.c.compile.params", "b": { "BAZEL_OUTPUTS_DSYM": [ @@ -2924,27 +3023,27 @@ "t": "com.apple.product-type.library.static" } }, - "@@//CommandLine/swift_c_module:c_lib CONFIGURATION-STABLE-28", + "@@//CommandLine/swift_interop_hint:c_lib CONFIGURATION-STABLE-28", { - "1": "bazel-out/CONFIGURATION-STABLE-28/bin/CommandLine/swift_c_module", + "1": "bazel-out/CONFIGURATION-STABLE-28/bin/CommandLine/swift_interop_hint", "2": { "a": "arm64", "m": "11.0", "v": "macosx" }, - "8": "bazel-out/CONFIGURATION-STABLE-28/bin/CommandLine/swift_c_module/c_lib.rules_xcodeproj.c.compile.params", + "8": "bazel-out/CONFIGURATION-STABLE-28/bin/CommandLine/swift_interop_hint/c_lib.rules_xcodeproj.c.compile.params", "c": "CONFIGURATION-STABLE-28", "f": true, "i": { "s": [ - "CommandLine/swift_c_module/c_lib.c" + "CommandLine/swift_interop_hint/c_lib.c" ] }, - "l": "@@//CommandLine/swift_c_module:c_lib", + "l": "@@//CommandLine/swift_interop_hint:c_lib", "n": "c_lib", "p": { "n": "c_lib", - "p": "bazel-out/CONFIGURATION-STABLE-28/bin/CommandLine/swift_c_module/libc_lib.a", + "p": "bazel-out/CONFIGURATION-STABLE-28/bin/CommandLine/swift_interop_hint/libc_lib.a", "t": "com.apple.product-type.library.static" } }, @@ -3015,7 +3114,7 @@ "v": "macosx" }, "b": { - "OTHER_SWIFT_FLAGS": "-I$(BAZEL_OUT)/CONFIGURATION-STABLE-28/bin/CommandLine/CommandLineToolLib -F$(BAZEL_EXTERNAL)/examples_command_line_external -Xcc -F -Xcc $(BAZEL_EXTERNAL)/examples_command_line_external -Xcc -I -Xcc $(SDKROOT)/usr/include/uuid -Xcc -iquote -Xcc $(PROJECT_DIR) -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-28/bin -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/examples_command_line_external -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-28/bin/external/examples_command_line_external -Xcc -DSECRET_3=\"Hello\" -Xcc -DSECRET_2=\"World!\" -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-28/bin/CommandLine/CommandLineToolLib/lib_impl.swift.modulemap -Xcc -fmodule-map-file=$(SRCROOT)/CommandLine/swift_c_module/c_lib.modulemap -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/examples_command_line_external/ExternalFramework.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-28/bin/external/examples_command_line_external/Library.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-28/bin/CommandLine/CommandLineToolLib/private_lib.swift.modulemap -Xcc -O0 -Xcc -DDEBUG=1 -Xcc -fstack-protector -Xcc -fstack-protector-all", + "OTHER_SWIFT_FLAGS": "-I$(BAZEL_OUT)/CONFIGURATION-STABLE-28/bin/CommandLine/CommandLineToolLib -F$(BAZEL_EXTERNAL)/examples_command_line_external -Xcc -F -Xcc $(BAZEL_EXTERNAL)/examples_command_line_external -Xcc -I -Xcc $(SDKROOT)/usr/include/uuid -Xcc -iquote -Xcc $(PROJECT_DIR) -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-28/bin -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/examples_command_line_external -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-28/bin/external/examples_command_line_external -Xcc -DSECRET_3=\"Hello\" -Xcc -DSECRET_2=\"World!\" -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-28/bin/CommandLine/CommandLineToolLib/lib_impl_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(SRCROOT)/CommandLine/swift_interop_hint/c_lib.modulemap -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/examples_command_line_external/ExternalFramework.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-28/bin/external/examples_command_line_external/Library_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-28/bin/CommandLine/CommandLineToolLib/private_lib_modulemap/_/module.modulemap -Xcc -O0 -Xcc -DDEBUG=1 -Xcc -fstack-protector -Xcc -fstack-protector-all", "PRODUCT_MODULE_NAME": "LibSwift", "SWIFT_OBJC_INTERFACE_HEADER_NAME": "private/LibSwift-Swift.h" }, @@ -3055,7 +3154,7 @@ "n": "tool.library" } ], - "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/UniversalCommandLineTool.63.link.params", + "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/UniversalCommandLineTool.66.link.params", "8": "bazel-out/CONFIGURATION-STABLE-28/bin/CommandLine/CommandLineTool/tool.library.rules_xcodeproj.c.compile.params", "b": { "BAZEL_OUTPUTS_PRODUCT": "bazel-out/CONFIGURATION-STABLE-28/bin/CommandLine/CommandLineTool/tool.binary_codesigned", @@ -3108,27 +3207,27 @@ "t": "com.apple.product-type.library.static" } }, - "@@//CommandLine/swift_c_module:c_lib CONFIGURATION-STABLE-29", + "@@//CommandLine/swift_interop_hint:c_lib CONFIGURATION-STABLE-29", { - "1": "bazel-out/CONFIGURATION-STABLE-29/bin/CommandLine/swift_c_module", + "1": "bazel-out/CONFIGURATION-STABLE-29/bin/CommandLine/swift_interop_hint", "2": { "a": "x86_64", "m": "11.0", "v": "macosx" }, - "8": "bazel-out/CONFIGURATION-STABLE-29/bin/CommandLine/swift_c_module/c_lib.rules_xcodeproj.c.compile.params", + "8": "bazel-out/CONFIGURATION-STABLE-29/bin/CommandLine/swift_interop_hint/c_lib.rules_xcodeproj.c.compile.params", "c": "CONFIGURATION-STABLE-29", "f": true, "i": { "s": [ - "CommandLine/swift_c_module/c_lib.c" + "CommandLine/swift_interop_hint/c_lib.c" ] }, - "l": "@@//CommandLine/swift_c_module:c_lib", + "l": "@@//CommandLine/swift_interop_hint:c_lib", "n": "c_lib", "p": { "n": "c_lib", - "p": "bazel-out/CONFIGURATION-STABLE-29/bin/CommandLine/swift_c_module/libc_lib.a", + "p": "bazel-out/CONFIGURATION-STABLE-29/bin/CommandLine/swift_interop_hint/libc_lib.a", "t": "com.apple.product-type.library.static" } }, @@ -3199,7 +3298,7 @@ "v": "macosx" }, "b": { - "OTHER_SWIFT_FLAGS": "-I$(BAZEL_OUT)/CONFIGURATION-STABLE-29/bin/CommandLine/CommandLineToolLib -F$(BAZEL_EXTERNAL)/examples_command_line_external -Xcc -F -Xcc $(BAZEL_EXTERNAL)/examples_command_line_external -Xcc -I -Xcc $(SDKROOT)/usr/include/uuid -Xcc -iquote -Xcc $(PROJECT_DIR) -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-29/bin -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/examples_command_line_external -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-29/bin/external/examples_command_line_external -Xcc -DSECRET_3=\"Hello\" -Xcc -DSECRET_2=\"World!\" -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-29/bin/CommandLine/CommandLineToolLib/lib_impl.swift.modulemap -Xcc -fmodule-map-file=$(SRCROOT)/CommandLine/swift_c_module/c_lib.modulemap -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/examples_command_line_external/ExternalFramework.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-29/bin/external/examples_command_line_external/Library.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-29/bin/CommandLine/CommandLineToolLib/private_lib.swift.modulemap -Xcc -O0 -Xcc -DDEBUG=1 -Xcc -fstack-protector -Xcc -fstack-protector-all", + "OTHER_SWIFT_FLAGS": "-I$(BAZEL_OUT)/CONFIGURATION-STABLE-29/bin/CommandLine/CommandLineToolLib -F$(BAZEL_EXTERNAL)/examples_command_line_external -Xcc -F -Xcc $(BAZEL_EXTERNAL)/examples_command_line_external -Xcc -I -Xcc $(SDKROOT)/usr/include/uuid -Xcc -iquote -Xcc $(PROJECT_DIR) -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-29/bin -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/examples_command_line_external -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-29/bin/external/examples_command_line_external -Xcc -DSECRET_3=\"Hello\" -Xcc -DSECRET_2=\"World!\" -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-29/bin/CommandLine/CommandLineToolLib/lib_impl_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(SRCROOT)/CommandLine/swift_interop_hint/c_lib.modulemap -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/examples_command_line_external/ExternalFramework.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-29/bin/external/examples_command_line_external/Library_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-29/bin/CommandLine/CommandLineToolLib/private_lib_modulemap/_/module.modulemap -Xcc -O0 -Xcc -DDEBUG=1 -Xcc -fstack-protector -Xcc -fstack-protector-all", "PRODUCT_MODULE_NAME": "LibSwift", "SWIFT_OBJC_INTERFACE_HEADER_NAME": "private/LibSwift-Swift.h" }, @@ -3239,7 +3338,7 @@ "n": "tool.library" } ], - "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/UniversalCommandLineTool.69.link.params", + "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/UniversalCommandLineTool.72.link.params", "8": "bazel-out/CONFIGURATION-STABLE-29/bin/CommandLine/CommandLineTool/tool.library.rules_xcodeproj.c.compile.params", "b": { "BAZEL_OUTPUTS_PRODUCT": "bazel-out/CONFIGURATION-STABLE-29/bin/CommandLine/CommandLineTool/tool.binary_codesigned", @@ -3274,7 +3373,7 @@ "m": "12.0", "v": "macosx" }, - "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/BasicTests.70.link.params", + "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/BasicTests.73.link.params", "b": { "BAZEL_OUTPUTS_PRODUCT": "bazel-out/CONFIGURATION-STABLE-33/bin/CommandLine/Tests/BasicTests.xctest", "BAZEL_OUTPUTS_PRODUCT_BASENAME": "BasicTests.xctest", @@ -3311,7 +3410,7 @@ "n": "CommandLineLibSwiftTestsLib" } ], - "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/CommandLineToolTests.71.link.params", + "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/CommandLineToolTests.74.link.params", "b": { "BAZEL_OUTPUTS_DSYM": [ "\"bazel-out/CONFIGURATION-STABLE-27/bin/CommandLine/Tests/CommandLineToolTests.xctest.dSYM\"" @@ -3320,7 +3419,7 @@ "BAZEL_OUTPUTS_PRODUCT_BASENAME": "CommandLineToolTests.xctest", "CODE_SIGN_STYLE": "Manual", "INFOPLIST_FILE": "$(BAZEL_OUT)/CONFIGURATION-STABLE-27/bin/CommandLine/Tests/rules_xcodeproj/CommandLineToolTests.__internal__.__test_bundle/Info.plist", - "OTHER_SWIFT_FLAGS": "-F$(DEVELOPER_DIR)/Platforms/MacOSX.platform/Developer/Library/Frameworks -I$(DEVELOPER_DIR)/Platforms/MacOSX.platform/Developer/usr/lib -I$(BAZEL_OUT)/CONFIGURATION-STABLE-27/bin/CommandLine/CommandLineToolLib -F$(BAZEL_EXTERNAL)/examples_command_line_external -Xcc -F -Xcc $(BAZEL_EXTERNAL)/examples_command_line_external -Xcc -I -Xcc $(SDKROOT)/usr/include/uuid -Xcc -iquote -Xcc $(PROJECT_DIR) -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-27/bin -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/examples_command_line_external -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-27/bin/external/examples_command_line_external -Xcc -DSECRET_3=\"Hello\" -Xcc -DSECRET_2=\"World!\" -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-27/bin/CommandLine/CommandLineToolLib/lib_impl.swift.modulemap -Xcc -fmodule-map-file=$(SRCROOT)/CommandLine/swift_c_module/c_lib.modulemap -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/examples_command_line_external/ExternalFramework.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-27/bin/external/examples_command_line_external/Library.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-27/bin/CommandLine/CommandLineToolLib/lib_swift.swift.modulemap -Xcc -O0 -Xcc -DDEBUG=1 -Xcc -fstack-protector -Xcc -fstack-protector-all", + "OTHER_SWIFT_FLAGS": "-F$(DEVELOPER_DIR)/Platforms/MacOSX.platform/Developer/Library/Frameworks -I$(DEVELOPER_DIR)/Platforms/MacOSX.platform/Developer/usr/lib -I$(BAZEL_OUT)/CONFIGURATION-STABLE-27/bin/CommandLine/CommandLineToolLib -F$(BAZEL_EXTERNAL)/examples_command_line_external -Xcc -F -Xcc $(BAZEL_EXTERNAL)/examples_command_line_external -Xcc -I -Xcc $(SDKROOT)/usr/include/uuid -Xcc -iquote -Xcc $(PROJECT_DIR) -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-27/bin -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/examples_command_line_external -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-27/bin/external/examples_command_line_external -Xcc -DSECRET_3=\"Hello\" -Xcc -DSECRET_2=\"World!\" -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-27/bin/CommandLine/CommandLineToolLib/lib_impl_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(SRCROOT)/CommandLine/swift_interop_hint/c_lib.modulemap -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/examples_command_line_external/ExternalFramework.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-27/bin/external/examples_command_line_external/Library_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-27/bin/CommandLine/CommandLineToolLib/lib_swift_modulemap/_/module.modulemap -Xcc -O0 -Xcc -DDEBUG=1 -Xcc -fstack-protector -Xcc -fstack-protector-all", "PREVIEWS_SWIFT_INCLUDE__": "", "PREVIEWS_SWIFT_INCLUDE__NO": "", "PREVIEWS_SWIFT_INCLUDE__YES": "-I bazel-out/CONFIGURATION-STABLE-27/bin/CommandLine/Tests", @@ -3408,7 +3507,7 @@ "external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_armv7/CryptoSwift.framework" ] }, - "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/AppClip.73.link.params", + "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/AppClip.76.link.params", "b": { "ASSETCATALOG_COMPILER_APPICON_NAME": "AppIcon", "BAZEL_OUTPUTS_DSYM": [ @@ -3602,7 +3701,7 @@ "external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_armv7/CryptoSwift.framework" ] }, - "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/WidgetExtension.78.link.params", + "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/WidgetExtension.81.link.params", "b": { "APPLICATION_EXTENSION_API_ONLY": true, "BAZEL_OUTPUTS_DSYM": [ @@ -3665,7 +3764,7 @@ "n": "CoreUtilsObjC" } ], - "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/FrameworkCoreUtilsObjC.79.link.params", + "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/FrameworkCoreUtilsObjC.82.link.params", "9": "bazel-out/CONFIGURATION-STABLE-8/bin/iOSApp/Source/CoreUtilsObjC/CoreUtilsObjC.rules_xcodeproj.cxx.compile.params", "F": true, "b": { @@ -3728,7 +3827,7 @@ "bazel-out/CONFIGURATION-STABLE-8/bin/Lib/frameworks/LibFramework.iOS.framework" ] }, - "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/UIFramework.iOS.80.link.params", + "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/UIFramework.iOS.83.link.params", "b": { "APPLICATION_EXTENSION_API_ONLY": true, "BAZEL_OUTPUTS_DSYM": [ @@ -3828,7 +3927,7 @@ "external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/watchos-arm64_32_armv7k/CryptoSwift.framework" ] }, - "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/LibFramework.watchOS.82.link.params", + "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/LibFramework.watchOS.85.link.params", "b": { "APPLICATION_EXTENSION_API_ONLY": true, "BAZEL_OUTPUTS_DSYM": [ @@ -3884,7 +3983,7 @@ "bazel-out/CONFIGURATION-STABLE-9/bin/Lib/frameworks/LibFramework.watchOS.framework" ] }, - "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/UIFramework.watchOS.83.link.params", + "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/UIFramework.watchOS.86.link.params", "7": [ "@@//Lib:LibFramework.watchOS CONFIGURATION-STABLE-9" ], @@ -3958,7 +4057,7 @@ "bazel-out/CONFIGURATION-STABLE-9/bin/Lib/frameworks/LibFramework.watchOS.framework" ] }, - "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/watchOSAppExtension.84.link.params", + "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/watchOSAppExtension.87.link.params", "b": { "APPLICATION_EXTENSION_API_ONLY": true, "BAZEL_OUTPUTS_DSYM": [ @@ -4074,7 +4173,7 @@ "bazel-out/CONFIGURATION-STABLE-8/bin/Lib/frameworks/LibFramework.iOS.framework" ] }, - "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iOSApp.86.link.params", + "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iOSApp.89.link.params", "7": [ "@@//AppClip:AppClip CONFIGURATION-STABLE-8", "@@//WidgetExtension:WidgetExtension CONFIGURATION-STABLE-8", @@ -4107,7 +4206,7 @@ "--digest-algorithm=sha1", "--resource-rules=external/rules_apple~/tools/codesigningtool/disable_signing_resource_rules.plist" ], - "OTHER_SWIFT_FLAGS": "-I$(BAZEL_OUT)/CONFIGURATION-STABLE-8/bin/Lib/UndesiredSchemes -I$(BAZEL_OUT)/CONFIGURATION-STABLE-8/bin/Lib -I$(BAZEL_OUT)/CONFIGURATION-STABLE-8/bin/UI -I$(BAZEL_OUT)/CONFIGURATION-STABLE-8/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_armv7 -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64 -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64 -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64 -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_armv7 -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64 -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64 -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64 -Xcc -I -Xcc $(SRCROOT)/iOSApp/Source/CoreUtilsObjC -Xcc -I -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-8/bin/iOSApp/Source/CoreUtilsObjC -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-8/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -Xcc -iquote -Xcc $(PROJECT_DIR) -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-8/bin -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-8/bin/external/_main~non_module_deps~com_google_google_maps -Xcc \"-DNEEDS_QUOTES=Two words\" -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_armv7/CryptoSwift.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-8/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_objc_modulemap.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-8/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_swift_modulemap.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-8/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_objc_modulemap-module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-8/bin/iOSApp/Source/CoreUtilsObjC/CoreUtilsObjC.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64/GoogleMapsBase.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64/GoogleMapsCore.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64/GoogleMaps.framework/Modules/module.modulemap -Xcc -O0 -Xcc -DDEBUG=1 -Xcc -fstack-protector -Xcc -fstack-protector-all", + "OTHER_SWIFT_FLAGS": "-I$(BAZEL_OUT)/CONFIGURATION-STABLE-8/bin/Lib/UndesiredSchemes -I$(BAZEL_OUT)/CONFIGURATION-STABLE-8/bin/Lib -I$(BAZEL_OUT)/CONFIGURATION-STABLE-8/bin/UI -I$(BAZEL_OUT)/CONFIGURATION-STABLE-8/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_armv7 -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64 -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64 -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64 -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_armv7 -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64 -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64 -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64 -Xcc -I -Xcc $(SRCROOT)/iOSApp/Source/CoreUtilsObjC -Xcc -I -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-8/bin/iOSApp/Source/CoreUtilsObjC -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-8/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -Xcc -iquote -Xcc $(PROJECT_DIR) -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-8/bin -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-8/bin/external/_main~non_module_deps~com_google_google_maps -Xcc \"-DNEEDS_QUOTES=Two words\" -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_armv7/CryptoSwift.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-8/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_objc_modulemap_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-8/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_swift_modulemap_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-8/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_objc_modulemap-module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-8/bin/iOSApp/Source/CoreUtilsObjC/CoreUtilsObjC_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64/GoogleMapsBase.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64/GoogleMapsCore.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64/GoogleMaps.framework/Modules/module.modulemap -Xcc -O0 -Xcc -DDEBUG=1 -Xcc -fstack-protector -Xcc -fstack-protector-all", "PREVIEWS_SWIFT_INCLUDE__": "", "PREVIEWS_SWIFT_INCLUDE__NO": "", "PREVIEWS_SWIFT_INCLUDE__YES": "-I bazel-out/CONFIGURATION-STABLE-8/bin/iOSApp/Source", @@ -4210,7 +4309,7 @@ "external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_armv7/CryptoSwift.framework" ] }, - "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iOS.88.link.params", + "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iOS.91.link.params", "b": { "APPLICATION_EXTENSION_API_ONLY": true, "BAZEL_OUTPUTS_PRODUCT": "bazel-out/CONFIGURATION-STABLE-8/bin/Lib/dist/dynamic/Lib.framework", @@ -4290,7 +4389,7 @@ "external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/tvos-arm64/CryptoSwift.framework" ] }, - "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/tvOS.90.link.params", + "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/tvOS.93.link.params", "b": { "APPLICATION_EXTENSION_API_ONLY": true, "BAZEL_OUTPUTS_PRODUCT": "bazel-out/CONFIGURATION-STABLE-11/bin/Lib/dist/dynamic/Lib.framework", @@ -4335,7 +4434,7 @@ "external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/watchos-arm64_32_armv7k/CryptoSwift.framework" ] }, - "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/watchOS.91.link.params", + "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/watchOS.94.link.params", "b": { "APPLICATION_EXTENSION_API_ONLY": true, "BAZEL_OUTPUTS_PRODUCT": "bazel-out/CONFIGURATION-STABLE-9/bin/Lib/dist/dynamic/Lib.framework", @@ -4380,7 +4479,7 @@ "external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/tvos-arm64/CryptoSwift.framework" ] }, - "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/LibFramework.tvOS.92.link.params", + "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/LibFramework.tvOS.95.link.params", "b": { "APPLICATION_EXTENSION_API_ONLY": true, "BAZEL_OUTPUTS_DSYM": [ @@ -4436,7 +4535,7 @@ "bazel-out/CONFIGURATION-STABLE-11/bin/Lib/frameworks/LibFramework.tvOS.framework" ] }, - "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/UIFramework.tvOS.93.link.params", + "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/UIFramework.tvOS.96.link.params", "7": [ "@@//Lib:LibFramework.tvOS CONFIGURATION-STABLE-11" ], @@ -4510,7 +4609,7 @@ "bazel-out/CONFIGURATION-STABLE-11/bin/Lib/frameworks/LibFramework.tvOS.framework" ] }, - "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/tvOSApp.94.link.params", + "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/tvOSApp.97.link.params", "7": [ "@@//Lib:LibFramework.tvOS CONFIGURATION-STABLE-11", "@@//UI:UIFramework.tvOS CONFIGURATION-STABLE-11" @@ -4676,7 +4775,7 @@ "bazel-out/CONFIGURATION-STABLE-8/bin/Lib/frameworks/LibFramework.iOS.framework" ] }, - "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iOSAppObjCUnitTests.98.link.params", + "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iOSAppObjCUnitTests.101.link.params", "7": [ "@@//AppClip:AppClip CONFIGURATION-STABLE-8", "@@//WidgetExtension:WidgetExtension CONFIGURATION-STABLE-8", @@ -4748,7 +4847,7 @@ "n": "iOSAppUITests.library" } ], - "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iOSAppUITests.99.link.params", + "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iOSAppUITests.102.link.params", "b": { "BAZEL_OUTPUTS_DSYM": [ "\"bazel-out/CONFIGURATION-STABLE-8/bin/iOSApp/Source/CoreUtilsObjC/FrameworkCoreUtilsObjC_dsyms/CoreUtilsObjC.framework.dSYM\"", @@ -4823,7 +4922,7 @@ "bazel-out/CONFIGURATION-STABLE-8/bin/Lib/frameworks/LibFramework.iOS.framework" ] }, - "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iOSAppSwiftUnitTests.100.link.params", + "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iOSAppSwiftUnitTests.103.link.params", "7": [ "@@//AppClip:AppClip CONFIGURATION-STABLE-8", "@@//WidgetExtension:WidgetExtension CONFIGURATION-STABLE-8", @@ -4848,7 +4947,7 @@ "BAZEL_OUTPUTS_PRODUCT_BASENAME": "iOSAppSwiftUnitTests.xctest", "CODE_SIGN_STYLE": "Manual", "INFOPLIST_FILE": "$(BAZEL_OUT)/CONFIGURATION-STABLE-8/bin/iOSApp/Test/SwiftUnitTests/rules_xcodeproj/iOSAppSwiftUnitTests.__internal__.__test_bundle/Info.plist", - "OTHER_SWIFT_FLAGS": "-F$(DEVELOPER_DIR)/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F$(SDKROOT)/Developer/Library/Frameworks -I$(DEVELOPER_DIR)/Platforms/iPhoneOS.platform/Developer/usr/lib -I$(BAZEL_OUT)/CONFIGURATION-STABLE-8/bin/Lib/UndesiredSchemes -I$(BAZEL_OUT)/CONFIGURATION-STABLE-8/bin/Lib -I$(BAZEL_OUT)/CONFIGURATION-STABLE-8/bin/UI -I$(BAZEL_OUT)/CONFIGURATION-STABLE-8/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer -I$(BAZEL_OUT)/CONFIGURATION-STABLE-8/bin/iOSApp/Source -I$(BAZEL_OUT)/CONFIGURATION-STABLE-8/bin/iOSApp/Test/TestingUtils -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_armv7 -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64 -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64 -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64 -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_armv7 -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64 -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64 -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64 -Xcc -I -Xcc $(SRCROOT)/iOSApp/Source/CoreUtilsObjC -Xcc -I -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-8/bin/iOSApp/Source/CoreUtilsObjC -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-8/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -Xcc -iquote -Xcc $(PROJECT_DIR) -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-8/bin -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-8/bin/external/_main~non_module_deps~com_google_google_maps -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~FXPageControl -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-8/bin/external/_main~non_module_deps~FXPageControl -Xcc \"-DNEEDS_QUOTES=Two words\" -Xcc -DAWESOME -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_armv7/CryptoSwift.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-8/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_objc_modulemap.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-8/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_swift_modulemap.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-8/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_objc_modulemap-module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-8/bin/iOSApp/Source/CoreUtilsObjC/CoreUtilsObjC.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64/GoogleMapsBase.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64/GoogleMapsCore.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64/GoogleMaps.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-8/bin/external/_main~non_module_deps~FXPageControl/FXPageControl.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-8/bin/iOSApp/Source/Utils/Utils.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-8/bin/iOSApp/Test/TestingUtils/TestingUtils.swift.modulemap -Xcc -O0 -Xcc -DDEBUG=1 -Xcc -fstack-protector -Xcc -fstack-protector-all", + "OTHER_SWIFT_FLAGS": "-F$(DEVELOPER_DIR)/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F$(SDKROOT)/Developer/Library/Frameworks -I$(DEVELOPER_DIR)/Platforms/iPhoneOS.platform/Developer/usr/lib -I$(BAZEL_OUT)/CONFIGURATION-STABLE-8/bin/Lib/UndesiredSchemes -I$(BAZEL_OUT)/CONFIGURATION-STABLE-8/bin/Lib -I$(BAZEL_OUT)/CONFIGURATION-STABLE-8/bin/UI -I$(BAZEL_OUT)/CONFIGURATION-STABLE-8/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer -I$(BAZEL_OUT)/CONFIGURATION-STABLE-8/bin/iOSApp/Source -I$(BAZEL_OUT)/CONFIGURATION-STABLE-8/bin/iOSApp/Test/TestingUtils -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_armv7 -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64 -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64 -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64 -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_armv7 -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64 -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64 -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64 -Xcc -I -Xcc $(SRCROOT)/iOSApp/Source/CoreUtilsObjC -Xcc -I -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-8/bin/iOSApp/Source/CoreUtilsObjC -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-8/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -Xcc -iquote -Xcc $(PROJECT_DIR) -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-8/bin -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-8/bin/external/_main~non_module_deps~com_google_google_maps -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~FXPageControl -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-8/bin/external/_main~non_module_deps~FXPageControl -Xcc \"-DNEEDS_QUOTES=Two words\" -Xcc -DAWESOME -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_armv7/CryptoSwift.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-8/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_objc_modulemap_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-8/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_swift_modulemap_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-8/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_objc_modulemap-module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-8/bin/iOSApp/Source/CoreUtilsObjC/CoreUtilsObjC_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64/GoogleMapsBase.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64/GoogleMapsCore.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64/GoogleMaps.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-8/bin/external/_main~non_module_deps~FXPageControl/FXPageControl_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-8/bin/iOSApp/Source/Utils/Utils_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-8/bin/iOSApp/Test/TestingUtils/TestingUtils_modulemap/_/module.modulemap -Xcc -O0 -Xcc -DDEBUG=1 -Xcc -fstack-protector -Xcc -fstack-protector-all", "PREVIEWS_SWIFT_INCLUDE__": "", "PREVIEWS_SWIFT_INCLUDE__NO": "", "PREVIEWS_SWIFT_INCLUDE__YES": "-I bazel-out/CONFIGURATION-STABLE-8/bin/iOSApp/Test/SwiftUnitTests", @@ -5009,7 +5108,7 @@ "m": "12.0", "v": "macosx" }, - "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/tool.105.link.params", + "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/tool.108.link.params", "8": "bazel-out/CONFIGURATION-STABLE-2/bin/cc/tool/tool.rules_xcodeproj.c.compile.params", "b": { "BAZEL_OUTPUTS_PRODUCT": "bazel-out/CONFIGURATION-STABLE-2/bin/cc/tool/tool_codesigned", @@ -5093,7 +5192,7 @@ "external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_i386_x86_64-simulator/CryptoSwift.framework" ] }, - "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/AppClip.107.link.params", + "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/AppClip.110.link.params", "b": { "ASSETCATALOG_COMPILER_APPICON_NAME": "AppIcon", "BAZEL_OUTPUTS_DSYM": [ @@ -5304,7 +5403,7 @@ "external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_i386_x86_64-simulator/CryptoSwift.framework" ] }, - "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/WidgetExtension.112.link.params", + "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/WidgetExtension.115.link.params", "b": { "APPLICATION_EXTENSION_API_ONLY": true, "BAZEL_OUTPUTS_DSYM": [ @@ -5370,7 +5469,7 @@ "n": "CoreUtilsObjC" } ], - "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/FrameworkCoreUtilsObjC.113.link.params", + "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/FrameworkCoreUtilsObjC.116.link.params", "9": "bazel-out/CONFIGURATION-STABLE-12/bin/iOSApp/Source/CoreUtilsObjC/CoreUtilsObjC.rules_xcodeproj.cxx.compile.params", "F": true, "b": { @@ -5436,7 +5535,7 @@ "bazel-out/CONFIGURATION-STABLE-12/bin/Lib/frameworks/LibFramework.iOS.framework" ] }, - "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/UIFramework.iOS.114.link.params", + "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/UIFramework.iOS.117.link.params", "b": { "APPLICATION_EXTENSION_API_ONLY": true, "BAZEL_OUTPUTS_DSYM": [ @@ -5544,7 +5643,7 @@ "external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/watchos-arm64_i386_x86_64-simulator/CryptoSwift.framework" ] }, - "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/LibFramework.watchOS.116.link.params", + "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/LibFramework.watchOS.119.link.params", "b": { "APPLICATION_EXTENSION_API_ONLY": true, "BAZEL_OUTPUTS_DSYM": [ @@ -5603,7 +5702,7 @@ "bazel-out/CONFIGURATION-STABLE-13/bin/Lib/frameworks/LibFramework.watchOS.framework" ] }, - "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/UIFramework.watchOS.117.link.params", + "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/UIFramework.watchOS.120.link.params", "7": [ "@@//Lib:LibFramework.watchOS CONFIGURATION-STABLE-13" ], @@ -5681,7 +5780,7 @@ "bazel-out/CONFIGURATION-STABLE-13/bin/Lib/frameworks/LibFramework.watchOS.framework" ] }, - "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/watchOSAppExtension.118.link.params", + "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/watchOSAppExtension.121.link.params", "b": { "APPLICATION_EXTENSION_API_ONLY": true, "BAZEL_OUTPUTS_DSYM": [ @@ -5802,7 +5901,7 @@ "bazel-out/CONFIGURATION-STABLE-12/bin/Lib/frameworks/LibFramework.iOS.framework" ] }, - "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iOSApp.120.link.params", + "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iOSApp.123.link.params", "7": [ "@@//AppClip:AppClip CONFIGURATION-STABLE-12", "@@//WidgetExtension:WidgetExtension CONFIGURATION-STABLE-12", @@ -5830,7 +5929,7 @@ "CODE_SIGN_ENTITLEMENTS": "$(SRCROOT)/iOSApp/Source/ios app.entitlements", "CODE_SIGN_STYLE": "Manual", "INFOPLIST_FILE": "$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/iOSApp/Source/rules_xcodeproj/iOSApp/Info.plist", - "OTHER_SWIFT_FLAGS": "-I$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/Lib/UndesiredSchemes -I$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/Lib -I$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/UI -I$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_i386_x86_64-simulator -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64_x86_64-simulator -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64_x86_64-simulator -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64_x86_64-simulator -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_i386_x86_64-simulator -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64_x86_64-simulator -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64_x86_64-simulator -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64_x86_64-simulator -Xcc -I -Xcc $(SRCROOT)/iOSApp/Source/CoreUtilsObjC -Xcc -I -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/iOSApp/Source/CoreUtilsObjC -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -Xcc -iquote -Xcc $(PROJECT_DIR) -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/external/_main~non_module_deps~com_google_google_maps -Xcc \"-DNEEDS_QUOTES=Two words\" -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_i386_x86_64-simulator/CryptoSwift.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_objc_modulemap.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_swift_modulemap.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_objc_modulemap-module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/iOSApp/Source/CoreUtilsObjC/CoreUtilsObjC.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64_x86_64-simulator/GoogleMapsBase.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64_x86_64-simulator/GoogleMapsCore.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64_x86_64-simulator/GoogleMaps.framework/Modules/module.modulemap -Xcc -Os -Xcc -DNDEBUG=1 -Xcc -Wno-unused-variable -Xcc -Winit-self -Xcc -Wno-extra", + "OTHER_SWIFT_FLAGS": "-I$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/Lib/UndesiredSchemes -I$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/Lib -I$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/UI -I$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_i386_x86_64-simulator -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64_x86_64-simulator -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64_x86_64-simulator -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64_x86_64-simulator -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_i386_x86_64-simulator -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64_x86_64-simulator -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64_x86_64-simulator -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64_x86_64-simulator -Xcc -I -Xcc $(SRCROOT)/iOSApp/Source/CoreUtilsObjC -Xcc -I -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/iOSApp/Source/CoreUtilsObjC -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -Xcc -iquote -Xcc $(PROJECT_DIR) -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/external/_main~non_module_deps~com_google_google_maps -Xcc \"-DNEEDS_QUOTES=Two words\" -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_i386_x86_64-simulator/CryptoSwift.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_objc_modulemap_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_swift_modulemap_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_objc_modulemap-module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/iOSApp/Source/CoreUtilsObjC/CoreUtilsObjC_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64_x86_64-simulator/GoogleMapsBase.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64_x86_64-simulator/GoogleMapsCore.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64_x86_64-simulator/GoogleMaps.framework/Modules/module.modulemap -Xcc -Os -Xcc -DNDEBUG=1 -Xcc -Wno-unused-variable -Xcc -Winit-self -Xcc -Wno-extra", "PREVIEWS_SWIFT_INCLUDE__": "", "PREVIEWS_SWIFT_INCLUDE__NO": "", "PREVIEWS_SWIFT_INCLUDE__YES": "-I bazel-out/CONFIGURATION-STABLE-12/bin/iOSApp/Source", @@ -5940,7 +6039,7 @@ "external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_i386_x86_64-simulator/CryptoSwift.framework" ] }, - "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iOS.122.link.params", + "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iOS.125.link.params", "b": { "APPLICATION_EXTENSION_API_ONLY": true, "BAZEL_OUTPUTS_PRODUCT": "bazel-out/CONFIGURATION-STABLE-12/bin/Lib/dist/dynamic/Lib.framework", @@ -6027,7 +6126,7 @@ "external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/tvos-arm64_x86_64-simulator/CryptoSwift.framework" ] }, - "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/tvOS.124.link.params", + "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/tvOS.127.link.params", "b": { "APPLICATION_EXTENSION_API_ONLY": true, "BAZEL_OUTPUTS_PRODUCT": "bazel-out/CONFIGURATION-STABLE-15/bin/Lib/dist/dynamic/Lib.framework", @@ -6075,7 +6174,7 @@ "external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/watchos-arm64_i386_x86_64-simulator/CryptoSwift.framework" ] }, - "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/watchOS.125.link.params", + "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/watchOS.128.link.params", "b": { "APPLICATION_EXTENSION_API_ONLY": true, "BAZEL_OUTPUTS_PRODUCT": "bazel-out/CONFIGURATION-STABLE-13/bin/Lib/dist/dynamic/Lib.framework", @@ -6123,7 +6222,7 @@ "external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/tvos-arm64_x86_64-simulator/CryptoSwift.framework" ] }, - "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/LibFramework.tvOS.126.link.params", + "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/LibFramework.tvOS.129.link.params", "b": { "APPLICATION_EXTENSION_API_ONLY": true, "BAZEL_OUTPUTS_DSYM": [ @@ -6182,7 +6281,7 @@ "bazel-out/CONFIGURATION-STABLE-15/bin/Lib/frameworks/LibFramework.tvOS.framework" ] }, - "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/UIFramework.tvOS.127.link.params", + "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/UIFramework.tvOS.130.link.params", "7": [ "@@//Lib:LibFramework.tvOS CONFIGURATION-STABLE-15" ], @@ -6260,7 +6359,7 @@ "bazel-out/CONFIGURATION-STABLE-15/bin/Lib/frameworks/LibFramework.tvOS.framework" ] }, - "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/tvOSApp.128.link.params", + "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/tvOSApp.131.link.params", "7": [ "@@//Lib:LibFramework.tvOS CONFIGURATION-STABLE-15", "@@//UI:UIFramework.tvOS CONFIGURATION-STABLE-15" @@ -6329,7 +6428,7 @@ "n": "aplugin.library" } ], - "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/Bundle.129.link.params", + "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/Bundle.132.link.params", "8": "bazel-out/CONFIGURATION-STABLE-16/bin/Bundle/aplugin.library.rules_xcodeproj.c.compile.params", "b": { "BAZEL_OUTPUTS_DSYM": [ @@ -6487,7 +6586,7 @@ "bazel-out/CONFIGURATION-STABLE-12/bin/Lib/frameworks/LibFramework.iOS.framework" ] }, - "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iOSAppObjCUnitTests.133.link.params", + "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iOSAppObjCUnitTests.136.link.params", "7": [ "@@//AppClip:AppClip CONFIGURATION-STABLE-12", "@@//WidgetExtension:WidgetExtension CONFIGURATION-STABLE-12", @@ -6562,7 +6661,7 @@ "n": "iOSAppUITests.library" } ], - "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iOSAppUITests.134.link.params", + "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iOSAppUITests.137.link.params", "b": { "BAZEL_OUTPUTS_DSYM": [ "\"bazel-out/CONFIGURATION-STABLE-12/bin/iOSApp/Source/CoreUtilsObjC/FrameworkCoreUtilsObjC_dsyms/CoreUtilsObjC.framework.dSYM\"", @@ -6677,7 +6776,7 @@ "external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_i386_x86_64-simulator/CryptoSwift.framework" ] }, - "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iMessageAppExtension.136.link.params", + "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iMessageAppExtension.139.link.params", "b": { "APPLICATION_EXTENSION_API_ONLY": true, "BAZEL_OUTPUTS_DSYM": [ @@ -6791,7 +6890,7 @@ "bazel-out/CONFIGURATION-STABLE-12/bin/Lib/frameworks/LibFramework.iOS.framework" ] }, - "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iOSAppSwiftUnitTests.138.link.params", + "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iOSAppSwiftUnitTests.141.link.params", "7": [ "@@//AppClip:AppClip CONFIGURATION-STABLE-12", "@@//WidgetExtension:WidgetExtension CONFIGURATION-STABLE-12", @@ -6816,7 +6915,7 @@ "BAZEL_OUTPUTS_PRODUCT_BASENAME": "iOSAppSwiftUnitTests.xctest", "CODE_SIGN_STYLE": "Manual", "INFOPLIST_FILE": "$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/iOSApp/Test/SwiftUnitTests/rules_xcodeproj/iOSAppSwiftUnitTests.__internal__.__test_bundle/Info.plist", - "OTHER_SWIFT_FLAGS": "-F$(DEVELOPER_DIR)/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks -F$(SDKROOT)/Developer/Library/Frameworks -I$(DEVELOPER_DIR)/Platforms/iPhoneSimulator.platform/Developer/usr/lib -I$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/Lib/UndesiredSchemes -I$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/Lib -I$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/UI -I$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer -I$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/iOSApp/Source -I$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/iOSApp/Test/TestingUtils -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_i386_x86_64-simulator -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64_x86_64-simulator -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64_x86_64-simulator -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64_x86_64-simulator -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_i386_x86_64-simulator -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64_x86_64-simulator -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64_x86_64-simulator -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64_x86_64-simulator -Xcc -I -Xcc $(SRCROOT)/iOSApp/Source/CoreUtilsObjC -Xcc -I -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/iOSApp/Source/CoreUtilsObjC -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -Xcc -iquote -Xcc $(PROJECT_DIR) -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/external/_main~non_module_deps~com_google_google_maps -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~FXPageControl -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/external/_main~non_module_deps~FXPageControl -Xcc \"-DNEEDS_QUOTES=Two words\" -Xcc -DAWESOME -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_i386_x86_64-simulator/CryptoSwift.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_objc_modulemap.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_swift_modulemap.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_objc_modulemap-module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/iOSApp/Source/CoreUtilsObjC/CoreUtilsObjC.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64_x86_64-simulator/GoogleMapsBase.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64_x86_64-simulator/GoogleMapsCore.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64_x86_64-simulator/GoogleMaps.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/external/_main~non_module_deps~FXPageControl/FXPageControl.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/iOSApp/Source/Utils/Utils.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/iOSApp/Test/TestingUtils/TestingUtils.swift.modulemap -Xcc -Os -Xcc -DNDEBUG=1 -Xcc -Wno-unused-variable -Xcc -Winit-self -Xcc -Wno-extra", + "OTHER_SWIFT_FLAGS": "-F$(DEVELOPER_DIR)/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks -F$(SDKROOT)/Developer/Library/Frameworks -I$(DEVELOPER_DIR)/Platforms/iPhoneSimulator.platform/Developer/usr/lib -I$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/Lib/UndesiredSchemes -I$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/Lib -I$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/UI -I$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer -I$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/iOSApp/Source -I$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/iOSApp/Test/TestingUtils -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_i386_x86_64-simulator -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64_x86_64-simulator -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64_x86_64-simulator -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64_x86_64-simulator -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_i386_x86_64-simulator -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64_x86_64-simulator -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64_x86_64-simulator -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64_x86_64-simulator -Xcc -I -Xcc $(SRCROOT)/iOSApp/Source/CoreUtilsObjC -Xcc -I -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/iOSApp/Source/CoreUtilsObjC -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -Xcc -iquote -Xcc $(PROJECT_DIR) -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/external/_main~non_module_deps~com_google_google_maps -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~FXPageControl -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/external/_main~non_module_deps~FXPageControl -Xcc \"-DNEEDS_QUOTES=Two words\" -Xcc -DAWESOME -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_i386_x86_64-simulator/CryptoSwift.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_objc_modulemap_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_swift_modulemap_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_objc_modulemap-module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/iOSApp/Source/CoreUtilsObjC/CoreUtilsObjC_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64_x86_64-simulator/GoogleMapsBase.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64_x86_64-simulator/GoogleMapsCore.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64_x86_64-simulator/GoogleMaps.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/external/_main~non_module_deps~FXPageControl/FXPageControl_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/iOSApp/Source/Utils/Utils_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/iOSApp/Test/TestingUtils/TestingUtils_modulemap/_/module.modulemap -Xcc -Os -Xcc -DNDEBUG=1 -Xcc -Wno-unused-variable -Xcc -Winit-self -Xcc -Wno-extra", "PREVIEWS_SWIFT_INCLUDE__": "", "PREVIEWS_SWIFT_INCLUDE__NO": "", "PREVIEWS_SWIFT_INCLUDE__YES": "-I bazel-out/CONFIGURATION-STABLE-12/bin/iOSApp/Test/SwiftUnitTests", @@ -6915,7 +7014,7 @@ "external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/macos-arm64_x86_64/CryptoSwift.framework" ] }, - "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/macOSLib.framework.140.link.params", + "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/macOSLib.framework.143.link.params", "b": { "APPLICATION_EXTENSION_API_ONLY": true, "BAZEL_OUTPUTS_PRODUCT": "bazel-out/CONFIGURATION-STABLE-16/bin/macOSApp/Source/Lib.framework", @@ -6971,7 +7070,7 @@ "bazel-out/CONFIGURATION-STABLE-16/bin/macOSApp/Source/frameworks/Lib.framework" ] }, - "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/macOSApp.141.link.params", + "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/macOSApp.144.link.params", "7": [ "@@//macOSApp/Source:macOSLib.framework CONFIGURATION-STABLE-16" ], @@ -7040,7 +7139,7 @@ "n": "macOSAppUITests.library" } ], - "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/macOSAppUITests.142.link.params", + "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/macOSAppUITests.145.link.params", "b": { "BAZEL_OUTPUTS_DSYM": [ "\"bazel-out/CONFIGURATION-STABLE-16/bin/macOSApp/Source/macOSLib.framework_dsyms/Lib.framework.dSYM\"", @@ -7103,7 +7202,7 @@ "n": "tvOSAppUITests.library" } ], - "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/tvOSAppUITests.143.link.params", + "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/tvOSAppUITests.146.link.params", "b": { "BAZEL_OUTPUTS_DSYM": [ "\"bazel-out/CONFIGURATION-STABLE-15/bin/Lib/LibFramework.tvOS.framework.dSYM\"", @@ -7175,7 +7274,7 @@ "bazel-out/CONFIGURATION-STABLE-15/bin/Lib/frameworks/LibFramework.tvOS.framework" ] }, - "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/tvOSAppUnitTests.144.link.params", + "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/tvOSAppUnitTests.147.link.params", "7": [ "@@//Lib:LibFramework.tvOS CONFIGURATION-STABLE-15", "@@//UI:UIFramework.tvOS CONFIGURATION-STABLE-15", @@ -7248,7 +7347,7 @@ "n": "watchOSAppUITests.library" } ], - "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/watchOSAppUITests.145.link.params", + "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/watchOSAppUITests.148.link.params", "b": { "BAZEL_OUTPUTS_DSYM": [ "\"bazel-out/CONFIGURATION-STABLE-13/bin/Lib/LibFramework.watchOS.framework.dSYM\"", @@ -7320,7 +7419,7 @@ "bazel-out/CONFIGURATION-STABLE-13/bin/Lib/frameworks/LibFramework.watchOS.framework" ] }, - "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/watchOSAppExtensionUnitTests.146.link.params", + "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/watchOSAppExtensionUnitTests.149.link.params", "7": [ "@@//Lib:LibFramework.watchOS CONFIGURATION-STABLE-13", "@@//UI:UIFramework.watchOS CONFIGURATION-STABLE-13" @@ -7385,7 +7484,7 @@ "n": "iOSAppUITestSuite.library" } ], - "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iOSAppUITestSuite.147.link.params", + "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iOSAppUITestSuite.150.link.params", "b": { "BAZEL_OUTPUTS_DSYM": [ "\"bazel-out/CONFIGURATION-STABLE-12/bin/iOSApp/Source/CoreUtilsObjC/FrameworkCoreUtilsObjC_dsyms/CoreUtilsObjC.framework.dSYM\"", @@ -7463,7 +7562,7 @@ "bazel-out/CONFIGURATION-STABLE-12/bin/Lib/frameworks/LibFramework.iOS.framework" ] }, - "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iOSAppObjCUnitTestSuite.148.link.params", + "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iOSAppObjCUnitTestSuite.151.link.params", "7": [ "@@//AppClip:AppClip CONFIGURATION-STABLE-12", "@@//WidgetExtension:WidgetExtension CONFIGURATION-STABLE-12", @@ -7546,7 +7645,7 @@ "bazel-out/CONFIGURATION-STABLE-12/bin/Lib/frameworks/LibFramework.iOS.framework" ] }, - "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iOSAppSwiftUnitTestSuite.149.link.params", + "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iOSAppSwiftUnitTestSuite.152.link.params", "7": [ "@@//AppClip:AppClip CONFIGURATION-STABLE-12", "@@//WidgetExtension:WidgetExtension CONFIGURATION-STABLE-12", @@ -7571,7 +7670,7 @@ "BAZEL_OUTPUTS_PRODUCT_BASENAME": "iOSAppSwiftUnitTestSuite.xctest", "CODE_SIGN_STYLE": "Manual", "INFOPLIST_FILE": "$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/iOSApp/Test/SwiftUnitTests/rules_xcodeproj/iOSAppSwiftUnitTestSuite.__internal__.__test_bundle/Info.plist", - "OTHER_SWIFT_FLAGS": "-F$(DEVELOPER_DIR)/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks -F$(SDKROOT)/Developer/Library/Frameworks -I$(DEVELOPER_DIR)/Platforms/iPhoneSimulator.platform/Developer/usr/lib -I$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/Lib/UndesiredSchemes -I$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/Lib -I$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/UI -I$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer -I$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/iOSApp/Source -I$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/iOSApp/Test/TestingUtils -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_i386_x86_64-simulator -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64_x86_64-simulator -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64_x86_64-simulator -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64_x86_64-simulator -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_i386_x86_64-simulator -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64_x86_64-simulator -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64_x86_64-simulator -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64_x86_64-simulator -Xcc -I -Xcc $(SRCROOT)/iOSApp/Source/CoreUtilsObjC -Xcc -I -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/iOSApp/Source/CoreUtilsObjC -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -Xcc -iquote -Xcc $(PROJECT_DIR) -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/external/_main~non_module_deps~com_google_google_maps -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~FXPageControl -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/external/_main~non_module_deps~FXPageControl -Xcc \"-DNEEDS_QUOTES=Two words\" -Xcc -DAWESOME -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_i386_x86_64-simulator/CryptoSwift.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_objc_modulemap.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_swift_modulemap.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_objc_modulemap-module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/iOSApp/Source/CoreUtilsObjC/CoreUtilsObjC.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64_x86_64-simulator/GoogleMapsBase.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64_x86_64-simulator/GoogleMapsCore.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64_x86_64-simulator/GoogleMaps.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/external/_main~non_module_deps~FXPageControl/FXPageControl.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/iOSApp/Source/Utils/Utils.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/iOSApp/Test/TestingUtils/TestingUtils.swift.modulemap -Xcc -Os -Xcc -DNDEBUG=1 -Xcc -Wno-unused-variable -Xcc -Winit-self -Xcc -Wno-extra", + "OTHER_SWIFT_FLAGS": "-F$(DEVELOPER_DIR)/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks -F$(SDKROOT)/Developer/Library/Frameworks -I$(DEVELOPER_DIR)/Platforms/iPhoneSimulator.platform/Developer/usr/lib -I$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/Lib/UndesiredSchemes -I$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/Lib -I$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/UI -I$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer -I$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/iOSApp/Source -I$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/iOSApp/Test/TestingUtils -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_i386_x86_64-simulator -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64_x86_64-simulator -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64_x86_64-simulator -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64_x86_64-simulator -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_i386_x86_64-simulator -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64_x86_64-simulator -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64_x86_64-simulator -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64_x86_64-simulator -Xcc -I -Xcc $(SRCROOT)/iOSApp/Source/CoreUtilsObjC -Xcc -I -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/iOSApp/Source/CoreUtilsObjC -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -Xcc -iquote -Xcc $(PROJECT_DIR) -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/external/_main~non_module_deps~com_google_google_maps -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~FXPageControl -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/external/_main~non_module_deps~FXPageControl -Xcc \"-DNEEDS_QUOTES=Two words\" -Xcc -DAWESOME -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_i386_x86_64-simulator/CryptoSwift.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_objc_modulemap_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_swift_modulemap_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_objc_modulemap-module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/iOSApp/Source/CoreUtilsObjC/CoreUtilsObjC_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64_x86_64-simulator/GoogleMapsBase.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64_x86_64-simulator/GoogleMapsCore.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64_x86_64-simulator/GoogleMaps.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/external/_main~non_module_deps~FXPageControl/FXPageControl_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/iOSApp/Source/Utils/Utils_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/iOSApp/Test/TestingUtils/TestingUtils_modulemap/_/module.modulemap -Xcc -Os -Xcc -DNDEBUG=1 -Xcc -Wno-unused-variable -Xcc -Winit-self -Xcc -Wno-extra", "PREVIEWS_SWIFT_INCLUDE__": "", "PREVIEWS_SWIFT_INCLUDE__NO": "", "PREVIEWS_SWIFT_INCLUDE__YES": "-I bazel-out/CONFIGURATION-STABLE-12/bin/iOSApp/Test/SwiftUnitTests", @@ -7618,6 +7717,43 @@ "AppStore" ] }, + "@@//Proto:person_proto_swift CONFIGURATION-STABLE-26", + { + "0": "bazel-out/CONFIGURATION-STABLE-26/bin/Proto/person_proto_swift.rules_xcodeproj.swift.compile.params", + "1": "bazel-out/CONFIGURATION-STABLE-26/bin/Proto", + "2": { + "a": "x86_64", + "m": "11.0", + "v": "macosx" + }, + "b": { + "OTHER_SWIFT_FLAGS": "-I$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_protobuf -Xcc -iquote -Xcc $(PROJECT_DIR) -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin -Xcc -Os -Xcc -DNDEBUG=1 -Xcc -Wno-unused-variable -Xcc -Winit-self -Xcc -Wno-extra", + "PRODUCT_MODULE_NAME": "Proto_person_proto", + "SWIFT_COMPILATION_MODE": "wholemodule" + }, + "c": "CONFIGURATION-STABLE-26", + "i": { + "s": [ + "bazel-out/CONFIGURATION-STABLE-26/bin/Proto/person_proto_swift/gen/Proto/Person.pb.swift" + ] + }, + "l": "@@//Proto:person_proto_swift", + "n": "person_proto_swift", + "o": { + "s": { + "m": "bazel-out/CONFIGURATION-STABLE-26/bin/Proto/Proto_person_proto.swiftmodule" + } + }, + "p": { + "m": "Proto_person_proto", + "n": "person_proto_swift", + "p": "bazel-out/CONFIGURATION-STABLE-26/bin/Proto/libperson_proto_swift.a", + "t": "com.apple.product-type.library.static" + }, + "x": [ + "AppStore" + ] + }, "@@//Proto:proto CONFIGURATION-STABLE-26", { "0": "bazel-out/CONFIGURATION-STABLE-26/bin/Proto/tool.library.rules_xcodeproj.swift.compile.params", @@ -7633,7 +7769,7 @@ "n": "tool.library" } ], - "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/proto.150.link.params", + "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/proto.154.link.params", "b": { "BAZEL_OUTPUTS_DSYM": [ "\"bazel-out/CONFIGURATION-STABLE-26/bin/Proto/proto.dSYM\"" @@ -7671,6 +7807,43 @@ "AppStore" ] }, + "@@//GRPC:echo_client_services_swift CONFIGURATION-STABLE-26", + { + "0": "bazel-out/CONFIGURATION-STABLE-26/bin/GRPC/echo_client_services_swift.rules_xcodeproj.swift.compile.params", + "1": "bazel-out/CONFIGURATION-STABLE-26/bin/GRPC", + "2": { + "a": "x86_64", + "m": "11.0", + "v": "macosx" + }, + "b": { + "OTHER_SWIFT_FLAGS": "-I$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_protobuf -I$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_log -I$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio -I$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics -I$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_collections -I$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_extras -I$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_http2 -I$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl -I$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_transport_services -I$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_grpc_grpc_swift -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_atomics -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl -Xcc -iquote -Xcc $(PROJECT_DIR) -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_grpc_grpc_swift/Sources/CGRPCZlib/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift/Sources/CGRPCZlib/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOLinux/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOLinux/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOWindows/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOWindows/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOAtomics/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOAtomics/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_atomics/Sources/_AtomicsShims/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics/Sources/_AtomicsShims/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIODarwin/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIODarwin/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOLLHTTP/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOLLHTTP/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/Sources/CNIOBoringSSL/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/Sources/CNIOBoringSSL/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/Sources/CNIOBoringSSLShims/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/Sources/CNIOBoringSSLShims/include -Xcc -DSWIFT_PACKAGE -Xcc -D__APPLE_USE_RFC_3542 -Xcc -DLLHTTP_STRICT_MODE -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift/CGRPCZlib_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIOLinux_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIOWindows_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIOAtomics_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics/_AtomicsShims_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIODarwin_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIOLLHTTP_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/CNIOBoringSSL_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/CNIOBoringSSLShims_modulemap/_/module.modulemap -Xcc -Os -Xcc -DNDEBUG=1 -Xcc -Wno-unused-variable -Xcc -Winit-self -Xcc -Wno-extra", + "SWIFT_COMPILATION_MODE": "wholemodule" + }, + "c": "CONFIGURATION-STABLE-26", + "i": { + "s": [ + "bazel-out/CONFIGURATION-STABLE-26/bin/GRPC/echo_client_services_swift/gen/GRPC/echo.grpc.swift", + "bazel-out/CONFIGURATION-STABLE-26/bin/GRPC/echo_client_services_swift/gen/GRPC/echo.pb.swift" + ] + }, + "l": "@@//GRPC:echo_client_services_swift", + "m": true, + "n": "echo_client_services_swift", + "o": { + "s": { + "m": "bazel-out/CONFIGURATION-STABLE-26/bin/GRPC/GRPC_echo_client_services_swift.swiftmodule" + } + }, + "p": { + "n": "echo_client_services_swift", + "p": "bazel-out/CONFIGURATION-STABLE-26/bin/GRPC/libecho_client_services_swift.a", + "t": "com.apple.product-type.library.static" + }, + "x": [ + "AppStore" + ] + }, "@@//GRPC:echo_client CONFIGURATION-STABLE-26", { "0": "bazel-out/CONFIGURATION-STABLE-26/bin/GRPC/echo_client.library.rules_xcodeproj.swift.compile.params", @@ -7686,7 +7859,7 @@ "n": "echo_client.library" } ], - "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/echo_client.151.link.params", + "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/echo_client.156.link.params", "b": { "BAZEL_OUTPUTS_DSYM": [ "\"bazel-out/CONFIGURATION-STABLE-26/bin/GRPC/echo_client.dSYM\"" @@ -7694,7 +7867,7 @@ "BAZEL_OUTPUTS_PRODUCT": "bazel-out/CONFIGURATION-STABLE-26/bin/GRPC/echo_client_codesigned", "BAZEL_OUTPUTS_PRODUCT_BASENAME": "echo_client_codesigned", "INFOPLIST_FILE": "$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/GRPC/rules_xcodeproj/echo_client/Info.plist", - "OTHER_SWIFT_FLAGS": "-I$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_protobuf -I$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/GRPC -I$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_log -I$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio -I$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics -I$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_collections -I$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_extras -I$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_http2 -I$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl -I$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_transport_services -I$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_grpc_grpc_swift -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_atomics -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl -Xcc -iquote -Xcc $(PROJECT_DIR) -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_grpc_grpc_swift/Sources/CGRPCZlib/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift/Sources/CGRPCZlib/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOLinux/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOLinux/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOWindows/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOWindows/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOAtomics/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOAtomics/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_atomics/Sources/_AtomicsShims/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics/Sources/_AtomicsShims/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIODarwin/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIODarwin/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOLLHTTP/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOLLHTTP/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/Sources/CNIOBoringSSL/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/Sources/CNIOBoringSSL/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/Sources/CNIOBoringSSLShims/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/Sources/CNIOBoringSSLShims/include -Xcc -DSWIFT_PACKAGE -Xcc -D__APPLE_USE_RFC_3542 -Xcc -DLLHTTP_STRICT_MODE -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift/CGRPCZlib.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIOLinux.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIOWindows.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIOAtomics.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics/_AtomicsShims.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIODarwin.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIOLLHTTP.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/CNIOBoringSSL.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/CNIOBoringSSLShims.swift.modulemap -Xcc -Os -Xcc -DNDEBUG=1 -Xcc -Wno-unused-variable -Xcc -Winit-self -Xcc -Wno-extra", + "OTHER_SWIFT_FLAGS": "-I$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_protobuf -I$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_log -I$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio -I$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics -I$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_collections -I$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_extras -I$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_http2 -I$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl -I$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_transport_services -I$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift -I$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/GRPC -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_grpc_grpc_swift -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_atomics -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl -Xcc -iquote -Xcc $(PROJECT_DIR) -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_grpc_grpc_swift/Sources/CGRPCZlib/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift/Sources/CGRPCZlib/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOLinux/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOLinux/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOWindows/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOWindows/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOAtomics/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOAtomics/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_atomics/Sources/_AtomicsShims/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics/Sources/_AtomicsShims/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIODarwin/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIODarwin/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOLLHTTP/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOLLHTTP/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/Sources/CNIOBoringSSL/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/Sources/CNIOBoringSSL/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/Sources/CNIOBoringSSLShims/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/Sources/CNIOBoringSSLShims/include -Xcc -DSWIFT_PACKAGE -Xcc -D__APPLE_USE_RFC_3542 -Xcc -DLLHTTP_STRICT_MODE -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift/CGRPCZlib_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIOLinux_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIOWindows_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIOAtomics_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics/_AtomicsShims_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIODarwin_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIOLLHTTP_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/CNIOBoringSSL_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/CNIOBoringSSLShims_modulemap/_/module.modulemap -Xcc -Os -Xcc -DNDEBUG=1 -Xcc -Wno-unused-variable -Xcc -Winit-self -Xcc -Wno-extra", "PRODUCT_MODULE_NAME": "GRPC_echo_client_library", "SWIFT_COMPILATION_MODE": "wholemodule" }, @@ -7725,6 +7898,43 @@ "AppStore" ] }, + "@@//GRPC:echo_server_services_swift CONFIGURATION-STABLE-26", + { + "0": "bazel-out/CONFIGURATION-STABLE-26/bin/GRPC/echo_server_services_swift.rules_xcodeproj.swift.compile.params", + "1": "bazel-out/CONFIGURATION-STABLE-26/bin/GRPC", + "2": { + "a": "x86_64", + "m": "11.0", + "v": "macosx" + }, + "b": { + "OTHER_SWIFT_FLAGS": "-I$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_protobuf -I$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_log -I$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio -I$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics -I$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_collections -I$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_extras -I$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_http2 -I$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl -I$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_transport_services -I$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_grpc_grpc_swift -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_atomics -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl -Xcc -iquote -Xcc $(PROJECT_DIR) -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_grpc_grpc_swift/Sources/CGRPCZlib/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift/Sources/CGRPCZlib/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOLinux/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOLinux/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOWindows/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOWindows/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOAtomics/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOAtomics/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_atomics/Sources/_AtomicsShims/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics/Sources/_AtomicsShims/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIODarwin/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIODarwin/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOLLHTTP/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOLLHTTP/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/Sources/CNIOBoringSSL/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/Sources/CNIOBoringSSL/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/Sources/CNIOBoringSSLShims/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/Sources/CNIOBoringSSLShims/include -Xcc -DSWIFT_PACKAGE -Xcc -D__APPLE_USE_RFC_3542 -Xcc -DLLHTTP_STRICT_MODE -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift/CGRPCZlib_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIOLinux_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIOWindows_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIOAtomics_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics/_AtomicsShims_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIODarwin_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIOLLHTTP_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/CNIOBoringSSL_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/CNIOBoringSSLShims_modulemap/_/module.modulemap -Xcc -Os -Xcc -DNDEBUG=1 -Xcc -Wno-unused-variable -Xcc -Winit-self -Xcc -Wno-extra", + "SWIFT_COMPILATION_MODE": "wholemodule" + }, + "c": "CONFIGURATION-STABLE-26", + "i": { + "s": [ + "bazel-out/CONFIGURATION-STABLE-26/bin/GRPC/echo_server_services_swift/gen/GRPC/echo.pb.swift", + "bazel-out/CONFIGURATION-STABLE-26/bin/GRPC/echo_server_services_swift/gen/GRPC/echo.grpc.swift" + ] + }, + "l": "@@//GRPC:echo_server_services_swift", + "m": true, + "n": "echo_server_services_swift", + "o": { + "s": { + "m": "bazel-out/CONFIGURATION-STABLE-26/bin/GRPC/GRPC_echo_server_services_swift.swiftmodule" + } + }, + "p": { + "n": "echo_server_services_swift", + "p": "bazel-out/CONFIGURATION-STABLE-26/bin/GRPC/libecho_server_services_swift.a", + "t": "com.apple.product-type.library.static" + }, + "x": [ + "AppStore" + ] + }, "@@//GRPC:echo_server CONFIGURATION-STABLE-26", { "0": "bazel-out/CONFIGURATION-STABLE-26/bin/GRPC/echo_server.library.rules_xcodeproj.swift.compile.params", @@ -7740,7 +7950,7 @@ "n": "echo_server.library" } ], - "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/echo_server.152.link.params", + "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/echo_server.158.link.params", "b": { "BAZEL_OUTPUTS_DSYM": [ "\"bazel-out/CONFIGURATION-STABLE-26/bin/GRPC/echo_server.dSYM\"" @@ -7748,7 +7958,7 @@ "BAZEL_OUTPUTS_PRODUCT": "bazel-out/CONFIGURATION-STABLE-26/bin/GRPC/echo_server_codesigned", "BAZEL_OUTPUTS_PRODUCT_BASENAME": "echo_server_codesigned", "INFOPLIST_FILE": "$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/GRPC/rules_xcodeproj/echo_server/Info.plist", - "OTHER_SWIFT_FLAGS": "-I$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_protobuf -I$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/GRPC -I$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_log -I$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio -I$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics -I$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_collections -I$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_extras -I$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_http2 -I$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl -I$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_transport_services -I$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_grpc_grpc_swift -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_atomics -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl -Xcc -iquote -Xcc $(PROJECT_DIR) -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_grpc_grpc_swift/Sources/CGRPCZlib/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift/Sources/CGRPCZlib/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOLinux/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOLinux/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOWindows/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOWindows/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOAtomics/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOAtomics/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_atomics/Sources/_AtomicsShims/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics/Sources/_AtomicsShims/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIODarwin/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIODarwin/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOLLHTTP/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOLLHTTP/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/Sources/CNIOBoringSSL/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/Sources/CNIOBoringSSL/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/Sources/CNIOBoringSSLShims/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/Sources/CNIOBoringSSLShims/include -Xcc -DSWIFT_PACKAGE -Xcc -D__APPLE_USE_RFC_3542 -Xcc -DLLHTTP_STRICT_MODE -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift/CGRPCZlib.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIOLinux.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIOWindows.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIOAtomics.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics/_AtomicsShims.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIODarwin.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIOLLHTTP.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/CNIOBoringSSL.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/CNIOBoringSSLShims.swift.modulemap -Xcc -Os -Xcc -DNDEBUG=1 -Xcc -Wno-unused-variable -Xcc -Winit-self -Xcc -Wno-extra", + "OTHER_SWIFT_FLAGS": "-I$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_protobuf -I$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_log -I$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio -I$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics -I$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_collections -I$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_extras -I$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_http2 -I$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl -I$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_transport_services -I$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift -I$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/GRPC -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_grpc_grpc_swift -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_atomics -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl -Xcc -iquote -Xcc $(PROJECT_DIR) -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_grpc_grpc_swift/Sources/CGRPCZlib/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift/Sources/CGRPCZlib/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOLinux/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOLinux/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOWindows/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOWindows/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOAtomics/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOAtomics/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_atomics/Sources/_AtomicsShims/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics/Sources/_AtomicsShims/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIODarwin/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIODarwin/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOLLHTTP/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/Sources/CNIOLLHTTP/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/Sources/CNIOBoringSSL/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/Sources/CNIOBoringSSL/include -Xcc -isystem -Xcc $(BAZEL_EXTERNAL)/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/Sources/CNIOBoringSSLShims/include -Xcc -isystem -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/Sources/CNIOBoringSSLShims/include -Xcc -DSWIFT_PACKAGE -Xcc -D__APPLE_USE_RFC_3542 -Xcc -DLLHTTP_STRICT_MODE -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_grpc_grpc_swift/CGRPCZlib_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIOLinux_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIOWindows_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIOAtomics_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_atomics/_AtomicsShims_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIODarwin_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio/CNIOLLHTTP_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/CNIOBoringSSL_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-26/bin/external/rules_swift~~non_module_deps~com_github_apple_swift_nio_ssl/CNIOBoringSSLShims_modulemap/_/module.modulemap -Xcc -Os -Xcc -DNDEBUG=1 -Xcc -Wno-unused-variable -Xcc -Winit-self -Xcc -Wno-extra", "PRODUCT_MODULE_NAME": "GRPC_echo_server_library", "SWIFT_COMPILATION_MODE": "wholemodule" }, @@ -7809,27 +8019,27 @@ "AppStore" ] }, - "@@//CommandLine/swift_c_module:c_lib CONFIGURATION-STABLE-30", + "@@//CommandLine/swift_interop_hint:c_lib CONFIGURATION-STABLE-30", { - "1": "bazel-out/CONFIGURATION-STABLE-30/bin/CommandLine/swift_c_module", + "1": "bazel-out/CONFIGURATION-STABLE-30/bin/CommandLine/swift_interop_hint", "2": { "a": "x86_64", "m": "11.0", "v": "macosx" }, - "8": "bazel-out/CONFIGURATION-STABLE-30/bin/CommandLine/swift_c_module/c_lib.rules_xcodeproj.c.compile.params", + "8": "bazel-out/CONFIGURATION-STABLE-30/bin/CommandLine/swift_interop_hint/c_lib.rules_xcodeproj.c.compile.params", "c": "CONFIGURATION-STABLE-30", "f": true, "i": { "s": [ - "CommandLine/swift_c_module/c_lib.c" + "CommandLine/swift_interop_hint/c_lib.c" ] }, - "l": "@@//CommandLine/swift_c_module:c_lib", + "l": "@@//CommandLine/swift_interop_hint:c_lib", "n": "c_lib", "p": { "n": "c_lib", - "p": "bazel-out/CONFIGURATION-STABLE-30/bin/CommandLine/swift_c_module/libc_lib.a", + "p": "bazel-out/CONFIGURATION-STABLE-30/bin/CommandLine/swift_interop_hint/libc_lib.a", "t": "com.apple.product-type.library.static" }, "x": [ @@ -7910,7 +8120,7 @@ "v": "macosx" }, "b": { - "OTHER_SWIFT_FLAGS": "-I$(BAZEL_OUT)/CONFIGURATION-STABLE-30/bin/CommandLine/CommandLineToolLib -F$(BAZEL_EXTERNAL)/examples_command_line_external -Xcc -F -Xcc $(BAZEL_EXTERNAL)/examples_command_line_external -Xcc -I -Xcc $(SDKROOT)/usr/include/uuid -Xcc -iquote -Xcc $(PROJECT_DIR) -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-30/bin -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/examples_command_line_external -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-30/bin/external/examples_command_line_external -Xcc -DSECRET_3=\"Hello\" -Xcc -DSECRET_2=\"World!\" -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-30/bin/CommandLine/CommandLineToolLib/lib_impl.swift.modulemap -Xcc -fmodule-map-file=$(SRCROOT)/CommandLine/swift_c_module/c_lib.modulemap -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/examples_command_line_external/ExternalFramework.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-30/bin/external/examples_command_line_external/Library.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-30/bin/CommandLine/CommandLineToolLib/private_lib.swift.modulemap -Xcc -Os -Xcc -DNDEBUG=1 -Xcc -Wno-unused-variable -Xcc -Winit-self -Xcc -Wno-extra", + "OTHER_SWIFT_FLAGS": "-I$(BAZEL_OUT)/CONFIGURATION-STABLE-30/bin/CommandLine/CommandLineToolLib -F$(BAZEL_EXTERNAL)/examples_command_line_external -Xcc -F -Xcc $(BAZEL_EXTERNAL)/examples_command_line_external -Xcc -I -Xcc $(SDKROOT)/usr/include/uuid -Xcc -iquote -Xcc $(PROJECT_DIR) -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-30/bin -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/examples_command_line_external -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-30/bin/external/examples_command_line_external -Xcc -DSECRET_3=\"Hello\" -Xcc -DSECRET_2=\"World!\" -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-30/bin/CommandLine/CommandLineToolLib/lib_impl_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(SRCROOT)/CommandLine/swift_interop_hint/c_lib.modulemap -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/examples_command_line_external/ExternalFramework.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-30/bin/external/examples_command_line_external/Library_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-30/bin/CommandLine/CommandLineToolLib/private_lib_modulemap/_/module.modulemap -Xcc -Os -Xcc -DNDEBUG=1 -Xcc -Wno-unused-variable -Xcc -Winit-self -Xcc -Wno-extra", "PRODUCT_MODULE_NAME": "LibSwift", "SWIFT_COMPILATION_MODE": "wholemodule", "SWIFT_OBJC_INTERFACE_HEADER_NAME": "private/LibSwift-Swift.h" @@ -7954,7 +8164,7 @@ "n": "tool.library" } ], - "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/CommandLineTool.158.link.params", + "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/CommandLineTool.164.link.params", "8": "bazel-out/CONFIGURATION-STABLE-30/bin/CommandLine/CommandLineTool/tool.library.rules_xcodeproj.c.compile.params", "b": { "BAZEL_OUTPUTS_DSYM": [ @@ -8019,27 +8229,27 @@ "AppStore" ] }, - "@@//CommandLine/swift_c_module:c_lib CONFIGURATION-STABLE-31", + "@@//CommandLine/swift_interop_hint:c_lib CONFIGURATION-STABLE-31", { - "1": "bazel-out/CONFIGURATION-STABLE-31/bin/CommandLine/swift_c_module", + "1": "bazel-out/CONFIGURATION-STABLE-31/bin/CommandLine/swift_interop_hint", "2": { "a": "arm64", "m": "11.0", "v": "macosx" }, - "8": "bazel-out/CONFIGURATION-STABLE-31/bin/CommandLine/swift_c_module/c_lib.rules_xcodeproj.c.compile.params", + "8": "bazel-out/CONFIGURATION-STABLE-31/bin/CommandLine/swift_interop_hint/c_lib.rules_xcodeproj.c.compile.params", "c": "CONFIGURATION-STABLE-31", "f": true, "i": { "s": [ - "CommandLine/swift_c_module/c_lib.c" + "CommandLine/swift_interop_hint/c_lib.c" ] }, - "l": "@@//CommandLine/swift_c_module:c_lib", + "l": "@@//CommandLine/swift_interop_hint:c_lib", "n": "c_lib", "p": { "n": "c_lib", - "p": "bazel-out/CONFIGURATION-STABLE-31/bin/CommandLine/swift_c_module/libc_lib.a", + "p": "bazel-out/CONFIGURATION-STABLE-31/bin/CommandLine/swift_interop_hint/libc_lib.a", "t": "com.apple.product-type.library.static" }, "x": [ @@ -8120,7 +8330,7 @@ "v": "macosx" }, "b": { - "OTHER_SWIFT_FLAGS": "-I$(BAZEL_OUT)/CONFIGURATION-STABLE-31/bin/CommandLine/CommandLineToolLib -F$(BAZEL_EXTERNAL)/examples_command_line_external -Xcc -F -Xcc $(BAZEL_EXTERNAL)/examples_command_line_external -Xcc -I -Xcc $(SDKROOT)/usr/include/uuid -Xcc -iquote -Xcc $(PROJECT_DIR) -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-31/bin -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/examples_command_line_external -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-31/bin/external/examples_command_line_external -Xcc -DSECRET_3=\"Hello\" -Xcc -DSECRET_2=\"World!\" -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-31/bin/CommandLine/CommandLineToolLib/lib_impl.swift.modulemap -Xcc -fmodule-map-file=$(SRCROOT)/CommandLine/swift_c_module/c_lib.modulemap -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/examples_command_line_external/ExternalFramework.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-31/bin/external/examples_command_line_external/Library.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-31/bin/CommandLine/CommandLineToolLib/private_lib.swift.modulemap -Xcc -Os -Xcc -DNDEBUG=1 -Xcc -Wno-unused-variable -Xcc -Winit-self -Xcc -Wno-extra", + "OTHER_SWIFT_FLAGS": "-I$(BAZEL_OUT)/CONFIGURATION-STABLE-31/bin/CommandLine/CommandLineToolLib -F$(BAZEL_EXTERNAL)/examples_command_line_external -Xcc -F -Xcc $(BAZEL_EXTERNAL)/examples_command_line_external -Xcc -I -Xcc $(SDKROOT)/usr/include/uuid -Xcc -iquote -Xcc $(PROJECT_DIR) -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-31/bin -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/examples_command_line_external -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-31/bin/external/examples_command_line_external -Xcc -DSECRET_3=\"Hello\" -Xcc -DSECRET_2=\"World!\" -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-31/bin/CommandLine/CommandLineToolLib/lib_impl_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(SRCROOT)/CommandLine/swift_interop_hint/c_lib.modulemap -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/examples_command_line_external/ExternalFramework.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-31/bin/external/examples_command_line_external/Library_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-31/bin/CommandLine/CommandLineToolLib/private_lib_modulemap/_/module.modulemap -Xcc -Os -Xcc -DNDEBUG=1 -Xcc -Wno-unused-variable -Xcc -Winit-self -Xcc -Wno-extra", "PRODUCT_MODULE_NAME": "LibSwift", "SWIFT_COMPILATION_MODE": "wholemodule", "SWIFT_OBJC_INTERFACE_HEADER_NAME": "private/LibSwift-Swift.h" @@ -8164,7 +8374,7 @@ "n": "tool.library" } ], - "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/UniversalCommandLineTool.164.link.params", + "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/UniversalCommandLineTool.170.link.params", "8": "bazel-out/CONFIGURATION-STABLE-31/bin/CommandLine/CommandLineTool/tool.library.rules_xcodeproj.c.compile.params", "b": { "BAZEL_OUTPUTS_PRODUCT": "bazel-out/CONFIGURATION-STABLE-31/bin/CommandLine/CommandLineTool/tool.binary_codesigned", @@ -8223,27 +8433,27 @@ "AppStore" ] }, - "@@//CommandLine/swift_c_module:c_lib CONFIGURATION-STABLE-32", + "@@//CommandLine/swift_interop_hint:c_lib CONFIGURATION-STABLE-32", { - "1": "bazel-out/CONFIGURATION-STABLE-32/bin/CommandLine/swift_c_module", + "1": "bazel-out/CONFIGURATION-STABLE-32/bin/CommandLine/swift_interop_hint", "2": { "a": "x86_64", "m": "11.0", "v": "macosx" }, - "8": "bazel-out/CONFIGURATION-STABLE-32/bin/CommandLine/swift_c_module/c_lib.rules_xcodeproj.c.compile.params", + "8": "bazel-out/CONFIGURATION-STABLE-32/bin/CommandLine/swift_interop_hint/c_lib.rules_xcodeproj.c.compile.params", "c": "CONFIGURATION-STABLE-32", "f": true, "i": { "s": [ - "CommandLine/swift_c_module/c_lib.c" + "CommandLine/swift_interop_hint/c_lib.c" ] }, - "l": "@@//CommandLine/swift_c_module:c_lib", + "l": "@@//CommandLine/swift_interop_hint:c_lib", "n": "c_lib", "p": { "n": "c_lib", - "p": "bazel-out/CONFIGURATION-STABLE-32/bin/CommandLine/swift_c_module/libc_lib.a", + "p": "bazel-out/CONFIGURATION-STABLE-32/bin/CommandLine/swift_interop_hint/libc_lib.a", "t": "com.apple.product-type.library.static" }, "x": [ @@ -8324,7 +8534,7 @@ "v": "macosx" }, "b": { - "OTHER_SWIFT_FLAGS": "-I$(BAZEL_OUT)/CONFIGURATION-STABLE-32/bin/CommandLine/CommandLineToolLib -F$(BAZEL_EXTERNAL)/examples_command_line_external -Xcc -F -Xcc $(BAZEL_EXTERNAL)/examples_command_line_external -Xcc -I -Xcc $(SDKROOT)/usr/include/uuid -Xcc -iquote -Xcc $(PROJECT_DIR) -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-32/bin -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/examples_command_line_external -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-32/bin/external/examples_command_line_external -Xcc -DSECRET_3=\"Hello\" -Xcc -DSECRET_2=\"World!\" -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-32/bin/CommandLine/CommandLineToolLib/lib_impl.swift.modulemap -Xcc -fmodule-map-file=$(SRCROOT)/CommandLine/swift_c_module/c_lib.modulemap -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/examples_command_line_external/ExternalFramework.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-32/bin/external/examples_command_line_external/Library.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-32/bin/CommandLine/CommandLineToolLib/private_lib.swift.modulemap -Xcc -Os -Xcc -DNDEBUG=1 -Xcc -Wno-unused-variable -Xcc -Winit-self -Xcc -Wno-extra", + "OTHER_SWIFT_FLAGS": "-I$(BAZEL_OUT)/CONFIGURATION-STABLE-32/bin/CommandLine/CommandLineToolLib -F$(BAZEL_EXTERNAL)/examples_command_line_external -Xcc -F -Xcc $(BAZEL_EXTERNAL)/examples_command_line_external -Xcc -I -Xcc $(SDKROOT)/usr/include/uuid -Xcc -iquote -Xcc $(PROJECT_DIR) -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-32/bin -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/examples_command_line_external -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-32/bin/external/examples_command_line_external -Xcc -DSECRET_3=\"Hello\" -Xcc -DSECRET_2=\"World!\" -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-32/bin/CommandLine/CommandLineToolLib/lib_impl_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(SRCROOT)/CommandLine/swift_interop_hint/c_lib.modulemap -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/examples_command_line_external/ExternalFramework.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-32/bin/external/examples_command_line_external/Library_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-32/bin/CommandLine/CommandLineToolLib/private_lib_modulemap/_/module.modulemap -Xcc -Os -Xcc -DNDEBUG=1 -Xcc -Wno-unused-variable -Xcc -Winit-self -Xcc -Wno-extra", "PRODUCT_MODULE_NAME": "LibSwift", "SWIFT_COMPILATION_MODE": "wholemodule", "SWIFT_OBJC_INTERFACE_HEADER_NAME": "private/LibSwift-Swift.h" @@ -8368,7 +8578,7 @@ "n": "tool.library" } ], - "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/UniversalCommandLineTool.170.link.params", + "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/UniversalCommandLineTool.176.link.params", "8": "bazel-out/CONFIGURATION-STABLE-32/bin/CommandLine/CommandLineTool/tool.library.rules_xcodeproj.c.compile.params", "b": { "BAZEL_OUTPUTS_PRODUCT": "bazel-out/CONFIGURATION-STABLE-32/bin/CommandLine/CommandLineTool/tool.binary_codesigned", @@ -8406,7 +8616,7 @@ "m": "12.0", "v": "macosx" }, - "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/BasicTests.171.link.params", + "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/BasicTests.177.link.params", "b": { "BAZEL_OUTPUTS_PRODUCT": "bazel-out/CONFIGURATION-STABLE-34/bin/CommandLine/Tests/BasicTests.xctest", "BAZEL_OUTPUTS_PRODUCT_BASENAME": "BasicTests.xctest", @@ -8447,7 +8657,7 @@ "n": "CommandLineLibSwiftTestsLib" } ], - "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/CommandLineToolTests.172.link.params", + "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/CommandLineToolTests.178.link.params", "b": { "BAZEL_OUTPUTS_DSYM": [ "\"bazel-out/CONFIGURATION-STABLE-30/bin/CommandLine/Tests/CommandLineToolTests.xctest.dSYM\"" @@ -8456,7 +8666,7 @@ "BAZEL_OUTPUTS_PRODUCT_BASENAME": "CommandLineToolTests.xctest", "CODE_SIGN_STYLE": "Manual", "INFOPLIST_FILE": "$(BAZEL_OUT)/CONFIGURATION-STABLE-30/bin/CommandLine/Tests/rules_xcodeproj/CommandLineToolTests.__internal__.__test_bundle/Info.plist", - "OTHER_SWIFT_FLAGS": "-F$(DEVELOPER_DIR)/Platforms/MacOSX.platform/Developer/Library/Frameworks -I$(DEVELOPER_DIR)/Platforms/MacOSX.platform/Developer/usr/lib -I$(BAZEL_OUT)/CONFIGURATION-STABLE-30/bin/CommandLine/CommandLineToolLib -F$(BAZEL_EXTERNAL)/examples_command_line_external -Xcc -F -Xcc $(BAZEL_EXTERNAL)/examples_command_line_external -Xcc -I -Xcc $(SDKROOT)/usr/include/uuid -Xcc -iquote -Xcc $(PROJECT_DIR) -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-30/bin -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/examples_command_line_external -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-30/bin/external/examples_command_line_external -Xcc -DSECRET_3=\"Hello\" -Xcc -DSECRET_2=\"World!\" -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-30/bin/CommandLine/CommandLineToolLib/lib_impl.swift.modulemap -Xcc -fmodule-map-file=$(SRCROOT)/CommandLine/swift_c_module/c_lib.modulemap -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/examples_command_line_external/ExternalFramework.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-30/bin/external/examples_command_line_external/Library.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-30/bin/CommandLine/CommandLineToolLib/lib_swift.swift.modulemap -Xcc -Os -Xcc -DNDEBUG=1 -Xcc -Wno-unused-variable -Xcc -Winit-self -Xcc -Wno-extra", + "OTHER_SWIFT_FLAGS": "-F$(DEVELOPER_DIR)/Platforms/MacOSX.platform/Developer/Library/Frameworks -I$(DEVELOPER_DIR)/Platforms/MacOSX.platform/Developer/usr/lib -I$(BAZEL_OUT)/CONFIGURATION-STABLE-30/bin/CommandLine/CommandLineToolLib -F$(BAZEL_EXTERNAL)/examples_command_line_external -Xcc -F -Xcc $(BAZEL_EXTERNAL)/examples_command_line_external -Xcc -I -Xcc $(SDKROOT)/usr/include/uuid -Xcc -iquote -Xcc $(PROJECT_DIR) -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-30/bin -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/examples_command_line_external -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-30/bin/external/examples_command_line_external -Xcc -DSECRET_3=\"Hello\" -Xcc -DSECRET_2=\"World!\" -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-30/bin/CommandLine/CommandLineToolLib/lib_impl_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(SRCROOT)/CommandLine/swift_interop_hint/c_lib.modulemap -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/examples_command_line_external/ExternalFramework.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-30/bin/external/examples_command_line_external/Library_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-30/bin/CommandLine/CommandLineToolLib/lib_swift_modulemap/_/module.modulemap -Xcc -Os -Xcc -DNDEBUG=1 -Xcc -Wno-unused-variable -Xcc -Winit-self -Xcc -Wno-extra", "PREVIEWS_SWIFT_INCLUDE__": "", "PREVIEWS_SWIFT_INCLUDE__NO": "", "PREVIEWS_SWIFT_INCLUDE__YES": "-I bazel-out/CONFIGURATION-STABLE-30/bin/CommandLine/Tests", @@ -8552,7 +8762,7 @@ "external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_armv7/CryptoSwift.framework" ] }, - "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/AppClip.174.link.params", + "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/AppClip.180.link.params", "b": { "ASSETCATALOG_COMPILER_APPICON_NAME": "AppIcon", "BAZEL_OUTPUTS_DSYM": [ @@ -8764,7 +8974,7 @@ "external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_armv7/CryptoSwift.framework" ] }, - "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/WidgetExtension.179.link.params", + "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/WidgetExtension.185.link.params", "b": { "APPLICATION_EXTENSION_API_ONLY": true, "BAZEL_OUTPUTS_DSYM": [ @@ -8831,7 +9041,7 @@ "n": "CoreUtilsObjC" } ], - "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/FrameworkCoreUtilsObjC.180.link.params", + "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/FrameworkCoreUtilsObjC.186.link.params", "9": "bazel-out/CONFIGURATION-STABLE-17/bin/iOSApp/Source/CoreUtilsObjC/CoreUtilsObjC.rules_xcodeproj.cxx.compile.params", "F": true, "b": { @@ -8897,7 +9107,7 @@ "bazel-out/CONFIGURATION-STABLE-17/bin/Lib/frameworks/LibFramework.iOS.framework" ] }, - "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/UIFramework.iOS.181.link.params", + "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/UIFramework.iOS.187.link.params", "b": { "APPLICATION_EXTENSION_API_ONLY": true, "BAZEL_OUTPUTS_DSYM": [ @@ -9005,7 +9215,7 @@ "external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/watchos-arm64_32_armv7k/CryptoSwift.framework" ] }, - "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/LibFramework.watchOS.183.link.params", + "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/LibFramework.watchOS.189.link.params", "b": { "APPLICATION_EXTENSION_API_ONLY": true, "BAZEL_OUTPUTS_DSYM": [ @@ -9064,7 +9274,7 @@ "bazel-out/CONFIGURATION-STABLE-18/bin/Lib/frameworks/LibFramework.watchOS.framework" ] }, - "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/UIFramework.watchOS.184.link.params", + "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/UIFramework.watchOS.190.link.params", "7": [ "@@//Lib:LibFramework.watchOS CONFIGURATION-STABLE-18" ], @@ -9142,7 +9352,7 @@ "bazel-out/CONFIGURATION-STABLE-18/bin/Lib/frameworks/LibFramework.watchOS.framework" ] }, - "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/watchOSAppExtension.185.link.params", + "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/watchOSAppExtension.191.link.params", "b": { "APPLICATION_EXTENSION_API_ONLY": true, "BAZEL_OUTPUTS_DSYM": [ @@ -9265,7 +9475,7 @@ "bazel-out/CONFIGURATION-STABLE-17/bin/Lib/frameworks/LibFramework.iOS.framework" ] }, - "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iOSApp.187.link.params", + "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iOSApp.193.link.params", "7": [ "@@//AppClip:AppClip CONFIGURATION-STABLE-17", "@@//WidgetExtension:WidgetExtension CONFIGURATION-STABLE-17", @@ -9294,7 +9504,7 @@ "CODE_SIGN_STYLE": "Automatic", "DEVELOPMENT_TEAM": "V82V4GQZXM", "INFOPLIST_FILE": "$(BAZEL_OUT)/CONFIGURATION-STABLE-17/bin/iOSApp/Source/rules_xcodeproj/iOSApp/Info.plist", - "OTHER_SWIFT_FLAGS": "-I$(BAZEL_OUT)/CONFIGURATION-STABLE-17/bin/Lib/UndesiredSchemes -I$(BAZEL_OUT)/CONFIGURATION-STABLE-17/bin/Lib -I$(BAZEL_OUT)/CONFIGURATION-STABLE-17/bin/UI -I$(BAZEL_OUT)/CONFIGURATION-STABLE-17/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_armv7 -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64 -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64 -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64 -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_armv7 -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64 -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64 -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64 -Xcc -I -Xcc $(SRCROOT)/iOSApp/Source/CoreUtilsObjC -Xcc -I -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-17/bin/iOSApp/Source/CoreUtilsObjC -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-17/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -Xcc -iquote -Xcc $(PROJECT_DIR) -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-17/bin -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-17/bin/external/_main~non_module_deps~com_google_google_maps -Xcc \"-DNEEDS_QUOTES=Two words\" -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_armv7/CryptoSwift.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-17/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_objc_modulemap.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-17/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_swift_modulemap.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-17/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_objc_modulemap-module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-17/bin/iOSApp/Source/CoreUtilsObjC/CoreUtilsObjC.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64/GoogleMapsBase.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64/GoogleMapsCore.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64/GoogleMaps.framework/Modules/module.modulemap -Xcc -Os -Xcc -DNDEBUG=1 -Xcc -Wno-unused-variable -Xcc -Winit-self -Xcc -Wno-extra", + "OTHER_SWIFT_FLAGS": "-I$(BAZEL_OUT)/CONFIGURATION-STABLE-17/bin/Lib/UndesiredSchemes -I$(BAZEL_OUT)/CONFIGURATION-STABLE-17/bin/Lib -I$(BAZEL_OUT)/CONFIGURATION-STABLE-17/bin/UI -I$(BAZEL_OUT)/CONFIGURATION-STABLE-17/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_armv7 -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64 -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64 -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64 -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_armv7 -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64 -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64 -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64 -Xcc -I -Xcc $(SRCROOT)/iOSApp/Source/CoreUtilsObjC -Xcc -I -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-17/bin/iOSApp/Source/CoreUtilsObjC -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-17/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -Xcc -iquote -Xcc $(PROJECT_DIR) -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-17/bin -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-17/bin/external/_main~non_module_deps~com_google_google_maps -Xcc \"-DNEEDS_QUOTES=Two words\" -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_armv7/CryptoSwift.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-17/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_objc_modulemap_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-17/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_swift_modulemap_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-17/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_objc_modulemap-module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-17/bin/iOSApp/Source/CoreUtilsObjC/CoreUtilsObjC_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64/GoogleMapsBase.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64/GoogleMapsCore.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64/GoogleMaps.framework/Modules/module.modulemap -Xcc -Os -Xcc -DNDEBUG=1 -Xcc -Wno-unused-variable -Xcc -Winit-self -Xcc -Wno-extra", "PREVIEWS_SWIFT_INCLUDE__": "", "PREVIEWS_SWIFT_INCLUDE__NO": "", "PREVIEWS_SWIFT_INCLUDE__YES": "-I bazel-out/CONFIGURATION-STABLE-17/bin/iOSApp/Source", @@ -9404,7 +9614,7 @@ "external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_armv7/CryptoSwift.framework" ] }, - "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iOS.189.link.params", + "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iOS.195.link.params", "b": { "APPLICATION_EXTENSION_API_ONLY": true, "BAZEL_OUTPUTS_PRODUCT": "bazel-out/CONFIGURATION-STABLE-17/bin/Lib/dist/dynamic/Lib.framework", @@ -9491,7 +9701,7 @@ "external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/tvos-arm64/CryptoSwift.framework" ] }, - "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/tvOS.191.link.params", + "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/tvOS.197.link.params", "b": { "APPLICATION_EXTENSION_API_ONLY": true, "BAZEL_OUTPUTS_PRODUCT": "bazel-out/CONFIGURATION-STABLE-20/bin/Lib/dist/dynamic/Lib.framework", @@ -9539,7 +9749,7 @@ "external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/watchos-arm64_32_armv7k/CryptoSwift.framework" ] }, - "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/watchOS.192.link.params", + "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/watchOS.198.link.params", "b": { "APPLICATION_EXTENSION_API_ONLY": true, "BAZEL_OUTPUTS_PRODUCT": "bazel-out/CONFIGURATION-STABLE-18/bin/Lib/dist/dynamic/Lib.framework", @@ -9587,7 +9797,7 @@ "external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/tvos-arm64/CryptoSwift.framework" ] }, - "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/LibFramework.tvOS.193.link.params", + "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/LibFramework.tvOS.199.link.params", "b": { "APPLICATION_EXTENSION_API_ONLY": true, "BAZEL_OUTPUTS_DSYM": [ @@ -9646,7 +9856,7 @@ "bazel-out/CONFIGURATION-STABLE-20/bin/Lib/frameworks/LibFramework.tvOS.framework" ] }, - "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/UIFramework.tvOS.194.link.params", + "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/UIFramework.tvOS.200.link.params", "7": [ "@@//Lib:LibFramework.tvOS CONFIGURATION-STABLE-20" ], @@ -9724,7 +9934,7 @@ "bazel-out/CONFIGURATION-STABLE-20/bin/Lib/frameworks/LibFramework.tvOS.framework" ] }, - "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/tvOSApp.195.link.params", + "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/tvOSApp.201.link.params", "7": [ "@@//Lib:LibFramework.tvOS CONFIGURATION-STABLE-20", "@@//UI:UIFramework.tvOS CONFIGURATION-STABLE-20" @@ -9903,7 +10113,7 @@ "bazel-out/CONFIGURATION-STABLE-17/bin/Lib/frameworks/LibFramework.iOS.framework" ] }, - "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iOSAppObjCUnitTests.199.link.params", + "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iOSAppObjCUnitTests.205.link.params", "7": [ "@@//AppClip:AppClip CONFIGURATION-STABLE-17", "@@//WidgetExtension:WidgetExtension CONFIGURATION-STABLE-17", @@ -9978,7 +10188,7 @@ "n": "iOSAppUITests.library" } ], - "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iOSAppUITests.200.link.params", + "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iOSAppUITests.206.link.params", "b": { "BAZEL_OUTPUTS_DSYM": [ "\"bazel-out/CONFIGURATION-STABLE-17/bin/iOSApp/Source/CoreUtilsObjC/FrameworkCoreUtilsObjC_dsyms/CoreUtilsObjC.framework.dSYM\"", @@ -10057,7 +10267,7 @@ "bazel-out/CONFIGURATION-STABLE-17/bin/Lib/frameworks/LibFramework.iOS.framework" ] }, - "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iOSAppSwiftUnitTests.201.link.params", + "6": "bazel-out/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iOSAppSwiftUnitTests.207.link.params", "7": [ "@@//AppClip:AppClip CONFIGURATION-STABLE-17", "@@//WidgetExtension:WidgetExtension CONFIGURATION-STABLE-17", @@ -10082,7 +10292,7 @@ "BAZEL_OUTPUTS_PRODUCT_BASENAME": "iOSAppSwiftUnitTests.xctest", "CODE_SIGN_STYLE": "Manual", "INFOPLIST_FILE": "$(BAZEL_OUT)/CONFIGURATION-STABLE-17/bin/iOSApp/Test/SwiftUnitTests/rules_xcodeproj/iOSAppSwiftUnitTests.__internal__.__test_bundle/Info.plist", - "OTHER_SWIFT_FLAGS": "-F$(DEVELOPER_DIR)/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F$(SDKROOT)/Developer/Library/Frameworks -I$(DEVELOPER_DIR)/Platforms/iPhoneOS.platform/Developer/usr/lib -I$(BAZEL_OUT)/CONFIGURATION-STABLE-17/bin/Lib/UndesiredSchemes -I$(BAZEL_OUT)/CONFIGURATION-STABLE-17/bin/Lib -I$(BAZEL_OUT)/CONFIGURATION-STABLE-17/bin/UI -I$(BAZEL_OUT)/CONFIGURATION-STABLE-17/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer -I$(BAZEL_OUT)/CONFIGURATION-STABLE-17/bin/iOSApp/Source -I$(BAZEL_OUT)/CONFIGURATION-STABLE-17/bin/iOSApp/Test/TestingUtils -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_armv7 -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64 -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64 -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64 -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_armv7 -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64 -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64 -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64 -Xcc -I -Xcc $(SRCROOT)/iOSApp/Source/CoreUtilsObjC -Xcc -I -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-17/bin/iOSApp/Source/CoreUtilsObjC -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-17/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -Xcc -iquote -Xcc $(PROJECT_DIR) -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-17/bin -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-17/bin/external/_main~non_module_deps~com_google_google_maps -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~FXPageControl -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-17/bin/external/_main~non_module_deps~FXPageControl -Xcc \"-DNEEDS_QUOTES=Two words\" -Xcc -DAWESOME -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_armv7/CryptoSwift.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-17/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_objc_modulemap.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-17/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_swift_modulemap.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-17/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_objc_modulemap-module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-17/bin/iOSApp/Source/CoreUtilsObjC/CoreUtilsObjC.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64/GoogleMapsBase.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64/GoogleMapsCore.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64/GoogleMaps.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-17/bin/external/_main~non_module_deps~FXPageControl/FXPageControl.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-17/bin/iOSApp/Source/Utils/Utils.swift.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-17/bin/iOSApp/Test/TestingUtils/TestingUtils.swift.modulemap -Xcc -Os -Xcc -DNDEBUG=1 -Xcc -Wno-unused-variable -Xcc -Winit-self -Xcc -Wno-extra", + "OTHER_SWIFT_FLAGS": "-F$(DEVELOPER_DIR)/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F$(SDKROOT)/Developer/Library/Frameworks -I$(DEVELOPER_DIR)/Platforms/iPhoneOS.platform/Developer/usr/lib -I$(BAZEL_OUT)/CONFIGURATION-STABLE-17/bin/Lib/UndesiredSchemes -I$(BAZEL_OUT)/CONFIGURATION-STABLE-17/bin/Lib -I$(BAZEL_OUT)/CONFIGURATION-STABLE-17/bin/UI -I$(BAZEL_OUT)/CONFIGURATION-STABLE-17/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer -I$(BAZEL_OUT)/CONFIGURATION-STABLE-17/bin/iOSApp/Source -I$(BAZEL_OUT)/CONFIGURATION-STABLE-17/bin/iOSApp/Test/TestingUtils -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_armv7 -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64 -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64 -F$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64 -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_armv7 -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64 -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64 -Xcc -F -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64 -Xcc -I -Xcc $(SRCROOT)/iOSApp/Source/CoreUtilsObjC -Xcc -I -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-17/bin/iOSApp/Source/CoreUtilsObjC -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-17/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -Xcc -iquote -Xcc $(PROJECT_DIR) -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-17/bin -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-17/bin/external/_main~non_module_deps~com_google_google_maps -Xcc -iquote -Xcc $(BAZEL_EXTERNAL)/_main~non_module_deps~FXPageControl -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-17/bin/external/_main~non_module_deps~FXPageControl -Xcc \"-DNEEDS_QUOTES=Two words\" -Xcc -DAWESOME -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift/CryptoSwift.xcframework/ios-arm64_armv7/CryptoSwift.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-17/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_objc_modulemap_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-17/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_swift_modulemap_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-17/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswer_objc_modulemap-module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-17/bin/iOSApp/Source/CoreUtilsObjC/CoreUtilsObjC_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64/GoogleMapsBase.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMapsCore.xcframework/ios-arm64/GoogleMapsCore.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_EXTERNAL)/_main~non_module_deps~com_google_google_maps/GoogleMaps.xcframework/ios-arm64/GoogleMaps.framework/Modules/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-17/bin/external/_main~non_module_deps~FXPageControl/FXPageControl_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-17/bin/iOSApp/Source/Utils/Utils_modulemap/_/module.modulemap -Xcc -fmodule-map-file=$(BAZEL_OUT)/CONFIGURATION-STABLE-17/bin/iOSApp/Test/TestingUtils/TestingUtils_modulemap/_/module.modulemap -Xcc -Os -Xcc -DNDEBUG=1 -Xcc -Wno-unused-variable -Xcc -Winit-self -Xcc -Wno-extra", "PREVIEWS_SWIFT_INCLUDE__": "", "PREVIEWS_SWIFT_INCLUDE__NO": "", "PREVIEWS_SWIFT_INCLUDE__YES": "-I bazel-out/CONFIGURATION-STABLE-17/bin/iOSApp/Test/SwiftUnitTests", diff --git a/examples/rules_ios/MODULE.bazel b/examples/rules_ios/MODULE.bazel index 2dce2aea1b..8b97a3cb3b 100644 --- a/examples/rules_ios/MODULE.bazel +++ b/examples/rules_ios/MODULE.bazel @@ -20,7 +20,7 @@ bazel_dep( ) bazel_dep( name = "rules_ios", - version = "4.4.0", + version = "4.6.0", repo_name = "build_bazel_rules_ios", ) diff --git a/examples/rules_ios/WORKSPACE b/examples/rules_ios/WORKSPACE index 335d9419c9..edeef6aa23 100644 --- a/examples/rules_ios/WORKSPACE +++ b/examples/rules_ios/WORKSPACE @@ -2,8 +2,8 @@ load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") http_archive( name = "build_bazel_rules_ios", - sha256 = "eccb4509a820204b80260bde9f5d6ec989d5dd12fdc96fc480bd39c7ff5596d6", - url = "https://github.com/bazel-ios/rules_ios/releases/download/4.4.0/rules_ios.4.4.0.tar.gz", + sha256 = "c417b69639a737eb44e2af13309f1b00950d6d0c48f67c64ee36d3ea750f687e", + url = "https://github.com/bazel-ios/rules_ios/releases/download/4.6.0/rules_ios.4.6.0.tar.gz", ) load( diff --git a/examples/rules_ios/test/fixtures/bwb.xcodeproj/project.pbxproj b/examples/rules_ios/test/fixtures/bwb.xcodeproj/project.pbxproj index 837bb5dc3c..b924aa31fe 100644 --- a/examples/rules_ios/test/fixtures/bwb.xcodeproj/project.pbxproj +++ b/examples/rules_ios/test/fixtures/bwb.xcodeproj/project.pbxproj @@ -4657,6 +4657,7 @@ CXX = "$(BAZEL_INTEGRATION_DIR)/clang.sh"; DEBUG_INFORMATION_FORMAT = dwarf; DSTROOT = "$(PROJECT_TEMP_DIR)"; + ENABLE_DEBUG_DYLIB = NO; ENABLE_DEFAULT_SEARCH_PATHS = NO; ENABLE_STRICT_OBJC_MSGSEND = YES; ENABLE_USER_SCRIPT_SANDBOXING = NO; @@ -4670,12 +4671,12 @@ INDEX_IMPORT = "fixture-index-import-path"; INSTALL_PATH = "$(BAZEL_PACKAGE_BIN_DIR)/$(TARGET_NAME)/bin"; INTERNAL_DIR = "$(PROJECT_FILE_PATH)/rules_xcodeproj"; - LD = "$(BAZEL_INTEGRATION_DIR)/ld.sh"; - LDPLUSPLUS = "$(BAZEL_INTEGRATION_DIR)/ld.sh"; + LD = "$(BAZEL_INTEGRATION_DIR)/ld"; + LDPLUSPLUS = "$(BAZEL_INTEGRATION_DIR)/ld"; LD_DYLIB_INSTALL_NAME = ""; LD_OBJC_ABI_VERSION = ""; LD_RUNPATH_SEARCH_PATHS = ""; - LIBTOOL = "$(BAZEL_INTEGRATION_DIR)/libtool.sh"; + LIBTOOL = "$(BAZEL_INTEGRATION_DIR)/libtool"; ONLY_ACTIVE_ARCH = YES; PROJECT_DIR = "$(INDEXING_PROJECT_DIR__$(INDEX_ENABLE_BUILD_ARENA))"; RESOLVED_REPOSITORIES = "\".\" \"$(SRCROOT)\""; diff --git a/examples/rules_ios/test/fixtures/bwb.xcodeproj/rules_xcodeproj/bazel/ld.sh b/examples/rules_ios/test/fixtures/bwb.xcodeproj/rules_xcodeproj/bazel/ld old mode 100755 new mode 100644 similarity index 100% rename from examples/rules_ios/test/fixtures/bwb.xcodeproj/rules_xcodeproj/bazel/ld.sh rename to examples/rules_ios/test/fixtures/bwb.xcodeproj/rules_xcodeproj/bazel/ld diff --git a/examples/rules_ios/test/fixtures/bwb.xcodeproj/rules_xcodeproj/bazel/libtool.sh b/examples/rules_ios/test/fixtures/bwb.xcodeproj/rules_xcodeproj/bazel/libtool old mode 100755 new mode 100644 similarity index 100% rename from examples/rules_ios/test/fixtures/bwb.xcodeproj/rules_xcodeproj/bazel/libtool.sh rename to examples/rules_ios/test/fixtures/bwb.xcodeproj/rules_xcodeproj/bazel/libtool diff --git a/shared.bazelrc b/shared.bazelrc index 8513374180..485ccc90a2 100644 --- a/shared.bazelrc +++ b/shared.bazelrc @@ -1,6 +1,9 @@ # Opt into future migrations build --incompatible_disallow_empty_glob +# Support rules_swift 2.0 on Bazel 6 +common --experimental_enable_aspect_hints + # Don't create convenience symlinks build --experimental_convenience_symlinks=ignore diff --git a/test/internal/target/process_top_level_properties_tests.bzl b/test/internal/target/process_top_level_properties_tests.bzl index 9deb0ad5d9..a71e3013a9 100644 --- a/test/internal/target/process_top_level_properties_tests.bzl +++ b/test/internal/target/process_top_level_properties_tests.bzl @@ -150,7 +150,7 @@ def process_top_level_properties_test_suite(name): ) _add_test( - name = "{}_xctest".format(name), + name = "{}_old_swift_test".format(name), target_name = "test", target_files = ["bazel-out/some/test.xctest/test"], bundle_info = None, @@ -161,6 +161,18 @@ def process_top_level_properties_test_suite(name): expected_build_settings = {}, ) + _add_test( + name = "{}_new_swift_test".format(name), + target_name = "test", + target_files = ["bazel-out/some/test.xctest"], + bundle_info = None, + expected_bundle_path = "bazel-out/some/test.xctest", + expected_executable_name = "test", + expected_product_name = "test", + expected_product_type = "com.apple.product-type.bundle.unit-test", + expected_build_settings = {}, + ) + # Bundles _add_test( diff --git a/tools/generators/legacy/src/Generator/CreateProject.swift b/tools/generators/legacy/src/Generator/CreateProject.swift index 91670a9875..a2fa5eb355 100644 --- a/tools/generators/legacy/src/Generator/CreateProject.swift +++ b/tools/generators/legacy/src/Generator/CreateProject.swift @@ -90,6 +90,7 @@ $(SYMROOT)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) "COPY_PHASE_STRIP": false, "DEBUG_INFORMATION_FORMAT": "dwarf", "DSTROOT": "$(PROJECT_TEMP_DIR)", + "ENABLE_DEBUG_DYLIB": "NO", "ENABLE_DEFAULT_SEARCH_PATHS": "NO", // Xcode's default for `ENABLE_STRICT_OBJC_MSGSEND` doesn't match // its new project default, so we need to set it explicitly @@ -144,9 +145,9 @@ $(PROJECT_TEMP_DIR)/$(BAZEL_PACKAGE_BIN_DIR)/$(COMPILE_TARGET_NAME) "CC": "$(BAZEL_INTEGRATION_DIR)/clang.sh", "CXX": "$(BAZEL_INTEGRATION_DIR)/clang.sh", "CODE_SIGNING_ALLOWED": false, - "LD": "$(BAZEL_INTEGRATION_DIR)/ld.sh", - "LDPLUSPLUS": "$(BAZEL_INTEGRATION_DIR)/ld.sh", - "LIBTOOL": "$(BAZEL_INTEGRATION_DIR)/libtool.sh", + "LD": "$(BAZEL_INTEGRATION_DIR)/ld", + "LDPLUSPLUS": "$(BAZEL_INTEGRATION_DIR)/ld", + "LIBTOOL": "$(BAZEL_INTEGRATION_DIR)/libtool", "SWIFT_EXEC": "$(BAZEL_INTEGRATION_DIR)/swiftc", "SWIFT_USE_INTEGRATED_DRIVER": false, "TAPI_EXEC": "/usr/bin/true", diff --git a/tools/generators/legacy/test/CreateProjectTests.swift b/tools/generators/legacy/test/CreateProjectTests.swift index 804679821e..7a6be38e9a 100644 --- a/tools/generators/legacy/test/CreateProjectTests.swift +++ b/tools/generators/legacy/test/CreateProjectTests.swift @@ -60,6 +60,7 @@ $(BUILD_DIR)/$(BAZEL_PACKAGE_BIN_DIR) $(INDEXING_DEPLOYMENT_LOCATION__$(INDEX_ENABLE_BUILD_ARENA)), """, "DSTROOT": "$(PROJECT_TEMP_DIR)", + "ENABLE_DEBUG_DYLIB": "NO", "ENABLE_DEFAULT_SEARCH_PATHS": "NO", "ENABLE_STRICT_OBJC_MSGSEND": true, "ENABLE_USER_SCRIPT_SANDBOXING": false, @@ -214,13 +215,14 @@ $(BUILD_DIR)/$(BAZEL_PACKAGE_BIN_DIR) "COPY_PHASE_STRIP": false, "DEBUG_INFORMATION_FORMAT": "dwarf", "DSTROOT": "$(PROJECT_TEMP_DIR)", + "ENABLE_DEBUG_DYLIB": "NO", "ENABLE_DEFAULT_SEARCH_PATHS": "NO", "ENABLE_STRICT_OBJC_MSGSEND": true, "ENABLE_USER_SCRIPT_SANDBOXING": false, "GCC_OPTIMIZATION_LEVEL": "0", - "LD": "$(BAZEL_INTEGRATION_DIR)/ld.sh", - "LDPLUSPLUS": "$(BAZEL_INTEGRATION_DIR)/ld.sh", - "LIBTOOL": "$(BAZEL_INTEGRATION_DIR)/libtool.sh", + "LD": "$(BAZEL_INTEGRATION_DIR)/ld", + "LDPLUSPLUS": "$(BAZEL_INTEGRATION_DIR)/ld", + "LIBTOOL": "$(BAZEL_INTEGRATION_DIR)/libtool", "IMPORT_INDEX_BUILD_INDEXSTORES": true, "INDEX_DATA_STORE_DIR": "$(INDEX_DATA_STORE_DIR)", "INDEX_FORCE_SCRIPT_EXECUTION": true, diff --git a/tools/generators/pbxproj_prefix/README.md b/tools/generators/pbxproj_prefix/README.md index 65f1abbfd6..056d6dfc0e 100644 --- a/tools/generators/pbxproj_prefix/README.md +++ b/tools/generators/pbxproj_prefix/README.md @@ -221,12 +221,12 @@ Here is an example output: INDEX_FORCE_SCRIPT_EXECUTION = YES; INSTALL_PATH = "$(BAZEL_PACKAGE_BIN_DIR)/$(TARGET_NAME)/bin"; INTERNAL_DIR = "$(PROJECT_FILE_PATH)/rules_xcodeproj"; - LD = "$(BAZEL_INTEGRATION_DIR)/ld.sh"; - LDPLUSPLUS = "$(BAZEL_INTEGRATION_DIR)/ld.sh"; + LD = "$(BAZEL_INTEGRATION_DIR)/ld"; + LDPLUSPLUS = "$(BAZEL_INTEGRATION_DIR)/ld"; LD_DYLIB_INSTALL_NAME = ""; LD_OBJC_ABI_VERSION = ""; LD_RUNPATH_SEARCH_PATHS = ""; - LIBTOOL = "$(BAZEL_INTEGRATION_DIR)/libtool.sh"; + LIBTOOL = "$(BAZEL_INTEGRATION_DIR)/libtool"; ONLY_ACTIVE_ARCH = YES; PROJECT_DIR = "$(INDEXING_PROJECT_DIR__$(INDEX_ENABLE_BUILD_ARENA))"; RESOLVED_REPOSITORIES = "\"\" \"/tmp/workspace\""; @@ -284,12 +284,12 @@ Here is an example output: INDEX_FORCE_SCRIPT_EXECUTION = YES; INSTALL_PATH = "$(BAZEL_PACKAGE_BIN_DIR)/$(TARGET_NAME)/bin"; INTERNAL_DIR = "$(PROJECT_FILE_PATH)/rules_xcodeproj"; - LD = "$(BAZEL_INTEGRATION_DIR)/ld.sh"; - LDPLUSPLUS = "$(BAZEL_INTEGRATION_DIR)/ld.sh"; + LD = "$(BAZEL_INTEGRATION_DIR)/ld"; + LDPLUSPLUS = "$(BAZEL_INTEGRATION_DIR)/ld"; LD_DYLIB_INSTALL_NAME = ""; LD_OBJC_ABI_VERSION = ""; LD_RUNPATH_SEARCH_PATHS = ""; - LIBTOOL = "$(BAZEL_INTEGRATION_DIR)/libtool.sh"; + LIBTOOL = "$(BAZEL_INTEGRATION_DIR)/libtool"; ONLY_ACTIVE_ARCH = YES; PROJECT_DIR = "$(INDEXING_PROJECT_DIR__$(INDEX_ENABLE_BUILD_ARENA))"; RESOLVED_REPOSITORIES = "\"\" \"/tmp/workspace\""; diff --git a/tools/generators/pbxproj_prefix/src/Generator/PBXProjectBuildSettings.swift b/tools/generators/pbxproj_prefix/src/Generator/PBXProjectBuildSettings.swift index 9322bf16d0..f2e5e05371 100644 --- a/tools/generators/pbxproj_prefix/src/Generator/PBXProjectBuildSettings.swift +++ b/tools/generators/pbxproj_prefix/src/Generator/PBXProjectBuildSettings.swift @@ -83,18 +83,19 @@ extension Generator { .init(key: "CXX", value: #""$(BAZEL_INTEGRATION_DIR)/clang.sh""#), .init(key: "DEBUG_INFORMATION_FORMAT", value: "dwarf"), .init(key: "DSTROOT", value: #""$(PROJECT_TEMP_DIR)""#), + .init(key: "ENABLE_DEBUG_DYLIB", value: "NO"), .init(key: "ENABLE_DEFAULT_SEARCH_PATHS", value: "NO"), .init(key: "ENABLE_STRICT_OBJC_MSGSEND", value: "YES"), .init(key: "ENABLE_USER_SCRIPT_SANDBOXING", value: "NO"), .init(key: "GCC_OPTIMIZATION_LEVEL", value: "0"), - .init(key: "LD", value: #""$(BAZEL_INTEGRATION_DIR)/ld.sh""#), + .init(key: "LD", value: #""$(BAZEL_INTEGRATION_DIR)/ld""#), .init( key: "LDPLUSPLUS", - value: #""$(BAZEL_INTEGRATION_DIR)/ld.sh""# + value: #""$(BAZEL_INTEGRATION_DIR)/ld""# ), .init( key: "LIBTOOL", - value: #""$(BAZEL_INTEGRATION_DIR)/libtool.sh""# + value: #""$(BAZEL_INTEGRATION_DIR)/libtool""# ), .init( key: "IMPORT_INDEX_BUILD_INDEXSTORES", diff --git a/tools/generators/pbxproj_prefix/test/PBXProjectBuildSettingsTests.swift b/tools/generators/pbxproj_prefix/test/PBXProjectBuildSettingsTests.swift index 7b30ca9755..81eed44edd 100644 --- a/tools/generators/pbxproj_prefix/test/PBXProjectBuildSettingsTests.swift +++ b/tools/generators/pbxproj_prefix/test/PBXProjectBuildSettingsTests.swift @@ -42,6 +42,7 @@ class PBXProjectBuildSettingsTests: XCTestCase { CXX = "$(BAZEL_INTEGRATION_DIR)/clang.sh"; DEBUG_INFORMATION_FORMAT = dwarf; DSTROOT = "$(PROJECT_TEMP_DIR)"; + ENABLE_DEBUG_DYLIB = NO; ENABLE_DEFAULT_SEARCH_PATHS = NO; ENABLE_STRICT_OBJC_MSGSEND = YES; ENABLE_USER_SCRIPT_SANDBOXING = NO; @@ -55,12 +56,12 @@ class PBXProjectBuildSettingsTests: XCTestCase { INDEX_IMPORT = "$(BAZEL_EXTERNAL)/index-import"; INSTALL_PATH = "$(BAZEL_PACKAGE_BIN_DIR)/$(TARGET_NAME)/bin"; INTERNAL_DIR = "$(PROJECT_FILE_PATH)/rules_xcodeproj"; - LD = "$(BAZEL_INTEGRATION_DIR)/ld.sh"; - LDPLUSPLUS = "$(BAZEL_INTEGRATION_DIR)/ld.sh"; + LD = "$(BAZEL_INTEGRATION_DIR)/ld"; + LDPLUSPLUS = "$(BAZEL_INTEGRATION_DIR)/ld"; LD_DYLIB_INSTALL_NAME = ""; LD_OBJC_ABI_VERSION = ""; LD_RUNPATH_SEARCH_PATHS = ""; - LIBTOOL = "$(BAZEL_INTEGRATION_DIR)/libtool.sh"; + LIBTOOL = "$(BAZEL_INTEGRATION_DIR)/libtool"; ONLY_ACTIVE_ARCH = YES; PROJECT_DIR = "$(INDEXING_PROJECT_DIR__$(INDEX_ENABLE_BUILD_ARENA))"; RESOLVED_REPOSITORIES = "\"\" \"/tmp/workspace\""; diff --git a/tools/generators/target_build_settings/src/Generator/ProcessSwiftArgs.swift b/tools/generators/target_build_settings/src/Generator/ProcessSwiftArgs.swift index 9a61c2eb33..2a7c658ac7 100644 --- a/tools/generators/target_build_settings/src/Generator/ProcessSwiftArgs.swift +++ b/tools/generators/target_build_settings/src/Generator/ProcessSwiftArgs.swift @@ -104,6 +104,50 @@ extension Generator.ProcessSwiftArgs { frameworkIncludes: OrderedSet, swiftIncludes: OrderedSet ) { + var (hasDebugInfo, clangArgs, frameworkIncludes, onceClangArgs, swiftIncludes) = try await _process_swift_args( + argsStream: argsStream, + buildSettings: &buildSettings, + includeSelfSwiftDebugSettings: includeSelfSwiftDebugSettings, + previewsFrameworkPaths: previewsFrameworkPaths, + previewsIncludePath: previewsIncludePath, + transitiveSwiftDebugSettingPaths: transitiveSwiftDebugSettingPaths, + parseTransitiveSwiftDebugSettings: + parseTransitiveSwiftDebugSettings, + processSwiftArg: processSwiftArg, + processSwiftClangArg: processSwiftClangArg, + processSwiftFrontendArg: processSwiftFrontendArg + ) + + try await parseTransitiveSwiftDebugSettings( + transitiveSwiftDebugSettingPaths, + clangArgs: &clangArgs, + frameworkIncludes: &frameworkIncludes, + onceClangArgs: &onceClangArgs, + swiftIncludes: &swiftIncludes + ) + + return (hasDebugInfo, clangArgs, frameworkIncludes, swiftIncludes) + } + + private static func _process_swift_args( + argsStream: AsyncThrowingStream, + buildSettings: inout [(key: String, value: String)], + includeSelfSwiftDebugSettings: Bool, + previewsFrameworkPaths: String, + previewsIncludePath: String, + transitiveSwiftDebugSettingPaths: [URL], + parseTransitiveSwiftDebugSettings: + Generator.ParseTransitiveSwiftDebugSettings, + processSwiftArg: Generator.ProcessSwiftArg, + processSwiftClangArg: Generator.ProcessSwiftClangArg, + processSwiftFrontendArg: Generator.ProcessSwiftFrontendArg + ) async throws -> ( + hasDebugInfo: Bool, + clangArgs: [String], + frameworkIncludes: OrderedSet, + onceClangArgs: Set, + swiftIncludes: OrderedSet + ) { var previousArg: String? = nil var previousClangArg: String? = nil var previousFrontendArg: String? = nil @@ -114,7 +158,7 @@ extension Generator.ProcessSwiftArgs { guard let tool = try await iterator.next(), tool != Generator.argsSeparator else { - return (false, [], [], []) + return (false, [], [], [], []) } _ = try await iterator.next() @@ -264,19 +308,11 @@ extension Generator.ProcessSwiftArgs { ) } - try await parseTransitiveSwiftDebugSettings( - transitiveSwiftDebugSettingPaths, - clangArgs: &clangArgs, - frameworkIncludes: &frameworkIncludes, - onceClangArgs: &onceClangArgs, - swiftIncludes: &swiftIncludes - ) - buildSettings.append( ("OTHER_SWIFT_FLAGS", args.joined(separator: " ").pbxProjEscaped) ) - return (hasDebugInfo, clangArgs, frameworkIncludes, swiftIncludes) + return (hasDebugInfo, clangArgs, frameworkIncludes, onceClangArgs, swiftIncludes) } } diff --git a/tools/swiftc_stub/main.swift b/tools/swiftc_stub/main.swift index 805bf537c6..f2bfb7f3e5 100644 --- a/tools/swiftc_stub/main.swift +++ b/tools/swiftc_stub/main.swift @@ -176,7 +176,8 @@ error: Failed to parse DEVELOPER_DIR from '-sdk'. Using /usr/bin/swiftc. // MARK: - Main let args = CommandLine.arguments -if args.count == 2, args.last == "-v" { +// Xcode 16.0 Beta 3 began using "--version" over "-v". Support both. +if args.count == 2, args.last == "--version" || args.last == "-v" { guard let path = ProcessInfo.processInfo.environment["PATH"] else { fputs("error: PATH not set", stderr) exit(1) @@ -198,7 +199,8 @@ if args.count == 2, args.last == "-v" { \(developerDir)/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc """ - try exit(runSubProcess(executable: swiftcPath, args: ["-v"])) + // args.last allows passing in -v (Xcode < 16b3) and --version (>= 16b3) + try exit(runSubProcess(executable: swiftcPath, args: [args.last!])) } let ( diff --git a/xcodeproj/internal/bazel_integration_files/generate_bazel_dependencies.sh b/xcodeproj/internal/bazel_integration_files/generate_bazel_dependencies.sh index 6d630d7d00..7385dcbbca 100755 --- a/xcodeproj/internal/bazel_integration_files/generate_bazel_dependencies.sh +++ b/xcodeproj/internal/bazel_integration_files/generate_bazel_dependencies.sh @@ -122,7 +122,7 @@ build_pre_config_flags=( # This is brittle. If different file extensions are used for compilation # inputs, they will need to be added to this list. Ideally we can stop doing # this once Bazel adds support for a Remote Output Service. - "--experimental_remote_download_regex=.*\.indexstore/.*|.*\.(a|c|C|cc|cl|cpp|cu|cxx|c++|m|mm|swift|swiftdoc|swiftmodule|swiftsourceinfo)$" + "--experimental_remote_download_regex=.*\.indexstore/.*|.*\.(a|c|C|cc|cl|cpp|cu|cxx|c++|h|H|hh|hpp|hxx|h++|inc|inl|ipp|m|mm|swift|swiftdoc|swiftmodule|swiftsourceinfo|tcc|tlh|tli)$" ) apply_sanitizers=1 diff --git a/xcodeproj/internal/bazel_integration_files/ld.sh b/xcodeproj/internal/bazel_integration_files/ld similarity index 100% rename from xcodeproj/internal/bazel_integration_files/ld.sh rename to xcodeproj/internal/bazel_integration_files/ld diff --git a/xcodeproj/internal/bazel_integration_files/libtool.sh b/xcodeproj/internal/bazel_integration_files/libtool similarity index 100% rename from xcodeproj/internal/bazel_integration_files/libtool.sh rename to xcodeproj/internal/bazel_integration_files/libtool diff --git a/xcodeproj/internal/docs/bazel.header.md b/xcodeproj/internal/docs/bazel.header.md index ba53e3c473..ff4a63ccd9 100644 --- a/xcodeproj/internal/docs/bazel.header.md +++ b/xcodeproj/internal/docs/bazel.header.md @@ -33,6 +33,7 @@ load("@rules_xcodeproj//xcodeproj:defs.bzl", "xcodeproj") - [`xcschemes.env_value`](#xcschemes.env_value) - [`xcschemes.pre_post_actions.build_script`](#xcschemes.pre_post_actions.build_script) - [`xcschemes.pre_post_actions.launch_script`](#xcschemes.pre_post_actions.launch_script) + - [`xcschemes.autogeneration_config`](#xcschemes.autogeneration_config) - [Custom Xcode schemes (Legacy generation mode)](#custom-xcode-schemes-legacy-generation-mode) - [`xcode_schemes.scheme`](#xcode_schemes.scheme) - [`xcode_schemes.build_action`](#xcode_schemes.build_action) diff --git a/xcodeproj/internal/processed_targets/incremental_top_level_targets.bzl b/xcodeproj/internal/processed_targets/incremental_top_level_targets.bzl index 4e9445e31a..c7d85d8d63 100644 --- a/xcodeproj/internal/processed_targets/incremental_top_level_targets.bzl +++ b/xcodeproj/internal/processed_targets/incremental_top_level_targets.bzl @@ -270,7 +270,7 @@ def _calculate_product_type(*, target_files, bundle_info): return PRODUCT_TYPE_ENCODED[bundle_info.product_type] for file in target_files: - if ".xctest/" in file.path: + if file.path.endswith(".xctest") or ".xctest/" in file.path: # This is something like `swift_test`: it creates an xctest bundle return "u" # com.apple.product-type.bundle.unit-test @@ -887,21 +887,30 @@ def _process_top_level_properties( extension_safe = False product_name = target_name + product_type = "com.apple.product-type.tool" bundle_file = None + bundle_path = None for file in target_files: - if ".xctest/" in file.path: + if file.path.endswith(".xctest"): + # This is something like rules_swift 2.0 `swift_test`: it + # creates an xctest bundle + product_type = "com.apple.product-type.bundle.unit-test" bundle_file = file + bundle_path = file.path break - if bundle_file: - # This is something like `swift_test`: it creates an xctest bundle - product_type = "com.apple.product-type.bundle.unit-test" - # "some/test.xctest/binary" -> "some/test.xctest" - xctest_path = bundle_file.path - bundle_path = xctest_path[:-(len(xctest_path.split(".xctest/")[1]) + 1)] - else: - product_type = "com.apple.product-type.tool" - bundle_path = None + if ".xctest/" in file.path: + # This is something like rules_Swift pre-2.0 `swift_test`: it + # creates an xctest bundle + product_type = "com.apple.product-type.bundle.unit-test" + + # "some/test.xctest/binary" -> "some/test.xctest" + xctest_path = file.path + bundle_file = file + bundle_path = ( + xctest_path[:-(len(xctest_path.split(".xctest/")[1]) + 1)] + ) + break return struct( bundle_extension = bundle_extension, diff --git a/xcodeproj/internal/processed_targets/legacy_top_level_targets.bzl b/xcodeproj/internal/processed_targets/legacy_top_level_targets.bzl index b733a93fe4..9892416d15 100644 --- a/xcodeproj/internal/processed_targets/legacy_top_level_targets.bzl +++ b/xcodeproj/internal/processed_targets/legacy_top_level_targets.bzl @@ -117,21 +117,30 @@ def process_top_level_properties( executable_name = target_name product_name = target_name + product_type = "com.apple.product-type.tool" bundle_file = None + bundle_path = None for file in target_files: - if ".xctest/" in file.path: + if file.path.endswith(".xctest"): + # This is something like rules_swift 2.0 `swift_test`: it + # creates an xctest bundle + product_type = "com.apple.product-type.bundle.unit-test" bundle_file = file + bundle_path = file.path break - if bundle_file: - # This is something like `swift_test`: it creates an xctest bundle - product_type = "com.apple.product-type.bundle.unit-test" - # "some/test.xctest/binary" -> "some/test.xctest" - xctest_path = bundle_file.path - bundle_path = xctest_path[:-(len(xctest_path.split(".xctest/")[1]) + 1)] - else: - product_type = "com.apple.product-type.tool" - bundle_path = None + if ".xctest/" in file.path: + # This is something like rules_Swift pre-2.0 `swift_test`: it + # creates an xctest bundle + product_type = "com.apple.product-type.bundle.unit-test" + + # "some/test.xctest/binary" -> "some/test.xctest" + xctest_path = file.path + bundle_file = file + bundle_path = ( + xctest_path[:-(len(xctest_path.split(".xctest/")[1]) + 1)] + ) + break return struct( bundle_extension = bundle_extension, diff --git a/xcodeproj/internal/templates/incremental_installer.sh b/xcodeproj/internal/templates/incremental_installer.sh index d9e334f828..6a5c10f617 100644 --- a/xcodeproj/internal/templates/incremental_installer.sh +++ b/xcodeproj/internal/templates/incremental_installer.sh @@ -119,10 +119,10 @@ chmod u+w "$dest_generated_xcfilelist" # - Keep only scripts as runnable find "$dest/rules_xcodeproj/bazel" \ - -type f \( -name "*.sh" -o -name "*.py" \) \ + -type f \( -name "*.sh" -o -name "*.py" -o -name "ld" -o -name "libtool" \) \ -print0 | xargs -0 chmod u+x find "$dest/rules_xcodeproj/bazel" \ - -type f ! \( -name "swiftc" -o -name "import_indexstores" -o -name "calculate_output_groups" -o -name "*.sh" -o -name "*.py" \) \ + -type f ! \( -name "swiftc" -o -name "ld" -o -name "libtool" -o -name "import_indexstores" -o -name "calculate_output_groups" -o -name "*.sh" -o -name "*.py" \) \ -print0 | xargs -0 chmod -x # Copy over `project.xcworkspace/contents.xcworkspacedata` if needed diff --git a/xcodeproj/internal/templates/legacy_installer.sh b/xcodeproj/internal/templates/legacy_installer.sh index 8fba2ec7cf..b604380023 100644 --- a/xcodeproj/internal/templates/legacy_installer.sh +++ b/xcodeproj/internal/templates/legacy_installer.sh @@ -177,7 +177,7 @@ find "$dest/rules_xcodeproj/bazel" \ -type f \( -name "*.sh" -o -name "*.py" \) \ -print0 | xargs -0 chmod u+x find "$dest/rules_xcodeproj/bazel" \ - -type f ! \( -name "swiftc" -o -name "import_indexstores" -o -name "calculate_output_groups" -o -name "*.sh" -o -name "*.py" \) \ + -type f ! \( -name "swiftc" -o -name "ld" -o -name "libtool" -o -name "import_indexstores" -o -name "calculate_output_groups" -o -name "*.sh" -o -name "*.py" \) \ -print0 | xargs -0 chmod -x # Copy over project.xcworkspace/contents.xcworkspacedata if needed diff --git a/xcodeproj/internal/templates/runner.sh b/xcodeproj/internal/templates/runner.sh index d770519fef..bee862b9d2 100644 --- a/xcodeproj/internal/templates/runner.sh +++ b/xcodeproj/internal/templates/runner.sh @@ -226,7 +226,7 @@ else if [[ $cmd == "build" && -n "${generator_output_groups:-}" ]]; then if [[ $download_intermediates -eq 1 ]]; then pre_config_flags=( - "--experimental_remote_download_regex=.*\.indexstore/.*|.*\.(a|c|C|cc|cl|cpp|cu|cxx|c++|m|mm|swift|swiftdoc|swiftmodule|swiftsourceinfo)$" + "--experimental_remote_download_regex=.*\.indexstore/.*|.*\.(a|c|C|cc|cl|cpp|cu|cxx|c++|h|H|hh|hpp|hxx|h++|inc|inl|ipp|m|mm|swift|swiftdoc|swiftmodule|swiftsourceinfo|tcc|tlh|tli)$" ) else pre_config_flags=()