diff --git a/README.md b/README.md index f24894d39..58cba445b 100644 --- a/README.md +++ b/README.md @@ -57,6 +57,7 @@ the ruleset. - Cash App - Envoy Mobile - Ergatta +- Faire Wholesale - Gojek - Lyft - [Mercari](https://engineering.mercari.com/en/blog/entry/20221215-16cdd59909/) @@ -65,6 +66,7 @@ the ruleset. - [Slack](https://www.youtube.com/watch?v=wy3Q38VJ5uQ) - Snap - Spotify +- Square - SwiftLint - Ten Ten - Tinder diff --git a/buildbuddy.yaml b/buildbuddy.yaml index f7f89cce8..09990c288 100644 --- a/buildbuddy.yaml +++ b/buildbuddy.yaml @@ -23,7 +23,10 @@ x_templates: USE_BAZEL_VERSION: 7.x - &bazel_head env: - USE_BAZEL_VERSION: last_green + # See https://github.com/MobileNativeFoundation/rules_xcodeproj/pull/3029 + # + # Temporary change to make CI pass until the fix is in `last_green` + USE_BAZEL_VERSION: dd2464a5933e0a5a6765024573832717b71989bf - &normal_resources resource_requests: { memory: 6GB } diff --git a/docs/bazel.md b/docs/bazel.md index 5b16fcd54..7c62a1bcb 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) @@ -60,9 +61,10 @@ load("@rules_xcodeproj//xcodeproj:defs.bzl", "xcodeproj")
 xcodeproj(name, adjust_schemes_for_swiftui_previews, associated_extra_files, bazel_path, bazel_env,
           build_mode, config, default_xcode_configuration, extra_files,
-          fail_for_invalid_extra_files_targets, focused_targets, generation_mode, install_directory,
-          ios_device_cpus, ios_simulator_cpus, minimum_xcode_version, post_build, pre_build,
-          project_name, project_options, scheme_autogeneration_mode, schemes, target_name_mode,
+          fail_for_invalid_extra_files_targets, focused_targets, generation_mode,
+          import_index_build_indexstores, install_directory, ios_device_cpus, ios_simulator_cpus,
+          minimum_xcode_version, post_build, pre_build, project_name, project_options,
+          scheme_autogeneration_mode, scheme_autogeneration_config, schemes, target_name_mode,
           top_level_targets, tvos_device_cpus, tvos_simulator_cpus, unfocused_targets,
           visionos_device_cpus, visionos_simulator_cpus, watchos_device_cpus, watchos_simulator_cpus,
           xcode_configurations, xcschemes, kwargs)
@@ -108,6 +110,7 @@ xcodeproj(
 | fail_for_invalid_extra_files_targets |  Optional. Determines wether, when processing targets, invalid extra files without labels will fail or just emit a warning.   |  `True` |
 | focused_targets |  Optional. A `list` of target labels as `string` values.

If specified, only these targets will be included in the generated project; all other targets will be excluded, as if they were listed explicitly in the `unfocused_targets` argument. The labels must match transitive dependencies of the targets specified in the `top_level_targets` argument. | `[]` | | generation_mode | Optional. Determines how the project is generated.

| `"incremental"` | +| import_index_build_indexstores | Optional. Whether to import the index stores generated by Index Build.

This is useful if you want to use the index stores generated by Index Build to speed up Xcode's indexing process. You may not want this enabled if the additional work (mainly disk IO) of importing the index stores is not worth it for your project.

This only applies when using `generation_mode = "incremental"`. | `True` | | install_directory | Optional. The directory where the generated project will be written to.

The path is relative to the workspace root.

Defaults to the directory that the `xcodeproj` target is declared in (e.g. if the `xcodeproj` target is declared in `//foo/bar:BUILD` then the default value is `"foo/bar"`). Use `""` to have the project generated in the workspace root. | `None` | | ios_device_cpus | Optional. The value to use for `--ios_multi_cpus` when building the transitive dependencies of the targets specified in the `top_level_targets` argument with the `"device"` `target_environment`.

**Warning:** Changing this value will affect the Starlark transition hash of all transitive dependencies of the targets specified in the `top_level_targets` argument with the `"device"` `target_environment`, even if they aren't iOS targets. | `"arm64"` | | ios_simulator_cpus | Optional. The value to use for `--ios_multi_cpus` when building the transitive dependencies of the targets specified in the `top_level_targets` argument with the `"simulator"` `target_environment`.

If no value is specified, it defaults to the simulator cpu that goes with `--host_cpu` (i.e. `sim_arm64` on Apple Silicon and `x86_64` on Intel).

**Warning:** Changing this value will affect the Starlark transition hash of all transitive dependencies of the targets specified in the `top_level_targets` argument with the `"simulator"` `target_environment`, even if they aren't iOS targets. | `None` | @@ -117,6 +120,7 @@ xcodeproj( | project_name | Optional. The name to use for the `.xcodeproj` file.

If not specified, the value of the `name` argument is used. | `None` | | project_options | Optional. A value returned by `project_options`. | `None` | | scheme_autogeneration_mode | Optional. Specifies how Xcode schemes are automatically generated:

| `"auto"` | +| scheme_autogeneration_config | Optional. A value returned by [`xcschemes.autogeneration_config`](#xcschemes.autogeneration_config).

Allows further configuration of `scheme_autogeneration_mode`. | `{}` | | schemes | Optional. A `list` of values returned by `xcode_schemes.scheme`.

This and the `scheme_autogeneration_mode` argument together customize how schemes for targets are generated, when using `generation_mode = "legacy"`.

Target labels listed in the schemes need to be from the transitive dependencies of the targets specified in the `top_level_targets` argument. | `[]` | | target_name_mode | Optional. Specifies how Xcode targets names are represented:

| `"auto"` | | top_level_targets | A `list` of a list of top-level targets.

Each target can be specified as either a `Label` (or label-like `string`), a value returned by `top_level_target`, or a value returned by `top_level_targets`. | none | @@ -236,6 +240,28 @@ Defines a command-line argument. | literal_string | Whether `value` should be interpreted as a literal string.

If `True`, any spaces will be escaped. This means that `value` will be passed to the launch target as a single string. If `False`, any spaces will not be escaped. This is useful to group multiple arguments under a single checkbox in Xcode. | `True` | + + +## xcschemes.autogeneration_config + +
+xcschemes.autogeneration_config(scheme_name_exclude_patterns)
+
+ +Creates a value for the [`scheme_autogeneration_config`](xcodeproj-scheme_autogeneration_config) attribute of `xcodeproj`. + +**PARAMETERS** + + +| Name | Description | Default Value | +| :------------- | :------------- | :------------- | +| scheme_name_exclude_patterns | A `list` of regex patterns used to skip creating matching autogenerated schemes.

Example:

xcodeproj(
    ...
    scheme_name_exclude_patterns = xcschemes.autogeneration_config(
        scheme_name_exclude_patterns = [
            ".*somePattern.*",
            "^AnotherPattern.*",
        ],
    )
)
| `None` | + +**RETURNS** + +An opaque value for the [`scheme_autogeneration_config`](xcodeproj-scheme_autogeneration_config) attribute of `xcodeproj`. + + ## xcschemes.diagnostics diff --git a/examples/integration/BUILD b/examples/integration/BUILD index 5218309d6..8307c6e38 100644 --- a/examples/integration/BUILD +++ b/examples/integration/BUILD @@ -10,6 +10,7 @@ load( "FAIL_FOR_INVALID_EXTRA_FILES_TARGETS", "PRE_BUILD", "PROJECT_OPTIONS", + "SCHEME_AUTOGENERATION_CONFIG", "SCHEME_AUTOGENERATION_MODE", "UNFOCUSED_TARGETS", "XCODEPROJ_TARGETS", @@ -68,6 +69,7 @@ string_flag( pre_build = PRE_BUILD, project_name = "Integration", project_options = PROJECT_OPTIONS, + scheme_autogeneration_config = SCHEME_AUTOGENERATION_CONFIG, scheme_autogeneration_mode = SCHEME_AUTOGENERATION_MODE, schemes = get_xcode_schemes(), tags = ["manual"], diff --git a/examples/integration/Lib/UndesiredSchemes/BUILD b/examples/integration/Lib/UndesiredSchemes/BUILD new file mode 100644 index 000000000..89e07a2b1 --- /dev/null +++ b/examples/integration/Lib/UndesiredSchemes/BUILD @@ -0,0 +1,18 @@ +"""Targets meant to match scheme auto-generation exclude patterns""" + +load( + "@build_bazel_rules_swift//swift:swift.bzl", + "swift_library", +) + +swift_library( + name = "UndesiredScheme_Swift", + srcs = ["UndesiredScheme.swift"], + visibility = ["//iOSApp/Source:__pkg__"], +) + +swift_library( + name = "UnwantedScheme_Swift", + srcs = ["UnwantedScheme.swift"], + visibility = ["//iOSApp/Source:__pkg__"], +) diff --git a/examples/integration/Lib/UndesiredSchemes/UndesiredScheme.swift b/examples/integration/Lib/UndesiredSchemes/UndesiredScheme.swift new file mode 100644 index 000000000..e69de29bb diff --git a/examples/integration/Lib/UndesiredSchemes/UnwantedScheme.swift b/examples/integration/Lib/UndesiredSchemes/UnwantedScheme.swift new file mode 100644 index 000000000..e69de29bb diff --git a/examples/integration/iOSApp/Source/BUILD b/examples/integration/iOSApp/Source/BUILD index 207fc92dc..a50a9f81e 100644 --- a/examples/integration/iOSApp/Source/BUILD +++ b/examples/integration/iOSApp/Source/BUILD @@ -142,6 +142,8 @@ swift_library( tags = ["manual"], visibility = ["//iOSApp/Test:__subpackages__"], deps = [ + "//Lib/UndesiredSchemes:UndesiredScheme_Swift", + "//Lib/UndesiredSchemes:UnwantedScheme_Swift", "//UI", "//iOSApp/Source/CoreUtilsMixed/MixedAnswer", "//iOSApp/Source/CoreUtilsObjC", diff --git a/examples/integration/test/fixtures/bwb.xcodeproj/project.pbxproj b/examples/integration/test/fixtures/bwb.xcodeproj/project.pbxproj index 86a57276a..3ae333d0b 100644 --- a/examples/integration/test/fixtures/bwb.xcodeproj/project.pbxproj +++ b/examples/integration/test/fixtures/bwb.xcodeproj/project.pbxproj @@ -42,6 +42,7 @@ 2D4CAA83F7115BFA298D144F /* Lib.swift in Sources */ = {isa = PBXBuildFile; fileRef = 001180D1D42E3BF78C11FFA7 /* Lib.swift */; }; 2DC2AA307770189F01599D42 /* Resources.swift in Sources */ = {isa = PBXBuildFile; fileRef = 930A52F1C2814B98802A80A4 /* Resources.swift */; }; 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 */; }; 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, ); }; }; @@ -59,6 +60,7 @@ 5E60B63BE683E8071C4F0DDB /* main.c in Sources */ = {isa = PBXBuildFile; fileRef = B74F36B217CBAEC380D87116 /* main.c */; }; 5FB8DE696A4FA2F82D0A6109 /* Resources.swift in Sources */ = {isa = PBXBuildFile; fileRef = 930A52F1C2814B98802A80A4 /* Resources.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 */; }; @@ -206,6 +208,13 @@ remoteGlobalIDString = 7E7D155EBCA520F35DEA3571; remoteInfo = BazelDependencies; }; + 3C92E2BCF33B9A23D10A1EA8 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 0805833D09730531AD081697 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 7E7D155EBCA520F35DEA3571; + remoteInfo = BazelDependencies; + }; 3F2526905F32AB84EFE7FBFE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 0805833D09730531AD081697 /* Project object */; @@ -493,6 +502,13 @@ remoteGlobalIDString = 7E7D155EBCA520F35DEA3571; remoteInfo = BazelDependencies; }; + AF5682480BFEB1840EA394BB /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 0805833D09730531AD081697 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 7E7D155EBCA520F35DEA3571; + remoteInfo = BazelDependencies; + }; B3ABD492E3DA9C3BA85F7BA0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 0805833D09730531AD081697 /* Project object */; @@ -693,48 +709,51 @@ /* 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 = ""; }; 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 = ""; }; 02DE116B74CE8E784FC15575 /* macOSAppUITests.library.rules_xcodeproj.swift.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = macOSAppUITests.library.rules_xcodeproj.swift.compile.params; sourceTree = ""; }; - 0375E984144102E2397ACC93 /* echo_client.48.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = echo_client.48.link.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 = ""; }; 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 = ""; }; - 054461857A071047FB31A959 /* iOSAppObjCUnitTestSuite.45.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = iOSAppObjCUnitTestSuite.45.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 = ""; }; - 074A21BC639A4E8BCF0EF703 /* tvOSAppUITests.137.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = tvOSAppUITests.137.link.params; 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 = ""; }; - 0A4DA568B915497562BCA215 /* tvOSApp.187.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = tvOSApp.187.link.params; 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 = ""; }; 0AF0FE2D6E46632943A23AAC /* BUILD */ = {isa = PBXFileReference; explicitFileType = text.script.python; path = BUILD; sourceTree = ""; }; - 0B0FEC6A7848DDDA72689A1D /* LibFramework.watchOS.13.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = LibFramework.watchOS.13.link.params; sourceTree = ""; }; 0B19B3349C83AEAD1B4550A6 /* bucket */ = {isa = PBXFileReference; lastKnownFileType = folder; path = bucket; sourceTree = ""; }; 0B1C4FB2663DC699A8530D11 /* iOSAppSwiftUnitTestSuite.library.rules_xcodeproj.swift.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = iOSAppSwiftUnitTestSuite.library.rules_xcodeproj.swift.compile.params; sourceTree = ""; }; 0B1FF17BDAB7E975046B305C /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; - 0B317312D9FC9A2854838E2E /* proto.47.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = proto.47.link.params; sourceTree = ""; }; 0B46C19AD5A145E2F87A6232 /* BUILD */ = {isa = PBXFileReference; explicitFileType = text.script.python; path = BUILD; sourceTree = ""; }; 0C5DBB439F85E47FD7C722FE /* BUILD */ = {isa = PBXFileReference; explicitFileType = text.script.python; path = BUILD; sourceTree = ""; }; 0C8C8454418DDFFE862326C6 /* iMessageAppExtension.appex */ = {isa = PBXFileReference; explicitFileType = "wrapper.app-extension"; includeInIndex = 0; path = iMessageAppExtension.appex; sourceTree = BUILT_PRODUCTS_DIR; }; + 0CC75255268D2BA5078ACC1B /* macOSApp.40.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = macOSApp.40.link.params; sourceTree = ""; }; 0CD48611106618767B10E7C9 /* nested */ = {isa = PBXFileReference; lastKnownFileType = folder; path = nested; sourceTree = ""; }; 0D0B0EED4E82FC07283AE0B2 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; - 0D2981D567FA2057F6D374A2 /* BasicTests.68.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = BasicTests.68.link.params; sourceTree = ""; }; 0D2C6E1163F9E4CA1AA29526 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; 0D43E9F955CDD63EAA3B6A7E /* Nested */ = {isa = PBXFileReference; lastKnownFileType = folder; path = Nested; sourceTree = ""; }; 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; }; @@ -743,15 +762,17 @@ 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 = ""; }; - 0E4A29FCFB1EF808C0281273 /* WidgetExtension.9.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = WidgetExtension.9.link.params; sourceTree = ""; }; 0EBD8F245B059F4F6F6FB96F /* BUILD */ = {isa = PBXFileReference; explicitFileType = text.script.python; path = BUILD; sourceTree = ""; }; 0EECEF60D8A575D7E9900E34 /* BUILD */ = {isa = PBXFileReference; explicitFileType = text.script.python; path = BUILD; sourceTree = ""; }; + 0F296009F7820C04C5FFC001 /* macOSLib.framework.39.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = macOSLib.framework.39.link.params; sourceTree = ""; }; 0F4334D1E132FC96899B1600 /* Utils.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Utils.h; sourceTree = ""; }; 0F7908A7AA17DC572020AD5A /* iMessageApp.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = iMessageApp.app; sourceTree = BUILT_PRODUCTS_DIR; }; 0FBBC2FB21538511658E50D7 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; 0FCCCBF2C1D3BDA06580DD2E /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; }; + 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 = ""; }; @@ -761,45 +782,40 @@ 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 = ""; }; - 1325FFA25927ED0731081A71 /* watchOS.184.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = watchOS.184.link.params; 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 = ""; }; - 14AD1EC29C0BBD597C6249C1 /* LibFramework.watchOS.78.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = LibFramework.watchOS.78.link.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 = ""; }; - 16B854E1A650C3E41190EFCE /* UIFramework.iOS.108.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = UIFramework.iOS.108.link.params; sourceTree = ""; }; - 17D548231C3488D768716C55 /* LibFramework.tvOS.88.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = LibFramework.tvOS.88.link.params; sourceTree = ""; }; - 1802CC4C9F6A908E13549C35 /* iOSAppUITests.128.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = iOSAppUITests.128.link.params; sourceTree = ""; }; + 1769FC8660C855984B603598 /* UIFramework.watchOS.117.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = UIFramework.watchOS.117.link.params; sourceTree = ""; }; 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 = ""; }; 1945876067D0AD96F7E7613A /* lib_swift.rules_xcodeproj.swift.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = lib_swift.rules_xcodeproj.swift.compile.params; sourceTree = ""; }; 198DE556D562EDC13D4512FE /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; 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 = ""; }; - 1A87C0159B9695AD7ECE2C4B /* tvOS.86.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = tvOS.86.link.params; 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 = ""; }; 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; }; - 1F8134F77F544CB23D217321 /* watchOSAppExtensionUnitTests.43.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = watchOSAppExtensionUnitTests.43.link.params; sourceTree = ""; }; - 1FB5E5B3392C9FB41132F2FF /* CommandLineToolTests.166.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = CommandLineToolTests.166.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; }; - 232257B67DF38594D720307F /* iMessageAppExtension.33.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = iMessageAppExtension.33.link.params; sourceTree = ""; }; 2389FC2E3790FF01911CDBCC /* iOSAppObjCUnitTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = iOSAppObjCUnitTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; - 2445EFAB3CB4CA421C10639D /* LibFramework.tvOS.185.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = LibFramework.tvOS.185.link.params; sourceTree = ""; }; 246221126DAC28EE34F192FE /* c_lib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = c_lib.h; 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 = ""; }; @@ -808,24 +824,20 @@ 2522B6D410760A316C93D186 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; 2584698BDD314083DF9CAC33 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; 25F3BAEB4375EB717A347CDE /* Info.extension.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.extension.plist; sourceTree = ""; }; - 262670B8C9FB7925AB1A04F3 /* iMessageAppExtension.130.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = iMessageAppExtension.130.link.params; sourceTree = ""; }; - 26BBACE093D7C9D74E098562 /* iOSAppObjCUnitTests.127.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = iOSAppObjCUnitTests.127.link.params; sourceTree = ""; }; 26E5833F2697196812B9D228 /* watchOSApp.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = watchOSApp.app; sourceTree = BUILT_PRODUCTS_DIR; }; - 270B2A6E20B7E5E675328C74 /* UIFramework.watchOS.111.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = UIFramework.watchOS.111.link.params; sourceTree = ""; }; 2713477858FF9C33BBDBB444 /* bucket */ = {isa = PBXFileReference; lastKnownFileType = folder; path = bucket; sourceTree = ""; }; - 27203274F66F02E1713B3A42 /* tvOS.21.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = tvOS.21.link.params; sourceTree = ""; }; 2766B46B4832D8548DA73D85 /* TestingUtils-Swift.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "TestingUtils-Swift.h"; sourceTree = ""; }; - 2847197F08EA0A3DC271DBD3 /* LibFramework.tvOS.23.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = LibFramework.tvOS.23.link.params; 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 = ""; }; 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 = ""; }; - 29F25AC3D5433CE423983DC9 /* proto.144.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = proto.144.link.params; sourceTree = ""; }; + 2AB484DC0F81BB4D2580BA84 /* FrameworkCoreUtilsObjC.180.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = FrameworkCoreUtilsObjC.180.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 = ""; }; - 2B7A982DDDBCDF6454893055 /* iOS.181.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = iOS.181.link.params; sourceTree = ""; }; - 2BB2320E86F1E5D7FC9A2C36 /* UIFramework.watchOS.79.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = UIFramework.watchOS.79.link.params; 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 = ""; }; @@ -838,37 +850,42 @@ 30A4069AA00E60D0D648E673 /* WatchOSAppUITests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = WatchOSAppUITests.swift; sourceTree = ""; }; 317370CB83DB554AB70E1706 /* BUILD */ = {isa = PBXFileReference; explicitFileType = text.script.python; path = BUILD; 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 = ""; }; 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 = ""; }; 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 = ""; }; - 341F188F22556F1BC555BAE7 /* iOSApp.82.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = iOSApp.82.link.params; sourceTree = ""; }; 3423B69557C97C31CE6F81A4 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; - 34508561C2DE3A16E8E0BAE1 /* macOSApp.135.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = macOSApp.135.link.params; 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 = ""; }; 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 = ""; }; 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 = ""; }; 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 = ""; }; - 39E1E5E642798A7D0AF6B6B6 /* macOSAppUITests.136.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = macOSAppUITests.136.link.params; 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 = ""; }; - 3B16BA5AB6E30E38AEA30E9E /* UniversalCommandLineTool.158.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = UniversalCommandLineTool.158.link.params; sourceTree = ""; }; 3B71B06909607B23A9DE8528 /* Info.withbundleid.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.withbundleid.plist; 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 = ""; }; 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 = ""; }; @@ -879,15 +896,16 @@ 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 = ""; }; 43F3A4368AFBD56E76174783 /* Lib.rules_xcodeproj.swift.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = Lib.rules_xcodeproj.swift.compile.params; sourceTree = ""; }; - 448DFCE79AEE0E31AC0B9633 /* tvOSAppUnitTests.41.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = tvOSAppUnitTests.41.link.params; sourceTree = ""; }; 450105F2AE378B492310C414 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; 455D4AB50F56B2CA4A6DF873 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; 45C6889BDC9850C9BA631C0C /* Lib.rules_xcodeproj.swift.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = Lib.rules_xcodeproj.swift.compile.params; sourceTree = ""; }; - 45EE5A06ADAF1DBF15E9B1B3 /* UIFramework.tvOS.186.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = UIFramework.tvOS.186.link.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 = ""; }; 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 = ""; }; 477D3B8D6C3F621AC9FFDDF7 /* tool.binary */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = tool.binary; sourceTree = BUILT_PRODUCTS_DIR; }; 4783734919B0856930DA0356 /* Lib.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Lib.swift; sourceTree = ""; }; 482456516779904CDD4DA956 /* iOSAppObjCUnitTests.library.rules_xcodeproj.c.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = iOSAppObjCUnitTests.library.rules_xcodeproj.c.compile.params; sourceTree = ""; }; @@ -898,6 +916,7 @@ 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 = ""; }; @@ -907,6 +926,7 @@ 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 = ""; }; 4ECA5AD096BA2BCFBF3797A5 /* WidgetExtension.library.rules_xcodeproj.swift.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = WidgetExtension.library.rules_xcodeproj.swift.compile.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 = ""; }; @@ -914,11 +934,10 @@ 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 = ""; }; - 5176B8FE788D6451AFDAE7EB /* echo_client.145.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = echo_client.145.link.params; sourceTree = ""; }; 52A6C028E444B9DE1667DD52 /* Lib.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Lib.swift; sourceTree = ""; }; - 533E7F5BE1AF1559F1E3444D /* tvOSApp.90.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = tvOSApp.90.link.params; sourceTree = ""; }; 5363C149251A898407013539 /* lib.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = lib.swift; sourceTree = ""; }; 53D0F6EDE1512C50DAFFD638 /* UI.rules_xcodeproj.swift.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = UI.rules_xcodeproj.swift.compile.params; sourceTree = ""; }; 53D5FD58D31A3C25D52D1647 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; @@ -931,24 +950,25 @@ 57A195462C22D04EEE52ADA1 /* UnitTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UnitTests.swift; sourceTree = ""; }; 580DBA740396A7EE1950EA08 /* Lib.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Lib.swift; 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 = ""; }; - 59544531B7993665F235AB49 /* LibFramework.tvOS.120.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = LibFramework.tvOS.120.link.params; sourceTree = ""; }; - 5956BB946B12889AA80CCF14 /* UIFramework.iOS.173.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = UIFramework.iOS.173.link.params; sourceTree = ""; }; - 597890449A0A97806C8AFB74 /* UniversalCommandLineTool.61.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = UniversalCommandLineTool.61.link.params; 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 = ""; }; - 5AF786771CFEB13B899AC111 /* iOSAppUITests.31.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = iOSAppUITests.31.link.params; sourceTree = ""; }; 5B46938DDD4964E9DDE6D734 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; - 5B6642088C5660D5DBA4C060 /* LibFramework.watchOS.110.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = LibFramework.watchOS.110.link.params; 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; }; - 5BF1AF506756261E4BB07DE7 /* UIFramework.tvOS.89.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = UIFramework.tvOS.89.link.params; sourceTree = ""; }; + 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 = ""; }; 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; }; @@ -960,10 +980,10 @@ 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 = ""; }; 60F680862A1243B2BBC49489 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; - 6120E3D0B0F7A5CD900B3B25 /* Bundle.26.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = Bundle.26.link.params; 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 = ""; }; 623D687C417A342B4625FC03 /* CoreUtilsObjC.rules_xcodeproj.cxx.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = CoreUtilsObjC.rules_xcodeproj.cxx.compile.params; sourceTree = ""; }; @@ -972,15 +992,14 @@ 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 = ""; }; 64C72716419290029B6988AD /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; - 657562F75C1F6FA7FDBD2118 /* macOSLib.framework.37.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = macOSLib.framework.37.link.params; 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 = ""; }; 65CCA655A0F98731633FFED4 /* libTestingUtils.a */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.dylib"; includeInIndex = 0; name = libTestingUtils.a; path = "bazel-out/CONFIGURATION-STABLE-16/bin/iOSApp/Test/TestingUtils/libTestingUtils.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 65E290F156356AFCE3BD5B80 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; 65FE043974334DC5DC5E16DD /* AppClip.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = AppClip.app; sourceTree = BUILT_PRODUCTS_DIR; }; - 6644FE7165D51D5B7207F5FB /* iOS.19.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = iOS.19.link.params; sourceTree = ""; }; 666CA3F3332DD63287F79EA2 /* lib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = lib.h; sourceTree = ""; }; 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 = ""; }; 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; }; @@ -988,23 +1007,26 @@ 69187F88EEB256106823FB51 /* FrenchLocalizableResourcesOutput */ = {isa = PBXFileReference; lastKnownFileType = file; path = FrenchLocalizableResourcesOutput; 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 = ""; }; - 6A5211FBD0B63A98A40709CB /* iOSAppObjCUnitTests.191.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = iOSAppObjCUnitTests.191.link.params; sourceTree = ""; }; 6BC7003FB816B915831E312C /* private_lib.rules_xcodeproj.c.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = private_lib.rules_xcodeproj.c.compile.params; sourceTree = ""; }; - 6BE57B804FE86E8F2FF507F0 /* watchOSAppUITests.42.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = watchOSAppUITests.42.link.params; sourceTree = ""; }; + 6C3CB5F68E378F676D5B77C1 /* UniversalCommandLineTool.69.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = UniversalCommandLineTool.69.link.params; sourceTree = ""; }; 6C6EE1DE3180397105BD9AB8 /* Lib.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Lib.swift; sourceTree = ""; }; - 6CEA679812E2D7CF5BFBA43A /* echo_server.146.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = echo_server.146.link.params; sourceTree = ""; }; + 6CABB4F7094DCB9E049E1059 /* iOSAppObjCUnitTests.98.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = iOSAppObjCUnitTests.98.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 = ""; }; 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 = ""; }; @@ -1017,7 +1039,6 @@ 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 = ""; }; - 780C8205A62E9706FF8A454C /* UIFramework.watchOS.176.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = UIFramework.watchOS.176.link.params; sourceTree = ""; }; 788FC887077E2ECEA09C1D7F /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; }; 7890CBC35A456F689412057F /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; 789852BB553F81B751FA4D9C /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; @@ -1025,14 +1046,11 @@ 78FE624BF928D506563D850B /* private_swift_lib.rules_xcodeproj.swift.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = private_swift_lib.rules_xcodeproj.swift.compile.params; sourceTree = ""; }; 79894070BD29858D83208F7B /* Lib.rules_xcodeproj.swift.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = Lib.rules_xcodeproj.swift.compile.params; sourceTree = ""; }; 79B50B7CCD3AC7ECE084459F /* AppClip.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppClip.swift; sourceTree = ""; }; - 79E19CA9513B2E7C18DC18DD /* UniversalCommandLineTool.67.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = UniversalCommandLineTool.67.link.params; sourceTree = ""; }; 79E864C8ECC6BFF87C98FA10 /* tvOSApp.library.rules_xcodeproj.swift.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = tvOSApp.library.rules_xcodeproj.swift.compile.params; sourceTree = ""; }; - 7A7F25CCDE2EEB32C572AE42 /* iOSAppObjCUnitTestSuite.142.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = iOSAppObjCUnitTestSuite.142.link.params; sourceTree = ""; }; - 7ABE32E2E96F19DFB06E7614 /* iOSApp.114.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = iOSApp.114.link.params; sourceTree = ""; }; + 79F1001FA3552826C9D9DFE8 /* iOSAppUITestSuite.46.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = iOSAppUITestSuite.46.link.params; sourceTree = ""; }; 7ACFF1B406643C79722CF204 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; 7AE6411D54CF209FD27D60CE /* private_lib.rules_xcodeproj.c.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = private_lib.rules_xcodeproj.c.compile.params; sourceTree = ""; }; 7B56D17749A5E31D7E39A07E /* tvOSAppUITests.library.rules_xcodeproj.swift.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = tvOSAppUITests.library.rules_xcodeproj.swift.compile.params; sourceTree = ""; }; - 7BC98B0BB605B03AA8C87FCA /* watchOSAppExtensionUnitTests.140.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = watchOSAppExtensionUnitTests.140.link.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 = ""; }; 7C55A497912628B67E440D47 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; @@ -1043,21 +1061,22 @@ 7D3BDDAD958DE08ADF06A196 /* Lib.rules_xcodeproj.swift.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = Lib.rules_xcodeproj.swift.compile.params; sourceTree = ""; }; 7D83F24B76B152285DA6ECB7 /* Lib.rules_xcodeproj.swift.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = Lib.rules_xcodeproj.swift.compile.params; sourceTree = ""; }; 7DDB0E60EC6469DA48A8787B /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; }; - 7DF14EE386BA17196AE851DF /* macOSApp.38.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = macOSApp.38.link.params; sourceTree = ""; }; - 7E015077D1F9B57C71E2B030 /* watchOSAppExtension.80.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = watchOSAppExtension.80.link.params; 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 = ""; }; - 8041FCDF7A20F2A535E925E0 /* watchOS.87.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = watchOS.87.link.params; 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 = ""; }; - 8197511973FB083383BAE02A /* iOSAppSwiftUnitTests.35.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = iOSAppSwiftUnitTests.35.link.params; 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; }; 820F0E7BE6D1A1C7C2B9576A /* libImportableLibrary.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = libImportableLibrary.a; sourceTree = ""; }; + 821CEED3DB9C25E8B39E508B /* Bundle.28.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = Bundle.28.link.params; sourceTree = ""; }; 82377A3960357DD511F9E860 /* Utils.rules_xcodeproj.c.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = Utils.rules_xcodeproj.c.compile.params; sourceTree = ""; }; 825BCC56AB8B355E64DBC47A /* FXPageControl.rules_xcodeproj.c.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = FXPageControl.rules_xcodeproj.c.compile.params; sourceTree = ""; }; 826DA20CE8EB93FF0788E530 /* iOSAppSwiftUnitTests.library.rules_xcodeproj.swift.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = iOSAppSwiftUnitTests.library.rules_xcodeproj.swift.compile.params; sourceTree = ""; }; @@ -1074,16 +1093,18 @@ 84D982C64D4FD100F6E0ADD2 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; 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 = ""; }; 87B06507B2938C2994CAC8D4 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; - 87B321B7703E67566211E991 /* watchOSAppExtension.177.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = watchOSAppExtension.177.link.params; 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 = ""; }; - 8998A3B21773B56DF0F0A3CC /* watchOS.22.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = watchOS.22.link.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 = ""; }; @@ -1091,18 +1112,20 @@ 8C79A816C831354461BE752F /* liblib_impl.a */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.dylib"; includeInIndex = 0; name = liblib_impl.a; path = "bazel-out/CONFIGURATION-STABLE-32/bin/CommandLine/CommandLineToolLib/liblib_impl.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 8D59CB4DD416D596DF065CE3 /* CoreUtilsObjC.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = CoreUtilsObjC.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 8D92957E4ABD6A709E5C1CF7 /* MixedAnswer.rules_xcodeproj.c.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = MixedAnswer.rules_xcodeproj.c.compile.params; sourceTree = ""; }; - 8D9AF8249317BA8E02E8B13C /* iOSAppSwiftUnitTests.132.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = iOSAppSwiftUnitTests.132.link.params; sourceTree = ""; }; + 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 = ""; }; - 8E435494CDFD6D4F5D26CE58 /* iOSAppSwiftUnitTestSuite.46.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = iOSAppSwiftUnitTestSuite.46.link.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 = ""; }; 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 = ""; }; - 9055639205579CB03CB1BEEC /* iOS.84.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = iOS.84.link.params; sourceTree = ""; }; - 9058BB28DD94EEB82C4F51B6 /* macOSLib.framework.134.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = macOSLib.framework.134.link.params; sourceTree = ""; }; + 908761DE8B46E5DEC9D0430F /* watchOSAppExtensionUnitTests.45.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = watchOSAppExtensionUnitTests.45.link.params; sourceTree = ""; }; 9089BB0D5CC8008B36E4B995 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; 908D4C5C5D08AA692A4CAAA3 /* Utils.rules_xcodeproj.c.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = Utils.rules_xcodeproj.c.compile.params; sourceTree = ""; }; + 90AEBED782BF96F852E572BB /* FrameworkCoreUtilsObjC.12.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = FrameworkCoreUtilsObjC.12.link.params; sourceTree = ""; }; 914089F36318E438969826DE /* cc_lib_defines.rules_xcodeproj.c.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = cc_lib_defines.rules_xcodeproj.c.compile.params; sourceTree = ""; }; 91D8196B6FBB0B36F1BA0B23 /* BUILD */ = {isa = PBXFileReference; explicitFileType = text.script.python; path = BUILD; sourceTree = ""; }; 920AE9E6999BCE3F4C662853 /* TestingUtils.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TestingUtils.swift; sourceTree = ""; }; @@ -1113,12 +1136,9 @@ 930D847F31B7CB44D6A14542 /* dir */ = {isa = PBXFileReference; lastKnownFileType = folder; path = dir; sourceTree = ""; }; 938946669EFF4B33AF06400C /* TestingUtils-Swift.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "TestingUtils-Swift.h"; sourceTree = ""; }; 93D1D04313B716DB073ECDBA /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/Localizable.strings; sourceTree = ""; }; - 94150BC76BD0E3E8E700B89B /* WidgetExtension.106.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = WidgetExtension.106.link.params; sourceTree = ""; }; - 942DF3EB5361952D253461F5 /* watchOSAppExtension.15.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = watchOSAppExtension.15.link.params; sourceTree = ""; }; - 944386873CE4312CB77D89C1 /* iOSAppObjCUnitTests.30.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = iOSAppObjCUnitTests.30.link.params; sourceTree = ""; }; - 949927058FB8184CAB15F7DD /* CommandLineTool.55.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = CommandLineTool.55.link.params; 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 = ""; }; - 9594F6C2AF9D2D3BDDA693AC /* UIFramework.iOS.11.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = UIFramework.iOS.11.link.params; 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 = ""; }; @@ -1130,32 +1150,34 @@ 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 = ""; }; - 9A17B1A427E0F0AC087B5C2D /* tool.101.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = tool.101.link.params; 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 = ""; }; - 9AACC943165C723FFCAFB688 /* AppClip.168.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = AppClip.168.link.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 = ""; }; - 9C4ECE0ACED2D859395F4304 /* WidgetExtension.171.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = WidgetExtension.171.link.params; sourceTree = ""; }; 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 = ""; }; 9CE82A32473010BC48F4AB2D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; 9D7106E1A63C05DF893F046E /* lib_swift.rules_xcodeproj.swift.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = lib_swift.rules_xcodeproj.swift.compile.params; sourceTree = ""; }; 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 = ""; }; - 9E5FC395F2415C080203222E /* CommandLineToolTests.69.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = CommandLineToolTests.69.link.params; 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 = ""; }; @@ -1165,13 +1187,15 @@ A068F1CD6AA00F0C7C678F3E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; A0F9E920EF76C06757221FE8 /* libprivate_lib.a */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.dylib"; includeInIndex = 0; name = libprivate_lib.a; path = "bazel-out/CONFIGURATION-STABLE-32/bin/CommandLine/CommandLineToolLib/libprivate_lib.a"; sourceTree = BUILT_PRODUCTS_DIR; }; A1119320B98161A774B04280 /* iOSAppUITestSuite.library.rules_xcodeproj.swift.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = iOSAppUITestSuite.library.rules_xcodeproj.swift.compile.params; sourceTree = ""; }; - A2102D238AA6CCC05DEB40A2 /* UIFramework.iOS.76.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = UIFramework.iOS.76.link.params; sourceTree = ""; }; + A17B3637C2EAEFC973BFFBD3 /* watchOSAppUITests.44.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = watchOSAppUITests.44.link.params; sourceTree = ""; }; + A18C0FF799E731A2AAF1149F /* libUnwantedScheme_Swift.a */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.dylib"; includeInIndex = 0; name = libUnwantedScheme_Swift.a; path = "bazel-out/CONFIGURATION-STABLE-12/bin/Lib/UndesiredSchemes/libUnwantedScheme_Swift.a"; sourceTree = BUILT_PRODUCTS_DIR; }; A2A8FD058DE329954EC8EA34 /* libMixedAnswerLib_Swift.a */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.dylib"; includeInIndex = 0; name = libMixedAnswerLib_Swift.a; path = "bazel-out/CONFIGURATION-STABLE-12/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/libMixedAnswerLib_Swift.a"; sourceTree = BUILT_PRODUCTS_DIR; }; A3A45A0819673348AC1A7EEE /* UITests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UITests.swift; sourceTree = ""; }; A41154AFFA53BE02DCE29451 /* BUILD */ = {isa = PBXFileReference; explicitFileType = text.script.python; path = BUILD; sourceTree = ""; }; 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; }; @@ -1184,10 +1208,8 @@ A755C138B3C37E7179D040B6 /* BUILD */ = {isa = PBXFileReference; explicitFileType = text.script.python; path = BUILD; sourceTree = ""; }; 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 = ""; }; - A80DBFAD4F8A349A729A9CA7 /* iOSApp.17.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = iOSApp.17.link.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 = ""; }; - A85CC20DA5AE4F85840A569E /* FrameworkCoreUtilsObjC.107.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = FrameworkCoreUtilsObjC.107.link.params; 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 = ""; }; @@ -1196,7 +1218,6 @@ 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 = ""; }; - AAAE806FBCD1671919ED4E58 /* UIFramework.tvOS.121.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = UIFramework.tvOS.121.link.params; 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; }; AAD28BFADDA0B4CDA0EBF407 /* Info.withbundleid.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.withbundleid.plist; sourceTree = ""; }; AADB68387784D243F2101889 /* BUILD */ = {isa = PBXFileReference; explicitFileType = text.script.python; path = BUILD; sourceTree = ""; }; @@ -1208,13 +1229,11 @@ 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 = ""; }; - AD6B6D83FDBBC2BCF05AF719 /* iOSAppUITests.192.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = iOSAppUITests.192.link.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 = ""; }; - AE71D1468375BA0DEF3B871A /* watchOSAppUITests.139.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = watchOSAppUITests.139.link.params; sourceTree = ""; }; - AF462FA0F5BD67BFF128B326 /* Bundle.123.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = Bundle.123.link.params; sourceTree = ""; }; AF952D0EF40631FEF757B7A3 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; - AFD3C5A3EFA9A251F8455C76 /* iOSAppUITestSuite.141.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = iOSAppUITestSuite.141.link.params; 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 = ""; }; @@ -1222,6 +1241,7 @@ 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 = ""; }; @@ -1230,21 +1250,28 @@ B2726EA189D2F4DBAA6F3CAF /* TestingUtils-Swift.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "TestingUtils-Swift.h"; 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 = ""; }; 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 = ""; }; - B7E8C1458F57F8D66C4EE334 /* UIFramework.tvOS.24.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = UIFramework.tvOS.24.link.params; sourceTree = ""; }; - B804F790C13FAC9D4DB4E61B /* FrameworkCoreUtilsObjC.75.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = FrameworkCoreUtilsObjC.75.link.params; sourceTree = ""; }; + B79298D6044D757CFAF6A176 /* iOSAppObjCUnitTestSuite.47.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = iOSAppObjCUnitTestSuite.47.link.params; sourceTree = ""; }; 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 = ""; }; 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 = ""; }; + 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 = ""; }; @@ -1252,42 +1279,40 @@ BBCBDDE5A101E5D9FE49EA69 /* ABundle.aplugin */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = ABundle.aplugin; sourceTree = BUILT_PRODUCTS_DIR; }; BBF2A4EF912B9BBF0F538961 /* watchOSAppExtensionUnitTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = watchOSAppExtensionUnitTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; BC0D919D9C4954991E8C1FB8 /* iOSApp.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = iOSApp.app; sourceTree = BUILT_PRODUCTS_DIR; }; - BC20BDE543F16E85C9645B6E /* iOS.116.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = iOS.116.link.params; sourceTree = ""; }; BC40176BF05CF8035B673F31 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; - BCDCF0464092A46B33E2A772 /* iOSAppUITests.95.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = iOSAppUITests.95.link.params; 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 = ""; }; - BF63D983DC1F647ADF23ACDC /* FrameworkCoreUtilsObjC.172.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = FrameworkCoreUtilsObjC.172.link.params; sourceTree = ""; }; BFFBC75BEF4BCC34BFD34A14 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; - C0CA6BFBCC48480A103AA104 /* iOSAppUITestSuite.44.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = iOSAppUITestSuite.44.link.params; sourceTree = ""; }; + 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 = ""; }; 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 = ""; }; - C1CAE721DFED4A03EBB8C523 /* tvOSApp.122.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = tvOSApp.122.link.params; sourceTree = ""; }; - C1EEE7B5540E297589117C6B /* iOSAppSwiftUnitTests.193.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = iOSAppSwiftUnitTests.193.link.params; 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; }; - C30C64BBE5837AA598F7EB9F /* AppClip.103.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = AppClip.103.link.params; sourceTree = ""; }; - C315F55EBA410BCB4339EC23 /* tvOSAppUnitTests.138.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = tvOSAppUnitTests.138.link.params; sourceTree = ""; }; - C35F586190511CE6729599B2 /* watchOSAppExtension.112.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = watchOSAppExtension.112.link.params; sourceTree = ""; }; C36AF413ED5BFE08C15B1666 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; 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 = ""; }; 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 = ""; }; 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 = ""; }; 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 = ""; }; - C885BB0B942C5AD0B838C633 /* tvOSAppUITests.40.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = tvOSAppUITests.40.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 = ""; }; @@ -1299,7 +1324,6 @@ 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 = ""; }; - CB50E410960192570E522604 /* iOSAppObjCUnitTests.94.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = iOSAppObjCUnitTests.94.link.params; 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 = ""; }; CC3E4C2E2017C34B5C0D2A9C /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/Localizable.strings; sourceTree = ""; }; @@ -1307,12 +1331,12 @@ 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 = ""; }; - CE9D6AD517F834FF833ABFB1 /* LibFramework.watchOS.175.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = LibFramework.watchOS.175.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 = ""; }; + 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 = ""; }; - D0266CB29086D1269580BE36 /* FrameworkCoreUtilsObjC.10.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = FrameworkCoreUtilsObjC.10.link.params; 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 = ""; }; @@ -1329,14 +1353,15 @@ 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 = ""; }; 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 = ""; }; - D7122CE606C0325B7F9979B4 /* tvOS.183.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = tvOS.183.link.params; 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; }; D758E9FA5D4EE6E708F24633 /* MixedAnswer.rules_xcodeproj.c.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = MixedAnswer.rules_xcodeproj.c.compile.params; sourceTree = ""; }; - D7BE13B882D7627D06EC8311 /* watchOS.119.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = watchOS.119.link.params; sourceTree = ""; }; D7C9CA49D3E31E3F29202DC8 /* tvOSAppUITests.library.rules_xcodeproj.swift.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = tvOSAppUITests.library.rules_xcodeproj.swift.compile.params; sourceTree = ""; }; D83C1C82CBE5911386938FA4 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; D8574D553DDB85CEABF025F1 /* BUILD */ = {isa = PBXFileReference; explicitFileType = text.script.python; path = BUILD; sourceTree = ""; }; @@ -1349,15 +1374,18 @@ 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 = ""; }; + DD502495CB3109F65CA688D4 /* LibFramework.tvOS.25.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = LibFramework.tvOS.25.link.params; sourceTree = ""; }; DD6A0B40D7F94C9F52459EAD /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; DE02C37CC2E3FFFFDA875DCD /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; 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 = ""; }; 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 = ""; }; @@ -1373,20 +1401,21 @@ 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; }; - E48FD55730C97E4609F98C17 /* iOSAppSwiftUnitTestSuite.143.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = iOSAppSwiftUnitTestSuite.143.link.params; sourceTree = ""; }; 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 = ""; }; - E6AFCAB671510F3826A57949 /* iOSAppSwiftUnitTests.96.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = iOSAppSwiftUnitTests.96.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 = ""; }; - E81204F4D05DE6A72621CEB7 /* tvOSApp.25.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = tvOSApp.25.link.params; 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; }; 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 = ""; }; E906A61B46091C8750A0DE5F /* BUILD */ = {isa = PBXFileReference; explicitFileType = text.script.python; path = BUILD; sourceTree = ""; }; E90B424B1FB8E0C952000C5A /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; @@ -1396,67 +1425,67 @@ 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 = ""; }; 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 = ""; }; 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 = ""; }; ED47BC3D346874D83932CBBF /* private_swift_lib.rules_xcodeproj.swift.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = private_swift_lib.rules_xcodeproj.swift.compile.params; sourceTree = ""; }; ED7D1E1D3205812DA8B79652 /* iOSAppUITests.library.rules_xcodeproj.swift.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = iOSAppUITests.library.rules_xcodeproj.swift.compile.params; sourceTree = ""; }; EDBC24457DA67ECC3D6F7FDD /* iOSAppUITests.library.rules_xcodeproj.swift.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = iOSAppUITests.library.rules_xcodeproj.swift.compile.params; sourceTree = ""; }; + EDD65070BE1E2AAA25B39C00 /* tvOSApp.27.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = tvOSApp.27.link.params; sourceTree = ""; }; EDF3C49F9EE73494542E6B4C /* BUILD */ = {isa = PBXFileReference; explicitFileType = text.script.python; path = BUILD; sourceTree = ""; }; EE7553CCD99E267E6222B2D6 /* MixedAnswer_objc_modulemap-module.modulemap */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.module-map"; path = "MixedAnswer_objc_modulemap-module.modulemap"; sourceTree = ""; }; 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 = ""; }; - EF62D457F48F8244CA7287C8 /* WidgetExtension.74.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = WidgetExtension.74.link.params; sourceTree = ""; }; - F07A3A35056CB19775C90CB9 /* macOSAppUITests.39.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = macOSAppUITests.39.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 = ""; }; - F398AD588CE9870A80977522 /* tvOS.118.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = tvOS.118.link.params; 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 = ""; }; 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 = ""; }; 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 = ""; }; 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 = ""; }; - FA07E297B941FBFF90833E57 /* AppClip.71.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = AppClip.71.link.params; sourceTree = ""; }; + FA23A53DBE81B3C4EAB7084E /* FrameworkCoreUtilsObjC.79.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = FrameworkCoreUtilsObjC.79.link.params; sourceTree = ""; }; FA2ECC9866D9B481C9AA3869 /* defines.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = defines.c; sourceTree = ""; }; - FA6DB33289EEB0406D77A98D /* BasicTests.165.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = BasicTests.165.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 = ""; }; 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 = ""; }; 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 = ""; }; FBF5E8B112A0F9856E6CB2D4 /* iOSApp.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = iOSApp.swift; sourceTree = ""; }; FC00C85AEA7136F459F898C6 /* tool.binary */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = tool.binary; sourceTree = BUILT_PRODUCTS_DIR; }; FC3A8C4396E61E2623C674F9 /* iOSAppSwiftUnitTests.library.rules_xcodeproj.swift.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = iOSAppSwiftUnitTests.library.rules_xcodeproj.swift.compile.params; sourceTree = ""; }; + FD208FC64918A9B402A2FB72 /* watchOSAppExtension.17.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = watchOSAppExtension.17.link.params; sourceTree = ""; }; FD2B68CA08A0E933AEC926AD /* tvOSApp.library.rules_xcodeproj.swift.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = tvOSApp.library.rules_xcodeproj.swift.compile.params; sourceTree = ""; }; - FD39164E2124A35C597A7B7C /* CommandLineTool.152.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = CommandLineTool.152.link.params; sourceTree = ""; }; FD6BAA19E0F18930717A7BCA /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; - FD930462F8B62502E9017F8B /* UIFramework.watchOS.14.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = UIFramework.watchOS.14.link.params; sourceTree = ""; }; FDB9E2792616FFD229AFFFE1 /* libfoo.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; path = libfoo.dylib; sourceTree = ""; }; FDC975FBEFB4C3DC4E3AB334 /* Lib.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Lib.framework; sourceTree = BUILT_PRODUCTS_DIR; }; FDE262D83CA79BF809694381 /* private_lib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = private_lib.c; sourceTree = ""; }; - FDE92CF23909C09EA7FFD922 /* iOSApp.179.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = iOSApp.179.link.params; sourceTree = ""; }; FE0CE46FA0CA3A3880DC4937 /* UIFramework.tvOS.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = UIFramework.tvOS.framework; sourceTree = BUILT_PRODUCTS_DIR; }; FE189AD6FFA4884CCE35A24D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; FE669B619CCFF9E088B6A0D3 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; FF0D8F2D7DD6920F1B902620 /* aplugin.library.rules_xcodeproj.c.compile.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = aplugin.library.rules_xcodeproj.c.compile.params; sourceTree = ""; }; FF87E74F427C45854319B27E /* TestingUtils-Swift.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "TestingUtils-Swift.h"; sourceTree = ""; }; - FFD54FB3F8293056E47EB524 /* echo_server.49.link.params */ = {isa = PBXFileReference; lastKnownFileType = file; path = echo_server.49.link.params; sourceTree = ""; }; /* End PBXFileReference section */ /* Begin PBXGroup section */ @@ -1614,6 +1643,15 @@ path = rules_xcodeproj; sourceTree = ""; }; + 05C51B027154AFF4D402B47C /* UndesiredSchemes */ = { + isa = PBXGroup; + children = ( + C68E1BB8871F5E76DF212BAF /* UndesiredScheme_Swift.rules_xcodeproj.swift.compile.params */, + 7DEC6551D73D51A3823452E9 /* UnwantedScheme_Swift.rules_xcodeproj.swift.compile.params */, + ); + path = UndesiredSchemes; + sourceTree = ""; + }; 06FC05DE3B4CE99D0405F701 /* iOSAppObjCUnitTests.__internal__.__test_bundle */ = { isa = PBXGroup; children = ( @@ -1775,6 +1813,7 @@ children = ( 5253CCC0EB95D711133E08AC /* dist */, 04526BD5C9AC74EDEBE55240 /* Resources */, + 1E5C18C3FBF5213BB3109FC2 /* UndesiredSchemes */, 81CEB384343DA3EBC4532AA1 /* BUILD */, 9089BB0D5CC8008B36E4B995 /* Info.plist */, A43526B3370311547CB489D0 /* README.md */, @@ -2232,6 +2271,16 @@ path = Source; sourceTree = ""; }; + 1E5C18C3FBF5213BB3109FC2 /* UndesiredSchemes */ = { + isa = PBXGroup; + children = ( + CF0130174B6A8E5C8C512C94 /* BUILD */, + 5D11CA1EFACA836892405D87 /* UndesiredScheme.swift */, + E8919C51A5446537BFF377EB /* UnwantedScheme.swift */, + ); + path = UndesiredSchemes; + sourceTree = ""; + }; 1ED91D49DCF14D2BE9C794B1 /* lib3 */ = { isa = PBXGroup; children = ( @@ -3298,115 +3347,115 @@ isa = PBXGroup; children = ( A03B86865F8A1F5158A94156 /* AppClip.6.link.params */, - FA07E297B941FBFF90833E57 /* AppClip.71.link.params */, - C30C64BBE5837AA598F7EB9F /* AppClip.103.link.params */, - 9AACC943165C723FFCAFB688 /* AppClip.168.link.params */, - 0D2981D567FA2057F6D374A2 /* BasicTests.68.link.params */, - FA6DB33289EEB0406D77A98D /* BasicTests.165.link.params */, - 6120E3D0B0F7A5CD900B3B25 /* Bundle.26.link.params */, - AF462FA0F5BD67BFF128B326 /* Bundle.123.link.params */, - 949927058FB8184CAB15F7DD /* CommandLineTool.55.link.params */, - FD39164E2124A35C597A7B7C /* CommandLineTool.152.link.params */, - 9E5FC395F2415C080203222E /* CommandLineToolTests.69.link.params */, - 1FB5E5B3392C9FB41132F2FF /* CommandLineToolTests.166.link.params */, - 0375E984144102E2397ACC93 /* echo_client.48.link.params */, - 5176B8FE788D6451AFDAE7EB /* echo_client.145.link.params */, - FFD54FB3F8293056E47EB524 /* echo_server.49.link.params */, - 6CEA679812E2D7CF5BFBA43A /* echo_server.146.link.params */, - D0266CB29086D1269580BE36 /* FrameworkCoreUtilsObjC.10.link.params */, - B804F790C13FAC9D4DB4E61B /* FrameworkCoreUtilsObjC.75.link.params */, - A85CC20DA5AE4F85840A569E /* FrameworkCoreUtilsObjC.107.link.params */, - BF63D983DC1F647ADF23ACDC /* FrameworkCoreUtilsObjC.172.link.params */, - 232257B67DF38594D720307F /* iMessageAppExtension.33.link.params */, - 262670B8C9FB7925AB1A04F3 /* iMessageAppExtension.130.link.params */, - 6644FE7165D51D5B7207F5FB /* iOS.19.link.params */, - 9055639205579CB03CB1BEEC /* iOS.84.link.params */, - BC20BDE543F16E85C9645B6E /* iOS.116.link.params */, - 2B7A982DDDBCDF6454893055 /* iOS.181.link.params */, - A80DBFAD4F8A349A729A9CA7 /* iOSApp.17.link.params */, - 341F188F22556F1BC555BAE7 /* iOSApp.82.link.params */, - 7ABE32E2E96F19DFB06E7614 /* iOSApp.114.link.params */, - FDE92CF23909C09EA7FFD922 /* iOSApp.179.link.params */, - 944386873CE4312CB77D89C1 /* iOSAppObjCUnitTests.30.link.params */, - CB50E410960192570E522604 /* iOSAppObjCUnitTests.94.link.params */, - 26BBACE093D7C9D74E098562 /* iOSAppObjCUnitTests.127.link.params */, - 6A5211FBD0B63A98A40709CB /* iOSAppObjCUnitTests.191.link.params */, - 054461857A071047FB31A959 /* iOSAppObjCUnitTestSuite.45.link.params */, - 7A7F25CCDE2EEB32C572AE42 /* iOSAppObjCUnitTestSuite.142.link.params */, - 8197511973FB083383BAE02A /* iOSAppSwiftUnitTests.35.link.params */, - E6AFCAB671510F3826A57949 /* iOSAppSwiftUnitTests.96.link.params */, - 8D9AF8249317BA8E02E8B13C /* iOSAppSwiftUnitTests.132.link.params */, - C1EEE7B5540E297589117C6B /* iOSAppSwiftUnitTests.193.link.params */, - 8E435494CDFD6D4F5D26CE58 /* iOSAppSwiftUnitTestSuite.46.link.params */, - E48FD55730C97E4609F98C17 /* iOSAppSwiftUnitTestSuite.143.link.params */, - 5AF786771CFEB13B899AC111 /* iOSAppUITests.31.link.params */, - BCDCF0464092A46B33E2A772 /* iOSAppUITests.95.link.params */, - 1802CC4C9F6A908E13549C35 /* iOSAppUITests.128.link.params */, - AD6B6D83FDBBC2BCF05AF719 /* iOSAppUITests.192.link.params */, - C0CA6BFBCC48480A103AA104 /* iOSAppUITestSuite.44.link.params */, - AFD3C5A3EFA9A251F8455C76 /* iOSAppUITestSuite.141.link.params */, - 2847197F08EA0A3DC271DBD3 /* LibFramework.tvOS.23.link.params */, - 17D548231C3488D768716C55 /* LibFramework.tvOS.88.link.params */, - 59544531B7993665F235AB49 /* LibFramework.tvOS.120.link.params */, - 2445EFAB3CB4CA421C10639D /* LibFramework.tvOS.185.link.params */, - 0B0FEC6A7848DDDA72689A1D /* LibFramework.watchOS.13.link.params */, - 14AD1EC29C0BBD597C6249C1 /* LibFramework.watchOS.78.link.params */, - 5B6642088C5660D5DBA4C060 /* LibFramework.watchOS.110.link.params */, - CE9D6AD517F834FF833ABFB1 /* LibFramework.watchOS.175.link.params */, - 7DF14EE386BA17196AE851DF /* macOSApp.38.link.params */, - 34508561C2DE3A16E8E0BAE1 /* macOSApp.135.link.params */, - F07A3A35056CB19775C90CB9 /* macOSAppUITests.39.link.params */, - 39E1E5E642798A7D0AF6B6B6 /* macOSAppUITests.136.link.params */, - 657562F75C1F6FA7FDBD2118 /* macOSLib.framework.37.link.params */, - 9058BB28DD94EEB82C4F51B6 /* macOSLib.framework.134.link.params */, - 0B317312D9FC9A2854838E2E /* proto.47.link.params */, - 29F25AC3D5433CE423983DC9 /* proto.144.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 */, + 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 */, + 90AEBED782BF96F852E572BB /* FrameworkCoreUtilsObjC.12.link.params */, + FA23A53DBE81B3C4EAB7084E /* FrameworkCoreUtilsObjC.79.link.params */, + EB81CB8BD511FD2F43F56348 /* FrameworkCoreUtilsObjC.113.link.params */, + 2AB484DC0F81BB4D2580BA84 /* FrameworkCoreUtilsObjC.180.link.params */, + C4FEF7878F4C02DEE89B2A5A /* iMessageAppExtension.35.link.params */, + 465A9565FDF37BE59CDBA0AC /* iMessageAppExtension.136.link.params */, + 27BE4549A6B56DC907667ECD /* iOS.21.link.params */, + 09B3C1E1A91A8030637227A7 /* iOS.88.link.params */, + 956B8FCBAC951535318D7DF3 /* iOS.122.link.params */, + 3A68CA4AFA324BB17DCE6F5E /* iOS.189.link.params */, + 66E86C9351785EF69B187B16 /* iOSApp.19.link.params */, + B39076FB8865DD4841A83B56 /* iOSApp.86.link.params */, + 003F6229F63B344925AB7CC7 /* iOSApp.120.link.params */, + B908226AFA4CDE81853F7A8A /* iOSApp.187.link.params */, + 9CDBCEB57D805757F394C46A /* iOSAppObjCUnitTests.32.link.params */, + 6CABB4F7094DCB9E049E1059 /* iOSAppObjCUnitTests.98.link.params */, + 145DD9FFE7326DD0057A6728 /* iOSAppObjCUnitTests.133.link.params */, + 8A24312A920FE4268E254355 /* iOSAppObjCUnitTests.199.link.params */, + B79298D6044D757CFAF6A176 /* iOSAppObjCUnitTestSuite.47.link.params */, + 397D78E1E7C5EDB643370FA4 /* iOSAppObjCUnitTestSuite.148.link.params */, + 94FDC3D0900FA4C74F2D8608 /* iOSAppSwiftUnitTests.37.link.params */, + C1A692F74CA35496E528663E /* iOSAppSwiftUnitTests.100.link.params */, + E39FC8A3937EF7D42C658603 /* iOSAppSwiftUnitTests.138.link.params */, + 7247D5D36989035B346C97C6 /* iOSAppSwiftUnitTests.201.link.params */, + 18D5174364CF195EF9A3EF14 /* iOSAppSwiftUnitTestSuite.48.link.params */, + 814E394B61720E18C9572B3C /* iOSAppSwiftUnitTestSuite.149.link.params */, + 8E8BDA4E064DAEBC22CEA8A4 /* iOSAppUITests.33.link.params */, + 5052EEF83A2267762BC48367 /* iOSAppUITests.99.link.params */, + 4A100C74C27E2C87068105B1 /* iOSAppUITests.134.link.params */, + 997695873D279B653151E31C /* iOSAppUITests.200.link.params */, + 79F1001FA3552826C9D9DFE8 /* iOSAppUITestSuite.46.link.params */, + 5A3ED0E17BE9AE13D016A3D1 /* iOSAppUITestSuite.147.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 */, + D002685903F29106F8A65A46 /* LibFramework.watchOS.15.link.params */, + 85EC3C38F019CB68B8AA419D /* LibFramework.watchOS.82.link.params */, + 866BE0EBE966F99672F90B2A /* LibFramework.watchOS.116.link.params */, + 0A4E0F21AD561B6766EB604E /* LibFramework.watchOS.183.link.params */, + 0CC75255268D2BA5078ACC1B /* macOSApp.40.link.params */, + EB1DE82E864F48377EEB1DFC /* macOSApp.141.link.params */, + 8DB1BDAF1C736199956EB3A7 /* macOSAppUITests.41.link.params */, + BE86AE255316995240DD5995 /* macOSAppUITests.142.link.params */, + 0F296009F7820C04C5FFC001 /* macOSLib.framework.39.link.params */, + 35658B20C1F8CF5B8BB9B46C /* macOSLib.framework.140.link.params */, + B141735282B4D8FEAEA243D4 /* proto.49.link.params */, + BAEA88262E011377444891A0 /* proto.150.link.params */, D50CC3FDBD2A9A04F6299696 /* tool.4.link.params */, - 9A17B1A427E0F0AC087B5C2D /* tool.101.link.params */, - 27203274F66F02E1713B3A42 /* tvOS.21.link.params */, - 1A87C0159B9695AD7ECE2C4B /* tvOS.86.link.params */, - F398AD588CE9870A80977522 /* tvOS.118.link.params */, - D7122CE606C0325B7F9979B4 /* tvOS.183.link.params */, - E81204F4D05DE6A72621CEB7 /* tvOSApp.25.link.params */, - 533E7F5BE1AF1559F1E3444D /* tvOSApp.90.link.params */, - C1CAE721DFED4A03EBB8C523 /* tvOSApp.122.link.params */, - 0A4DA568B915497562BCA215 /* tvOSApp.187.link.params */, - C885BB0B942C5AD0B838C633 /* tvOSAppUITests.40.link.params */, - 074A21BC639A4E8BCF0EF703 /* tvOSAppUITests.137.link.params */, - 448DFCE79AEE0E31AC0B9633 /* tvOSAppUnitTests.41.link.params */, - C315F55EBA410BCB4339EC23 /* tvOSAppUnitTests.138.link.params */, - 9594F6C2AF9D2D3BDDA693AC /* UIFramework.iOS.11.link.params */, - A2102D238AA6CCC05DEB40A2 /* UIFramework.iOS.76.link.params */, - 16B854E1A650C3E41190EFCE /* UIFramework.iOS.108.link.params */, - 5956BB946B12889AA80CCF14 /* UIFramework.iOS.173.link.params */, - B7E8C1458F57F8D66C4EE334 /* UIFramework.tvOS.24.link.params */, - 5BF1AF506756261E4BB07DE7 /* UIFramework.tvOS.89.link.params */, - AAAE806FBCD1671919ED4E58 /* UIFramework.tvOS.121.link.params */, - 45EE5A06ADAF1DBF15E9B1B3 /* UIFramework.tvOS.186.link.params */, - FD930462F8B62502E9017F8B /* UIFramework.watchOS.14.link.params */, - 2BB2320E86F1E5D7FC9A2C36 /* UIFramework.watchOS.79.link.params */, - 270B2A6E20B7E5E675328C74 /* UIFramework.watchOS.111.link.params */, - 780C8205A62E9706FF8A454C /* UIFramework.watchOS.176.link.params */, - 597890449A0A97806C8AFB74 /* UniversalCommandLineTool.61.link.params */, - 79E19CA9513B2E7C18DC18DD /* UniversalCommandLineTool.67.link.params */, - 3B16BA5AB6E30E38AEA30E9E /* UniversalCommandLineTool.158.link.params */, + 0A65520BBB21CB0D145281D0 /* tool.105.link.params */, + 06483C6ED81946150E50116C /* tvOS.23.link.params */, + DC040B206FA86D795A9C9552 /* tvOS.90.link.params */, + 2CA787C37F28A477C90877AA /* tvOS.124.link.params */, + BD8C927607878FB74C7658AC /* tvOS.191.link.params */, + EDD65070BE1E2AAA25B39C00 /* tvOSApp.27.link.params */, + F335DC913DA2493012FF451B /* tvOSApp.94.link.params */, + 716BA5B4E8C676428E557F2A /* tvOSApp.128.link.params */, + 800A3FF7898B1B9CAE509855 /* tvOSApp.195.link.params */, + 462E92F1BC6827B4F79F40DA /* tvOSAppUITests.42.link.params */, + 10CDE8F1FA50FE32EE1D2D83 /* tvOSAppUITests.143.link.params */, + 37CD84D37ED73BB9358614B4 /* tvOSAppUnitTests.43.link.params */, + DFBC6A3219D8EA41764DC3DE /* tvOSAppUnitTests.144.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 */, + ADEDE2B5A20F0D2142C65C81 /* UIFramework.tvOS.26.link.params */, + 27D61A9176DFDDFE2A132B4F /* UIFramework.tvOS.93.link.params */, + 5BD15A127C11140CC56DF414 /* UIFramework.tvOS.127.link.params */, + AFDFC848EBF96572C7121710 /* UIFramework.tvOS.194.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 */, - 8998A3B21773B56DF0F0A3CC /* watchOS.22.link.params */, - 8041FCDF7A20F2A535E925E0 /* watchOS.87.link.params */, - D7BE13B882D7627D06EC8311 /* watchOS.119.link.params */, - 1325FFA25927ED0731081A71 /* watchOS.184.link.params */, - 942DF3EB5361952D253461F5 /* watchOSAppExtension.15.link.params */, - 7E015077D1F9B57C71E2B030 /* watchOSAppExtension.80.link.params */, - C35F586190511CE6729599B2 /* watchOSAppExtension.112.link.params */, - 87B321B7703E67566211E991 /* watchOSAppExtension.177.link.params */, - 1F8134F77F544CB23D217321 /* watchOSAppExtensionUnitTests.43.link.params */, - 7BC98B0BB605B03AA8C87FCA /* watchOSAppExtensionUnitTests.140.link.params */, - 6BE57B804FE86E8F2FF507F0 /* watchOSAppUITests.42.link.params */, - AE71D1468375BA0DEF3B871A /* watchOSAppUITests.139.link.params */, - 0E4A29FCFB1EF808C0281273 /* WidgetExtension.9.link.params */, - EF62D457F48F8244CA7287C8 /* WidgetExtension.74.link.params */, - 94150BC76BD0E3E8E700B89B /* WidgetExtension.106.link.params */, - 9C4ECE0ACED2D859395F4304 /* WidgetExtension.171.link.params */, + 08781E5C77EF5BAC278B80A1 /* UniversalCommandLineTool.170.link.params */, + 32B285A8DAC003C1B585184F /* watchOS.24.link.params */, + 6E2DD1D541F300ED838E95AF /* watchOS.91.link.params */, + 7389D8A45D826AE66DD34BE3 /* watchOS.125.link.params */, + 014DB46CD9D68156DC64A1A3 /* watchOS.192.link.params */, + FD208FC64918A9B402A2FB72 /* watchOSAppExtension.17.link.params */, + 365E76C53D496E3593C09771 /* watchOSAppExtension.84.link.params */, + E529021D31A5C0215BD7D95D /* watchOSAppExtension.118.link.params */, + 5D763C86B3F318AF5D3DC74D /* watchOSAppExtension.185.link.params */, + 908761DE8B46E5DEC9D0430F /* watchOSAppExtensionUnitTests.45.link.params */, + D5AD798A803B36BB3EE35722 /* watchOSAppExtensionUnitTests.146.link.params */, + A17B3637C2EAEFC973BFFBD3 /* watchOSAppUITests.44.link.params */, + 998A90B39FB08E639AFD669D /* watchOSAppUITests.145.link.params */, + BB1D3A77E0F34876318CB3E1 /* WidgetExtension.11.link.params */, + A4D1111B999288A006FC93A5 /* WidgetExtension.78.link.params */, + C1D00F5C62CF97808BC53603 /* WidgetExtension.112.link.params */, + 4E964ED5567DFBB62C73C07C /* WidgetExtension.179.link.params */, ); path = "xcodeproj_bwb-params"; sourceTree = ""; @@ -4356,6 +4405,7 @@ isa = PBXGroup; children = ( 68B1DE38B8D5438D3A646443 /* dist */, + D3AA0EC825E925271F256CAF /* UndesiredSchemes */, 45C6889BDC9850C9BA631C0C /* Lib.rules_xcodeproj.swift.compile.params */, 580DBA740396A7EE1950EA08 /* Lib.swift */, ); @@ -4370,6 +4420,15 @@ path = ExampleNestedResources.bundle; sourceTree = ""; }; + 6D5B45FC9FB72D7F31EC53D4 /* UndesiredSchemes */ = { + isa = PBXGroup; + children = ( + C007883212FC5BFCAEA11526 /* UndesiredScheme_Swift.rules_xcodeproj.swift.compile.params */, + 46CC8F71FA34315D2B22D818 /* UnwantedScheme_Swift.rules_xcodeproj.swift.compile.params */, + ); + path = UndesiredSchemes; + sourceTree = ""; + }; 6DE3525406E120F893CE52E8 /* bin */ = { isa = PBXGroup; children = ( @@ -5083,6 +5142,8 @@ E71F84FFB56CB1AF81716ACD /* libprivate_swift_lib.a */, E935C728123E221B11BB3F50 /* libprivate_swift_lib.a */, 65CCA655A0F98731633FFED4 /* libTestingUtils.a */, + D7420E99839F990E4F528BAC /* libUndesiredScheme_Swift.a */, + A18C0FF799E731A2AAF1149F /* libUnwantedScheme_Swift.a */, 76A6058986733DDA4336DEE1 /* libUtils.a */, 5E55DA8F79F29EE0A6752C35 /* macOSApp.app */, CB3DC152A3E3107BA02D60A1 /* macOSAppUITests.xctest */, @@ -5491,6 +5552,7 @@ isa = PBXGroup; children = ( 698AD4D64837EF7A1D590C19 /* dist */, + 6D5B45FC9FB72D7F31EC53D4 /* UndesiredSchemes */, 7D2E869EAD857E01E60FE710 /* Lib.rules_xcodeproj.swift.compile.params */, 6C6EE1DE3180397105BD9AB8 /* Lib.swift */, ); @@ -5705,6 +5767,15 @@ path = generator; sourceTree = ""; }; + A1AAA031BBB714867C1FFDF5 /* UndesiredSchemes */ = { + isa = PBXGroup; + children = ( + BA03CD3417D661B1AD85E976 /* UndesiredScheme_Swift.rules_xcodeproj.swift.compile.params */, + C2A0D91D6F14A57EC8DB6134 /* UnwantedScheme_Swift.rules_xcodeproj.swift.compile.params */, + ); + path = UndesiredSchemes; + sourceTree = ""; + }; A2E7BD24E97F556FFD7B5C69 /* UI */ = { isa = PBXGroup; children = ( @@ -6616,6 +6687,7 @@ isa = PBXGroup; children = ( 13F2AD3737E5D0D00CCB2A33 /* dist */, + A1AAA031BBB714867C1FFDF5 /* UndesiredSchemes */, 43F3A4368AFBD56E76174783 /* Lib.rules_xcodeproj.swift.compile.params */, 4783734919B0856930DA0356 /* Lib.swift */, ); @@ -6767,6 +6839,15 @@ path = ExampleNestedResources; sourceTree = ""; }; + D3AA0EC825E925271F256CAF /* UndesiredSchemes */ = { + isa = PBXGroup; + children = ( + 0422C5584D1CA51268B71FD2 /* UndesiredScheme_Swift.rules_xcodeproj.swift.compile.params */, + B8E219799D562E079B3FDC64 /* UnwantedScheme_Swift.rules_xcodeproj.swift.compile.params */, + ); + path = UndesiredSchemes; + sourceTree = ""; + }; D45135BAA27E209E94BB82B0 /* dist */ = { isa = PBXGroup; children = ( @@ -7620,6 +7701,7 @@ isa = PBXGroup; children = ( C79C62409A730046692EB6A4 /* dist */, + 05C51B027154AFF4D402B47C /* UndesiredSchemes */, BEF068213F76D3AB8DDF7F1B /* Lib.rules_xcodeproj.swift.compile.params */, 98EB5ACDFFCC428B04758598 /* Lib.swift */, ); @@ -8425,6 +8507,23 @@ productName = private_swift_lib; productType = "com.apple.product-type.library.static"; }; + 89D2FFFCEF2D5AA1ED297A3A /* UnwantedScheme_Swift */ = { + isa = PBXNativeTarget; + buildConfigurationList = B265777B24D1006BA3ACBA25 /* Build configuration list for PBXNativeTarget "UnwantedScheme_Swift" */; + buildPhases = ( + 756A9FF95735AD81AEC8BB9E /* Copy Bazel Outputs / Generate Bazel Dependencies (Index Build) */, + 2D901ADA3C0052D9853C9B11 /* Create Compile Dependencies */, + 10578B9FE9A2DA12EEA4A958 /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + 2CB49C73C92151B621E1581D /* PBXTargetDependency */, + ); + name = UnwantedScheme_Swift; + productName = UnwantedScheme_Swift; + productType = "com.apple.product-type.library.static"; + }; 8ECCBA125B5060797803A0D4 /* cc_lib_defines */ = { isa = PBXNativeTarget; buildConfigurationList = 9ABA5F187FF3517F98325676 /* Build configuration list for PBXNativeTarget "cc_lib_defines" */; @@ -8479,6 +8578,23 @@ productName = cc_external_lib_impl; productType = "com.apple.product-type.library.static"; }; + 945DADF7169747212C3A1175 /* UndesiredScheme_Swift */ = { + isa = PBXNativeTarget; + buildConfigurationList = 554DB7C0582903DE7B91407B /* Build configuration list for PBXNativeTarget "UndesiredScheme_Swift" */; + buildPhases = ( + 3EF617802F0B109C8377728A /* Copy Bazel Outputs / Generate Bazel Dependencies (Index Build) */, + D75C2F2533FCE79768AB872E /* Create Compile Dependencies */, + BF1146AADBD1F5F4C8207679 /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + 44B628660F45F0955131607C /* PBXTargetDependency */, + ); + name = UndesiredScheme_Swift; + productName = UndesiredScheme_Swift; + productType = "com.apple.product-type.library.static"; + }; 99A0D519147AA3B135784F69 /* lib_impl (x86_64) (c75a6) */ = { isa = PBXNativeTarget; buildConfigurationList = AFD0877282403DB67768BDFE /* Build configuration list for PBXNativeTarget "lib_impl (x86_64) (c75a6)" */; @@ -9153,6 +9269,10 @@ CreatedOnToolsVersion = 13.0.0; LastSwiftMigration = 9999; }; + 89D2FFFCEF2D5AA1ED297A3A = { + CreatedOnToolsVersion = 13.0.0; + LastSwiftMigration = 9999; + }; 8ECCBA125B5060797803A0D4 = { CreatedOnToolsVersion = 13.0.0; LastSwiftMigration = 9999; @@ -9166,6 +9286,10 @@ CreatedOnToolsVersion = 13.0.0; LastSwiftMigration = 9999; }; + 945DADF7169747212C3A1175 = { + CreatedOnToolsVersion = 13.0.0; + LastSwiftMigration = 9999; + }; 99A0D519147AA3B135784F69 = { CreatedOnToolsVersion = 13.0.0; LastSwiftMigration = 9999; @@ -9359,8 +9483,10 @@ 4CFF47C3FBF2E6C24127D667 /* UIFramework.iOS */, A23C98B4BFB6C775689A2A7D /* UIFramework.tvOS */, F619A1189B9E946F6BE02A2F /* UIFramework.watchOS */, + 945DADF7169747212C3A1175 /* UndesiredScheme_Swift */, 2BF2C216789F6A1960CFC899 /* UniversalCommandLineTool (arm64) */, D86CA50B6ABE0A52D2303BF4 /* UniversalCommandLineTool (x86_64) */, + 89D2FFFCEF2D5AA1ED297A3A /* UnwantedScheme_Swift */, 34820134F30D904FFA06D27A /* Utils */, 656BB6FF8F9415647D9307E7 /* watchOS */, 632D255CE04E97FB997EBDD7 /* watchOSApp */, @@ -9747,6 +9873,23 @@ shellScript = "set -euo pipefail\n\nif [[ \"${ENABLE_PREVIEWS:-}\" == \"YES\" ]]; then\nperl -pe 's/\\$(\\()?([a-zA-Z_]\\w*)(?(1)\\))/$ENV{$2}/g' \\\n \"$SCRIPT_INPUT_FILE_0\" > \"$SCRIPT_OUTPUT_FILE_0\"\nelse\n touch \"$SCRIPT_OUTPUT_FILE_0\"\nfi\n"; showEnvVarsInLog = 0; }; + 2D901ADA3C0052D9853C9B11 /* 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; + }; 2DA4A668BC34497BFBB74520 /* Copy Bazel Outputs / Generate Bazel Dependencies (Index Build) */ = { isa = PBXShellScriptBuildPhase; alwaysOutOfDate = 1; @@ -10116,6 +10259,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; }; + 3EF617802F0B109C8377728A /* 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; + }; 3FD10AEDCBF92DF7E77A14C7 /* Create Link Dependencies */ = { isa = PBXShellScriptBuildPhase; buildActionMask = 2147483647; @@ -10538,6 +10697,22 @@ shellScript = "set -euo pipefail\n\nif [[ \"${ENABLE_PREVIEWS:-}\" == \"YES\" ]]; then\nperl -pe 's/\\$(\\()?([a-zA-Z_]\\w*)(?(1)\\))/$ENV{$2}/g' \\\n \"$SCRIPT_INPUT_FILE_0\" > \"$SCRIPT_OUTPUT_FILE_0\"\nelse\n touch \"$SCRIPT_OUTPUT_FILE_0\"\nfi\n"; showEnvVarsInLog = 0; }; + 756A9FF95735AD81AEC8BB9E /* 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; + }; 76EEF2BF17F3EA7CA5D0B8C7 /* Create Link Dependencies */ = { isa = PBXShellScriptBuildPhase; buildActionMask = 2147483647; @@ -11699,6 +11874,23 @@ 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; }; + D75C2F2533FCE79768AB872E /* 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; + }; D7C2EE7746CB8EBC85732905 /* Copy Bazel Outputs / Generate Bazel Dependencies (Index Build) */ = { isa = PBXShellScriptBuildPhase; alwaysOutOfDate = 1; @@ -12189,6 +12381,14 @@ /* End PBXShellScriptBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ + 10578B9FE9A2DA12EEA4A958 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 6971A19C39B3A02C2BAA2393 /* UnwantedScheme.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; 11D151A63EF36603EB859DF9 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -12618,6 +12818,14 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + BF1146AADBD1F5F4C8207679 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 3081128CDE59998764657230 /* UndesiredScheme.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; C9017B8645E18B4C9E26795C /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -12805,6 +13013,12 @@ target = 1765D91CC168F25A5BC51603 /* iOSApp */; targetProxy = EDD4C32B165C8554E20CA68F /* PBXContainerItemProxy */; }; + 2CB49C73C92151B621E1581D /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = BazelDependencies; + target = 7E7D155EBCA520F35DEA3571 /* BazelDependencies */; + targetProxy = AF5682480BFEB1840EA394BB /* PBXContainerItemProxy */; + }; 30C215E946C59DD63443973B /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = BazelDependencies; @@ -12859,6 +13073,12 @@ target = 7E7D155EBCA520F35DEA3571 /* BazelDependencies */; targetProxy = D108FB1C4941BC28A0D98F71 /* PBXContainerItemProxy */; }; + 44B628660F45F0955131607C /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = BazelDependencies; + target = 7E7D155EBCA520F35DEA3571 /* BazelDependencies */; + targetProxy = 3C92E2BCF33B9A23D10A1EA8 /* PBXContainerItemProxy */; + }; 469B77E36F90ED7F2CF18F82 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = iOSApp; @@ -13371,8 +13591,8 @@ COMPILE_TARGET_NAME = UI; 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.14.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.79.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.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"; 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"; @@ -13453,8 +13673,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.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/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/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"; 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\""; @@ -13497,7 +13717,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.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/iOSAppUITestSuite.147.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"; @@ -13533,8 +13753,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.118.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.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/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"; 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\""; @@ -13568,8 +13788,8 @@ INFOPLIST_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/Lib/dist/dynamic/rules_xcodeproj/iOS/Info.plist"; "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.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/iOS.84.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.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"; 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\""; @@ -13602,8 +13822,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.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/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/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"; 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\""; @@ -13689,8 +13909,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.127.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.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/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"; OTHER_CFLAGS = "$(ASAN_OTHER_CFLAGS__$(CLANG_ADDRESS_SANITIZER))"; OTHER_LDFLAGS = "@$(DERIVED_FILE_DIR)/link.params"; PRODUCT_BUNDLE_IDENTIFIER = "rules-xcodeproj.example.objctests"; @@ -13708,6 +13928,32 @@ }; name = AppStore; }; + 0BF3214015C66C4A8BDE7EB3 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ARCHS = x86_64; + "ARCHS[sdk=iphoneos*]" = arm64; + BAZEL_LABEL = "@@//Lib/UndesiredSchemes:UnwantedScheme_Swift"; + BAZEL_PACKAGE_BIN_DIR = "bazel-out/CONFIGURATION-STABLE-3/bin/Lib/UndesiredSchemes"; + "BAZEL_PACKAGE_BIN_DIR[sdk=iphoneos*]" = "bazel-out/CONFIGURATION-STABLE-8/bin/Lib/UndesiredSchemes"; + BAZEL_TARGET_ID = "@@//Lib/UndesiredSchemes:UnwantedScheme_Swift CONFIGURATION-STABLE-3"; + "BAZEL_TARGET_ID[sdk=iphoneos*]" = "@@//Lib/UndesiredSchemes:UnwantedScheme_Swift CONFIGURATION-STABLE-8"; + "BAZEL_TARGET_ID[sdk=iphonesimulator*]" = "$(BAZEL_TARGET_ID)"; + COMPILE_TARGET_NAME = UnwantedScheme_Swift; + IPHONEOS_DEPLOYMENT_TARGET = 15.0; + 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 -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 -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"; + PRODUCT_MODULE_NAME = Lib_UndesiredSchemes_UnwantedScheme_Swift; + PRODUCT_NAME = UnwantedScheme_Swift; + SDKROOT = iphoneos; + SUPPORTED_PLATFORMS = "iphonesimulator iphoneos"; + SUPPORTS_MAC_DESIGNED_FOR_IPHONE_IPAD = YES; + SWIFT_PARAMS_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/Lib/UndesiredSchemes/UnwantedScheme_Swift.rules_xcodeproj.swift.compile.params"; + "SWIFT_PARAMS_FILE[sdk=iphoneos*]" = "$(BAZEL_OUT)/CONFIGURATION-STABLE-8/bin/Lib/UndesiredSchemes/UnwantedScheme_Swift.rules_xcodeproj.swift.compile.params"; + TARGET_NAME = UnwantedScheme_Swift; + }; + name = Debug; + }; 111C3642FF48431B6DC10483 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { @@ -13757,15 +14003,15 @@ INFOPLIST_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/iOSApp/Source/rules_xcodeproj/iOSApp/Info.plist"; "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.17.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.82.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.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"; 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 -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 -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.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"; PREVIEWS_SWIFT_INCLUDE__ = ""; PREVIEWS_SWIFT_INCLUDE__NO = ""; PREVIEWS_SWIFT_INCLUDE__YES = "-I bazel-out/CONFIGURATION-STABLE-3/bin/iOSApp/Source"; @@ -13938,7 +14184,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.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/UniversalCommandLineTool.164.link.params"; MACOSX_DEPLOYMENT_TARGET = 11.0; OTHER_CFLAGS = "$(ASAN_OTHER_CFLAGS__$(CLANG_ADDRESS_SANITIZER))"; OTHER_LDFLAGS = "@$(DERIVED_FILE_DIR)/link.params"; @@ -13999,11 +14245,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.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/iOSApp.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/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"; 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 -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 -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.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"; PREVIEWS_SWIFT_INCLUDE__ = ""; PREVIEWS_SWIFT_INCLUDE__NO = ""; PREVIEWS_SWIFT_INCLUDE__YES = "-I bazel-out/CONFIGURATION-STABLE-12/bin/iOSApp/Source"; @@ -14052,8 +14298,8 @@ COMPILE_TARGET_NAME = UI; 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.24.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.89.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.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"; 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"; @@ -14145,7 +14391,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.55.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.57.link.params"; MACOSX_DEPLOYMENT_TARGET = 11.0; OTHER_CFLAGS = "$(ASAN_OTHER_CFLAGS__$(CLANG_ADDRESS_SANITIZER))"; OTHER_CODE_SIGN_FLAGS = "-v"; @@ -14281,7 +14527,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.123.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.129.link.params"; MACOSX_DEPLOYMENT_TARGET = 12.0; OTHER_CFLAGS = "$(ASAN_OTHER_CFLAGS__$(CLANG_ADDRESS_SANITIZER))"; OTHER_LDFLAGS = "@$(DERIVED_FILE_DIR)/link.params"; @@ -14310,7 +14556,7 @@ CODE_SIGN_STYLE = Manual; COMPILE_TARGET_NAME = watchOSAppExtensionUnitTests.library; INFOPLIST_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-4/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.43.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.45.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-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"; PREVIEWS_SWIFT_INCLUDE__ = ""; @@ -14347,8 +14593,8 @@ COMPILE_TARGET_NAME = tvOS; 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.21.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.86.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.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"; 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\""; @@ -14418,8 +14664,8 @@ "DEVELOPMENT_TEAM[sdk=watchos*]" = V82V4GQZXM; 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.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/watchOSAppExtension.80.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.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"; 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"; @@ -14472,7 +14718,7 @@ C_PARAMS_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/iOSApp/Test/ObjCUnitTests/iOSAppObjCUnitTestSuite.library.rules_xcodeproj.c.compile.params"; INFOPLIST_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-3/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.45.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.47.link.params"; OTHER_CFLAGS = "$(ASAN_OTHER_CFLAGS__$(CLANG_ADDRESS_SANITIZER))"; OTHER_LDFLAGS = "@$(DERIVED_FILE_DIR)/link.params"; PRODUCT_BUNDLE_IDENTIFIER = "rules-xcodeproj.example.objctests"; @@ -14509,7 +14755,7 @@ CODE_SIGN_STYLE = Manual; COMPILE_TARGET_NAME = tvOSAppUnitTests.library; INFOPLIST_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-6/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.41.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.43.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-6/bin/Lib -I$(BAZEL_OUT)/CONFIGURATION-STABLE-6/bin/UI -I$(BAZEL_OUT)/CONFIGURATION-STABLE-6/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-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"; PREVIEWS_SWIFT_INCLUDE__ = ""; @@ -14543,7 +14789,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.134.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.140.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\""; @@ -14575,7 +14821,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.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/CommandLineTool.158.link.params"; MACOSX_DEPLOYMENT_TARGET = 11.0; OTHER_CFLAGS = "$(ASAN_OTHER_CFLAGS__$(CLANG_ADDRESS_SANITIZER))"; OTHER_CODE_SIGN_FLAGS = "-v"; @@ -14603,7 +14849,7 @@ 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.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/echo_client.151.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"; @@ -14688,6 +14934,7 @@ ENABLE_STRICT_OBJC_MSGSEND = YES; ENABLE_USER_SCRIPT_SANDBOXING = NO; GCC_OPTIMIZATION_LEVEL = 0; + IMPORT_INDEX_BUILD_INDEXSTORES = YES; INDEXING_PROJECT_DIR__ = "$(INDEXING_PROJECT_DIR__NO)"; INDEXING_PROJECT_DIR__NO = "../../../../../bazel-output-base/rules_xcodeproj.noindex/build_output_base/execroot/_main"; INDEXING_PROJECT_DIR__YES = "../../../../../bazel-output-base/rules_xcodeproj.noindex/indexbuild_output_base/execroot/_main"; @@ -14754,8 +15001,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.122.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.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/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"; 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"; @@ -14843,7 +15090,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.139.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.145.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"; @@ -14906,11 +15153,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.132.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.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/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"; 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 -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 -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.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"; PREVIEWS_SWIFT_INCLUDE__ = ""; PREVIEWS_SWIFT_INCLUDE__NO = ""; PREVIEWS_SWIFT_INCLUDE__YES = "-I bazel-out/CONFIGURATION-STABLE-12/bin/iOSApp/Test/SwiftUnitTests"; @@ -14949,7 +15196,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.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/watchOSAppExtensionUnitTests.146.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__ = ""; @@ -14979,7 +15226,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.68.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.70.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"; @@ -15013,8 +15260,8 @@ COMPILE_TARGET_NAME = LibFramework.tvOS; 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.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/LibFramework.tvOS.88.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.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"; 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\""; @@ -15049,8 +15296,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.120.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.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/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"; 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\""; @@ -15107,7 +15354,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.135.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.141.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"; @@ -15147,7 +15394,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.137.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.143.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"; @@ -15182,7 +15429,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.61.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.63.link.params"; MACOSX_DEPLOYMENT_TARGET = 11.0; OTHER_CFLAGS = "$(ASAN_OTHER_CFLAGS__$(CLANG_ADDRESS_SANITIZER))"; OTHER_LDFLAGS = "@$(DERIVED_FILE_DIR)/link.params"; @@ -15256,7 +15503,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.67.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.69.link.params"; MACOSX_DEPLOYMENT_TARGET = 11.0; OTHER_CFLAGS = "$(ASAN_OTHER_CFLAGS__$(CLANG_ADDRESS_SANITIZER))"; OTHER_LDFLAGS = "@$(DERIVED_FILE_DIR)/link.params"; @@ -15286,7 +15533,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.130.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.136.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__ = ""; @@ -15338,8 +15585,8 @@ "DEVELOPMENT_TEAM[sdk=appletvos*]" = V82V4GQZXM; 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.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/tvOSApp.90.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.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"; 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"; @@ -15360,6 +15607,32 @@ }; name = Debug; }; + 541AB7E4E3C0240338AF4C0A /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ARCHS = x86_64; + "ARCHS[sdk=iphoneos*]" = arm64; + BAZEL_LABEL = "@@//Lib/UndesiredSchemes:UndesiredScheme_Swift"; + BAZEL_PACKAGE_BIN_DIR = "bazel-out/CONFIGURATION-STABLE-3/bin/Lib/UndesiredSchemes"; + "BAZEL_PACKAGE_BIN_DIR[sdk=iphoneos*]" = "bazel-out/CONFIGURATION-STABLE-8/bin/Lib/UndesiredSchemes"; + BAZEL_TARGET_ID = "@@//Lib/UndesiredSchemes:UndesiredScheme_Swift CONFIGURATION-STABLE-3"; + "BAZEL_TARGET_ID[sdk=iphoneos*]" = "@@//Lib/UndesiredSchemes:UndesiredScheme_Swift CONFIGURATION-STABLE-8"; + "BAZEL_TARGET_ID[sdk=iphonesimulator*]" = "$(BAZEL_TARGET_ID)"; + COMPILE_TARGET_NAME = UndesiredScheme_Swift; + IPHONEOS_DEPLOYMENT_TARGET = 15.0; + 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 -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 -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"; + PRODUCT_MODULE_NAME = Lib_UndesiredSchemes_UndesiredScheme_Swift; + PRODUCT_NAME = UndesiredScheme_Swift; + SDKROOT = iphoneos; + SUPPORTED_PLATFORMS = "iphonesimulator iphoneos"; + SUPPORTS_MAC_DESIGNED_FOR_IPHONE_IPAD = YES; + SWIFT_PARAMS_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/Lib/UndesiredSchemes/UndesiredScheme_Swift.rules_xcodeproj.swift.compile.params"; + "SWIFT_PARAMS_FILE[sdk=iphoneos*]" = "$(BAZEL_OUT)/CONFIGURATION-STABLE-8/bin/Lib/UndesiredSchemes/UndesiredScheme_Swift.rules_xcodeproj.swift.compile.params"; + TARGET_NAME = UndesiredScheme_Swift; + }; + name = Debug; + }; 54253A7D663F6FF341C12AF1 /* AppStore */ = { isa = XCBuildConfiguration; buildSettings = { @@ -15413,8 +15686,8 @@ INFOPLIST_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/UI/rules_xcodeproj/UIFramework.iOS/Info.plist"; "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.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/UIFramework.iOS.76.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.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"; 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"; @@ -15504,8 +15777,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.106.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.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/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"; 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"; @@ -15583,8 +15856,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.112.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.177.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.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"; 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"; @@ -15652,11 +15925,11 @@ INFOPLIST_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/iOSApp/Test/SwiftUnitTests/rules_xcodeproj/iOSAppSwiftUnitTests.__internal__.__test_bundle/Info.plist"; "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.35.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.96.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.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"; 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 -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 -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.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"; PREVIEWS_SWIFT_INCLUDE__ = ""; PREVIEWS_SWIFT_INCLUDE__NO = ""; PREVIEWS_SWIFT_INCLUDE__YES = "-I bazel-out/CONFIGURATION-STABLE-3/bin/iOSApp/Test/SwiftUnitTests"; @@ -15709,6 +15982,33 @@ }; name = AppStore; }; + 5F0F0B5231EEC275D36A40DE /* AppStore */ = { + isa = XCBuildConfiguration; + buildSettings = { + ARCHS = x86_64; + "ARCHS[sdk=iphoneos*]" = arm64; + BAZEL_LABEL = "@@//Lib/UndesiredSchemes:UnwantedScheme_Swift"; + BAZEL_PACKAGE_BIN_DIR = "bazel-out/CONFIGURATION-STABLE-12/bin/Lib/UndesiredSchemes"; + "BAZEL_PACKAGE_BIN_DIR[sdk=iphoneos*]" = "bazel-out/CONFIGURATION-STABLE-17/bin/Lib/UndesiredSchemes"; + BAZEL_TARGET_ID = "@@//Lib/UndesiredSchemes:UnwantedScheme_Swift CONFIGURATION-STABLE-12"; + "BAZEL_TARGET_ID[sdk=iphoneos*]" = "@@//Lib/UndesiredSchemes:UnwantedScheme_Swift CONFIGURATION-STABLE-17"; + "BAZEL_TARGET_ID[sdk=iphonesimulator*]" = "$(BAZEL_TARGET_ID)"; + COMPILE_TARGET_NAME = UnwantedScheme_Swift; + IPHONEOS_DEPLOYMENT_TARGET = 15.0; + 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 -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 -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"; + PRODUCT_MODULE_NAME = Lib_UndesiredSchemes_UnwantedScheme_Swift; + PRODUCT_NAME = UnwantedScheme_Swift; + SDKROOT = iphoneos; + SUPPORTED_PLATFORMS = "iphonesimulator iphoneos"; + SUPPORTS_MAC_DESIGNED_FOR_IPHONE_IPAD = YES; + SWIFT_COMPILATION_MODE = wholemodule; + SWIFT_PARAMS_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/Lib/UndesiredSchemes/UnwantedScheme_Swift.rules_xcodeproj.swift.compile.params"; + "SWIFT_PARAMS_FILE[sdk=iphoneos*]" = "$(BAZEL_OUT)/CONFIGURATION-STABLE-17/bin/Lib/UndesiredSchemes/UnwantedScheme_Swift.rules_xcodeproj.swift.compile.params"; + TARGET_NAME = UnwantedScheme_Swift; + }; + name = AppStore; + }; 63223E61034788DA4416BDA4 /* AppStore */ = { isa = XCBuildConfiguration; buildSettings = { @@ -15763,8 +16063,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.103.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.168.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.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"; 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"; @@ -15817,8 +16117,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.108.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.173.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.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"; 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"; @@ -15894,8 +16194,8 @@ COMPILE_TARGET_NAME = watchOS; 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.22.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.87.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.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"; 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\""; @@ -15960,8 +16260,8 @@ INFOPLIST_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/iOSApp/Test/ObjCUnitTests/rules_xcodeproj/iOSAppObjCUnitTests.__internal__.__test_bundle/Info.plist"; "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.30.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.94.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.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"; OTHER_CFLAGS = "$(ASAN_OTHER_CFLAGS__$(CLANG_ADDRESS_SANITIZER))"; OTHER_LDFLAGS = "@$(DERIVED_FILE_DIR)/link.params"; PRODUCT_BUNDLE_IDENTIFIER = "rules-xcodeproj.example.objctests"; @@ -15995,7 +16295,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.47.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.49.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"; @@ -16038,7 +16338,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.71.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"; 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"; @@ -16059,6 +16359,33 @@ }; name = Debug; }; + 72BE373E84FC14E0C399A1D6 /* AppStore */ = { + isa = XCBuildConfiguration; + buildSettings = { + ARCHS = x86_64; + "ARCHS[sdk=iphoneos*]" = arm64; + BAZEL_LABEL = "@@//Lib/UndesiredSchemes:UndesiredScheme_Swift"; + BAZEL_PACKAGE_BIN_DIR = "bazel-out/CONFIGURATION-STABLE-12/bin/Lib/UndesiredSchemes"; + "BAZEL_PACKAGE_BIN_DIR[sdk=iphoneos*]" = "bazel-out/CONFIGURATION-STABLE-17/bin/Lib/UndesiredSchemes"; + BAZEL_TARGET_ID = "@@//Lib/UndesiredSchemes:UndesiredScheme_Swift CONFIGURATION-STABLE-12"; + "BAZEL_TARGET_ID[sdk=iphoneos*]" = "@@//Lib/UndesiredSchemes:UndesiredScheme_Swift CONFIGURATION-STABLE-17"; + "BAZEL_TARGET_ID[sdk=iphonesimulator*]" = "$(BAZEL_TARGET_ID)"; + COMPILE_TARGET_NAME = UndesiredScheme_Swift; + IPHONEOS_DEPLOYMENT_TARGET = 15.0; + 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 -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 -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"; + PRODUCT_MODULE_NAME = Lib_UndesiredSchemes_UndesiredScheme_Swift; + PRODUCT_NAME = UndesiredScheme_Swift; + SDKROOT = iphoneos; + SUPPORTED_PLATFORMS = "iphonesimulator iphoneos"; + SUPPORTS_MAC_DESIGNED_FOR_IPHONE_IPAD = YES; + SWIFT_COMPILATION_MODE = wholemodule; + SWIFT_PARAMS_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/Lib/UndesiredSchemes/UndesiredScheme_Swift.rules_xcodeproj.swift.compile.params"; + "SWIFT_PARAMS_FILE[sdk=iphoneos*]" = "$(BAZEL_OUT)/CONFIGURATION-STABLE-17/bin/Lib/UndesiredSchemes/UndesiredScheme_Swift.rules_xcodeproj.swift.compile.params"; + TARGET_NAME = UndesiredScheme_Swift; + }; + name = AppStore; + }; 739DE1226888E31183D37744 /* AppStore */ = { isa = XCBuildConfiguration; buildSettings = { @@ -16077,7 +16404,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.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"; @@ -16132,8 +16459,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.110.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.175.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.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"; 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\""; @@ -16222,7 +16549,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.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/macOSAppUITests.142.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"; @@ -16287,7 +16614,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.138.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.144.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__ = ""; @@ -16324,7 +16651,7 @@ 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.48.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.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) -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"; @@ -16353,7 +16680,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.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/proto.150.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"; @@ -16432,7 +16759,7 @@ COMPILE_TARGET_NAME = aplugin.library; C_PARAMS_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-7/bin/Bundle/aplugin.library.rules_xcodeproj.c.compile.params"; INFOPLIST_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-7/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.26.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.28.link.params"; MACOSX_DEPLOYMENT_TARGET = 12.0; OTHER_CFLAGS = "$(ASAN_OTHER_CFLAGS__$(CLANG_ADDRESS_SANITIZER))"; OTHER_LDFLAGS = "@$(DERIVED_FILE_DIR)/link.params"; @@ -16459,7 +16786,7 @@ CODE_SIGN_STYLE = Manual; COMPILE_TARGET_NAME = macOSLib.framework; INFOPLIST_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-7/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.37.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.39.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\""; @@ -16514,8 +16841,8 @@ COMPILE_TARGET_NAME = LibFramework.watchOS; 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.13.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.78.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.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"; 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\""; @@ -16545,7 +16872,7 @@ 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.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/echo_server.51.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"; @@ -16579,7 +16906,7 @@ CODE_SIGN_STYLE = Manual; COMPILE_TARGET_NAME = macOSAppUITests.library; INFOPLIST_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-7/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.39.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.41.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-7/bin -Xcc -O0 -Xcc -DDEBUG=1 -Xcc -fstack-protector -Xcc -fstack-protector-all"; @@ -16668,8 +16995,8 @@ INFOPLIST_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/iOSApp/Source/CoreUtilsObjC/rules_xcodeproj/FrameworkCoreUtilsObjC/Info.plist"; "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.10.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.75.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.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"; OTHER_CPLUSPLUSFLAGS = "$(ASAN_OTHER_CPLUSPLUSFLAGS__$(CLANG_ADDRESS_SANITIZER))"; OTHER_LDFLAGS = "@$(DERIVED_FILE_DIR)/link.params"; PREVIEW_FRAMEWORK_PATHS = ""; @@ -16702,7 +17029,7 @@ COMPILE_TARGET_NAME = iMessageAppExtension.library; INFOPLIST_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-3/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.33.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.35.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"; PREVIEWS_SWIFT_INCLUDE__ = ""; @@ -16749,7 +17076,7 @@ COMPILE_TARGET_NAME = iOSAppUITestSuite.library; INFOPLIST_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-3/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.44.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.46.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"; PRODUCT_BUNDLE_IDENTIFIER = "rules-xcodeproj.example.uitests"; @@ -16809,7 +17136,7 @@ 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.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/echo_server.152.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"; @@ -16896,8 +17223,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.111.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.176.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.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"; 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"; @@ -17021,7 +17348,7 @@ 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.166.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.172.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"; @@ -17094,6 +17421,7 @@ ENABLE_STRICT_OBJC_MSGSEND = YES; ENABLE_USER_SCRIPT_SANDBOXING = NO; GCC_OPTIMIZATION_LEVEL = 0; + IMPORT_INDEX_BUILD_INDEXSTORES = YES; INDEXING_PROJECT_DIR__ = "$(INDEXING_PROJECT_DIR__NO)"; INDEXING_PROJECT_DIR__NO = "../../../../../bazel-output-base/rules_xcodeproj.noindex/build_output_base/execroot/_main"; INDEXING_PROJECT_DIR__YES = "../../../../../bazel-output-base/rules_xcodeproj.noindex/indexbuild_output_base/execroot/_main"; @@ -17194,8 +17522,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.128.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.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/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"; 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"; @@ -17244,8 +17572,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.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/FrameworkCoreUtilsObjC.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/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"; OTHER_CPLUSPLUSFLAGS = "$(ASAN_OTHER_CPLUSPLUSFLAGS__$(CLANG_ADDRESS_SANITIZER))"; OTHER_LDFLAGS = "@$(DERIVED_FILE_DIR)/link.params"; PREVIEW_FRAMEWORK_PATHS = ""; @@ -17303,7 +17631,7 @@ CODE_SIGN_STYLE = Manual; COMPILE_TARGET_NAME = watchOSAppUITests.library; INFOPLIST_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-4/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.42.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.44.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-4/bin -Xcc -O0 -Xcc -DDEBUG=1 -Xcc -fstack-protector -Xcc -fstack-protector-all"; PRODUCT_BUNDLE_IDENTIFIER = "rules-xcodeproj.example.watchTests"; @@ -17366,8 +17694,8 @@ INFOPLIST_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/iOSApp/Test/UITests/rules_xcodeproj/iOSAppUITests.__internal__.__test_bundle/Info.plist"; "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.31.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.95.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.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"; 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"; @@ -17413,9 +17741,9 @@ COMPILE_TARGET_NAME = iOSAppSwiftUnitTestSuite.library; INFOPLIST_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-3/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.46.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.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 -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.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"; PREVIEWS_SWIFT_INCLUDE__ = ""; PREVIEWS_SWIFT_INCLUDE__NO = ""; PREVIEWS_SWIFT_INCLUDE__YES = "-I bazel-out/CONFIGURATION-STABLE-3/bin/iOSApp/Test/SwiftUnitTests"; @@ -17511,9 +17839,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.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/iOSAppSwiftUnitTestSuite.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/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 -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.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"; PREVIEWS_SWIFT_INCLUDE__ = ""; PREVIEWS_SWIFT_INCLUDE__NO = ""; PREVIEWS_SWIFT_INCLUDE__YES = "-I bazel-out/CONFIGURATION-STABLE-12/bin/iOSApp/Test/SwiftUnitTests"; @@ -17565,8 +17893,8 @@ IPHONEOS_DEPLOYMENT_TARGET = 15.0; 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.9.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.74.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.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"; 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"; @@ -17636,7 +17964,7 @@ CODE_SIGN_STYLE = Manual; COMPILE_TARGET_NAME = tvOSAppUITests.library; INFOPLIST_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-6/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.40.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.42.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-6/bin -Xcc -O0 -Xcc -DDEBUG=1 -Xcc -fstack-protector -Xcc -fstack-protector-all"; PRODUCT_BUNDLE_IDENTIFIER = "rules-xcodeproj.example.uitests"; @@ -17712,7 +18040,7 @@ 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.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/CommandLineToolTests.71.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"; @@ -17745,7 +18073,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.101.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.105.link.params"; MACOSX_DEPLOYMENT_TARGET = 12.0; OTHER_CFLAGS = "$(ASAN_OTHER_CFLAGS__$(CLANG_ADDRESS_SANITIZER))"; OTHER_LDFLAGS = "@$(DERIVED_FILE_DIR)/link.params"; @@ -17788,7 +18116,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.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/iOSAppObjCUnitTestSuite.148.link.params"; OTHER_CFLAGS = "$(ASAN_OTHER_CFLAGS__$(CLANG_ADDRESS_SANITIZER))"; OTHER_LDFLAGS = "@$(DERIVED_FILE_DIR)/link.params"; PRODUCT_BUNDLE_IDENTIFIER = "rules-xcodeproj.example.objctests"; @@ -17846,7 +18174,7 @@ CODE_SIGN_STYLE = Manual; COMPILE_TARGET_NAME = macOSApp.library; INFOPLIST_FILE = "$(BAZEL_OUT)/CONFIGURATION-STABLE-7/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.38.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.40.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-7/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-7/bin/external/_main~non_module_deps~com_github_krzyzanowskim_cryptoswift -Xcc -iquote -Xcc $(PROJECT_DIR) -Xcc -iquote -Xcc $(BAZEL_OUT)/CONFIGURATION-STABLE-7/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 -O0 -Xcc -DDEBUG=1 -Xcc -fstack-protector -Xcc -fstack-protector-all"; @@ -17927,7 +18255,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.165.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.171.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"; @@ -18086,8 +18414,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.121.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.186.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.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"; 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"; @@ -18369,6 +18697,15 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Debug; }; + 554DB7C0582903DE7B91407B /* Build configuration list for PBXNativeTarget "UndesiredScheme_Swift" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 72BE373E84FC14E0C399A1D6 /* AppStore */, + 541AB7E4E3C0240338AF4C0A /* Debug */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Debug; + }; 56C18FA55A61A93705739D11 /* Build configuration list for PBXNativeTarget "iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -18603,6 +18940,15 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Debug; }; + B265777B24D1006BA3ACBA25 /* Build configuration list for PBXNativeTarget "UnwantedScheme_Swift" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 5F0F0B5231EEC275D36A40DE /* AppStore */, + 0BF3214015C66C4A8BDE7EB3 /* Debug */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Debug; + }; B7B2838D5E51E99F559A42AC /* Build configuration list for PBXNativeTarget "Utils" */ = { 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 684afa7f0..ab800dd72 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)/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.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", "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", @@ -59,13 +59,14 @@ "$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64" ], "s": [ + "$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-17/bin/Lib/UndesiredSchemes", "$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-17/bin/Lib", "$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-17/bin/UI", "$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-17/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer" ] }, "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)/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.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", "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", @@ -75,6 +76,7 @@ "$(SDKROOT)/Developer/Library/Frameworks" ], "s": [ + "$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-17/bin/Lib/UndesiredSchemes", "$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-17/bin/Lib", "$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-17/bin/UI", "$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-17/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer", @@ -82,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)/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.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", "f": [ "$(DEVELOPER_DIR)/Platforms/iPhoneOS.platform/Developer/Library/Frameworks", "$(SDKROOT)/Developer/Library/Frameworks", @@ -93,6 +95,7 @@ ], "s": [ "$(DEVELOPER_DIR)/Platforms/iPhoneOS.platform/Developer/usr/lib", + "$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-17/bin/Lib/UndesiredSchemes", "$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-17/bin/Lib", "$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-17/bin/UI", "$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-17/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer", @@ -224,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)/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.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", "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", @@ -232,13 +235,14 @@ "$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64_x86_64-simulator" ], "s": [ + "$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin/Lib/UndesiredSchemes", "$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin/Lib", "$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin/UI", "$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer" ] }, "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)/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.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", "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", @@ -248,6 +252,7 @@ "$(SDKROOT)/Developer/Library/Frameworks" ], "s": [ + "$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin/Lib/UndesiredSchemes", "$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin/Lib", "$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin/UI", "$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer", @@ -255,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)/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.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", "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", @@ -265,6 +270,7 @@ "$(SDKROOT)/Developer/Library/Frameworks" ], "s": [ + "$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin/Lib/UndesiredSchemes", "$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin/Lib", "$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin/UI", "$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer", @@ -272,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)/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.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", "f": [ "$(DEVELOPER_DIR)/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks", "$(SDKROOT)/Developer/Library/Frameworks", @@ -283,6 +289,7 @@ ], "s": [ "$(DEVELOPER_DIR)/Platforms/iPhoneSimulator.platform/Developer/usr/lib", + "$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin/Lib/UndesiredSchemes", "$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin/Lib", "$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin/UI", "$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer", @@ -291,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)/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.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", "f": [ "$(DEVELOPER_DIR)/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks", "$(SDKROOT)/Developer/Library/Frameworks", @@ -302,6 +309,7 @@ ], "s": [ "$(DEVELOPER_DIR)/Platforms/iPhoneSimulator.platform/Developer/usr/lib", + "$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin/Lib/UndesiredSchemes", "$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin/Lib", "$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin/UI", "$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-12/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer", 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 c4bf6b3c3..28939a546 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)/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.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", "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", @@ -59,13 +59,14 @@ "$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64" ], "s": [ + "$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-8/bin/Lib/UndesiredSchemes", "$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-8/bin/Lib", "$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-8/bin/UI", "$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-8/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer" ] }, "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)/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.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", "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", @@ -75,6 +76,7 @@ "$(SDKROOT)/Developer/Library/Frameworks" ], "s": [ + "$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-8/bin/Lib/UndesiredSchemes", "$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-8/bin/Lib", "$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-8/bin/UI", "$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-8/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer", @@ -82,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)/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.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", "f": [ "$(DEVELOPER_DIR)/Platforms/iPhoneOS.platform/Developer/Library/Frameworks", "$(SDKROOT)/Developer/Library/Frameworks", @@ -93,6 +95,7 @@ ], "s": [ "$(DEVELOPER_DIR)/Platforms/iPhoneOS.platform/Developer/usr/lib", + "$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-8/bin/Lib/UndesiredSchemes", "$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-8/bin/Lib", "$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-8/bin/UI", "$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-8/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer", @@ -224,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)/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.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", "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", @@ -232,13 +235,14 @@ "$(PROJECT_DIR)/external/_main~non_module_deps~com_google_google_maps/GoogleMapsBase.xcframework/ios-arm64_x86_64-simulator" ], "s": [ + "$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin/Lib/UndesiredSchemes", "$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin/Lib", "$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin/UI", "$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer" ] }, "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)/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.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", "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", @@ -248,6 +252,7 @@ "$(SDKROOT)/Developer/Library/Frameworks" ], "s": [ + "$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin/Lib/UndesiredSchemes", "$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin/Lib", "$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin/UI", "$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer", @@ -255,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)/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.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", "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", @@ -265,6 +270,7 @@ "$(SDKROOT)/Developer/Library/Frameworks" ], "s": [ + "$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin/Lib/UndesiredSchemes", "$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin/Lib", "$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin/UI", "$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer", @@ -272,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)/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.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", "f": [ "$(DEVELOPER_DIR)/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks", "$(SDKROOT)/Developer/Library/Frameworks", @@ -283,6 +289,7 @@ ], "s": [ "$(DEVELOPER_DIR)/Platforms/iPhoneSimulator.platform/Developer/usr/lib", + "$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin/Lib/UndesiredSchemes", "$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin/Lib", "$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin/UI", "$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer", @@ -291,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)/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.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", "f": [ "$(DEVELOPER_DIR)/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks", "$(SDKROOT)/Developer/Library/Frameworks", @@ -302,6 +309,7 @@ ], "s": [ "$(DEVELOPER_DIR)/Platforms/iPhoneSimulator.platform/Developer/usr/lib", + "$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin/Lib/UndesiredSchemes", "$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin/Lib", "$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin/UI", "$(PROJECT_DIR)/bazel-out/CONFIGURATION-STABLE-3/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer", 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 719aa1d8f..12329064d 100644 --- a/examples/integration/test/fixtures/bwb.xcodeproj/rules_xcodeproj/generated.xcfilelist +++ b/examples/integration/test/fixtures/bwb.xcodeproj/rules_xcodeproj/generated.xcfilelist @@ -1,113 +1,113 @@ -$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/AppClip.103.link.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/AppClip.168.link.params +$(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.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.71.link.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/BasicTests.165.link.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/BasicTests.68.link.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/Bundle.123.link.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/Bundle.26.link.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/CommandLineTool.152.link.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/CommandLineTool.55.link.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/CommandLineToolTests.166.link.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/CommandLineToolTests.69.link.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/FrameworkCoreUtilsObjC.10.link.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/FrameworkCoreUtilsObjC.107.link.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/FrameworkCoreUtilsObjC.172.link.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/FrameworkCoreUtilsObjC.75.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.120.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.185.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.23.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.88.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.110.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.13.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.175.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.78.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.108.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.11.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.173.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.76.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.121.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.186.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.24.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.89.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.111.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.14.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.176.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.79.link.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/UniversalCommandLineTool.158.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/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/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/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.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/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.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.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/UniversalCommandLineTool.61.link.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/UniversalCommandLineTool.67.link.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/WidgetExtension.106.link.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/WidgetExtension.171.link.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/WidgetExtension.74.link.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/WidgetExtension.9.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.145.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.48.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.146.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.49.link.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iMessageAppExtension.130.link.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iMessageAppExtension.33.link.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iOS.116.link.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/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/iOS.19.link.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iOS.84.link.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iOSApp.114.link.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iOSApp.17.link.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iOSApp.179.link.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iOSApp.82.link.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iOSAppObjCUnitTestSuite.142.link.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iOSAppObjCUnitTestSuite.45.link.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iOSAppObjCUnitTests.127.link.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iOSAppObjCUnitTests.191.link.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iOSAppObjCUnitTests.30.link.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iOSAppObjCUnitTests.94.link.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iOSAppSwiftUnitTestSuite.143.link.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iOSAppSwiftUnitTestSuite.46.link.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iOSAppSwiftUnitTests.132.link.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iOSAppSwiftUnitTests.193.link.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iOSAppSwiftUnitTests.35.link.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iOSAppSwiftUnitTests.96.link.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iOSAppUITestSuite.141.link.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iOSAppUITestSuite.44.link.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iOSAppUITests.128.link.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iOSAppUITests.192.link.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iOSAppUITests.31.link.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/iOSAppUITests.95.link.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/macOSApp.135.link.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/macOSApp.38.link.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/macOSAppUITests.136.link.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/macOSAppUITests.39.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.134.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.37.link.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/proto.144.link.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/proto.47.link.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/tool.101.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/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/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.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/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/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.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.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.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.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.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.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.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.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/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.118.link.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/tvOS.183.link.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/tvOS.21.link.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/tvOS.86.link.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/tvOSApp.122.link.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/tvOSApp.187.link.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/tvOSApp.25.link.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/tvOSApp.90.link.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/tvOSAppUITests.137.link.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/tvOSAppUITests.40.link.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/tvOSAppUnitTests.138.link.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/tvOSAppUnitTests.41.link.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/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/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/watchOS.22.link.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/watchOS.87.link.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/watchOSAppExtension.112.link.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/watchOSAppExtension.15.link.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/watchOSAppExtension.177.link.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/watchOSAppExtension.80.link.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/watchOSAppExtensionUnitTests.140.link.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/watchOSAppExtensionUnitTests.43.link.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/watchOSAppUITests.139.link.params -$(BAZEL_OUT)/CONFIGURATION-STABLE-0/bin/external/rules_xcodeproj~~internal~rules_xcodeproj_generated/generator/test/fixtures/xcodeproj_bwb/xcodeproj_bwb-params/watchOSAppUITests.42.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.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/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/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.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.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/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/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.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 $(BAZEL_OUT)/CONFIGURATION-STABLE-1/bin/cc/lib2/_virtual_includes/cc_lib_impl/lib2_prefix/lib2.h @@ -132,6 +132,8 @@ $(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/AppClip/Entitlements.withbundleid.plist $(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/AppClip/rules_xcodeproj/AppClip/Info.plist $(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/Lib/Lib.rules_xcodeproj.swift.compile.params $(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/Lib/Lib.swift +$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/Lib/UndesiredSchemes/UndesiredScheme_Swift.rules_xcodeproj.swift.compile.params +$(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/Lib/UndesiredSchemes/UnwantedScheme_Swift.rules_xcodeproj.swift.compile.params $(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/Lib/dist/dynamic/rules_xcodeproj/iOS/Info.plist $(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/UI/UI.rules_xcodeproj.swift.compile.params $(BAZEL_OUT)/CONFIGURATION-STABLE-12/bin/UI/rules_xcodeproj/UIFramework.iOS/Info.plist @@ -219,6 +221,8 @@ $(BAZEL_OUT)/CONFIGURATION-STABLE-17/bin/AppClip/Entitlements.withbundleid.plist $(BAZEL_OUT)/CONFIGURATION-STABLE-17/bin/AppClip/rules_xcodeproj/AppClip/Info.plist $(BAZEL_OUT)/CONFIGURATION-STABLE-17/bin/Lib/Lib.rules_xcodeproj.swift.compile.params $(BAZEL_OUT)/CONFIGURATION-STABLE-17/bin/Lib/Lib.swift +$(BAZEL_OUT)/CONFIGURATION-STABLE-17/bin/Lib/UndesiredSchemes/UndesiredScheme_Swift.rules_xcodeproj.swift.compile.params +$(BAZEL_OUT)/CONFIGURATION-STABLE-17/bin/Lib/UndesiredSchemes/UnwantedScheme_Swift.rules_xcodeproj.swift.compile.params $(BAZEL_OUT)/CONFIGURATION-STABLE-17/bin/Lib/dist/dynamic/rules_xcodeproj/iOS/Info.plist $(BAZEL_OUT)/CONFIGURATION-STABLE-17/bin/UI/UI.rules_xcodeproj.swift.compile.params $(BAZEL_OUT)/CONFIGURATION-STABLE-17/bin/UI/rules_xcodeproj/UIFramework.iOS/Info.plist @@ -339,6 +343,8 @@ $(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/AppClip/Entitlements.withbundleid.plist $(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/AppClip/rules_xcodeproj/AppClip/Info.plist $(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/Lib/Lib.rules_xcodeproj.swift.compile.params $(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/Lib/Lib.swift +$(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/Lib/UndesiredSchemes/UndesiredScheme_Swift.rules_xcodeproj.swift.compile.params +$(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/Lib/UndesiredSchemes/UnwantedScheme_Swift.rules_xcodeproj.swift.compile.params $(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/Lib/dist/dynamic/rules_xcodeproj/iOS/Info.plist $(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/UI/UI.rules_xcodeproj.swift.compile.params $(BAZEL_OUT)/CONFIGURATION-STABLE-3/bin/UI/rules_xcodeproj/UIFramework.iOS/Info.plist @@ -453,6 +459,8 @@ $(BAZEL_OUT)/CONFIGURATION-STABLE-8/bin/AppClip/Entitlements.withbundleid.plist $(BAZEL_OUT)/CONFIGURATION-STABLE-8/bin/AppClip/rules_xcodeproj/AppClip/Info.plist $(BAZEL_OUT)/CONFIGURATION-STABLE-8/bin/Lib/Lib.rules_xcodeproj.swift.compile.params $(BAZEL_OUT)/CONFIGURATION-STABLE-8/bin/Lib/Lib.swift +$(BAZEL_OUT)/CONFIGURATION-STABLE-8/bin/Lib/UndesiredSchemes/UndesiredScheme_Swift.rules_xcodeproj.swift.compile.params +$(BAZEL_OUT)/CONFIGURATION-STABLE-8/bin/Lib/UndesiredSchemes/UnwantedScheme_Swift.rules_xcodeproj.swift.compile.params $(BAZEL_OUT)/CONFIGURATION-STABLE-8/bin/Lib/dist/dynamic/rules_xcodeproj/iOS/Info.plist $(BAZEL_OUT)/CONFIGURATION-STABLE-8/bin/UI/UI.rules_xcodeproj.swift.compile.params $(BAZEL_OUT)/CONFIGURATION-STABLE-8/bin/UI/rules_xcodeproj/UIFramework.iOS/Info.plist diff --git a/examples/integration/test/fixtures/bwb.xcodeproj/xcshareddata/xcschemes/UndesiredScheme_Swift.xcscheme b/examples/integration/test/fixtures/bwb.xcodeproj/xcshareddata/xcschemes/UndesiredScheme_Swift.xcscheme new file mode 100644 index 000000000..84a8b139c --- /dev/null +++ b/examples/integration/test/fixtures/bwb.xcodeproj/xcshareddata/xcschemes/UndesiredScheme_Swift.xcscheme @@ -0,0 +1,76 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/examples/integration/test/fixtures/bwb.xcodeproj/xcshareddata/xcschemes/UnwantedScheme_Swift.xcscheme b/examples/integration/test/fixtures/bwb.xcodeproj/xcshareddata/xcschemes/UnwantedScheme_Swift.xcscheme new file mode 100644 index 000000000..048779c52 --- /dev/null +++ b/examples/integration/test/fixtures/bwb.xcodeproj/xcshareddata/xcschemes/UnwantedScheme_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 8a7a00e16..2c500cd9c 100644 --- a/examples/integration/test/fixtures/bwb_project_spec.json +++ b/examples/integration/test/fixtures/bwb_project_spec.json @@ -196,6 +196,7 @@ "Lib/BUILD", "Lib/Info.plist", "Lib/README.md", + "Lib/UndesiredSchemes/BUILD", "Lib/dist/dynamic/BUILD", "Proto/BUILD", "Proto/Info.plist", diff --git a/examples/integration/test/fixtures/bwb_targets_spec.json b/examples/integration/test/fixtures/bwb_targets_spec.json index 5ef0aa754..0e1e1cfce 100644 --- a/examples/integration/test/fixtures/bwb_targets_spec.json +++ b/examples/integration/test/fixtures/bwb_targets_spec.json @@ -232,6 +232,70 @@ "t": "com.apple.product-type.application.on-demand-install-capable" } }, + "@@//Lib/UndesiredSchemes:UndesiredScheme_Swift CONFIGURATION-STABLE-3", + { + "0": "bazel-out/CONFIGURATION-STABLE-3/bin/Lib/UndesiredSchemes/UndesiredScheme_Swift.rules_xcodeproj.swift.compile.params", + "1": "bazel-out/CONFIGURATION-STABLE-3/bin/Lib/UndesiredSchemes", + "2": { + "a": "x86_64", + "m": "15.0", + "v": "iphonesimulator" + }, + "b": { + "OTHER_SWIFT_FLAGS": "-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", + "PRODUCT_MODULE_NAME": "Lib_UndesiredSchemes_UndesiredScheme_Swift" + }, + "c": "CONFIGURATION-STABLE-3", + "i": { + "s": [ + "Lib/UndesiredSchemes/UndesiredScheme.swift" + ] + }, + "l": "@@//Lib/UndesiredSchemes:UndesiredScheme_Swift", + "n": "UndesiredScheme_Swift", + "o": { + "s": { + "m": "bazel-out/CONFIGURATION-STABLE-3/bin/Lib/UndesiredSchemes/Lib_UndesiredSchemes_UndesiredScheme_Swift.swiftmodule" + } + }, + "p": { + "n": "UndesiredScheme_Swift", + "p": "bazel-out/CONFIGURATION-STABLE-3/bin/Lib/UndesiredSchemes/libUndesiredScheme_Swift.a", + "t": "com.apple.product-type.library.static" + } + }, + "@@//Lib/UndesiredSchemes:UnwantedScheme_Swift CONFIGURATION-STABLE-3", + { + "0": "bazel-out/CONFIGURATION-STABLE-3/bin/Lib/UndesiredSchemes/UnwantedScheme_Swift.rules_xcodeproj.swift.compile.params", + "1": "bazel-out/CONFIGURATION-STABLE-3/bin/Lib/UndesiredSchemes", + "2": { + "a": "x86_64", + "m": "15.0", + "v": "iphonesimulator" + }, + "b": { + "OTHER_SWIFT_FLAGS": "-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", + "PRODUCT_MODULE_NAME": "Lib_UndesiredSchemes_UnwantedScheme_Swift" + }, + "c": "CONFIGURATION-STABLE-3", + "i": { + "s": [ + "Lib/UndesiredSchemes/UnwantedScheme.swift" + ] + }, + "l": "@@//Lib/UndesiredSchemes:UnwantedScheme_Swift", + "n": "UnwantedScheme_Swift", + "o": { + "s": { + "m": "bazel-out/CONFIGURATION-STABLE-3/bin/Lib/UndesiredSchemes/Lib_UndesiredSchemes_UnwantedScheme_Swift.swiftmodule" + } + }, + "p": { + "n": "UnwantedScheme_Swift", + "p": "bazel-out/CONFIGURATION-STABLE-3/bin/Lib/UndesiredSchemes/libUnwantedScheme_Swift.a", + "t": "com.apple.product-type.library.static" + } + }, "@@//iOSApp/Source/CoreUtilsMixed/MixedAnswer:MixedAnswerLib_Swift CONFIGURATION-STABLE-3", { "0": "bazel-out/CONFIGURATION-STABLE-3/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswerLib_Swift.rules_xcodeproj.swift.compile.params", @@ -311,7 +375,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.9.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.11.link.params", "b": { "APPLICATION_EXTENSION_API_ONLY": true, "BAZEL_OUTPUTS_DSYM": [ @@ -373,7 +437,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.10.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.12.link.params", "9": "bazel-out/CONFIGURATION-STABLE-3/bin/iOSApp/Source/CoreUtilsObjC/CoreUtilsObjC.rules_xcodeproj.cxx.compile.params", "F": true, "b": { @@ -436,7 +500,7 @@ "bazel-out/CONFIGURATION-STABLE-3/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.11.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.13.link.params", "b": { "APPLICATION_EXTENSION_API_ONLY": true, "BAZEL_OUTPUTS_DSYM": [ @@ -536,7 +600,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.13.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.15.link.params", "b": { "APPLICATION_EXTENSION_API_ONLY": true, "BAZEL_OUTPUTS_DSYM": [ @@ -592,7 +656,7 @@ "bazel-out/CONFIGURATION-STABLE-4/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.14.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.16.link.params", "7": [ "@@//Lib:LibFramework.watchOS CONFIGURATION-STABLE-4" ], @@ -666,7 +730,7 @@ "bazel-out/CONFIGURATION-STABLE-4/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.15.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.17.link.params", "b": { "APPLICATION_EXTENSION_API_ONLY": true, "BAZEL_OUTPUTS_DSYM": [ @@ -780,7 +844,7 @@ "bazel-out/CONFIGURATION-STABLE-3/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.17.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.19.link.params", "7": [ "@@//AppClip:AppClip CONFIGURATION-STABLE-3", "@@//WidgetExtension:WidgetExtension CONFIGURATION-STABLE-3", @@ -812,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 -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.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", "PREVIEWS_SWIFT_INCLUDE__": "", "PREVIEWS_SWIFT_INCLUDE__NO": "", "PREVIEWS_SWIFT_INCLUDE__YES": "-I bazel-out/CONFIGURATION-STABLE-3/bin/iOSApp/Source", @@ -915,7 +979,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.19.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.21.link.params", "b": { "APPLICATION_EXTENSION_API_ONLY": true, "BAZEL_OUTPUTS_PRODUCT": "bazel-out/CONFIGURATION-STABLE-3/bin/Lib/dist/dynamic/Lib.framework", @@ -995,7 +1059,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.21.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.23.link.params", "b": { "APPLICATION_EXTENSION_API_ONLY": true, "BAZEL_OUTPUTS_PRODUCT": "bazel-out/CONFIGURATION-STABLE-6/bin/Lib/dist/dynamic/Lib.framework", @@ -1040,7 +1104,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.22.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.24.link.params", "b": { "APPLICATION_EXTENSION_API_ONLY": true, "BAZEL_OUTPUTS_PRODUCT": "bazel-out/CONFIGURATION-STABLE-4/bin/Lib/dist/dynamic/Lib.framework", @@ -1085,7 +1149,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.23.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.25.link.params", "b": { "APPLICATION_EXTENSION_API_ONLY": true, "BAZEL_OUTPUTS_DSYM": [ @@ -1141,7 +1205,7 @@ "bazel-out/CONFIGURATION-STABLE-6/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.24.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.26.link.params", "7": [ "@@//Lib:LibFramework.tvOS CONFIGURATION-STABLE-6" ], @@ -1215,7 +1279,7 @@ "bazel-out/CONFIGURATION-STABLE-6/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.25.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.27.link.params", "7": [ "@@//Lib:LibFramework.tvOS CONFIGURATION-STABLE-6", "@@//UI:UIFramework.tvOS CONFIGURATION-STABLE-6" @@ -1281,7 +1345,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.26.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.28.link.params", "8": "bazel-out/CONFIGURATION-STABLE-7/bin/Bundle/aplugin.library.rules_xcodeproj.c.compile.params", "b": { "BAZEL_OUTPUTS_DSYM": [ @@ -1426,7 +1490,7 @@ "bazel-out/CONFIGURATION-STABLE-3/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.30.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.32.link.params", "7": [ "@@//AppClip:AppClip CONFIGURATION-STABLE-3", "@@//WidgetExtension:WidgetExtension CONFIGURATION-STABLE-3", @@ -1498,7 +1562,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.31.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.33.link.params", "b": { "BAZEL_OUTPUTS_DSYM": [ "\"bazel-out/CONFIGURATION-STABLE-3/bin/iOSApp/Source/CoreUtilsObjC/FrameworkCoreUtilsObjC_dsyms/CoreUtilsObjC.framework.dSYM\"", @@ -1605,7 +1669,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.33.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.35.link.params", "b": { "APPLICATION_EXTENSION_API_ONLY": true, "BAZEL_OUTPUTS_DSYM": [ @@ -1712,7 +1776,7 @@ "bazel-out/CONFIGURATION-STABLE-3/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.35.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.37.link.params", "7": [ "@@//AppClip:AppClip CONFIGURATION-STABLE-3", "@@//WidgetExtension:WidgetExtension CONFIGURATION-STABLE-3", @@ -1737,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 -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.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", "PREVIEWS_SWIFT_INCLUDE__": "", "PREVIEWS_SWIFT_INCLUDE__NO": "", "PREVIEWS_SWIFT_INCLUDE__YES": "-I bazel-out/CONFIGURATION-STABLE-3/bin/iOSApp/Test/SwiftUnitTests", @@ -1828,7 +1892,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.37.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.39.link.params", "b": { "APPLICATION_EXTENSION_API_ONLY": true, "BAZEL_OUTPUTS_PRODUCT": "bazel-out/CONFIGURATION-STABLE-7/bin/macOSApp/Source/Lib.framework", @@ -1881,7 +1945,7 @@ "bazel-out/CONFIGURATION-STABLE-7/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.38.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.40.link.params", "7": [ "@@//macOSApp/Source:macOSLib.framework CONFIGURATION-STABLE-7" ], @@ -1947,7 +2011,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.39.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.41.link.params", "b": { "BAZEL_OUTPUTS_DSYM": [ "\"bazel-out/CONFIGURATION-STABLE-7/bin/macOSApp/Source/macOSLib.framework_dsyms/Lib.framework.dSYM\"", @@ -2006,7 +2070,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.40.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.42.link.params", "b": { "BAZEL_OUTPUTS_DSYM": [ "\"bazel-out/CONFIGURATION-STABLE-6/bin/Lib/LibFramework.tvOS.framework.dSYM\"", @@ -2074,7 +2138,7 @@ "bazel-out/CONFIGURATION-STABLE-6/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.41.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.43.link.params", "7": [ "@@//Lib:LibFramework.tvOS CONFIGURATION-STABLE-6", "@@//UI:UIFramework.tvOS CONFIGURATION-STABLE-6", @@ -2143,7 +2207,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.42.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.44.link.params", "b": { "BAZEL_OUTPUTS_DSYM": [ "\"bazel-out/CONFIGURATION-STABLE-4/bin/Lib/LibFramework.watchOS.framework.dSYM\"", @@ -2211,7 +2275,7 @@ "bazel-out/CONFIGURATION-STABLE-4/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.43.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.45.link.params", "7": [ "@@//Lib:LibFramework.watchOS CONFIGURATION-STABLE-4", "@@//UI:UIFramework.watchOS CONFIGURATION-STABLE-4" @@ -2272,7 +2336,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.44.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.46.link.params", "b": { "BAZEL_OUTPUTS_DSYM": [ "\"bazel-out/CONFIGURATION-STABLE-3/bin/iOSApp/Source/CoreUtilsObjC/FrameworkCoreUtilsObjC_dsyms/CoreUtilsObjC.framework.dSYM\"", @@ -2346,7 +2410,7 @@ "bazel-out/CONFIGURATION-STABLE-3/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.45.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.47.link.params", "7": [ "@@//AppClip:AppClip CONFIGURATION-STABLE-3", "@@//WidgetExtension:WidgetExtension CONFIGURATION-STABLE-3", @@ -2426,7 +2490,7 @@ "bazel-out/CONFIGURATION-STABLE-3/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.46.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.48.link.params", "7": [ "@@//AppClip:AppClip CONFIGURATION-STABLE-3", "@@//WidgetExtension:WidgetExtension CONFIGURATION-STABLE-3", @@ -2451,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 -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.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", "PREVIEWS_SWIFT_INCLUDE__": "", "PREVIEWS_SWIFT_INCLUDE__NO": "", "PREVIEWS_SWIFT_INCLUDE__YES": "-I bazel-out/CONFIGURATION-STABLE-3/bin/iOSApp/Test/SwiftUnitTests", @@ -2509,7 +2573,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.47.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.49.link.params", "b": { "BAZEL_OUTPUTS_DSYM": [ "\"bazel-out/CONFIGURATION-STABLE-25/bin/Proto/proto.dSYM\"" @@ -2558,7 +2622,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.48.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.50.link.params", "b": { "BAZEL_OUTPUTS_DSYM": [ "\"bazel-out/CONFIGURATION-STABLE-25/bin/GRPC/echo_client.dSYM\"" @@ -2608,7 +2672,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.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/echo_server.51.link.params", "b": { "BAZEL_OUTPUTS_DSYM": [ "\"bazel-out/CONFIGURATION-STABLE-25/bin/GRPC/echo_server.dSYM\"" @@ -2801,7 +2865,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.55.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.57.link.params", "8": "bazel-out/CONFIGURATION-STABLE-27/bin/CommandLine/CommandLineTool/tool.library.rules_xcodeproj.c.compile.params", "b": { "BAZEL_OUTPUTS_DSYM": [ @@ -2991,7 +3055,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.61.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.63.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", @@ -3175,7 +3239,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.67.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.69.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", @@ -3210,7 +3274,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.68.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.70.link.params", "b": { "BAZEL_OUTPUTS_PRODUCT": "bazel-out/CONFIGURATION-STABLE-33/bin/CommandLine/Tests/BasicTests.xctest", "BAZEL_OUTPUTS_PRODUCT_BASENAME": "BasicTests.xctest", @@ -3247,7 +3311,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.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/CommandLineToolTests.71.link.params", "b": { "BAZEL_OUTPUTS_DSYM": [ "\"bazel-out/CONFIGURATION-STABLE-27/bin/CommandLine/Tests/CommandLineToolTests.xctest.dSYM\"" @@ -3344,7 +3408,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.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/AppClip.73.link.params", "b": { "ASSETCATALOG_COMPILER_APPICON_NAME": "AppIcon", "BAZEL_OUTPUTS_DSYM": [ @@ -3395,6 +3459,70 @@ "t": "com.apple.product-type.application.on-demand-install-capable" } }, + "@@//Lib/UndesiredSchemes:UndesiredScheme_Swift CONFIGURATION-STABLE-8", + { + "0": "bazel-out/CONFIGURATION-STABLE-8/bin/Lib/UndesiredSchemes/UndesiredScheme_Swift.rules_xcodeproj.swift.compile.params", + "1": "bazel-out/CONFIGURATION-STABLE-8/bin/Lib/UndesiredSchemes", + "2": { + "a": "arm64", + "m": "15.0", + "v": "iphoneos" + }, + "b": { + "OTHER_SWIFT_FLAGS": "-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", + "PRODUCT_MODULE_NAME": "Lib_UndesiredSchemes_UndesiredScheme_Swift" + }, + "c": "CONFIGURATION-STABLE-8", + "i": { + "s": [ + "Lib/UndesiredSchemes/UndesiredScheme.swift" + ] + }, + "l": "@@//Lib/UndesiredSchemes:UndesiredScheme_Swift", + "n": "UndesiredScheme_Swift", + "o": { + "s": { + "m": "bazel-out/CONFIGURATION-STABLE-8/bin/Lib/UndesiredSchemes/Lib_UndesiredSchemes_UndesiredScheme_Swift.swiftmodule" + } + }, + "p": { + "n": "UndesiredScheme_Swift", + "p": "bazel-out/CONFIGURATION-STABLE-8/bin/Lib/UndesiredSchemes/libUndesiredScheme_Swift.a", + "t": "com.apple.product-type.library.static" + } + }, + "@@//Lib/UndesiredSchemes:UnwantedScheme_Swift CONFIGURATION-STABLE-8", + { + "0": "bazel-out/CONFIGURATION-STABLE-8/bin/Lib/UndesiredSchemes/UnwantedScheme_Swift.rules_xcodeproj.swift.compile.params", + "1": "bazel-out/CONFIGURATION-STABLE-8/bin/Lib/UndesiredSchemes", + "2": { + "a": "arm64", + "m": "15.0", + "v": "iphoneos" + }, + "b": { + "OTHER_SWIFT_FLAGS": "-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", + "PRODUCT_MODULE_NAME": "Lib_UndesiredSchemes_UnwantedScheme_Swift" + }, + "c": "CONFIGURATION-STABLE-8", + "i": { + "s": [ + "Lib/UndesiredSchemes/UnwantedScheme.swift" + ] + }, + "l": "@@//Lib/UndesiredSchemes:UnwantedScheme_Swift", + "n": "UnwantedScheme_Swift", + "o": { + "s": { + "m": "bazel-out/CONFIGURATION-STABLE-8/bin/Lib/UndesiredSchemes/Lib_UndesiredSchemes_UnwantedScheme_Swift.swiftmodule" + } + }, + "p": { + "n": "UnwantedScheme_Swift", + "p": "bazel-out/CONFIGURATION-STABLE-8/bin/Lib/UndesiredSchemes/libUnwantedScheme_Swift.a", + "t": "com.apple.product-type.library.static" + } + }, "@@//iOSApp/Source/CoreUtilsMixed/MixedAnswer:MixedAnswerLib_Swift CONFIGURATION-STABLE-8", { "0": "bazel-out/CONFIGURATION-STABLE-8/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswerLib_Swift.rules_xcodeproj.swift.compile.params", @@ -3474,7 +3602,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.74.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.78.link.params", "b": { "APPLICATION_EXTENSION_API_ONLY": true, "BAZEL_OUTPUTS_DSYM": [ @@ -3537,7 +3665,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.75.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.79.link.params", "9": "bazel-out/CONFIGURATION-STABLE-8/bin/iOSApp/Source/CoreUtilsObjC/CoreUtilsObjC.rules_xcodeproj.cxx.compile.params", "F": true, "b": { @@ -3600,7 +3728,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.76.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.80.link.params", "b": { "APPLICATION_EXTENSION_API_ONLY": true, "BAZEL_OUTPUTS_DSYM": [ @@ -3700,7 +3828,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.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/LibFramework.watchOS.82.link.params", "b": { "APPLICATION_EXTENSION_API_ONLY": true, "BAZEL_OUTPUTS_DSYM": [ @@ -3756,7 +3884,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.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/UIFramework.watchOS.83.link.params", "7": [ "@@//Lib:LibFramework.watchOS CONFIGURATION-STABLE-9" ], @@ -3830,7 +3958,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.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/watchOSAppExtension.84.link.params", "b": { "APPLICATION_EXTENSION_API_ONLY": true, "BAZEL_OUTPUTS_DSYM": [ @@ -3946,7 +4074,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.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/iOSApp.86.link.params", "7": [ "@@//AppClip:AppClip CONFIGURATION-STABLE-8", "@@//WidgetExtension:WidgetExtension CONFIGURATION-STABLE-8", @@ -3979,7 +4107,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 -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.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", "PREVIEWS_SWIFT_INCLUDE__": "", "PREVIEWS_SWIFT_INCLUDE__NO": "", "PREVIEWS_SWIFT_INCLUDE__YES": "-I bazel-out/CONFIGURATION-STABLE-8/bin/iOSApp/Source", @@ -4082,7 +4210,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.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/iOS.88.link.params", "b": { "APPLICATION_EXTENSION_API_ONLY": true, "BAZEL_OUTPUTS_PRODUCT": "bazel-out/CONFIGURATION-STABLE-8/bin/Lib/dist/dynamic/Lib.framework", @@ -4162,7 +4290,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.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/tvOS.90.link.params", "b": { "APPLICATION_EXTENSION_API_ONLY": true, "BAZEL_OUTPUTS_PRODUCT": "bazel-out/CONFIGURATION-STABLE-11/bin/Lib/dist/dynamic/Lib.framework", @@ -4207,7 +4335,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.87.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.91.link.params", "b": { "APPLICATION_EXTENSION_API_ONLY": true, "BAZEL_OUTPUTS_PRODUCT": "bazel-out/CONFIGURATION-STABLE-9/bin/Lib/dist/dynamic/Lib.framework", @@ -4252,7 +4380,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.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/LibFramework.tvOS.92.link.params", "b": { "APPLICATION_EXTENSION_API_ONLY": true, "BAZEL_OUTPUTS_DSYM": [ @@ -4308,7 +4436,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.89.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.93.link.params", "7": [ "@@//Lib:LibFramework.tvOS CONFIGURATION-STABLE-11" ], @@ -4382,7 +4510,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.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/tvOSApp.94.link.params", "7": [ "@@//Lib:LibFramework.tvOS CONFIGURATION-STABLE-11", "@@//UI:UIFramework.tvOS CONFIGURATION-STABLE-11" @@ -4548,7 +4676,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.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/iOSAppObjCUnitTests.98.link.params", "7": [ "@@//AppClip:AppClip CONFIGURATION-STABLE-8", "@@//WidgetExtension:WidgetExtension CONFIGURATION-STABLE-8", @@ -4620,7 +4748,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.95.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.99.link.params", "b": { "BAZEL_OUTPUTS_DSYM": [ "\"bazel-out/CONFIGURATION-STABLE-8/bin/iOSApp/Source/CoreUtilsObjC/FrameworkCoreUtilsObjC_dsyms/CoreUtilsObjC.framework.dSYM\"", @@ -4695,7 +4823,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.96.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.100.link.params", "7": [ "@@//AppClip:AppClip CONFIGURATION-STABLE-8", "@@//WidgetExtension:WidgetExtension CONFIGURATION-STABLE-8", @@ -4720,7 +4848,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 -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.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", "PREVIEWS_SWIFT_INCLUDE__": "", "PREVIEWS_SWIFT_INCLUDE__NO": "", "PREVIEWS_SWIFT_INCLUDE__YES": "-I bazel-out/CONFIGURATION-STABLE-8/bin/iOSApp/Test/SwiftUnitTests", @@ -4881,7 +5009,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.101.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.105.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", @@ -4965,7 +5093,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.103.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.107.link.params", "b": { "ASSETCATALOG_COMPILER_APPICON_NAME": "AppIcon", "BAZEL_OUTPUTS_DSYM": [ @@ -5018,6 +5146,78 @@ "AppStore" ] }, + "@@//Lib/UndesiredSchemes:UndesiredScheme_Swift CONFIGURATION-STABLE-12", + { + "0": "bazel-out/CONFIGURATION-STABLE-12/bin/Lib/UndesiredSchemes/UndesiredScheme_Swift.rules_xcodeproj.swift.compile.params", + "1": "bazel-out/CONFIGURATION-STABLE-12/bin/Lib/UndesiredSchemes", + "2": { + "a": "x86_64", + "m": "15.0", + "v": "iphonesimulator" + }, + "b": { + "OTHER_SWIFT_FLAGS": "-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_MODULE_NAME": "Lib_UndesiredSchemes_UndesiredScheme_Swift", + "SWIFT_COMPILATION_MODE": "wholemodule" + }, + "c": "CONFIGURATION-STABLE-12", + "i": { + "s": [ + "Lib/UndesiredSchemes/UndesiredScheme.swift" + ] + }, + "l": "@@//Lib/UndesiredSchemes:UndesiredScheme_Swift", + "n": "UndesiredScheme_Swift", + "o": { + "s": { + "m": "bazel-out/CONFIGURATION-STABLE-12/bin/Lib/UndesiredSchemes/Lib_UndesiredSchemes_UndesiredScheme_Swift.swiftmodule" + } + }, + "p": { + "n": "UndesiredScheme_Swift", + "p": "bazel-out/CONFIGURATION-STABLE-12/bin/Lib/UndesiredSchemes/libUndesiredScheme_Swift.a", + "t": "com.apple.product-type.library.static" + }, + "x": [ + "AppStore" + ] + }, + "@@//Lib/UndesiredSchemes:UnwantedScheme_Swift CONFIGURATION-STABLE-12", + { + "0": "bazel-out/CONFIGURATION-STABLE-12/bin/Lib/UndesiredSchemes/UnwantedScheme_Swift.rules_xcodeproj.swift.compile.params", + "1": "bazel-out/CONFIGURATION-STABLE-12/bin/Lib/UndesiredSchemes", + "2": { + "a": "x86_64", + "m": "15.0", + "v": "iphonesimulator" + }, + "b": { + "OTHER_SWIFT_FLAGS": "-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_MODULE_NAME": "Lib_UndesiredSchemes_UnwantedScheme_Swift", + "SWIFT_COMPILATION_MODE": "wholemodule" + }, + "c": "CONFIGURATION-STABLE-12", + "i": { + "s": [ + "Lib/UndesiredSchemes/UnwantedScheme.swift" + ] + }, + "l": "@@//Lib/UndesiredSchemes:UnwantedScheme_Swift", + "n": "UnwantedScheme_Swift", + "o": { + "s": { + "m": "bazel-out/CONFIGURATION-STABLE-12/bin/Lib/UndesiredSchemes/Lib_UndesiredSchemes_UnwantedScheme_Swift.swiftmodule" + } + }, + "p": { + "n": "UnwantedScheme_Swift", + "p": "bazel-out/CONFIGURATION-STABLE-12/bin/Lib/UndesiredSchemes/libUnwantedScheme_Swift.a", + "t": "com.apple.product-type.library.static" + }, + "x": [ + "AppStore" + ] + }, "@@//iOSApp/Source/CoreUtilsMixed/MixedAnswer:MixedAnswerLib_Swift CONFIGURATION-STABLE-12", { "0": "bazel-out/CONFIGURATION-STABLE-12/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswerLib_Swift.rules_xcodeproj.swift.compile.params", @@ -5104,7 +5304,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.106.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.112.link.params", "b": { "APPLICATION_EXTENSION_API_ONLY": true, "BAZEL_OUTPUTS_DSYM": [ @@ -5170,7 +5370,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.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/FrameworkCoreUtilsObjC.113.link.params", "9": "bazel-out/CONFIGURATION-STABLE-12/bin/iOSApp/Source/CoreUtilsObjC/CoreUtilsObjC.rules_xcodeproj.cxx.compile.params", "F": true, "b": { @@ -5236,7 +5436,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.108.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.114.link.params", "b": { "APPLICATION_EXTENSION_API_ONLY": true, "BAZEL_OUTPUTS_DSYM": [ @@ -5344,7 +5544,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.110.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.116.link.params", "b": { "APPLICATION_EXTENSION_API_ONLY": true, "BAZEL_OUTPUTS_DSYM": [ @@ -5403,7 +5603,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.111.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.117.link.params", "7": [ "@@//Lib:LibFramework.watchOS CONFIGURATION-STABLE-13" ], @@ -5481,7 +5681,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.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/watchOSAppExtension.118.link.params", "b": { "APPLICATION_EXTENSION_API_ONLY": true, "BAZEL_OUTPUTS_DSYM": [ @@ -5602,7 +5802,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.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/iOSApp.120.link.params", "7": [ "@@//AppClip:AppClip CONFIGURATION-STABLE-12", "@@//WidgetExtension:WidgetExtension CONFIGURATION-STABLE-12", @@ -5630,7 +5830,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 -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.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", "PREVIEWS_SWIFT_INCLUDE__": "", "PREVIEWS_SWIFT_INCLUDE__NO": "", "PREVIEWS_SWIFT_INCLUDE__YES": "-I bazel-out/CONFIGURATION-STABLE-12/bin/iOSApp/Source", @@ -5740,7 +5940,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.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/iOS.122.link.params", "b": { "APPLICATION_EXTENSION_API_ONLY": true, "BAZEL_OUTPUTS_PRODUCT": "bazel-out/CONFIGURATION-STABLE-12/bin/Lib/dist/dynamic/Lib.framework", @@ -5827,7 +6027,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.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/tvOS.124.link.params", "b": { "APPLICATION_EXTENSION_API_ONLY": true, "BAZEL_OUTPUTS_PRODUCT": "bazel-out/CONFIGURATION-STABLE-15/bin/Lib/dist/dynamic/Lib.framework", @@ -5875,7 +6075,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.119.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.125.link.params", "b": { "APPLICATION_EXTENSION_API_ONLY": true, "BAZEL_OUTPUTS_PRODUCT": "bazel-out/CONFIGURATION-STABLE-13/bin/Lib/dist/dynamic/Lib.framework", @@ -5923,7 +6123,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.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/LibFramework.tvOS.126.link.params", "b": { "APPLICATION_EXTENSION_API_ONLY": true, "BAZEL_OUTPUTS_DSYM": [ @@ -5982,7 +6182,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.121.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.127.link.params", "7": [ "@@//Lib:LibFramework.tvOS CONFIGURATION-STABLE-15" ], @@ -6060,7 +6260,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.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/tvOSApp.128.link.params", "7": [ "@@//Lib:LibFramework.tvOS CONFIGURATION-STABLE-15", "@@//UI:UIFramework.tvOS CONFIGURATION-STABLE-15" @@ -6129,7 +6329,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.123.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.129.link.params", "8": "bazel-out/CONFIGURATION-STABLE-16/bin/Bundle/aplugin.library.rules_xcodeproj.c.compile.params", "b": { "BAZEL_OUTPUTS_DSYM": [ @@ -6287,7 +6487,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.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/iOSAppObjCUnitTests.133.link.params", "7": [ "@@//AppClip:AppClip CONFIGURATION-STABLE-12", "@@//WidgetExtension:WidgetExtension CONFIGURATION-STABLE-12", @@ -6362,7 +6562,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.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/iOSAppUITests.134.link.params", "b": { "BAZEL_OUTPUTS_DSYM": [ "\"bazel-out/CONFIGURATION-STABLE-12/bin/iOSApp/Source/CoreUtilsObjC/FrameworkCoreUtilsObjC_dsyms/CoreUtilsObjC.framework.dSYM\"", @@ -6477,7 +6677,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.130.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.136.link.params", "b": { "APPLICATION_EXTENSION_API_ONLY": true, "BAZEL_OUTPUTS_DSYM": [ @@ -6591,7 +6791,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.132.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.138.link.params", "7": [ "@@//AppClip:AppClip CONFIGURATION-STABLE-12", "@@//WidgetExtension:WidgetExtension CONFIGURATION-STABLE-12", @@ -6616,7 +6816,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 -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.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", "PREVIEWS_SWIFT_INCLUDE__": "", "PREVIEWS_SWIFT_INCLUDE__NO": "", "PREVIEWS_SWIFT_INCLUDE__YES": "-I bazel-out/CONFIGURATION-STABLE-12/bin/iOSApp/Test/SwiftUnitTests", @@ -6715,7 +6915,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.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/macOSLib.framework.140.link.params", "b": { "APPLICATION_EXTENSION_API_ONLY": true, "BAZEL_OUTPUTS_PRODUCT": "bazel-out/CONFIGURATION-STABLE-16/bin/macOSApp/Source/Lib.framework", @@ -6771,7 +6971,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.135.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.141.link.params", "7": [ "@@//macOSApp/Source:macOSLib.framework CONFIGURATION-STABLE-16" ], @@ -6840,7 +7040,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.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/macOSAppUITests.142.link.params", "b": { "BAZEL_OUTPUTS_DSYM": [ "\"bazel-out/CONFIGURATION-STABLE-16/bin/macOSApp/Source/macOSLib.framework_dsyms/Lib.framework.dSYM\"", @@ -6903,7 +7103,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.137.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.143.link.params", "b": { "BAZEL_OUTPUTS_DSYM": [ "\"bazel-out/CONFIGURATION-STABLE-15/bin/Lib/LibFramework.tvOS.framework.dSYM\"", @@ -6975,7 +7175,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.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/tvOSAppUnitTests.144.link.params", "7": [ "@@//Lib:LibFramework.tvOS CONFIGURATION-STABLE-15", "@@//UI:UIFramework.tvOS CONFIGURATION-STABLE-15", @@ -7048,7 +7248,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.139.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.145.link.params", "b": { "BAZEL_OUTPUTS_DSYM": [ "\"bazel-out/CONFIGURATION-STABLE-13/bin/Lib/LibFramework.watchOS.framework.dSYM\"", @@ -7120,7 +7320,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.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/watchOSAppExtensionUnitTests.146.link.params", "7": [ "@@//Lib:LibFramework.watchOS CONFIGURATION-STABLE-13", "@@//UI:UIFramework.watchOS CONFIGURATION-STABLE-13" @@ -7185,7 +7385,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.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/iOSAppUITestSuite.147.link.params", "b": { "BAZEL_OUTPUTS_DSYM": [ "\"bazel-out/CONFIGURATION-STABLE-12/bin/iOSApp/Source/CoreUtilsObjC/FrameworkCoreUtilsObjC_dsyms/CoreUtilsObjC.framework.dSYM\"", @@ -7263,7 +7463,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.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/iOSAppObjCUnitTestSuite.148.link.params", "7": [ "@@//AppClip:AppClip CONFIGURATION-STABLE-12", "@@//WidgetExtension:WidgetExtension CONFIGURATION-STABLE-12", @@ -7346,7 +7546,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.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/iOSAppSwiftUnitTestSuite.149.link.params", "7": [ "@@//AppClip:AppClip CONFIGURATION-STABLE-12", "@@//WidgetExtension:WidgetExtension CONFIGURATION-STABLE-12", @@ -7371,7 +7571,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 -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.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", "PREVIEWS_SWIFT_INCLUDE__": "", "PREVIEWS_SWIFT_INCLUDE__NO": "", "PREVIEWS_SWIFT_INCLUDE__YES": "-I bazel-out/CONFIGURATION-STABLE-12/bin/iOSApp/Test/SwiftUnitTests", @@ -7433,7 +7633,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.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/proto.150.link.params", "b": { "BAZEL_OUTPUTS_DSYM": [ "\"bazel-out/CONFIGURATION-STABLE-26/bin/Proto/proto.dSYM\"" @@ -7486,7 +7686,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.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/echo_client.151.link.params", "b": { "BAZEL_OUTPUTS_DSYM": [ "\"bazel-out/CONFIGURATION-STABLE-26/bin/GRPC/echo_client.dSYM\"" @@ -7540,7 +7740,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.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/echo_server.152.link.params", "b": { "BAZEL_OUTPUTS_DSYM": [ "\"bazel-out/CONFIGURATION-STABLE-26/bin/GRPC/echo_server.dSYM\"" @@ -7754,7 +7954,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.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/CommandLineTool.158.link.params", "8": "bazel-out/CONFIGURATION-STABLE-30/bin/CommandLine/CommandLineTool/tool.library.rules_xcodeproj.c.compile.params", "b": { "BAZEL_OUTPUTS_DSYM": [ @@ -7964,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/UniversalCommandLineTool.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/UniversalCommandLineTool.164.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", @@ -8168,7 +8368,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-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", @@ -8206,7 +8406,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.165.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.171.link.params", "b": { "BAZEL_OUTPUTS_PRODUCT": "bazel-out/CONFIGURATION-STABLE-34/bin/CommandLine/Tests/BasicTests.xctest", "BAZEL_OUTPUTS_PRODUCT_BASENAME": "BasicTests.xctest", @@ -8247,7 +8447,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.166.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.172.link.params", "b": { "BAZEL_OUTPUTS_DSYM": [ "\"bazel-out/CONFIGURATION-STABLE-30/bin/CommandLine/Tests/CommandLineToolTests.xctest.dSYM\"" @@ -8352,7 +8552,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.168.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.174.link.params", "b": { "ASSETCATALOG_COMPILER_APPICON_NAME": "AppIcon", "BAZEL_OUTPUTS_DSYM": [ @@ -8406,6 +8606,78 @@ "AppStore" ] }, + "@@//Lib/UndesiredSchemes:UndesiredScheme_Swift CONFIGURATION-STABLE-17", + { + "0": "bazel-out/CONFIGURATION-STABLE-17/bin/Lib/UndesiredSchemes/UndesiredScheme_Swift.rules_xcodeproj.swift.compile.params", + "1": "bazel-out/CONFIGURATION-STABLE-17/bin/Lib/UndesiredSchemes", + "2": { + "a": "arm64", + "m": "15.0", + "v": "iphoneos" + }, + "b": { + "OTHER_SWIFT_FLAGS": "-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", + "PRODUCT_MODULE_NAME": "Lib_UndesiredSchemes_UndesiredScheme_Swift", + "SWIFT_COMPILATION_MODE": "wholemodule" + }, + "c": "CONFIGURATION-STABLE-17", + "i": { + "s": [ + "Lib/UndesiredSchemes/UndesiredScheme.swift" + ] + }, + "l": "@@//Lib/UndesiredSchemes:UndesiredScheme_Swift", + "n": "UndesiredScheme_Swift", + "o": { + "s": { + "m": "bazel-out/CONFIGURATION-STABLE-17/bin/Lib/UndesiredSchemes/Lib_UndesiredSchemes_UndesiredScheme_Swift.swiftmodule" + } + }, + "p": { + "n": "UndesiredScheme_Swift", + "p": "bazel-out/CONFIGURATION-STABLE-17/bin/Lib/UndesiredSchemes/libUndesiredScheme_Swift.a", + "t": "com.apple.product-type.library.static" + }, + "x": [ + "AppStore" + ] + }, + "@@//Lib/UndesiredSchemes:UnwantedScheme_Swift CONFIGURATION-STABLE-17", + { + "0": "bazel-out/CONFIGURATION-STABLE-17/bin/Lib/UndesiredSchemes/UnwantedScheme_Swift.rules_xcodeproj.swift.compile.params", + "1": "bazel-out/CONFIGURATION-STABLE-17/bin/Lib/UndesiredSchemes", + "2": { + "a": "arm64", + "m": "15.0", + "v": "iphoneos" + }, + "b": { + "OTHER_SWIFT_FLAGS": "-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", + "PRODUCT_MODULE_NAME": "Lib_UndesiredSchemes_UnwantedScheme_Swift", + "SWIFT_COMPILATION_MODE": "wholemodule" + }, + "c": "CONFIGURATION-STABLE-17", + "i": { + "s": [ + "Lib/UndesiredSchemes/UnwantedScheme.swift" + ] + }, + "l": "@@//Lib/UndesiredSchemes:UnwantedScheme_Swift", + "n": "UnwantedScheme_Swift", + "o": { + "s": { + "m": "bazel-out/CONFIGURATION-STABLE-17/bin/Lib/UndesiredSchemes/Lib_UndesiredSchemes_UnwantedScheme_Swift.swiftmodule" + } + }, + "p": { + "n": "UnwantedScheme_Swift", + "p": "bazel-out/CONFIGURATION-STABLE-17/bin/Lib/UndesiredSchemes/libUnwantedScheme_Swift.a", + "t": "com.apple.product-type.library.static" + }, + "x": [ + "AppStore" + ] + }, "@@//iOSApp/Source/CoreUtilsMixed/MixedAnswer:MixedAnswerLib_Swift CONFIGURATION-STABLE-17", { "0": "bazel-out/CONFIGURATION-STABLE-17/bin/iOSApp/Source/CoreUtilsMixed/MixedAnswer/MixedAnswerLib_Swift.rules_xcodeproj.swift.compile.params", @@ -8492,7 +8764,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.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/WidgetExtension.179.link.params", "b": { "APPLICATION_EXTENSION_API_ONLY": true, "BAZEL_OUTPUTS_DSYM": [ @@ -8559,7 +8831,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.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/FrameworkCoreUtilsObjC.180.link.params", "9": "bazel-out/CONFIGURATION-STABLE-17/bin/iOSApp/Source/CoreUtilsObjC/CoreUtilsObjC.rules_xcodeproj.cxx.compile.params", "F": true, "b": { @@ -8625,7 +8897,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.173.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.181.link.params", "b": { "APPLICATION_EXTENSION_API_ONLY": true, "BAZEL_OUTPUTS_DSYM": [ @@ -8733,7 +9005,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.175.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.183.link.params", "b": { "APPLICATION_EXTENSION_API_ONLY": true, "BAZEL_OUTPUTS_DSYM": [ @@ -8792,7 +9064,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.176.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.184.link.params", "7": [ "@@//Lib:LibFramework.watchOS CONFIGURATION-STABLE-18" ], @@ -8870,7 +9142,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.177.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.185.link.params", "b": { "APPLICATION_EXTENSION_API_ONLY": true, "BAZEL_OUTPUTS_DSYM": [ @@ -8993,7 +9265,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.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/iOSApp.187.link.params", "7": [ "@@//AppClip:AppClip CONFIGURATION-STABLE-17", "@@//WidgetExtension:WidgetExtension CONFIGURATION-STABLE-17", @@ -9022,7 +9294,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 -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.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", "PREVIEWS_SWIFT_INCLUDE__": "", "PREVIEWS_SWIFT_INCLUDE__NO": "", "PREVIEWS_SWIFT_INCLUDE__YES": "-I bazel-out/CONFIGURATION-STABLE-17/bin/iOSApp/Source", @@ -9132,7 +9404,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.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/iOS.189.link.params", "b": { "APPLICATION_EXTENSION_API_ONLY": true, "BAZEL_OUTPUTS_PRODUCT": "bazel-out/CONFIGURATION-STABLE-17/bin/Lib/dist/dynamic/Lib.framework", @@ -9219,7 +9491,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.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/tvOS.191.link.params", "b": { "APPLICATION_EXTENSION_API_ONLY": true, "BAZEL_OUTPUTS_PRODUCT": "bazel-out/CONFIGURATION-STABLE-20/bin/Lib/dist/dynamic/Lib.framework", @@ -9267,7 +9539,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.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/watchOS.192.link.params", "b": { "APPLICATION_EXTENSION_API_ONLY": true, "BAZEL_OUTPUTS_PRODUCT": "bazel-out/CONFIGURATION-STABLE-18/bin/Lib/dist/dynamic/Lib.framework", @@ -9315,7 +9587,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.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/LibFramework.tvOS.193.link.params", "b": { "APPLICATION_EXTENSION_API_ONLY": true, "BAZEL_OUTPUTS_DSYM": [ @@ -9374,7 +9646,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.186.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.194.link.params", "7": [ "@@//Lib:LibFramework.tvOS CONFIGURATION-STABLE-20" ], @@ -9452,7 +9724,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.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/tvOSApp.195.link.params", "7": [ "@@//Lib:LibFramework.tvOS CONFIGURATION-STABLE-20", "@@//UI:UIFramework.tvOS CONFIGURATION-STABLE-20" @@ -9631,7 +9903,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.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/iOSAppObjCUnitTests.199.link.params", "7": [ "@@//AppClip:AppClip CONFIGURATION-STABLE-17", "@@//WidgetExtension:WidgetExtension CONFIGURATION-STABLE-17", @@ -9706,7 +9978,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.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/iOSAppUITests.200.link.params", "b": { "BAZEL_OUTPUTS_DSYM": [ "\"bazel-out/CONFIGURATION-STABLE-17/bin/iOSApp/Source/CoreUtilsObjC/FrameworkCoreUtilsObjC_dsyms/CoreUtilsObjC.framework.dSYM\"", @@ -9785,7 +10057,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.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/iOSAppSwiftUnitTests.201.link.params", "7": [ "@@//AppClip:AppClip CONFIGURATION-STABLE-17", "@@//WidgetExtension:WidgetExtension CONFIGURATION-STABLE-17", @@ -9810,7 +10082,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 -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.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", "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/integration/test/fixtures/generated/xcodeproj_bwb/BUILD b/examples/integration/test/fixtures/generated/xcodeproj_bwb/BUILD index fb4cac99f..faddb8a68 100755 --- a/examples/integration/test/fixtures/generated/xcodeproj_bwb/BUILD +++ b/examples/integration/test/fixtures/generated/xcodeproj_bwb/BUILD @@ -23,7 +23,7 @@ xcodeproj( ios_device_cpus = "arm64", ios_simulator_cpus = "", minimum_xcode_version = "13.0", - owned_extra_files = {"@@//Lib:README.md": "@@//Lib:Lib", "@@//iOSApp:info.yaml": "@@//iOSApp/Source:iOSApp", "@@//iOSApp:ownership.yaml": "@@//iOSApp/Source:iOSApp"}, + owned_extra_files = {"@@//Lib:README.md": "[\"@@//Lib:Lib\",\"@@//Lib:ios_Lib\"]", "@@//iOSApp:info.yaml": "[\"@@//iOSApp/Source:iOSApp\"]", "@@//iOSApp:ownership.yaml": "[\"@@//iOSApp/Source:iOSApp\"]"}, post_build = """""", pre_build = """set -euo pipefail diff --git a/examples/integration/xcodeproj_targets.bzl b/examples/integration/xcodeproj_targets.bzl index 634c86173..4f94f22ee 100644 --- a/examples/integration/xcodeproj_targets.bzl +++ b/examples/integration/xcodeproj_targets.bzl @@ -69,6 +69,7 @@ FAIL_FOR_INVALID_EXTRA_FILES_TARGETS = True ASSOCIATED_EXTRA_FILES = { "//Lib": ["//Lib:README.md"], + "//Lib:ios_Lib": ["//Lib:README.md"], "//iOSApp/Source:iOSApp": [ "//iOSApp:info.yaml", "//iOSApp:ownership.yaml", @@ -145,6 +146,12 @@ TVOS_BUNDLE_ID = IOS_BUNDLE_ID WATCHOS_BUNDLE_ID = "{}.watch".format(IOS_BUNDLE_ID) SCHEME_AUTOGENERATION_MODE = "all" +SCHEME_AUTOGENERATION_CONFIG = xcschemes.autogeneration_config( + scheme_name_exclude_patterns = [ + ".*UndesiredScheme.*", + ".*UnwantedScheme.*", + ], +) def get_xcode_schemes(): return [ diff --git a/examples/rules_ios/test/fixtures/bwb.xcodeproj/project.pbxproj b/examples/rules_ios/test/fixtures/bwb.xcodeproj/project.pbxproj index 60931e325..837bb5dc3 100644 --- a/examples/rules_ios/test/fixtures/bwb.xcodeproj/project.pbxproj +++ b/examples/rules_ios/test/fixtures/bwb.xcodeproj/project.pbxproj @@ -4661,6 +4661,7 @@ ENABLE_STRICT_OBJC_MSGSEND = YES; ENABLE_USER_SCRIPT_SANDBOXING = NO; GCC_OPTIMIZATION_LEVEL = 0; + IMPORT_INDEX_BUILD_INDEXSTORES = YES; INDEXING_PROJECT_DIR__ = "$(INDEXING_PROJECT_DIR__NO)"; INDEXING_PROJECT_DIR__NO = "../../../../../bazel-output-base/rules_xcodeproj.noindex/build_output_base/execroot/_main"; INDEXING_PROJECT_DIR__YES = "../../../../../bazel-output-base/rules_xcodeproj.noindex/indexbuild_output_base/execroot/_main"; diff --git a/test/internal/pbxproj_partials/write_pbxproj_prefix_tests.bzl b/test/internal/pbxproj_partials/write_pbxproj_prefix_tests.bzl index 0fe408d89..e416fdb56 100644 --- a/test/internal/pbxproj_partials/write_pbxproj_prefix_tests.bzl +++ b/test/internal/pbxproj_partials/write_pbxproj_prefix_tests.bzl @@ -50,6 +50,9 @@ def _write_pbxproj_prefix_test_impl(ctx): default_xcode_configuration = ctx.attr.default_xcode_configuration, execution_root_file = ctx.attr.execution_root_file, generator_name = "a_generator_name", + import_index_build_indexstores = ( + ctx.attr.import_index_build_indexstores + ), index_import = ctx.attr.index_import, install_path = "a/project.xcodeproj", minimum_xcode_version = ctx.attr.minimum_xcode_version, @@ -140,6 +143,7 @@ write_pbxproj_prefix_test = unittest.make( "config": attr.string(mandatory = True), "default_xcode_configuration": attr.string(mandatory = True), "execution_root_file": attr.string(mandatory = True), + "import_index_build_indexstores": attr.bool(mandatory = True), "index_import": attr.string(mandatory = True), "minimum_xcode_version": attr.string(mandatory = True), "platforms": attr.string_list(mandatory = True), @@ -175,6 +179,7 @@ def write_pbxproj_prefix_test_suite(name): config, default_xcode_configuration, execution_root_file, + import_index_build_indexstores, index_import, minimum_xcode_version, platforms, @@ -198,6 +203,7 @@ def write_pbxproj_prefix_test_suite(name): config = config, default_xcode_configuration = default_xcode_configuration, execution_root_file = execution_root_file, + import_index_build_indexstores = import_index_build_indexstores, index_import = index_import, minimum_xcode_version = minimum_xcode_version, platforms = platforms, @@ -226,6 +232,7 @@ def write_pbxproj_prefix_test_suite(name): config = "rules_xcodeproj", default_xcode_configuration = "Debug", execution_root_file = "an/execution/root/file", + import_index_build_indexstores = True, index_import = "some/path/to/index_import", minimum_xcode_version = "14.2.1", platforms = [ @@ -261,6 +268,8 @@ def write_pbxproj_prefix_test_suite(name): "some/path/to/resolved_repositories_file", # minimumXcodeVersion "14.2.1", + # importIndexBuildIndexstores + "1", # defaultXcodeConfiguration "Debug", # developmentRegion @@ -286,6 +295,7 @@ def write_pbxproj_prefix_test_suite(name): config = "custom_rxcp_config", default_xcode_configuration = "Release", execution_root_file = "an/execution/root/file", + import_index_build_indexstores = False, index_import = "some/path/to/index_import", platforms = [ "MACOS", @@ -324,6 +334,8 @@ def write_pbxproj_prefix_test_suite(name): "some/path/to/resolved_repositories_file", # minimumXcodeVersion "14.2.1", + # importIndexBuildIndexstores + "0", # defaultXcodeConfiguration "Release", # developmentRegion diff --git a/test/internal/xcschemes/write_schemes_tests.bzl b/test/internal/xcschemes/write_schemes_tests.bzl index f6bf41237..3d4b696a4 100644 --- a/test/internal/xcschemes/write_schemes_tests.bzl +++ b/test/internal/xcschemes/write_schemes_tests.bzl @@ -79,6 +79,7 @@ def _write_schemes_test_impl(ctx): _XCSCHEMEMANAGEMENT_DECLARED_FILE: None, } expected_inputs = ctx.attr.consolidation_maps + [ + ctx.attr.autogeneration_config_file, _CUSTOM_SCHEMES_DECLARED_FILE, _EXECUTION_ACTIONS_DECLARED_FILE, ctx.attr.extension_point_identifiers_file, @@ -97,6 +98,7 @@ def _write_schemes_test_impl(ctx): ) = xcschemes_execution.write_schemes( actions = actions.mock, autogeneration_mode = ctx.attr.autogeneration_mode, + autogeneration_config_file = ctx.attr.autogeneration_config_file, colorize = ctx.attr.colorize, consolidation_maps = ctx.attr.consolidation_maps, default_xcode_configuration = ctx.attr.default_xcode_configuration, @@ -201,6 +203,7 @@ write_schemes_test = unittest.make( attrs = { # Inputs "autogeneration_mode": attr.string(mandatory = True), + "autogeneration_config_file": attr.string(mandatory = True), "colorize": attr.bool(mandatory = True), "consolidation_maps": attr.string_list(mandatory = True), "default_xcode_configuration": attr.string(mandatory = True), @@ -233,6 +236,7 @@ def write_schemes_test_suite(name): # Inputs autogeneration_mode, + autogeneration_config_file, colorize = False, consolidation_maps, default_xcode_configuration, @@ -253,6 +257,7 @@ def write_schemes_test_suite(name): # Inputs autogeneration_mode = autogeneration_mode, + autogeneration_config_file = autogeneration_config_file, colorize = colorize, consolidation_maps = consolidation_maps, default_xcode_configuration = default_xcode_configuration, @@ -291,6 +296,7 @@ def write_schemes_test_suite(name): # Inputs autogeneration_mode = "none", + autogeneration_config_file = "some/autogeneration-config-file", colorize = True, consolidation_maps = [ "some/consolidation_maps/0", @@ -309,6 +315,8 @@ def write_schemes_test_suite(name): _XCSCHEMEMANAGEMENT_DECLARED_FILE.path, # autogenerationMode "none", + # autogenerationConfigFile + "some/autogeneration-config-file", # defaultXcodeConfiguration "Debug", # workspace @@ -344,6 +352,7 @@ def write_schemes_test_suite(name): # Inputs autogeneration_mode = "auto", + autogeneration_config_file = "some/autogeneration-config-file", consolidation_maps = [ "some/consolidation_maps/0", "some/consolidation_maps/1", @@ -658,6 +667,8 @@ def write_schemes_test_suite(name): _XCSCHEMEMANAGEMENT_DECLARED_FILE.path, # autogenerationMode "auto", + # autogenerationConfigFile + "some/autogeneration-config-file", # defaultXcodeConfiguration "AppStore", # workspace @@ -1324,6 +1335,7 @@ def write_schemes_test_suite(name): # Inputs autogeneration_mode = "auto", + autogeneration_config_file = "some/autogeneration-config-file", consolidation_maps = [ "some/consolidation_maps/0", "some/consolidation_maps/1", @@ -1355,6 +1367,8 @@ def write_schemes_test_suite(name): _XCSCHEMEMANAGEMENT_DECLARED_FILE.path, # autogenerationMode "auto", + # autogenerationConfigFile + "some/autogeneration-config-file", # defaultXcodeConfiguration "AppStore", # workspace @@ -1396,6 +1410,7 @@ def write_schemes_test_suite(name): # Inputs autogeneration_mode = "auto", + autogeneration_config_file = "some/autogeneration-config-file", consolidation_maps = [ "some/consolidation_maps/0", "some/consolidation_maps/1", @@ -1429,6 +1444,8 @@ def write_schemes_test_suite(name): _XCSCHEMEMANAGEMENT_DECLARED_FILE.path, # autogenerationMode "auto", + # autogenerationConfigFile + "some/autogeneration-config-file", # defaultXcodeConfiguration "AppStore", # workspace diff --git a/test/update_all_fixtures.sh b/test/update_all_fixtures.sh index d7bb76f5c..f6055915b 100755 --- a/test/update_all_fixtures.sh +++ b/test/update_all_fixtures.sh @@ -13,7 +13,10 @@ for dir in examples/*/ ; do if [[ "$dir" == "examples/rules_ios/" ]]; then bazel_version="7.1.1" else - bazel_version="last_green" + # See https://github.com/MobileNativeFoundation/rules_xcodeproj/pull/3029 + # + # Temporary change to make CI pass until the fix is in `last_green` + bazel_version="dd2464a5933e0a5a6765024573832717b71989bf" fi echo diff --git a/tools/generators/README.md b/tools/generators/README.md index 020ce7777..55c989a34 100644 --- a/tools/generators/README.md +++ b/tools/generators/README.md @@ -78,6 +78,6 @@ information. ## Xcode schemes -Both [automatic schemes](docs/bazel.md#xcodeproj-scheme_autogeneration_mode) and -[custom schemes](docs/bazel.md#xcodeproj-schemes) are generated by the +Both [automatic schemes](/docs/bazel.md#xcodeproj-scheme_autogeneration_mode) and +[custom schemes](/docs/bazel.md#xcodeproj-schemes) are generated by the [`xcschemes`](xcschemes/README.md) generator. diff --git a/tools/generators/legacy/src/Generator/CreateProject.swift b/tools/generators/legacy/src/Generator/CreateProject.swift index d87770ab8..91670a987 100644 --- a/tools/generators/legacy/src/Generator/CreateProject.swift +++ b/tools/generators/legacy/src/Generator/CreateProject.swift @@ -96,6 +96,7 @@ $(SYMROOT)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) "ENABLE_STRICT_OBJC_MSGSEND": true, "ENABLE_USER_SCRIPT_SANDBOXING": false, "GCC_OPTIMIZATION_LEVEL": "0", + "IMPORT_INDEX_BUILD_INDEXSTORES": true, "INDEX_DATA_STORE_DIR": "$(INDEX_DATA_STORE_DIR)", "INDEX_FORCE_SCRIPT_EXECUTION": true, "INDEX_IMPORT": indexImport, diff --git a/tools/generators/legacy/test/CreateProjectTests.swift b/tools/generators/legacy/test/CreateProjectTests.swift index 5589ebaa8..804679821 100644 --- a/tools/generators/legacy/test/CreateProjectTests.swift +++ b/tools/generators/legacy/test/CreateProjectTests.swift @@ -64,6 +64,7 @@ $(INDEXING_DEPLOYMENT_LOCATION__$(INDEX_ENABLE_BUILD_ARENA)), "ENABLE_STRICT_OBJC_MSGSEND": true, "ENABLE_USER_SCRIPT_SANDBOXING": false, "GCC_OPTIMIZATION_LEVEL": "0", + "IMPORT_INDEX_BUILD_INDEXSTORES": true, "INDEX_DATA_STORE_DIR": "$(INDEX_DATA_STORE_DIR)", "INDEX_FORCE_SCRIPT_EXECUTION": true, "INDEX_IMPORT": "/tmp/index-import", @@ -220,6 +221,7 @@ $(BUILD_DIR)/$(BAZEL_PACKAGE_BIN_DIR) "LD": "$(BAZEL_INTEGRATION_DIR)/ld.sh", "LDPLUSPLUS": "$(BAZEL_INTEGRATION_DIR)/ld.sh", "LIBTOOL": "$(BAZEL_INTEGRATION_DIR)/libtool.sh", + "IMPORT_INDEX_BUILD_INDEXSTORES": true, "INDEX_DATA_STORE_DIR": "$(INDEX_DATA_STORE_DIR)", "INDEX_FORCE_SCRIPT_EXECUTION": true, "INDEX_IMPORT": "/tmp/index-import", diff --git a/tools/generators/pbxproj_prefix/README.md b/tools/generators/pbxproj_prefix/README.md index 8f037d765..65f1abbfd 100644 --- a/tools/generators/pbxproj_prefix/README.md +++ b/tools/generators/pbxproj_prefix/README.md @@ -212,6 +212,7 @@ Here is an example output: ENABLE_STRICT_OBJC_MSGSEND = YES; ENABLE_USER_SCRIPT_SANDBOXING = NO; GCC_OPTIMIZATION_LEVEL = 0; + IMPORT_INDEX_BUILD_INDEXSTORES = YES; INDEX_DATA_STORE_DIR = "$(INDEX_DATA_STORE_DIR)"; INDEX_IMPORT = "$(BAZEL_OUT)/darwin_arm64-opt-exec-2B5CBBC6/bin/external/_main~non_module_deps~rules_xcodeproj_index_import/index-import"; INDEXING_PROJECT_DIR__ = "$(INDEXING_PROJECT_DIR__NO)"; @@ -274,6 +275,7 @@ Here is an example output: ENABLE_STRICT_OBJC_MSGSEND = YES; ENABLE_USER_SCRIPT_SANDBOXING = NO; GCC_OPTIMIZATION_LEVEL = 0; + IMPORT_INDEX_BUILD_INDEXSTORES = YES; INDEX_DATA_STORE_DIR = "$(INDEX_DATA_STORE_DIR)"; INDEX_IMPORT = "$(BAZEL_OUT)/darwin_arm64-opt-exec-2B5CBBC6/bin/external/_main~non_module_deps~rules_xcodeproj_index_import/index-import"; INDEXING_PROJECT_DIR__ = "$(INDEXING_PROJECT_DIR__NO)"; diff --git a/tools/generators/pbxproj_prefix/src/Generator/Arguments.swift b/tools/generators/pbxproj_prefix/src/Generator/Arguments.swift index 042907725..4dd7238ab 100644 --- a/tools/generators/pbxproj_prefix/src/Generator/Arguments.swift +++ b/tools/generators/pbxproj_prefix/src/Generator/Arguments.swift @@ -47,6 +47,12 @@ Minimum Xcode version that the generated project supports. """) var minimumXcodeVersion: SemanticVersion + @Argument( + help: "Whether to import index build indexstores.", + transform: { $0 == "1" } + ) + var importIndexBuildIndexstores: Bool + @Argument(help: "Name of the default Xcode configuration.") var defaultXcodeConfiguration: String diff --git a/tools/generators/pbxproj_prefix/src/Generator/Environment.swift b/tools/generators/pbxproj_prefix/src/Generator/Environment.swift index a46c7febe..2ba7edd36 100644 --- a/tools/generators/pbxproj_prefix/src/Generator/Environment.swift +++ b/tools/generators/pbxproj_prefix/src/Generator/Environment.swift @@ -31,6 +31,7 @@ extension Generator { let pbxProjectBuildSettings: ( _ config: String, + _ importIndexBuildIndexstores: Bool, _ indexImport: String, _ indexingProjectDir: String, _ projectDir: String, diff --git a/tools/generators/pbxproj_prefix/src/Generator/Generator.swift b/tools/generators/pbxproj_prefix/src/Generator/Generator.swift index fedad31cd..871eb10de 100644 --- a/tools/generators/pbxproj_prefix/src/Generator/Generator.swift +++ b/tools/generators/pbxproj_prefix/src/Generator/Generator.swift @@ -49,6 +49,8 @@ struct Generator { let pbxProjectPrefixPartial = environment.pbxProjectPrefixPartial( /*buildSettings:*/ environment.pbxProjectBuildSettings( /*config:*/ arguments.config, + /*importIndexBuildIndexstores:*/ arguments + .importIndexBuildIndexstores, /*indexImport:*/ arguments.indexImport, /*indexingProjectDir:*/ environment.indexingProjectDir( /*projectDir:*/ projectDir diff --git a/tools/generators/pbxproj_prefix/src/Generator/PBXProjectBuildSettings.swift b/tools/generators/pbxproj_prefix/src/Generator/PBXProjectBuildSettings.swift index 92085604d..9322bf16d 100644 --- a/tools/generators/pbxproj_prefix/src/Generator/PBXProjectBuildSettings.swift +++ b/tools/generators/pbxproj_prefix/src/Generator/PBXProjectBuildSettings.swift @@ -7,6 +7,8 @@ extension Generator { /// /// - Parameters: /// - config: The value to be used for the `BAZEL_CONFIG` build setting. + /// - importIndexBuildIndexstores: Whether to import index build + /// indexstores. /// - indexImport: The Bazel execution root relative path to the /// `index_import` executable. /// - indexingProjectDir: The value returned from @@ -17,6 +19,7 @@ extension Generator { /// - workspace: The absolute path to the Bazel workspace. static func pbxProjectBuildSettings( config: String, + importIndexBuildIndexstores: Bool, indexImport: String, indexingProjectDir: String, projectDir: String, @@ -93,6 +96,10 @@ extension Generator { key: "LIBTOOL", value: #""$(BAZEL_INTEGRATION_DIR)/libtool.sh""# ), + .init( + key: "IMPORT_INDEX_BUILD_INDEXSTORES", + value: importIndexBuildIndexstores ? "YES" : "NO" + ), .init( key: "INDEXING_PROJECT_DIR__", value: #""$(INDEXING_PROJECT_DIR__NO)""# diff --git a/tools/generators/pbxproj_prefix/test/PBXProjectBuildSettingsTests.swift b/tools/generators/pbxproj_prefix/test/PBXProjectBuildSettingsTests.swift index 7acdb610e..7b30ca975 100644 --- a/tools/generators/pbxproj_prefix/test/PBXProjectBuildSettingsTests.swift +++ b/tools/generators/pbxproj_prefix/test/PBXProjectBuildSettingsTests.swift @@ -10,6 +10,7 @@ class PBXProjectBuildSettingsTests: XCTestCase { // Arrange let config = "rxcp_custom_config" + let importIndexBuildIndexstores = false let indexImport = "external/index-import" let indexingProjectDir = "/some/indexing/project dir" let projectDir = "/some/project dir" @@ -45,6 +46,7 @@ class PBXProjectBuildSettingsTests: XCTestCase { ENABLE_STRICT_OBJC_MSGSEND = YES; ENABLE_USER_SCRIPT_SANDBOXING = NO; GCC_OPTIMIZATION_LEVEL = 0; + IMPORT_INDEX_BUILD_INDEXSTORES = NO; INDEXING_PROJECT_DIR__ = "$(INDEXING_PROJECT_DIR__NO)"; INDEXING_PROJECT_DIR__NO = "/some/project dir"; INDEXING_PROJECT_DIR__YES = "/some/indexing/project dir"; @@ -82,6 +84,7 @@ class PBXProjectBuildSettingsTests: XCTestCase { let buildSettings = Generator.pbxProjectBuildSettings( config: config, + importIndexBuildIndexstores: importIndexBuildIndexstores, indexImport: indexImport, indexingProjectDir: indexingProjectDir, projectDir: projectDir, diff --git a/tools/generators/xcschemes/src/Generator/AutogenerationConfigArguments.swift b/tools/generators/xcschemes/src/Generator/AutogenerationConfigArguments.swift new file mode 100644 index 000000000..d6102b0bc --- /dev/null +++ b/tools/generators/xcschemes/src/Generator/AutogenerationConfigArguments.swift @@ -0,0 +1,21 @@ +import Foundation +import ToolCommon + +struct AutogenerationConfigArguments { + let schemeNameExcludePatterns: [String] + + static func parse( + from url: URL + ) async throws -> Self { + var rawArgs = ArraySlice(try await url.allLines.collect()) + + let schemeNameExcludePatterns = try rawArgs.consumeArgs( + "scheme-name-exclude-patterns", + in: url + ) + + return AutogenerationConfigArguments( + schemeNameExcludePatterns: schemeNameExcludePatterns + ) + } +} diff --git a/tools/generators/xcschemes/src/Generator/Generator.swift b/tools/generators/xcschemes/src/Generator/Generator.swift index 5428f4b54..ea19b3d96 100644 --- a/tools/generators/xcschemes/src/Generator/Generator.swift +++ b/tools/generators/xcschemes/src/Generator/Generator.swift @@ -1,4 +1,5 @@ import PBXProj +import ToolCommon import XCScheme /// A type that generates and writes to disk `.xcscheme` files for a project. @@ -54,7 +55,31 @@ struct Generator { targetsByKey: targetsByKey ) - let schemeInfos = customSchemeInfos + automaticSchemeInfos + let autogenerationConfigArguments = try await AutogenerationConfigArguments.parse( + from: arguments.autogenerationConfigFile + ) + + let filteredAutomaticSchemeInfos = try automaticSchemeInfos.filter { scheme in + // Apply scheme auto-generation exclude patterns + for pattern in autogenerationConfigArguments.schemeNameExcludePatterns { + do { + let regex = try Regex(pattern) + let matches = scheme.name.matches(of: regex) + + if matches.count > 0 { + return false + } + } catch { + throw UsageError(message: """ +Failed to skip scheme auto-generation using pattern \"\(pattern)\" with error: \(error.localizedDescription) +""") + } + } + + return true + } + + let schemeInfos = customSchemeInfos + filteredAutomaticSchemeInfos let writeSchemesTask = Task { try await environment.writeSchemes( diff --git a/tools/generators/xcschemes/src/Generator/GeneratorArguments.swift b/tools/generators/xcschemes/src/Generator/GeneratorArguments.swift index 4b74f70fd..53fcedb49 100644 --- a/tools/generators/xcschemes/src/Generator/GeneratorArguments.swift +++ b/tools/generators/xcschemes/src/Generator/GeneratorArguments.swift @@ -34,6 +34,12 @@ schemes are provided. ) var autogenerationMode: AutogenerationMode + @Argument( + help: "Path to a file containing `AutogenerationConfigArguments` inputs.", + transform: { URL(fileURLWithPath: $0, isDirectory: false) } + ) + var autogenerationConfigFile: URL + @Argument(help: "Name of the default Xcode configuration.") var defaultXcodeConfiguration: String diff --git a/tools/import_indexstores/ImportIndexstores.swift b/tools/import_indexstores/ImportIndexstores.swift index 3e0e74923..845081ec2 100644 --- a/tools/import_indexstores/ImportIndexstores.swift +++ b/tools/import_indexstores/ImportIndexstores.swift @@ -127,7 +127,7 @@ Intermediates\.noindex/Previews/[^/]*/Intermediates\.noindex } let xcodeOutputBase = xcodeExecutionRoot - .split(separator: "/") + .split(separator: "/", omittingEmptySubsequences: false) .dropLast(2) .joined(separator: "/") diff --git a/xcodeproj/internal/automatic_target_info.bzl b/xcodeproj/internal/automatic_target_info.bzl index 9c4c51571..80e7fcab1 100644 --- a/xcodeproj/internal/automatic_target_info.bzl +++ b/xcodeproj/internal/automatic_target_info.bzl @@ -277,7 +277,7 @@ _TEST_EXTRA_FILES_ATTRS = [ _LINK_MNEMONICS = ["ObjcLink", "CppLink"] -_SWIFT_BINARY_RULES = { +_SWIFT_BINARY_OR_TEST_RULES = { "swift_binary": None, "swift_test": None, } @@ -321,7 +321,7 @@ _OBJC_LIBRARY_XCODE_TARGETS = { "implementation_deps": _XCODE_TARGET_TYPES_COMPILE, "runtime_deps": _XCODE_TARGET_TYPES_COMPILE, } -_PLUGINS_XCODE_TARGETS = { +_SWIFT_BINARY_OR_TEST_XCODE_TARGETS = { "deps": _XCODE_TARGET_TYPES_COMPILE_AND_NONE, "plugins": _XCODE_TARGET_TYPES_COMPILE_AND_NONE, } @@ -499,11 +499,11 @@ def calculate_automatic_target_info( is_top_level = True launchdplists = _LAUNCHDPLISTS_ATTRS xcode_targets = _DEPS_XCODE_TARGETS - elif rule_kind in _SWIFT_BINARY_RULES: + elif rule_kind in _SWIFT_BINARY_OR_TEST_RULES: extra_files = _SWIFT_COMPILATION_EXTRA_FILES_ATTRS srcs = _SRCS_ATTRS is_top_level = True - xcode_targets = _PLUGINS_XCODE_TARGETS + xcode_targets = _SWIFT_BINARY_OR_TEST_XCODE_TARGETS elif rule_kind == "apple_universal_binary": deps = _BINARY_DEPS_ATTRS is_supported = False diff --git a/xcodeproj/internal/bazel_integration_files/generate_bazel_dependencies.sh b/xcodeproj/internal/bazel_integration_files/generate_bazel_dependencies.sh index 157c985b3..12aa5ceed 100755 --- a/xcodeproj/internal/bazel_integration_files/generate_bazel_dependencies.sh +++ b/xcodeproj/internal/bazel_integration_files/generate_bazel_dependencies.sh @@ -136,6 +136,14 @@ else readonly config="_${BAZEL_CONFIG}_build" fi +# Respect the "Continue building after errors" setting +continue_building_value="$(defaults read com.apple.dt.Xcode IDEBuildingContinueBuildingAfterErrors 2>/dev/null || echo 0)" +if [ "$continue_building_value" == "1" ]; then + build_pre_config_flags+=("--keep_going") +else + build_pre_config_flags+=("--nokeep_going") +fi + # Runtime Sanitizers if [[ $apply_sanitizers -eq 1 ]]; then if [ "${ENABLE_ADDRESS_SANITIZER:-}" == "YES" ]; then diff --git a/xcodeproj/internal/bazel_integration_files/generate_index_build_bazel_dependencies.sh b/xcodeproj/internal/bazel_integration_files/generate_index_build_bazel_dependencies.sh index 2d09e4ae4..1b8b347c5 100755 --- a/xcodeproj/internal/bazel_integration_files/generate_index_build_bazel_dependencies.sh +++ b/xcodeproj/internal/bazel_integration_files/generate_index_build_bazel_dependencies.sh @@ -35,7 +35,10 @@ readonly output_groups=( ) readonly targetid_regex='@{0,2}(.*)//(.*):(.*) ([^\ ]+)$' -if [[ "$BAZEL_TARGET_ID" =~ $targetid_regex ]]; then + +indexstores_filelists=() +if [[ "$IMPORT_INDEX_BUILD_INDEXSTORES" == "YES" && \ + "$BAZEL_TARGET_ID" =~ $targetid_regex ]]; then repo="${BASH_REMATCH[1]}" if [[ "$repo" == "@" ]]; then repo="" diff --git a/xcodeproj/internal/docs/bazel.header.md b/xcodeproj/internal/docs/bazel.header.md index ba53e3c47..ff4a63ccd 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/pbxproj_partials.bzl b/xcodeproj/internal/pbxproj_partials.bzl index 8479223e4..56516574b 100644 --- a/xcodeproj/internal/pbxproj_partials.bzl +++ b/xcodeproj/internal/pbxproj_partials.bzl @@ -608,6 +608,7 @@ def _write_pbxproj_prefix( default_xcode_configuration, execution_root_file, generator_name, + import_index_build_indexstores, index_import, install_path, minimum_xcode_version, @@ -632,6 +633,8 @@ def _write_pbxproj_prefix( execution_root_file: A `File` containing the absolute path to the Bazel execution root. generator_name: The name of the `xcodeproj` generator target. + import_index_build_indexstores: Whether to import index build + indexstores. index_import: The executable `File` for the `index_import` tool. install_path: The workspace relative path to where the final `.xcodeproj` will be written. @@ -687,6 +690,9 @@ def _write_pbxproj_prefix( # minimumXcodeVersion args.add(minimum_xcode_version) + # importIndexBuildIndexstores + args.add("1" if import_index_build_indexstores else "0") + # defaultXcodeConfiguration args.add(default_xcode_configuration) diff --git a/xcodeproj/internal/templates/generator.incremental.BUILD.bazel b/xcodeproj/internal/templates/generator.incremental.BUILD.bazel index f95391784..36a29e843 100644 --- a/xcodeproj/internal/templates/generator.incremental.BUILD.bazel +++ b/xcodeproj/internal/templates/generator.incremental.BUILD.bazel @@ -18,6 +18,7 @@ xcodeproj( config = "%config%", default_xcode_configuration = %default_xcode_configuration%, generation_shard_count = %generation_shard_count%, + import_index_build_indexstores = %import_index_build_indexstores%, install_path = "%install_path%", ios_device_cpus = "%ios_device_cpus%", ios_simulator_cpus = "%ios_simulator_cpus%", @@ -29,6 +30,7 @@ xcodeproj( runner_build_file = "%runner_build_file%", runner_label = "%runner_label%", scheme_autogeneration_mode = "%scheme_autogeneration_mode%", + scheme_autogeneration_config = %scheme_autogeneration_config%, tags = %tags%, target_name_mode = "%target_name_mode%", top_level_device_targets = %top_level_device_targets%, diff --git a/xcodeproj/internal/xcodeproj_incremental_rule.bzl b/xcodeproj/internal/xcodeproj_incremental_rule.bzl index dd84eebad..12e1bc2f5 100644 --- a/xcodeproj/internal/xcodeproj_incremental_rule.bzl +++ b/xcodeproj/internal/xcodeproj_incremental_rule.bzl @@ -122,10 +122,11 @@ def _collect_files( unsupported_extra_files, xcode_targets): target_extra_files = {} - for files_target, target_label_str in owned_extra_files.items(): - target_extra_files.setdefault(target_label_str, []).append( - files_target.files, - ) + for files_target, target_label_strs_json in owned_extra_files.items(): + for target_label_str in json.decode(target_label_strs_json): + target_extra_files.setdefault(target_label_str, []).append( + files_target.files, + ) all_targets = xcode_targets.values() + resource_bundle_xcode_targets @@ -205,6 +206,26 @@ https://github.com/MobileNativeFoundation/rules_xcodeproj/issues/new?template=bu # Actions +def _write_autogeneration_config_file( + actions, + config, + name): + autogeneration_config_file = actions.declare_file( + "{}-autogeneration-config-file".format(name), + ) + + args = actions.args() + args.set_param_file_format("multiline") + + args.add_all( + config.get("scheme_name_exclude_patterns", []), + omit_if_empty = False, + terminate_with = "", + ) + actions.write(autogeneration_config_file, args) + + return autogeneration_config_file + def _write_bazel_integration_files( *, actions, @@ -300,6 +321,7 @@ def _write_project_contents( default_xcode_configuration, files_and_groups_generator, generation_shard_count, + import_index_build_indexstores, index_import, install_path, minimum_xcode_version, @@ -422,6 +444,7 @@ def _write_project_contents( default_xcode_configuration = default_xcode_configuration, execution_root_file = execution_root_file, generator_name = name, + import_index_build_indexstores = import_index_build_indexstores, index_import = index_import, install_path = install_path, minimum_xcode_version = minimum_xcode_version, @@ -481,6 +504,7 @@ def _write_schemes( *, actions, autogeneration_mode, + autogeneration_config, colorize, consolidation_maps, default_xcode_configuration, @@ -510,9 +534,16 @@ def _write_schemes( top_level_deps = top_level_deps, ) + autogeneration_config_file = _write_autogeneration_config_file( + actions = actions, + config = autogeneration_config, + name = name, + ) + return xcschemes_execution.write_schemes( actions = actions, autogeneration_mode = autogeneration_mode, + autogeneration_config_file = autogeneration_config_file, default_xcode_configuration = default_xcode_configuration, colorize = colorize, consolidation_maps = consolidation_maps, @@ -617,6 +648,9 @@ Are you using an `alias`? `xcodeproj.focused_targets` and \ default_xcode_configuration = default_xcode_configuration, files_and_groups_generator = ctx.executable._files_and_groups_generator, generation_shard_count = ctx.attr.generation_shard_count, + import_index_build_indexstores = ( + ctx.attr.import_index_build_indexstores + ), index_import = index_import, install_path = install_path, minimum_xcode_version = ( @@ -671,6 +705,7 @@ Are you using an `alias`? `xcodeproj.focused_targets` and \ (xcschemes, xcschememanagement) = _write_schemes( actions = actions, autogeneration_mode = ctx.attr.scheme_autogeneration_mode, + autogeneration_config = ctx.attr.scheme_autogeneration_config, default_xcode_configuration = default_xcode_configuration, colorize = colorize, consolidation_maps = consolidation_maps, @@ -760,6 +795,7 @@ def _xcodeproj_incremental_attrs( "config": attr.string(mandatory = True), "default_xcode_configuration": attr.string(), "generation_shard_count": attr.int(mandatory = True), + "import_index_build_indexstores": attr.bool(mandatory = True), "install_path": attr.string(mandatory = True), "minimum_xcode_version": attr.string(mandatory = True), "owned_extra_files": attr.label_keyed_string_dict(allow_files = True), @@ -768,6 +804,7 @@ def _xcodeproj_incremental_attrs( "project_options": attr.string_dict(mandatory = True), "runner_build_file": attr.string(mandatory = True), "runner_label": attr.string(mandatory = True), + "scheme_autogeneration_config": attr.string_list_dict(mandatory = True), "scheme_autogeneration_mode": attr.string(mandatory = True), "target_name_mode": attr.string(mandatory = True), "top_level_device_targets": attr.label_list( diff --git a/xcodeproj/internal/xcodeproj_legacy_rule.bzl b/xcodeproj/internal/xcodeproj_legacy_rule.bzl index ca776d4c9..e51acf0a5 100644 --- a/xcodeproj/internal/xcodeproj_legacy_rule.bzl +++ b/xcodeproj/internal/xcodeproj_legacy_rule.bzl @@ -397,8 +397,11 @@ def _process_targets( } owned_extra_files = { - key: bazel_labels.normalize_label(Label(label_str)) - for key, label_str in owned_extra_files.items() + key: [ + bazel_labels.normalize_label(Label(label_str)) + for label_str in json.decode(label_strs_json) + ] + for key, label_strs_json in owned_extra_files.items() } if focused_labels or owned_extra_files: @@ -429,7 +432,8 @@ targets. invalid_extra_files_targets = [ label - for label in owned_extra_files.values() + for labels in owned_extra_files.values() + for label in labels if label not in label_strs ] if invalid_extra_files_targets: @@ -604,14 +608,17 @@ targets. label = xcode_target_labels[xcode_target.id] label_str = xcode_target_label_strs[xcode_target.id] - for file, owner_label in owned_extra_files.items(): - if label_str == owner_label: - focused_targets_extra_files.append( - ( - label, - depset([file.path for file in file.files.to_list()]), - ), - ) + for file, owner_labels in owned_extra_files.items(): + for owner_label in owner_labels: + if label_str == owner_label: + focused_targets_extra_files.append( + ( + label, + depset( + [file.path for file in file.files.to_list()], + ), + ), + ) # Filter `target_merge_dests` after processing focused targets for dest, srcs in target_merge_dests.items(): diff --git a/xcodeproj/internal/xcodeproj_macro.bzl b/xcodeproj/internal/xcodeproj_macro.bzl index 3b478c9ee..0a4b16038 100644 --- a/xcodeproj/internal/xcodeproj_macro.bzl +++ b/xcodeproj/internal/xcodeproj_macro.bzl @@ -30,6 +30,7 @@ def xcodeproj( fail_for_invalid_extra_files_targets = True, focused_targets = [], generation_mode = "incremental", + import_index_build_indexstores = True, install_directory = None, ios_device_cpus = "arm64", ios_simulator_cpus = None, @@ -39,6 +40,7 @@ def xcodeproj( project_name = None, project_options = None, scheme_autogeneration_mode = "auto", + scheme_autogeneration_config = {}, schemes = [], target_name_mode = "auto", top_level_targets, @@ -205,6 +207,15 @@ def xcodeproj( **rules_xcodeproj**. + import_index_build_indexstores: Optional. Whether to import the index + stores generated by Index Build. + + This is useful if you want to use the index stores generated by + Index Build to speed up Xcode's indexing process. You may not want + this enabled if the additional work (mainly disk IO) of importing + the index stores is not worth it for your project. + + This only applies when using `generation_mode = "incremental"`. install_directory: Optional. The directory where the generated project will be written to. @@ -287,6 +298,10 @@ def xcodeproj( custom schemes are provided. + scheme_autogeneration_config: Optional. A value returned by + [`xcschemes.autogeneration_config`](#xcschemes.autogeneration_config). + + Allows further configuration of `scheme_autogeneration_mode`. schemes: Optional. A `list` of values returned by `xcode_schemes.scheme`. @@ -498,9 +513,14 @@ configuration alphabetically ("{default}"). owned_extra_files = {} for label, files in associated_extra_files.items(): for f in files: - owned_extra_files[bazel_labels.normalize_string(f)] = ( - bazel_labels.normalize_string(label) - ) + owned_extra_files.setdefault( + bazel_labels.normalize_string(f), + [], + ).append(bazel_labels.normalize_string(label)) + owned_extra_files = { + f: json.encode(labels) + for f, labels in owned_extra_files.items() + } unowned_extra_files = [ bazel_labels.normalize_string(f) @@ -617,6 +637,7 @@ for {configuration} ({new_keys}) do not match keys of other configurations \ focused_labels = focused_labels, generation_mode = generation_mode, generation_shard_count = generation_shard_count, + import_index_build_indexstores = import_index_build_indexstores, install_directory = install_directory, ios_device_cpus = ios_device_cpus, ios_simulator_cpus = ios_simulator_cpus, @@ -628,6 +649,7 @@ for {configuration} ({new_keys}) do not match keys of other configurations \ project_name = project_name, project_options = project_options, scheme_autogeneration_mode = scheme_autogeneration_mode, + scheme_autogeneration_config = scheme_autogeneration_config, schemes_json = schemes_json, target_name_mode = target_name_mode, testonly = testonly, diff --git a/xcodeproj/internal/xcodeproj_runner.bzl b/xcodeproj/internal/xcodeproj_runner.bzl index d1a2d0c12..e1169cc9e 100644 --- a/xcodeproj/internal/xcodeproj_runner.bzl +++ b/xcodeproj/internal/xcodeproj_runner.bzl @@ -254,6 +254,9 @@ def _write_generator_build_file( str(attr.fail_for_invalid_extra_files_targets) ), "%generation_shard_count%": str(attr.generation_shard_count), + "%import_index_build_indexstores%": str( + attr.import_index_build_indexstores, + ), "%install_directory%": attr.install_directory, "%install_path%": install_path, "%ios_device_cpus%": attr.ios_device_cpus, @@ -268,6 +271,7 @@ def _write_generator_build_file( "%project_options%": str(attr.project_options), "%runner_build_file%": build_file_path, "%runner_label%": runner_label, + "%scheme_autogeneration_config%": str(attr.scheme_autogeneration_config), "%scheme_autogeneration_mode%": attr.scheme_autogeneration_mode, "%tags%": tags, "%target_name_mode%": attr.target_name_mode, @@ -547,6 +551,7 @@ xcodeproj_runner = rule( mandatory = True, ), "generation_shard_count": attr.int(mandatory = True), + "import_index_build_indexstores": attr.bool(mandatory = True), "install_directory": attr.string(mandatory = True), "ios_device_cpus": attr.string(mandatory = True), "ios_simulator_cpus": attr.string(), @@ -557,6 +562,7 @@ xcodeproj_runner = rule( "pre_build": attr.string(), "project_name": attr.string(mandatory = True), "project_options": attr.string_dict(mandatory = True), + "scheme_autogeneration_config": attr.string_list_dict(mandatory = True), "scheme_autogeneration_mode": attr.string( default = "auto", values = ["auto", "none", "all"], diff --git a/xcodeproj/internal/xcschemes/xcschemes.bzl b/xcodeproj/internal/xcschemes/xcschemes.bzl index 4a9f919e6..5385ca126 100644 --- a/xcodeproj/internal/xcschemes/xcschemes.bzl +++ b/xcodeproj/internal/xcschemes/xcschemes.bzl @@ -1179,10 +1179,41 @@ Address Sanitizer cannot be used together with Thread Sanitizer. ), ) +def _autogeneration_config(scheme_name_exclude_patterns = None): + """Creates a value for the [`scheme_autogeneration_config`](xcodeproj-scheme_autogeneration_config) attribute of `xcodeproj`. + + Args: + scheme_name_exclude_patterns: A `list` of regex patterns used to skip + creating matching autogenerated schemes. + + Example: + + ```starlark + xcodeproj( + ... + scheme_name_exclude_patterns = xcschemes.autogeneration_config( + scheme_name_exclude_patterns = [ + ".*somePattern.*", + "^AnotherPattern.*", + ], + ) + ) + ``` + + Returns: + An opaque value for the [`scheme_autogeneration_config`](xcodeproj-scheme_autogeneration_config) attribute of `xcodeproj`. + """ + d = {} + if scheme_name_exclude_patterns: + d["scheme_name_exclude_patterns"] = scheme_name_exclude_patterns + + return d + # API xcschemes = struct( arg = _arg, + autogeneration_config = _autogeneration_config, diagnostics = _diagnostics, env_value = _env_value, launch_path = _launch_path, diff --git a/xcodeproj/internal/xcschemes/xcschemes_execution.bzl b/xcodeproj/internal/xcschemes/xcschemes_execution.bzl index 7340cab83..00857839f 100644 --- a/xcodeproj/internal/xcschemes/xcschemes_execution.bzl +++ b/xcodeproj/internal/xcschemes/xcschemes_execution.bzl @@ -1,6 +1,10 @@ """Module for defining custom Xcode schemes (`.xcscheme`s).""" -load("//xcodeproj/internal:memory_efficiency.bzl", "FALSE_ARG", "TRUE_ARG") +load( + "//xcodeproj/internal:memory_efficiency.bzl", + "FALSE_ARG", + "TRUE_ARG", +) _EXECUTION_ACTION_NAME = struct( build = "build", @@ -28,6 +32,7 @@ def _write_schemes( *, actions, autogeneration_mode, + autogeneration_config_file, colorize, consolidation_maps, default_xcode_configuration, @@ -46,6 +51,7 @@ def _write_schemes( actions: `ctx.actions`. autogeneration_mode: Specifies how Xcode schemes are automatically generated. + autogeneration_config_file: A `File` containing `AutogenerationConfigArguments` inputs. colorize: A `bool` indicating whether to colorize the output. consolidation_maps: A `list` of `File`s containing target consolidation maps. @@ -94,6 +100,7 @@ def _write_schemes( ) inputs = consolidation_maps + [ + autogeneration_config_file, custom_schemes_file, execution_actions_file, extension_point_identifiers_file, @@ -122,6 +129,9 @@ def _write_schemes( # autogenerationMode args.add(autogeneration_mode) + # autogenerationConfigFile + args.add(autogeneration_config_file) + # defaultXcodeConfiguration args.add(default_xcode_configuration)