├── .bazelci ├── presubmit.yml └── update_workspace_to_deps_heads.sh ├── .bazelrc ├── .bcr ├── config.yml ├── metadata.template.json ├── presubmit.yml └── source.template.json ├── .clang-format ├── .gitattributes ├── .github ├── generate-notes.sh └── workflows │ └── create-release.yml ├── .gitignore ├── .pre-commit-config.yaml ├── AUTHORS ├── BUILD ├── CODEOWNERS ├── CONTRIBUTING.md ├── LICENSE ├── MODULE.bazel ├── README.md ├── WORKSPACE ├── WORKSPACE.bzlmod ├── doc ├── BUILD ├── README.md ├── api.md ├── aspects.md ├── debuggable_remote_swift.md ├── doc.bzl ├── faq.md ├── proto_migration.md ├── providers.md ├── rules.md └── setup.md ├── examples ├── apple │ ├── mixed_language │ │ ├── BUILD │ │ ├── MixedAnswer.h │ │ ├── MixedAnswer.m │ │ ├── MixedAnswer.swift │ │ ├── MixedAnswerPrivate.h │ │ ├── MixedAnswerPrivate.m │ │ ├── MixedTests.m │ │ ├── MixedTests.swift │ │ └── SwiftLibDependingOnMixedLib.swift │ ├── objc_interop │ │ ├── BUILD │ │ ├── OIPrintStream.h │ │ ├── OIPrintStream.m │ │ ├── Printer.swift │ │ └── main.m │ └── objc_interop_modulemap │ │ ├── BUILD │ │ ├── OIPrintStream.h │ │ ├── OIPrintStream.m │ │ ├── Printer.swift │ │ └── main.m ├── runfiles │ ├── BUILD │ ├── data │ │ └── sample.txt │ └── main.swift └── xplatform │ ├── c_from_swift │ ├── BUILD │ ├── Counter.swift │ ├── c_counter.cc │ ├── c_counter.h │ ├── counter.cc │ ├── counter.h │ └── main.swift │ ├── custom_swift_proto_compiler │ ├── BUILD │ ├── compiler │ │ └── BUILD │ ├── protos │ │ ├── BUILD │ │ └── example.proto │ ├── rules │ │ ├── BUILD │ │ ├── custom_proto_compiler.sh │ │ ├── custom_proto_compiler_plugin.sh │ │ └── custom_swift_proto_compiler.bzl │ └── swift │ │ └── BUILD │ ├── cxx_from_swift │ ├── BUILD │ ├── Counter.swift │ ├── counter.cc │ ├── counter.h │ └── main.swift │ ├── dispatch │ ├── BUILD │ └── main.swift │ ├── grpc │ ├── BUILD │ ├── client_main.swift │ ├── client_unit_test.swift │ ├── server_main.swift │ ├── service │ │ ├── BUILD │ │ ├── service.proto │ │ └── service_messages.proto │ └── test_client_unit_test.swift │ ├── hello_world │ ├── BUILD │ └── main.swift │ ├── include_dev_srch_paths │ ├── BUILD │ ├── DemoTestHelperTest.swift │ ├── README.md │ ├── String+RandomExtensions.swift │ ├── String+RandomExtensionsTests.swift │ └── TestHelper.swift │ ├── macros │ ├── BUILD │ ├── Stringify.swift │ ├── StringifyClient.swift │ ├── StringifyMacro.swift │ ├── StringifyMacroPlugin.swift │ ├── StringifyMacroTests.swift │ └── StringifyUniversalClient.swift │ ├── overlay │ ├── BUILD │ ├── Orientation.swift │ ├── RetroLibraryOverlay.swift │ ├── RetroTest.swift │ ├── retro_library.c │ └── retro_library.h │ ├── proto │ ├── BUILD │ ├── PathToUnderscores │ │ ├── message_1 │ │ │ └── message.proto │ │ └── message_2 │ │ │ └── message.proto │ ├── example.proto │ └── main.swift │ ├── proto_files │ ├── BUILD │ ├── main.swift │ ├── message_1.proto │ ├── message_2.proto │ └── message_3.proto │ ├── proto_glob │ ├── BUILD │ ├── main.swift │ ├── package_1 │ │ └── example.proto │ └── package_2 │ │ └── example.proto │ ├── proto_library_group │ ├── BUILD │ ├── client_main.swift │ ├── client_unit_test.swift │ ├── request │ │ ├── BUILD │ │ └── request.proto │ ├── response │ │ ├── BUILD │ │ └── response.proto │ ├── server_main.swift │ └── service │ │ ├── BUILD │ │ └── service.proto │ ├── proto_path │ ├── BUILD │ ├── main.swift │ └── protos │ │ ├── BUILD │ │ ├── package_1 │ │ ├── BUILD │ │ └── message_1.proto │ │ └── package_2 │ │ ├── BUILD │ │ └── message_2.proto │ ├── swift_import │ ├── BUILD │ ├── dep.swift │ └── main.swift │ ├── test_filter │ ├── BUILD │ ├── FailTests.swift │ ├── PassFailTests.swift │ ├── PassTests.swift │ └── TestHelper.swift │ └── xctest │ ├── BUILD │ └── SimpleTests.swift ├── mixed_language ├── BUILD ├── internal │ ├── BUILD │ ├── library.bzl │ ├── module_map.bzl │ └── umbrella_header.bzl └── mixed_language_library.bzl ├── proto ├── BUILD ├── compilers │ ├── BUILD │ └── swift_proto_compiler_macros.bzl ├── copy_swift_sources.sh.tpl ├── proto.bzl ├── swift_proto_common.bzl ├── swift_proto_compiler.bzl ├── swift_proto_library.bzl ├── swift_proto_library_group.bzl └── swift_proto_utils.bzl ├── swift ├── BUILD ├── extensions.bzl ├── extras.bzl ├── internal │ ├── BUILD │ ├── action_names.bzl │ ├── actions.bzl │ ├── attrs.bzl │ ├── autolinking.bzl │ ├── binary_attrs.bzl │ ├── build_settings.bzl │ ├── compiling.bzl │ ├── debugging.bzl │ ├── developer_dirs.bzl │ ├── env_expansion.bzl │ ├── explicit_module_map_file.bzl │ ├── feature_names.bzl │ ├── features.bzl │ ├── interface_synthesizing.bzl │ ├── linking.bzl │ ├── module_maps.bzl │ ├── output_groups.bzl │ ├── package_specs.bzl │ ├── providers.bzl │ ├── swift_autoconfiguration.bzl │ ├── swift_interop_info.bzl │ ├── swift_symbol_graph_aspect.bzl │ ├── symbol_graph_extracting.bzl │ ├── target_triples.bzl │ ├── toolchain_utils.bzl │ ├── utils.bzl │ ├── vfsoverlay.bzl │ └── wmo.bzl ├── module_name.bzl ├── providers.bzl ├── repositories.bzl ├── runfiles │ ├── BUILD │ ├── README.md │ └── Runfiles.swift ├── swift.bzl ├── swift_binary.bzl ├── swift_clang_module_aspect.bzl ├── swift_common.bzl ├── swift_compiler_plugin.bzl ├── swift_compiler_plugin_import.bzl ├── swift_cross_import_overlay.bzl ├── swift_extract_symbol_graph.bzl ├── swift_feature_allowlist.bzl ├── swift_import.bzl ├── swift_interop_hint.bzl ├── swift_interop_info.bzl ├── swift_library.bzl ├── swift_library_group.bzl ├── swift_module_mapping.bzl ├── swift_module_mapping_test.bzl ├── swift_overlay.bzl ├── swift_overlay_helpers.bzl ├── swift_package_configuration.bzl ├── swift_symbol_graph_aspect.bzl ├── swift_synthesize_interface_aspect.bzl ├── swift_test.bzl └── toolchains │ ├── BUILD │ ├── config │ ├── BUILD │ ├── action_config.bzl │ ├── all_actions_config.bzl │ ├── compile_config.bzl │ ├── compile_module_interface_config.bzl │ ├── const_protocols_to_gather.json │ ├── modulewrap_config.bzl │ ├── symbol_graph_config.bzl │ ├── synthesize_interface_config.bzl │ └── tool_config.bzl │ ├── swift_toolchain.bzl │ └── xcode_swift_toolchain.bzl ├── test ├── BUILD ├── additional_linker_inputs_tests.bzl ├── ast_file_tests.bzl ├── bzl_test.bzl ├── cc_library_tests.bzl ├── compiler_arguments_tests.bzl ├── const_values_tests.bzl ├── coverage_settings_tests.bzl ├── debug_settings_tests.bzl ├── environment_tests.bzl ├── features_tests.bzl ├── fixtures │ ├── BUILD │ ├── basic │ │ ├── BUILD │ │ ├── first.swift │ │ └── second.swift │ ├── cc_library │ │ ├── BUILD │ │ ├── ImportPrefixAndStripPrefix.swift │ │ ├── ImportPrefixAndStripPrefixWithExclusion.swift │ │ ├── ImportPrefixOnly.swift │ │ ├── ImportStripPrefixOnly.swift │ │ ├── header.h │ │ ├── header_prefix_and_strip_prefix.h │ │ ├── header_prefix_only.h │ │ ├── header_strip_prefix_only.h │ │ └── header_with_error.h │ ├── common.bzl │ ├── compiler_arguments │ │ ├── BUILD │ │ └── empty.swift │ ├── debug_settings │ │ ├── BUILD │ │ └── Empty.swift │ ├── environment │ │ └── BUILD │ ├── generated_header │ │ ├── BUILD │ │ └── Empty.swift │ ├── global_index_store │ │ ├── BUILD │ │ ├── first.swift │ │ └── second.swift │ ├── interop_hints │ │ ├── BUILD │ │ ├── Empty.swift │ │ ├── ImportModuleName.swift │ │ ├── ImportSubmodule.swift │ │ ├── header1.h │ │ ├── header2.h │ │ └── module.modulemap │ ├── linking │ │ ├── BUILD │ │ ├── fake_framework.bzl │ │ ├── lib.swift │ │ ├── main.cc │ │ ├── main.swift │ │ └── test_data.bin │ ├── mainattr │ │ ├── BUILD │ │ ├── custommain.swift │ │ ├── file1.swift │ │ ├── file2.swift │ │ └── main.swift │ ├── module_interface │ │ ├── BUILD │ │ ├── Client.swift │ │ └── library │ │ │ ├── BUILD │ │ │ └── ToyModule.swift │ ├── module_mapping │ │ ├── BUILD │ │ ├── Common.swift │ │ ├── Empty.swift │ │ ├── MySDK.swift │ │ └── apply_mapping.bzl │ ├── multiple_files │ │ ├── BUILD │ │ ├── Empty.swift │ │ └── Empty2.swift │ ├── private_deps │ │ ├── BUILD │ │ ├── Empty.swift │ │ ├── private.c │ │ ├── private.h │ │ ├── public.c │ │ └── public.h │ ├── private_swiftinterface │ │ ├── BUILD │ │ ├── library │ │ │ ├── BUILD │ │ │ └── Lib.swift │ │ └── main.swift │ ├── runtime_deps │ │ ├── BUILD │ │ ├── direct_library.swift │ │ ├── main.swift │ │ ├── transitive_data.txt │ │ └── transitive_library.swift │ ├── swift_through_non_swift │ │ ├── BUILD │ │ ├── Empty.h │ │ └── Empty.swift │ ├── symbol_graphs │ │ ├── BUILD │ │ ├── ImportingModule.swift │ │ ├── SomeModule.swift │ │ └── SomeModuleWithExtension.swift │ ├── synthesize_interface │ │ ├── BUILD │ │ └── header.h │ └── xctest_runner │ │ ├── BUILD │ │ ├── FailingUnitTests.swift │ │ └── PassingUnitTests.swift ├── generated_header_tests.bzl ├── imported_framework_tests.bzl ├── interop_hints_tests.bzl ├── mainattr_tests.bzl ├── module_cache_settings_tests.bzl ├── module_interface_tests.bzl ├── module_mapping_tests.bzl ├── output_file_map_tests.bzl ├── pch_output_dir_tests.bzl ├── private_deps_tests.bzl ├── private_swiftinterface_tests.bzl ├── rules │ ├── BUILD │ ├── action_command_line_test.bzl │ ├── analysis_failure_test.bzl │ ├── directory_test.bzl │ ├── expected_files.bzl │ ├── output_file_map_test.bzl │ ├── provider_test.bzl │ ├── swift_binary_linking_test.bzl │ ├── swift_library_artifact_collector.bzl │ ├── swift_shell_runner.sh.template │ ├── swift_shell_test.bzl │ └── synthesize_interface_applier.bzl ├── runfiles │ ├── BUILD │ └── RunfilesTests.swift ├── runtime_deps_tests.bzl ├── split_derived_files_tests.bzl ├── swift_binary_linking_tests.bzl ├── swift_bzl_macro.bzl ├── swift_through_non_swift_tests.bzl ├── symbol_graphs_tests.bzl ├── synthesize_interface_tests.bzl ├── utils_tests.bzl └── xctest_runner_tests.bzl ├── third_party ├── BUILD ├── bazel_protos │ ├── BUILD │ ├── README.md │ └── worker_protocol.proto ├── build_bazel_rules_swift_index_import │ └── BUILD.overlay ├── com_github_apple_swift_argument_parser │ └── BUILD.overlay ├── com_github_apple_swift_atomics │ └── BUILD.overlay ├── com_github_apple_swift_collections │ └── BUILD.overlay ├── com_github_apple_swift_docc_symbolkit │ └── BUILD.overlay ├── com_github_apple_swift_log │ └── BUILD.overlay ├── com_github_apple_swift_nio │ └── BUILD.overlay ├── com_github_apple_swift_nio_extras │ └── BUILD.overlay ├── com_github_apple_swift_nio_http2 │ └── BUILD.overlay ├── com_github_apple_swift_nio_ssl │ └── BUILD.overlay ├── com_github_apple_swift_nio_transport_services │ └── BUILD.overlay ├── com_github_apple_swift_protobuf │ └── BUILD.overlay ├── com_github_grpc_grpc_swift │ └── BUILD.overlay ├── com_github_nlohmann_json │ └── BUILD.overlay └── patches │ ├── BUILD.bazel │ └── stardoc-revert-load-statements-in-docs.patch ├── toolchains └── BUILD └── tools ├── BUILD ├── common ├── BUILD ├── bazel_substitutions.cc ├── bazel_substitutions.h ├── process.cc ├── process.h └── temp_file.h ├── dump_toolchains ├── BUILD └── dump_toolchains.sh ├── mixed_language_module_map_extender ├── BUILD └── mixed_language_module_map_extender.sh ├── mkdir_and_run ├── BUILD ├── mkdir_and_run.cmd └── mkdir_and_run.sh ├── protoc_wrapper └── BUILD ├── test_discoverer ├── BUILD ├── DiscoveredTests.swift ├── SymbolCollector.swift ├── SymbolGraphTestPrinter.swift ├── SymbolKitExtensions.swift ├── TestDiscoverer.swift └── TestPrinterCommon.swift ├── test_observer ├── BUILD ├── BazelXMLTestObserver.swift ├── JSON.swift ├── LinuxXCTestRunner.swift ├── Locked.swift ├── ObjectiveCXCTestRunner.swift ├── RuntimeLibraries.swift ├── ShardingFilteringTestCollector.swift ├── StringInterpolation+XMLEscaping.swift ├── SwiftTestingRunner.swift └── XUnitTestRecorder.swift └── worker ├── BUILD ├── compile_with_worker.cc ├── compile_with_worker.h ├── compile_without_worker.cc ├── compile_without_worker.h ├── output_file_map.cc ├── output_file_map.h ├── swift_runner.cc ├── swift_runner.h ├── work_processor.cc ├── work_processor.h ├── worker_main.cc ├── worker_protocol.cc └── worker_protocol.h /.bazelci/presubmit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/.bazelci/presubmit.yml -------------------------------------------------------------------------------- /.bazelci/update_workspace_to_deps_heads.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/.bazelci/update_workspace_to_deps_heads.sh -------------------------------------------------------------------------------- /.bazelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/.bazelrc -------------------------------------------------------------------------------- /.bcr/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/.bcr/config.yml -------------------------------------------------------------------------------- /.bcr/metadata.template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/.bcr/metadata.template.json -------------------------------------------------------------------------------- /.bcr/presubmit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/.bcr/presubmit.yml -------------------------------------------------------------------------------- /.bcr/source.template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/.bcr/source.template.json -------------------------------------------------------------------------------- /.clang-format: -------------------------------------------------------------------------------- 1 | BasedOnStyle: Google 2 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.cmd text eol=crlf 2 | -------------------------------------------------------------------------------- /.github/generate-notes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/.github/generate-notes.sh -------------------------------------------------------------------------------- /.github/workflows/create-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/.github/workflows/create-release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/AUTHORS -------------------------------------------------------------------------------- /BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/BUILD -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/LICENSE -------------------------------------------------------------------------------- /MODULE.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/MODULE.bazel -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/README.md -------------------------------------------------------------------------------- /WORKSPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/WORKSPACE -------------------------------------------------------------------------------- /WORKSPACE.bzlmod: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/doc/BUILD -------------------------------------------------------------------------------- /doc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/doc/README.md -------------------------------------------------------------------------------- /doc/api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/doc/api.md -------------------------------------------------------------------------------- /doc/aspects.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/doc/aspects.md -------------------------------------------------------------------------------- /doc/debuggable_remote_swift.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/doc/debuggable_remote_swift.md -------------------------------------------------------------------------------- /doc/doc.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/doc/doc.bzl -------------------------------------------------------------------------------- /doc/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/doc/faq.md -------------------------------------------------------------------------------- /doc/proto_migration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/doc/proto_migration.md -------------------------------------------------------------------------------- /doc/providers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/doc/providers.md -------------------------------------------------------------------------------- /doc/rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/doc/rules.md -------------------------------------------------------------------------------- /doc/setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/doc/setup.md -------------------------------------------------------------------------------- /examples/apple/mixed_language/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/examples/apple/mixed_language/BUILD -------------------------------------------------------------------------------- /examples/apple/mixed_language/MixedAnswer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/examples/apple/mixed_language/MixedAnswer.h -------------------------------------------------------------------------------- /examples/apple/mixed_language/MixedAnswer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/examples/apple/mixed_language/MixedAnswer.m -------------------------------------------------------------------------------- /examples/apple/mixed_language/MixedAnswer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/examples/apple/mixed_language/MixedAnswer.swift -------------------------------------------------------------------------------- /examples/apple/mixed_language/MixedAnswerPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/examples/apple/mixed_language/MixedAnswerPrivate.h -------------------------------------------------------------------------------- /examples/apple/mixed_language/MixedAnswerPrivate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/examples/apple/mixed_language/MixedAnswerPrivate.m -------------------------------------------------------------------------------- /examples/apple/mixed_language/MixedTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/examples/apple/mixed_language/MixedTests.m -------------------------------------------------------------------------------- /examples/apple/mixed_language/MixedTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/examples/apple/mixed_language/MixedTests.swift -------------------------------------------------------------------------------- /examples/apple/mixed_language/SwiftLibDependingOnMixedLib.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/examples/apple/mixed_language/SwiftLibDependingOnMixedLib.swift -------------------------------------------------------------------------------- /examples/apple/objc_interop/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/examples/apple/objc_interop/BUILD -------------------------------------------------------------------------------- /examples/apple/objc_interop/OIPrintStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/examples/apple/objc_interop/OIPrintStream.h -------------------------------------------------------------------------------- /examples/apple/objc_interop/OIPrintStream.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/examples/apple/objc_interop/OIPrintStream.m -------------------------------------------------------------------------------- /examples/apple/objc_interop/Printer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/examples/apple/objc_interop/Printer.swift -------------------------------------------------------------------------------- /examples/apple/objc_interop/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/examples/apple/objc_interop/main.m -------------------------------------------------------------------------------- /examples/apple/objc_interop_modulemap/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/examples/apple/objc_interop_modulemap/BUILD -------------------------------------------------------------------------------- /examples/apple/objc_interop_modulemap/OIPrintStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/examples/apple/objc_interop_modulemap/OIPrintStream.h -------------------------------------------------------------------------------- /examples/apple/objc_interop_modulemap/OIPrintStream.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/examples/apple/objc_interop_modulemap/OIPrintStream.m -------------------------------------------------------------------------------- /examples/apple/objc_interop_modulemap/Printer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/examples/apple/objc_interop_modulemap/Printer.swift -------------------------------------------------------------------------------- /examples/apple/objc_interop_modulemap/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/examples/apple/objc_interop_modulemap/main.m -------------------------------------------------------------------------------- /examples/runfiles/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/examples/runfiles/BUILD -------------------------------------------------------------------------------- /examples/runfiles/data/sample.txt: -------------------------------------------------------------------------------- 1 | Hello runfiles -------------------------------------------------------------------------------- /examples/runfiles/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/examples/runfiles/main.swift -------------------------------------------------------------------------------- /examples/xplatform/c_from_swift/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/examples/xplatform/c_from_swift/BUILD -------------------------------------------------------------------------------- /examples/xplatform/c_from_swift/Counter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/examples/xplatform/c_from_swift/Counter.swift -------------------------------------------------------------------------------- /examples/xplatform/c_from_swift/c_counter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/examples/xplatform/c_from_swift/c_counter.cc -------------------------------------------------------------------------------- /examples/xplatform/c_from_swift/c_counter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/examples/xplatform/c_from_swift/c_counter.h -------------------------------------------------------------------------------- /examples/xplatform/c_from_swift/counter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/examples/xplatform/c_from_swift/counter.cc -------------------------------------------------------------------------------- /examples/xplatform/c_from_swift/counter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/examples/xplatform/c_from_swift/counter.h -------------------------------------------------------------------------------- /examples/xplatform/c_from_swift/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/examples/xplatform/c_from_swift/main.swift -------------------------------------------------------------------------------- /examples/xplatform/custom_swift_proto_compiler/BUILD: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/xplatform/custom_swift_proto_compiler/compiler/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/examples/xplatform/custom_swift_proto_compiler/compiler/BUILD -------------------------------------------------------------------------------- /examples/xplatform/custom_swift_proto_compiler/protos/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/examples/xplatform/custom_swift_proto_compiler/protos/BUILD -------------------------------------------------------------------------------- /examples/xplatform/custom_swift_proto_compiler/protos/example.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/examples/xplatform/custom_swift_proto_compiler/protos/example.proto -------------------------------------------------------------------------------- /examples/xplatform/custom_swift_proto_compiler/rules/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/examples/xplatform/custom_swift_proto_compiler/rules/BUILD -------------------------------------------------------------------------------- /examples/xplatform/custom_swift_proto_compiler/rules/custom_proto_compiler.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/examples/xplatform/custom_swift_proto_compiler/rules/custom_proto_compiler.sh -------------------------------------------------------------------------------- /examples/xplatform/custom_swift_proto_compiler/rules/custom_proto_compiler_plugin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/examples/xplatform/custom_swift_proto_compiler/rules/custom_proto_compiler_plugin.sh -------------------------------------------------------------------------------- /examples/xplatform/custom_swift_proto_compiler/rules/custom_swift_proto_compiler.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/examples/xplatform/custom_swift_proto_compiler/rules/custom_swift_proto_compiler.bzl -------------------------------------------------------------------------------- /examples/xplatform/custom_swift_proto_compiler/swift/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/examples/xplatform/custom_swift_proto_compiler/swift/BUILD -------------------------------------------------------------------------------- /examples/xplatform/cxx_from_swift/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/examples/xplatform/cxx_from_swift/BUILD -------------------------------------------------------------------------------- /examples/xplatform/cxx_from_swift/Counter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/examples/xplatform/cxx_from_swift/Counter.swift -------------------------------------------------------------------------------- /examples/xplatform/cxx_from_swift/counter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/examples/xplatform/cxx_from_swift/counter.cc -------------------------------------------------------------------------------- /examples/xplatform/cxx_from_swift/counter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/examples/xplatform/cxx_from_swift/counter.h -------------------------------------------------------------------------------- /examples/xplatform/cxx_from_swift/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/examples/xplatform/cxx_from_swift/main.swift -------------------------------------------------------------------------------- /examples/xplatform/dispatch/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/examples/xplatform/dispatch/BUILD -------------------------------------------------------------------------------- /examples/xplatform/dispatch/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/examples/xplatform/dispatch/main.swift -------------------------------------------------------------------------------- /examples/xplatform/grpc/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/examples/xplatform/grpc/BUILD -------------------------------------------------------------------------------- /examples/xplatform/grpc/client_main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/examples/xplatform/grpc/client_main.swift -------------------------------------------------------------------------------- /examples/xplatform/grpc/client_unit_test.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/examples/xplatform/grpc/client_unit_test.swift -------------------------------------------------------------------------------- /examples/xplatform/grpc/server_main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/examples/xplatform/grpc/server_main.swift -------------------------------------------------------------------------------- /examples/xplatform/grpc/service/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/examples/xplatform/grpc/service/BUILD -------------------------------------------------------------------------------- /examples/xplatform/grpc/service/service.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/examples/xplatform/grpc/service/service.proto -------------------------------------------------------------------------------- /examples/xplatform/grpc/service/service_messages.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/examples/xplatform/grpc/service/service_messages.proto -------------------------------------------------------------------------------- /examples/xplatform/grpc/test_client_unit_test.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/examples/xplatform/grpc/test_client_unit_test.swift -------------------------------------------------------------------------------- /examples/xplatform/hello_world/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/examples/xplatform/hello_world/BUILD -------------------------------------------------------------------------------- /examples/xplatform/hello_world/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/examples/xplatform/hello_world/main.swift -------------------------------------------------------------------------------- /examples/xplatform/include_dev_srch_paths/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/examples/xplatform/include_dev_srch_paths/BUILD -------------------------------------------------------------------------------- /examples/xplatform/include_dev_srch_paths/DemoTestHelperTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/examples/xplatform/include_dev_srch_paths/DemoTestHelperTest.swift -------------------------------------------------------------------------------- /examples/xplatform/include_dev_srch_paths/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/examples/xplatform/include_dev_srch_paths/README.md -------------------------------------------------------------------------------- /examples/xplatform/include_dev_srch_paths/String+RandomExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/examples/xplatform/include_dev_srch_paths/String+RandomExtensions.swift -------------------------------------------------------------------------------- /examples/xplatform/include_dev_srch_paths/String+RandomExtensionsTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/examples/xplatform/include_dev_srch_paths/String+RandomExtensionsTests.swift -------------------------------------------------------------------------------- /examples/xplatform/include_dev_srch_paths/TestHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/examples/xplatform/include_dev_srch_paths/TestHelper.swift -------------------------------------------------------------------------------- /examples/xplatform/macros/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/examples/xplatform/macros/BUILD -------------------------------------------------------------------------------- /examples/xplatform/macros/Stringify.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/examples/xplatform/macros/Stringify.swift -------------------------------------------------------------------------------- /examples/xplatform/macros/StringifyClient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/examples/xplatform/macros/StringifyClient.swift -------------------------------------------------------------------------------- /examples/xplatform/macros/StringifyMacro.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/examples/xplatform/macros/StringifyMacro.swift -------------------------------------------------------------------------------- /examples/xplatform/macros/StringifyMacroPlugin.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/examples/xplatform/macros/StringifyMacroPlugin.swift -------------------------------------------------------------------------------- /examples/xplatform/macros/StringifyMacroTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/examples/xplatform/macros/StringifyMacroTests.swift -------------------------------------------------------------------------------- /examples/xplatform/macros/StringifyUniversalClient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/examples/xplatform/macros/StringifyUniversalClient.swift -------------------------------------------------------------------------------- /examples/xplatform/overlay/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/examples/xplatform/overlay/BUILD -------------------------------------------------------------------------------- /examples/xplatform/overlay/Orientation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/examples/xplatform/overlay/Orientation.swift -------------------------------------------------------------------------------- /examples/xplatform/overlay/RetroLibraryOverlay.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/examples/xplatform/overlay/RetroLibraryOverlay.swift -------------------------------------------------------------------------------- /examples/xplatform/overlay/RetroTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/examples/xplatform/overlay/RetroTest.swift -------------------------------------------------------------------------------- /examples/xplatform/overlay/retro_library.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/examples/xplatform/overlay/retro_library.c -------------------------------------------------------------------------------- /examples/xplatform/overlay/retro_library.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/examples/xplatform/overlay/retro_library.h -------------------------------------------------------------------------------- /examples/xplatform/proto/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/examples/xplatform/proto/BUILD -------------------------------------------------------------------------------- /examples/xplatform/proto/PathToUnderscores/message_1/message.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/examples/xplatform/proto/PathToUnderscores/message_1/message.proto -------------------------------------------------------------------------------- /examples/xplatform/proto/PathToUnderscores/message_2/message.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/examples/xplatform/proto/PathToUnderscores/message_2/message.proto -------------------------------------------------------------------------------- /examples/xplatform/proto/example.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/examples/xplatform/proto/example.proto -------------------------------------------------------------------------------- /examples/xplatform/proto/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/examples/xplatform/proto/main.swift -------------------------------------------------------------------------------- /examples/xplatform/proto_files/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/examples/xplatform/proto_files/BUILD -------------------------------------------------------------------------------- /examples/xplatform/proto_files/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/examples/xplatform/proto_files/main.swift -------------------------------------------------------------------------------- /examples/xplatform/proto_files/message_1.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/examples/xplatform/proto_files/message_1.proto -------------------------------------------------------------------------------- /examples/xplatform/proto_files/message_2.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/examples/xplatform/proto_files/message_2.proto -------------------------------------------------------------------------------- /examples/xplatform/proto_files/message_3.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/examples/xplatform/proto_files/message_3.proto -------------------------------------------------------------------------------- /examples/xplatform/proto_glob/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/examples/xplatform/proto_glob/BUILD -------------------------------------------------------------------------------- /examples/xplatform/proto_glob/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/examples/xplatform/proto_glob/main.swift -------------------------------------------------------------------------------- /examples/xplatform/proto_glob/package_1/example.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/examples/xplatform/proto_glob/package_1/example.proto -------------------------------------------------------------------------------- /examples/xplatform/proto_glob/package_2/example.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/examples/xplatform/proto_glob/package_2/example.proto -------------------------------------------------------------------------------- /examples/xplatform/proto_library_group/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/examples/xplatform/proto_library_group/BUILD -------------------------------------------------------------------------------- /examples/xplatform/proto_library_group/client_main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/examples/xplatform/proto_library_group/client_main.swift -------------------------------------------------------------------------------- /examples/xplatform/proto_library_group/client_unit_test.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/examples/xplatform/proto_library_group/client_unit_test.swift -------------------------------------------------------------------------------- /examples/xplatform/proto_library_group/request/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/examples/xplatform/proto_library_group/request/BUILD -------------------------------------------------------------------------------- /examples/xplatform/proto_library_group/request/request.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/examples/xplatform/proto_library_group/request/request.proto -------------------------------------------------------------------------------- /examples/xplatform/proto_library_group/response/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/examples/xplatform/proto_library_group/response/BUILD -------------------------------------------------------------------------------- /examples/xplatform/proto_library_group/response/response.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/examples/xplatform/proto_library_group/response/response.proto -------------------------------------------------------------------------------- /examples/xplatform/proto_library_group/server_main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/examples/xplatform/proto_library_group/server_main.swift -------------------------------------------------------------------------------- /examples/xplatform/proto_library_group/service/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/examples/xplatform/proto_library_group/service/BUILD -------------------------------------------------------------------------------- /examples/xplatform/proto_library_group/service/service.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/examples/xplatform/proto_library_group/service/service.proto -------------------------------------------------------------------------------- /examples/xplatform/proto_path/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/examples/xplatform/proto_path/BUILD -------------------------------------------------------------------------------- /examples/xplatform/proto_path/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/examples/xplatform/proto_path/main.swift -------------------------------------------------------------------------------- /examples/xplatform/proto_path/protos/BUILD: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/xplatform/proto_path/protos/package_1/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/examples/xplatform/proto_path/protos/package_1/BUILD -------------------------------------------------------------------------------- /examples/xplatform/proto_path/protos/package_1/message_1.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/examples/xplatform/proto_path/protos/package_1/message_1.proto -------------------------------------------------------------------------------- /examples/xplatform/proto_path/protos/package_2/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/examples/xplatform/proto_path/protos/package_2/BUILD -------------------------------------------------------------------------------- /examples/xplatform/proto_path/protos/package_2/message_2.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/examples/xplatform/proto_path/protos/package_2/message_2.proto -------------------------------------------------------------------------------- /examples/xplatform/swift_import/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/examples/xplatform/swift_import/BUILD -------------------------------------------------------------------------------- /examples/xplatform/swift_import/dep.swift: -------------------------------------------------------------------------------- 1 | public func foo() {} 2 | -------------------------------------------------------------------------------- /examples/xplatform/swift_import/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/examples/xplatform/swift_import/main.swift -------------------------------------------------------------------------------- /examples/xplatform/test_filter/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/examples/xplatform/test_filter/BUILD -------------------------------------------------------------------------------- /examples/xplatform/test_filter/FailTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/examples/xplatform/test_filter/FailTests.swift -------------------------------------------------------------------------------- /examples/xplatform/test_filter/PassFailTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/examples/xplatform/test_filter/PassFailTests.swift -------------------------------------------------------------------------------- /examples/xplatform/test_filter/PassTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/examples/xplatform/test_filter/PassTests.swift -------------------------------------------------------------------------------- /examples/xplatform/test_filter/TestHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/examples/xplatform/test_filter/TestHelper.swift -------------------------------------------------------------------------------- /examples/xplatform/xctest/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/examples/xplatform/xctest/BUILD -------------------------------------------------------------------------------- /examples/xplatform/xctest/SimpleTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/examples/xplatform/xctest/SimpleTests.swift -------------------------------------------------------------------------------- /mixed_language/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/mixed_language/BUILD -------------------------------------------------------------------------------- /mixed_language/internal/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/mixed_language/internal/BUILD -------------------------------------------------------------------------------- /mixed_language/internal/library.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/mixed_language/internal/library.bzl -------------------------------------------------------------------------------- /mixed_language/internal/module_map.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/mixed_language/internal/module_map.bzl -------------------------------------------------------------------------------- /mixed_language/internal/umbrella_header.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/mixed_language/internal/umbrella_header.bzl -------------------------------------------------------------------------------- /mixed_language/mixed_language_library.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/mixed_language/mixed_language_library.bzl -------------------------------------------------------------------------------- /proto/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/proto/BUILD -------------------------------------------------------------------------------- /proto/compilers/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/proto/compilers/BUILD -------------------------------------------------------------------------------- /proto/compilers/swift_proto_compiler_macros.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/proto/compilers/swift_proto_compiler_macros.bzl -------------------------------------------------------------------------------- /proto/copy_swift_sources.sh.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/proto/copy_swift_sources.sh.tpl -------------------------------------------------------------------------------- /proto/proto.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/proto/proto.bzl -------------------------------------------------------------------------------- /proto/swift_proto_common.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/proto/swift_proto_common.bzl -------------------------------------------------------------------------------- /proto/swift_proto_compiler.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/proto/swift_proto_compiler.bzl -------------------------------------------------------------------------------- /proto/swift_proto_library.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/proto/swift_proto_library.bzl -------------------------------------------------------------------------------- /proto/swift_proto_library_group.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/proto/swift_proto_library_group.bzl -------------------------------------------------------------------------------- /proto/swift_proto_utils.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/proto/swift_proto_utils.bzl -------------------------------------------------------------------------------- /swift/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/swift/BUILD -------------------------------------------------------------------------------- /swift/extensions.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/swift/extensions.bzl -------------------------------------------------------------------------------- /swift/extras.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/swift/extras.bzl -------------------------------------------------------------------------------- /swift/internal/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/swift/internal/BUILD -------------------------------------------------------------------------------- /swift/internal/action_names.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/swift/internal/action_names.bzl -------------------------------------------------------------------------------- /swift/internal/actions.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/swift/internal/actions.bzl -------------------------------------------------------------------------------- /swift/internal/attrs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/swift/internal/attrs.bzl -------------------------------------------------------------------------------- /swift/internal/autolinking.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/swift/internal/autolinking.bzl -------------------------------------------------------------------------------- /swift/internal/binary_attrs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/swift/internal/binary_attrs.bzl -------------------------------------------------------------------------------- /swift/internal/build_settings.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/swift/internal/build_settings.bzl -------------------------------------------------------------------------------- /swift/internal/compiling.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/swift/internal/compiling.bzl -------------------------------------------------------------------------------- /swift/internal/debugging.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/swift/internal/debugging.bzl -------------------------------------------------------------------------------- /swift/internal/developer_dirs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/swift/internal/developer_dirs.bzl -------------------------------------------------------------------------------- /swift/internal/env_expansion.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/swift/internal/env_expansion.bzl -------------------------------------------------------------------------------- /swift/internal/explicit_module_map_file.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/swift/internal/explicit_module_map_file.bzl -------------------------------------------------------------------------------- /swift/internal/feature_names.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/swift/internal/feature_names.bzl -------------------------------------------------------------------------------- /swift/internal/features.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/swift/internal/features.bzl -------------------------------------------------------------------------------- /swift/internal/interface_synthesizing.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/swift/internal/interface_synthesizing.bzl -------------------------------------------------------------------------------- /swift/internal/linking.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/swift/internal/linking.bzl -------------------------------------------------------------------------------- /swift/internal/module_maps.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/swift/internal/module_maps.bzl -------------------------------------------------------------------------------- /swift/internal/output_groups.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/swift/internal/output_groups.bzl -------------------------------------------------------------------------------- /swift/internal/package_specs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/swift/internal/package_specs.bzl -------------------------------------------------------------------------------- /swift/internal/providers.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/swift/internal/providers.bzl -------------------------------------------------------------------------------- /swift/internal/swift_autoconfiguration.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/swift/internal/swift_autoconfiguration.bzl -------------------------------------------------------------------------------- /swift/internal/swift_interop_info.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/swift/internal/swift_interop_info.bzl -------------------------------------------------------------------------------- /swift/internal/swift_symbol_graph_aspect.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/swift/internal/swift_symbol_graph_aspect.bzl -------------------------------------------------------------------------------- /swift/internal/symbol_graph_extracting.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/swift/internal/symbol_graph_extracting.bzl -------------------------------------------------------------------------------- /swift/internal/target_triples.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/swift/internal/target_triples.bzl -------------------------------------------------------------------------------- /swift/internal/toolchain_utils.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/swift/internal/toolchain_utils.bzl -------------------------------------------------------------------------------- /swift/internal/utils.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/swift/internal/utils.bzl -------------------------------------------------------------------------------- /swift/internal/vfsoverlay.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/swift/internal/vfsoverlay.bzl -------------------------------------------------------------------------------- /swift/internal/wmo.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/swift/internal/wmo.bzl -------------------------------------------------------------------------------- /swift/module_name.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/swift/module_name.bzl -------------------------------------------------------------------------------- /swift/providers.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/swift/providers.bzl -------------------------------------------------------------------------------- /swift/repositories.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/swift/repositories.bzl -------------------------------------------------------------------------------- /swift/runfiles/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/swift/runfiles/BUILD -------------------------------------------------------------------------------- /swift/runfiles/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/swift/runfiles/README.md -------------------------------------------------------------------------------- /swift/runfiles/Runfiles.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/swift/runfiles/Runfiles.swift -------------------------------------------------------------------------------- /swift/swift.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/swift/swift.bzl -------------------------------------------------------------------------------- /swift/swift_binary.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/swift/swift_binary.bzl -------------------------------------------------------------------------------- /swift/swift_clang_module_aspect.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/swift/swift_clang_module_aspect.bzl -------------------------------------------------------------------------------- /swift/swift_common.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/swift/swift_common.bzl -------------------------------------------------------------------------------- /swift/swift_compiler_plugin.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/swift/swift_compiler_plugin.bzl -------------------------------------------------------------------------------- /swift/swift_compiler_plugin_import.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/swift/swift_compiler_plugin_import.bzl -------------------------------------------------------------------------------- /swift/swift_cross_import_overlay.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/swift/swift_cross_import_overlay.bzl -------------------------------------------------------------------------------- /swift/swift_extract_symbol_graph.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/swift/swift_extract_symbol_graph.bzl -------------------------------------------------------------------------------- /swift/swift_feature_allowlist.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/swift/swift_feature_allowlist.bzl -------------------------------------------------------------------------------- /swift/swift_import.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/swift/swift_import.bzl -------------------------------------------------------------------------------- /swift/swift_interop_hint.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/swift/swift_interop_hint.bzl -------------------------------------------------------------------------------- /swift/swift_interop_info.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/swift/swift_interop_info.bzl -------------------------------------------------------------------------------- /swift/swift_library.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/swift/swift_library.bzl -------------------------------------------------------------------------------- /swift/swift_library_group.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/swift/swift_library_group.bzl -------------------------------------------------------------------------------- /swift/swift_module_mapping.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/swift/swift_module_mapping.bzl -------------------------------------------------------------------------------- /swift/swift_module_mapping_test.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/swift/swift_module_mapping_test.bzl -------------------------------------------------------------------------------- /swift/swift_overlay.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/swift/swift_overlay.bzl -------------------------------------------------------------------------------- /swift/swift_overlay_helpers.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/swift/swift_overlay_helpers.bzl -------------------------------------------------------------------------------- /swift/swift_package_configuration.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/swift/swift_package_configuration.bzl -------------------------------------------------------------------------------- /swift/swift_symbol_graph_aspect.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/swift/swift_symbol_graph_aspect.bzl -------------------------------------------------------------------------------- /swift/swift_synthesize_interface_aspect.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/swift/swift_synthesize_interface_aspect.bzl -------------------------------------------------------------------------------- /swift/swift_test.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/swift/swift_test.bzl -------------------------------------------------------------------------------- /swift/toolchains/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/swift/toolchains/BUILD -------------------------------------------------------------------------------- /swift/toolchains/config/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/swift/toolchains/config/BUILD -------------------------------------------------------------------------------- /swift/toolchains/config/action_config.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/swift/toolchains/config/action_config.bzl -------------------------------------------------------------------------------- /swift/toolchains/config/all_actions_config.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/swift/toolchains/config/all_actions_config.bzl -------------------------------------------------------------------------------- /swift/toolchains/config/compile_config.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/swift/toolchains/config/compile_config.bzl -------------------------------------------------------------------------------- /swift/toolchains/config/compile_module_interface_config.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/swift/toolchains/config/compile_module_interface_config.bzl -------------------------------------------------------------------------------- /swift/toolchains/config/const_protocols_to_gather.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/swift/toolchains/config/const_protocols_to_gather.json -------------------------------------------------------------------------------- /swift/toolchains/config/modulewrap_config.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/swift/toolchains/config/modulewrap_config.bzl -------------------------------------------------------------------------------- /swift/toolchains/config/symbol_graph_config.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/swift/toolchains/config/symbol_graph_config.bzl -------------------------------------------------------------------------------- /swift/toolchains/config/synthesize_interface_config.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/swift/toolchains/config/synthesize_interface_config.bzl -------------------------------------------------------------------------------- /swift/toolchains/config/tool_config.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/swift/toolchains/config/tool_config.bzl -------------------------------------------------------------------------------- /swift/toolchains/swift_toolchain.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/swift/toolchains/swift_toolchain.bzl -------------------------------------------------------------------------------- /swift/toolchains/xcode_swift_toolchain.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/swift/toolchains/xcode_swift_toolchain.bzl -------------------------------------------------------------------------------- /test/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/test/BUILD -------------------------------------------------------------------------------- /test/additional_linker_inputs_tests.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/test/additional_linker_inputs_tests.bzl -------------------------------------------------------------------------------- /test/ast_file_tests.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/test/ast_file_tests.bzl -------------------------------------------------------------------------------- /test/bzl_test.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/test/bzl_test.bzl -------------------------------------------------------------------------------- /test/cc_library_tests.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/test/cc_library_tests.bzl -------------------------------------------------------------------------------- /test/compiler_arguments_tests.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/test/compiler_arguments_tests.bzl -------------------------------------------------------------------------------- /test/const_values_tests.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/test/const_values_tests.bzl -------------------------------------------------------------------------------- /test/coverage_settings_tests.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/test/coverage_settings_tests.bzl -------------------------------------------------------------------------------- /test/debug_settings_tests.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/test/debug_settings_tests.bzl -------------------------------------------------------------------------------- /test/environment_tests.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/test/environment_tests.bzl -------------------------------------------------------------------------------- /test/features_tests.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/test/features_tests.bzl -------------------------------------------------------------------------------- /test/fixtures/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/test/fixtures/BUILD -------------------------------------------------------------------------------- /test/fixtures/basic/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/test/fixtures/basic/BUILD -------------------------------------------------------------------------------- /test/fixtures/basic/first.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/test/fixtures/basic/first.swift -------------------------------------------------------------------------------- /test/fixtures/basic/second.swift: -------------------------------------------------------------------------------- 1 | import first 2 | 3 | public func bar() -> String { 4 | return foo() 5 | } 6 | -------------------------------------------------------------------------------- /test/fixtures/cc_library/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/test/fixtures/cc_library/BUILD -------------------------------------------------------------------------------- /test/fixtures/cc_library/ImportPrefixAndStripPrefix.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/test/fixtures/cc_library/ImportPrefixAndStripPrefix.swift -------------------------------------------------------------------------------- /test/fixtures/cc_library/ImportPrefixAndStripPrefixWithExclusion.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/test/fixtures/cc_library/ImportPrefixAndStripPrefixWithExclusion.swift -------------------------------------------------------------------------------- /test/fixtures/cc_library/ImportPrefixOnly.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/test/fixtures/cc_library/ImportPrefixOnly.swift -------------------------------------------------------------------------------- /test/fixtures/cc_library/ImportStripPrefixOnly.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/test/fixtures/cc_library/ImportStripPrefixOnly.swift -------------------------------------------------------------------------------- /test/fixtures/cc_library/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/test/fixtures/cc_library/header.h -------------------------------------------------------------------------------- /test/fixtures/cc_library/header_prefix_and_strip_prefix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/test/fixtures/cc_library/header_prefix_and_strip_prefix.h -------------------------------------------------------------------------------- /test/fixtures/cc_library/header_prefix_only.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/test/fixtures/cc_library/header_prefix_only.h -------------------------------------------------------------------------------- /test/fixtures/cc_library/header_strip_prefix_only.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/test/fixtures/cc_library/header_strip_prefix_only.h -------------------------------------------------------------------------------- /test/fixtures/cc_library/header_with_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/test/fixtures/cc_library/header_with_error.h -------------------------------------------------------------------------------- /test/fixtures/common.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/test/fixtures/common.bzl -------------------------------------------------------------------------------- /test/fixtures/compiler_arguments/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/test/fixtures/compiler_arguments/BUILD -------------------------------------------------------------------------------- /test/fixtures/compiler_arguments/empty.swift: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/debug_settings/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/test/fixtures/debug_settings/BUILD -------------------------------------------------------------------------------- /test/fixtures/debug_settings/Empty.swift: -------------------------------------------------------------------------------- 1 | // Intentionally empty. 2 | -------------------------------------------------------------------------------- /test/fixtures/environment/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/test/fixtures/environment/BUILD -------------------------------------------------------------------------------- /test/fixtures/generated_header/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/test/fixtures/generated_header/BUILD -------------------------------------------------------------------------------- /test/fixtures/generated_header/Empty.swift: -------------------------------------------------------------------------------- 1 | // Intentionally empty. 2 | -------------------------------------------------------------------------------- /test/fixtures/global_index_store/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/test/fixtures/global_index_store/BUILD -------------------------------------------------------------------------------- /test/fixtures/global_index_store/first.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/test/fixtures/global_index_store/first.swift -------------------------------------------------------------------------------- /test/fixtures/global_index_store/second.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/test/fixtures/global_index_store/second.swift -------------------------------------------------------------------------------- /test/fixtures/interop_hints/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/test/fixtures/interop_hints/BUILD -------------------------------------------------------------------------------- /test/fixtures/interop_hints/Empty.swift: -------------------------------------------------------------------------------- 1 | // Intentionally empty. 2 | -------------------------------------------------------------------------------- /test/fixtures/interop_hints/ImportModuleName.swift: -------------------------------------------------------------------------------- 1 | import ModuleName 2 | -------------------------------------------------------------------------------- /test/fixtures/interop_hints/ImportSubmodule.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/test/fixtures/interop_hints/ImportSubmodule.swift -------------------------------------------------------------------------------- /test/fixtures/interop_hints/header1.h: -------------------------------------------------------------------------------- 1 | // Intentionally empty. 2 | -------------------------------------------------------------------------------- /test/fixtures/interop_hints/header2.h: -------------------------------------------------------------------------------- 1 | // Intentionally empty. 2 | -------------------------------------------------------------------------------- /test/fixtures/interop_hints/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/test/fixtures/interop_hints/module.modulemap -------------------------------------------------------------------------------- /test/fixtures/linking/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/test/fixtures/linking/BUILD -------------------------------------------------------------------------------- /test/fixtures/linking/fake_framework.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/test/fixtures/linking/fake_framework.bzl -------------------------------------------------------------------------------- /test/fixtures/linking/lib.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/test/fixtures/linking/lib.swift -------------------------------------------------------------------------------- /test/fixtures/linking/main.cc: -------------------------------------------------------------------------------- 1 | int main() { 2 | return 0; 3 | } 4 | -------------------------------------------------------------------------------- /test/fixtures/linking/main.swift: -------------------------------------------------------------------------------- 1 | print("hello") 2 | -------------------------------------------------------------------------------- /test/fixtures/linking/test_data.bin: -------------------------------------------------------------------------------- 1 | TEST_DATA_FOR_ADDITIONAL_LINKER_INPUTS 2 | -------------------------------------------------------------------------------- /test/fixtures/mainattr/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/test/fixtures/mainattr/BUILD -------------------------------------------------------------------------------- /test/fixtures/mainattr/custommain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/test/fixtures/mainattr/custommain.swift -------------------------------------------------------------------------------- /test/fixtures/mainattr/file1.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/test/fixtures/mainattr/file1.swift -------------------------------------------------------------------------------- /test/fixtures/mainattr/file2.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/test/fixtures/mainattr/file2.swift -------------------------------------------------------------------------------- /test/fixtures/mainattr/main.swift: -------------------------------------------------------------------------------- 1 | print("hi") 2 | -------------------------------------------------------------------------------- /test/fixtures/module_interface/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/test/fixtures/module_interface/BUILD -------------------------------------------------------------------------------- /test/fixtures/module_interface/Client.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/test/fixtures/module_interface/Client.swift -------------------------------------------------------------------------------- /test/fixtures/module_interface/library/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/test/fixtures/module_interface/library/BUILD -------------------------------------------------------------------------------- /test/fixtures/module_interface/library/ToyModule.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/test/fixtures/module_interface/library/ToyModule.swift -------------------------------------------------------------------------------- /test/fixtures/module_mapping/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/test/fixtures/module_mapping/BUILD -------------------------------------------------------------------------------- /test/fixtures/module_mapping/Common.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/test/fixtures/module_mapping/Common.swift -------------------------------------------------------------------------------- /test/fixtures/module_mapping/Empty.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/test/fixtures/module_mapping/Empty.swift -------------------------------------------------------------------------------- /test/fixtures/module_mapping/MySDK.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/test/fixtures/module_mapping/MySDK.swift -------------------------------------------------------------------------------- /test/fixtures/module_mapping/apply_mapping.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/test/fixtures/module_mapping/apply_mapping.bzl -------------------------------------------------------------------------------- /test/fixtures/multiple_files/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/test/fixtures/multiple_files/BUILD -------------------------------------------------------------------------------- /test/fixtures/multiple_files/Empty.swift: -------------------------------------------------------------------------------- 1 | // Intentionally empty. 2 | -------------------------------------------------------------------------------- /test/fixtures/multiple_files/Empty2.swift: -------------------------------------------------------------------------------- 1 | // Intentionally empty. 2 | -------------------------------------------------------------------------------- /test/fixtures/private_deps/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/test/fixtures/private_deps/BUILD -------------------------------------------------------------------------------- /test/fixtures/private_deps/Empty.swift: -------------------------------------------------------------------------------- 1 | // Intentionally empty. 2 | -------------------------------------------------------------------------------- /test/fixtures/private_deps/private.c: -------------------------------------------------------------------------------- 1 | // Intentionally empty. 2 | -------------------------------------------------------------------------------- /test/fixtures/private_deps/private.h: -------------------------------------------------------------------------------- 1 | // Intentionally empty. 2 | -------------------------------------------------------------------------------- /test/fixtures/private_deps/public.c: -------------------------------------------------------------------------------- 1 | // Intentionally empty. 2 | -------------------------------------------------------------------------------- /test/fixtures/private_deps/public.h: -------------------------------------------------------------------------------- 1 | // Intentionally empty. 2 | -------------------------------------------------------------------------------- /test/fixtures/private_swiftinterface/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/test/fixtures/private_swiftinterface/BUILD -------------------------------------------------------------------------------- /test/fixtures/private_swiftinterface/library/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/test/fixtures/private_swiftinterface/library/BUILD -------------------------------------------------------------------------------- /test/fixtures/private_swiftinterface/library/Lib.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/test/fixtures/private_swiftinterface/library/Lib.swift -------------------------------------------------------------------------------- /test/fixtures/private_swiftinterface/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/test/fixtures/private_swiftinterface/main.swift -------------------------------------------------------------------------------- /test/fixtures/runtime_deps/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/test/fixtures/runtime_deps/BUILD -------------------------------------------------------------------------------- /test/fixtures/runtime_deps/direct_library.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/test/fixtures/runtime_deps/direct_library.swift -------------------------------------------------------------------------------- /test/fixtures/runtime_deps/main.swift: -------------------------------------------------------------------------------- 1 | print("hi") 2 | -------------------------------------------------------------------------------- /test/fixtures/runtime_deps/transitive_data.txt: -------------------------------------------------------------------------------- 1 | Its some data 2 | -------------------------------------------------------------------------------- /test/fixtures/runtime_deps/transitive_library.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/test/fixtures/runtime_deps/transitive_library.swift -------------------------------------------------------------------------------- /test/fixtures/swift_through_non_swift/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/test/fixtures/swift_through_non_swift/BUILD -------------------------------------------------------------------------------- /test/fixtures/swift_through_non_swift/Empty.h: -------------------------------------------------------------------------------- 1 | // Intentionally empty. 2 | -------------------------------------------------------------------------------- /test/fixtures/swift_through_non_swift/Empty.swift: -------------------------------------------------------------------------------- 1 | // Intentionally empty. 2 | -------------------------------------------------------------------------------- /test/fixtures/symbol_graphs/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/test/fixtures/symbol_graphs/BUILD -------------------------------------------------------------------------------- /test/fixtures/symbol_graphs/ImportingModule.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/test/fixtures/symbol_graphs/ImportingModule.swift -------------------------------------------------------------------------------- /test/fixtures/symbol_graphs/SomeModule.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/test/fixtures/symbol_graphs/SomeModule.swift -------------------------------------------------------------------------------- /test/fixtures/symbol_graphs/SomeModuleWithExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/test/fixtures/symbol_graphs/SomeModuleWithExtension.swift -------------------------------------------------------------------------------- /test/fixtures/synthesize_interface/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/test/fixtures/synthesize_interface/BUILD -------------------------------------------------------------------------------- /test/fixtures/synthesize_interface/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/test/fixtures/synthesize_interface/header.h -------------------------------------------------------------------------------- /test/fixtures/xctest_runner/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/test/fixtures/xctest_runner/BUILD -------------------------------------------------------------------------------- /test/fixtures/xctest_runner/FailingUnitTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/test/fixtures/xctest_runner/FailingUnitTests.swift -------------------------------------------------------------------------------- /test/fixtures/xctest_runner/PassingUnitTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/test/fixtures/xctest_runner/PassingUnitTests.swift -------------------------------------------------------------------------------- /test/generated_header_tests.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/test/generated_header_tests.bzl -------------------------------------------------------------------------------- /test/imported_framework_tests.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/test/imported_framework_tests.bzl -------------------------------------------------------------------------------- /test/interop_hints_tests.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/test/interop_hints_tests.bzl -------------------------------------------------------------------------------- /test/mainattr_tests.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/test/mainattr_tests.bzl -------------------------------------------------------------------------------- /test/module_cache_settings_tests.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/test/module_cache_settings_tests.bzl -------------------------------------------------------------------------------- /test/module_interface_tests.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/test/module_interface_tests.bzl -------------------------------------------------------------------------------- /test/module_mapping_tests.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/test/module_mapping_tests.bzl -------------------------------------------------------------------------------- /test/output_file_map_tests.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/test/output_file_map_tests.bzl -------------------------------------------------------------------------------- /test/pch_output_dir_tests.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/test/pch_output_dir_tests.bzl -------------------------------------------------------------------------------- /test/private_deps_tests.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/test/private_deps_tests.bzl -------------------------------------------------------------------------------- /test/private_swiftinterface_tests.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/test/private_swiftinterface_tests.bzl -------------------------------------------------------------------------------- /test/rules/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/test/rules/BUILD -------------------------------------------------------------------------------- /test/rules/action_command_line_test.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/test/rules/action_command_line_test.bzl -------------------------------------------------------------------------------- /test/rules/analysis_failure_test.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/test/rules/analysis_failure_test.bzl -------------------------------------------------------------------------------- /test/rules/directory_test.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/test/rules/directory_test.bzl -------------------------------------------------------------------------------- /test/rules/expected_files.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/test/rules/expected_files.bzl -------------------------------------------------------------------------------- /test/rules/output_file_map_test.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/test/rules/output_file_map_test.bzl -------------------------------------------------------------------------------- /test/rules/provider_test.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/test/rules/provider_test.bzl -------------------------------------------------------------------------------- /test/rules/swift_binary_linking_test.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/test/rules/swift_binary_linking_test.bzl -------------------------------------------------------------------------------- /test/rules/swift_library_artifact_collector.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/test/rules/swift_library_artifact_collector.bzl -------------------------------------------------------------------------------- /test/rules/swift_shell_runner.sh.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/test/rules/swift_shell_runner.sh.template -------------------------------------------------------------------------------- /test/rules/swift_shell_test.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/test/rules/swift_shell_test.bzl -------------------------------------------------------------------------------- /test/rules/synthesize_interface_applier.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/test/rules/synthesize_interface_applier.bzl -------------------------------------------------------------------------------- /test/runfiles/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/test/runfiles/BUILD -------------------------------------------------------------------------------- /test/runfiles/RunfilesTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/test/runfiles/RunfilesTests.swift -------------------------------------------------------------------------------- /test/runtime_deps_tests.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/test/runtime_deps_tests.bzl -------------------------------------------------------------------------------- /test/split_derived_files_tests.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/test/split_derived_files_tests.bzl -------------------------------------------------------------------------------- /test/swift_binary_linking_tests.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/test/swift_binary_linking_tests.bzl -------------------------------------------------------------------------------- /test/swift_bzl_macro.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/test/swift_bzl_macro.bzl -------------------------------------------------------------------------------- /test/swift_through_non_swift_tests.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/test/swift_through_non_swift_tests.bzl -------------------------------------------------------------------------------- /test/symbol_graphs_tests.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/test/symbol_graphs_tests.bzl -------------------------------------------------------------------------------- /test/synthesize_interface_tests.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/test/synthesize_interface_tests.bzl -------------------------------------------------------------------------------- /test/utils_tests.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/test/utils_tests.bzl -------------------------------------------------------------------------------- /test/xctest_runner_tests.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/test/xctest_runner_tests.bzl -------------------------------------------------------------------------------- /third_party/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/third_party/BUILD -------------------------------------------------------------------------------- /third_party/bazel_protos/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/third_party/bazel_protos/BUILD -------------------------------------------------------------------------------- /third_party/bazel_protos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/third_party/bazel_protos/README.md -------------------------------------------------------------------------------- /third_party/bazel_protos/worker_protocol.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/third_party/bazel_protos/worker_protocol.proto -------------------------------------------------------------------------------- /third_party/build_bazel_rules_swift_index_import/BUILD.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/third_party/build_bazel_rules_swift_index_import/BUILD.overlay -------------------------------------------------------------------------------- /third_party/com_github_apple_swift_argument_parser/BUILD.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/third_party/com_github_apple_swift_argument_parser/BUILD.overlay -------------------------------------------------------------------------------- /third_party/com_github_apple_swift_atomics/BUILD.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/third_party/com_github_apple_swift_atomics/BUILD.overlay -------------------------------------------------------------------------------- /third_party/com_github_apple_swift_collections/BUILD.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/third_party/com_github_apple_swift_collections/BUILD.overlay -------------------------------------------------------------------------------- /third_party/com_github_apple_swift_docc_symbolkit/BUILD.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/third_party/com_github_apple_swift_docc_symbolkit/BUILD.overlay -------------------------------------------------------------------------------- /third_party/com_github_apple_swift_log/BUILD.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/third_party/com_github_apple_swift_log/BUILD.overlay -------------------------------------------------------------------------------- /third_party/com_github_apple_swift_nio/BUILD.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/third_party/com_github_apple_swift_nio/BUILD.overlay -------------------------------------------------------------------------------- /third_party/com_github_apple_swift_nio_extras/BUILD.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/third_party/com_github_apple_swift_nio_extras/BUILD.overlay -------------------------------------------------------------------------------- /third_party/com_github_apple_swift_nio_http2/BUILD.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/third_party/com_github_apple_swift_nio_http2/BUILD.overlay -------------------------------------------------------------------------------- /third_party/com_github_apple_swift_nio_ssl/BUILD.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/third_party/com_github_apple_swift_nio_ssl/BUILD.overlay -------------------------------------------------------------------------------- /third_party/com_github_apple_swift_nio_transport_services/BUILD.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/third_party/com_github_apple_swift_nio_transport_services/BUILD.overlay -------------------------------------------------------------------------------- /third_party/com_github_apple_swift_protobuf/BUILD.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/third_party/com_github_apple_swift_protobuf/BUILD.overlay -------------------------------------------------------------------------------- /third_party/com_github_grpc_grpc_swift/BUILD.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/third_party/com_github_grpc_grpc_swift/BUILD.overlay -------------------------------------------------------------------------------- /third_party/com_github_nlohmann_json/BUILD.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/third_party/com_github_nlohmann_json/BUILD.overlay -------------------------------------------------------------------------------- /third_party/patches/BUILD.bazel: -------------------------------------------------------------------------------- 1 | exports_files(glob(["*.patch"])) 2 | -------------------------------------------------------------------------------- /third_party/patches/stardoc-revert-load-statements-in-docs.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/third_party/patches/stardoc-revert-load-statements-in-docs.patch -------------------------------------------------------------------------------- /toolchains/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/toolchains/BUILD -------------------------------------------------------------------------------- /tools/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/tools/BUILD -------------------------------------------------------------------------------- /tools/common/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/tools/common/BUILD -------------------------------------------------------------------------------- /tools/common/bazel_substitutions.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/tools/common/bazel_substitutions.cc -------------------------------------------------------------------------------- /tools/common/bazel_substitutions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/tools/common/bazel_substitutions.h -------------------------------------------------------------------------------- /tools/common/process.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/tools/common/process.cc -------------------------------------------------------------------------------- /tools/common/process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/tools/common/process.h -------------------------------------------------------------------------------- /tools/common/temp_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/tools/common/temp_file.h -------------------------------------------------------------------------------- /tools/dump_toolchains/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/tools/dump_toolchains/BUILD -------------------------------------------------------------------------------- /tools/dump_toolchains/dump_toolchains.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/tools/dump_toolchains/dump_toolchains.sh -------------------------------------------------------------------------------- /tools/mixed_language_module_map_extender/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/tools/mixed_language_module_map_extender/BUILD -------------------------------------------------------------------------------- /tools/mixed_language_module_map_extender/mixed_language_module_map_extender.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/tools/mixed_language_module_map_extender/mixed_language_module_map_extender.sh -------------------------------------------------------------------------------- /tools/mkdir_and_run/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/tools/mkdir_and_run/BUILD -------------------------------------------------------------------------------- /tools/mkdir_and_run/mkdir_and_run.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/tools/mkdir_and_run/mkdir_and_run.cmd -------------------------------------------------------------------------------- /tools/mkdir_and_run/mkdir_and_run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/tools/mkdir_and_run/mkdir_and_run.sh -------------------------------------------------------------------------------- /tools/protoc_wrapper/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/tools/protoc_wrapper/BUILD -------------------------------------------------------------------------------- /tools/test_discoverer/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/tools/test_discoverer/BUILD -------------------------------------------------------------------------------- /tools/test_discoverer/DiscoveredTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/tools/test_discoverer/DiscoveredTests.swift -------------------------------------------------------------------------------- /tools/test_discoverer/SymbolCollector.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/tools/test_discoverer/SymbolCollector.swift -------------------------------------------------------------------------------- /tools/test_discoverer/SymbolGraphTestPrinter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/tools/test_discoverer/SymbolGraphTestPrinter.swift -------------------------------------------------------------------------------- /tools/test_discoverer/SymbolKitExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/tools/test_discoverer/SymbolKitExtensions.swift -------------------------------------------------------------------------------- /tools/test_discoverer/TestDiscoverer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/tools/test_discoverer/TestDiscoverer.swift -------------------------------------------------------------------------------- /tools/test_discoverer/TestPrinterCommon.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/tools/test_discoverer/TestPrinterCommon.swift -------------------------------------------------------------------------------- /tools/test_observer/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/tools/test_observer/BUILD -------------------------------------------------------------------------------- /tools/test_observer/BazelXMLTestObserver.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/tools/test_observer/BazelXMLTestObserver.swift -------------------------------------------------------------------------------- /tools/test_observer/JSON.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/tools/test_observer/JSON.swift -------------------------------------------------------------------------------- /tools/test_observer/LinuxXCTestRunner.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/tools/test_observer/LinuxXCTestRunner.swift -------------------------------------------------------------------------------- /tools/test_observer/Locked.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/tools/test_observer/Locked.swift -------------------------------------------------------------------------------- /tools/test_observer/ObjectiveCXCTestRunner.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/tools/test_observer/ObjectiveCXCTestRunner.swift -------------------------------------------------------------------------------- /tools/test_observer/RuntimeLibraries.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/tools/test_observer/RuntimeLibraries.swift -------------------------------------------------------------------------------- /tools/test_observer/ShardingFilteringTestCollector.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/tools/test_observer/ShardingFilteringTestCollector.swift -------------------------------------------------------------------------------- /tools/test_observer/StringInterpolation+XMLEscaping.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/tools/test_observer/StringInterpolation+XMLEscaping.swift -------------------------------------------------------------------------------- /tools/test_observer/SwiftTestingRunner.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/tools/test_observer/SwiftTestingRunner.swift -------------------------------------------------------------------------------- /tools/test_observer/XUnitTestRecorder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/tools/test_observer/XUnitTestRecorder.swift -------------------------------------------------------------------------------- /tools/worker/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/tools/worker/BUILD -------------------------------------------------------------------------------- /tools/worker/compile_with_worker.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/tools/worker/compile_with_worker.cc -------------------------------------------------------------------------------- /tools/worker/compile_with_worker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/tools/worker/compile_with_worker.h -------------------------------------------------------------------------------- /tools/worker/compile_without_worker.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/tools/worker/compile_without_worker.cc -------------------------------------------------------------------------------- /tools/worker/compile_without_worker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/tools/worker/compile_without_worker.h -------------------------------------------------------------------------------- /tools/worker/output_file_map.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/tools/worker/output_file_map.cc -------------------------------------------------------------------------------- /tools/worker/output_file_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/tools/worker/output_file_map.h -------------------------------------------------------------------------------- /tools/worker/swift_runner.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/tools/worker/swift_runner.cc -------------------------------------------------------------------------------- /tools/worker/swift_runner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/tools/worker/swift_runner.h -------------------------------------------------------------------------------- /tools/worker/work_processor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/tools/worker/work_processor.cc -------------------------------------------------------------------------------- /tools/worker/work_processor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/tools/worker/work_processor.h -------------------------------------------------------------------------------- /tools/worker/worker_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/tools/worker/worker_main.cc -------------------------------------------------------------------------------- /tools/worker/worker_protocol.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/tools/worker/worker_protocol.cc -------------------------------------------------------------------------------- /tools/worker/worker_protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/rules_swift/HEAD/tools/worker/worker_protocol.h --------------------------------------------------------------------------------