├── apple ├── tools │ ├── empty.c │ ├── bundling │ │ └── test_resources │ │ │ ├── the.broken_json │ │ │ ├── newer_version_action_metadata.json │ │ │ ├── newer_version_incremental_state.json │ │ │ └── valid_action_metadata.json │ ├── selective_debugging │ │ ├── test_resources │ │ │ ├── focused_targets_empty.json │ │ │ ├── focused_targets.json │ │ │ ├── HelloWorld │ │ │ ├── focused_spec_regex_all.json │ │ │ ├── focused_spec.json │ │ │ └── focused_spec_regex_none.json │ │ └── utils.py │ ├── code_signing_using_manifest │ │ ├── BUCK │ │ └── code_signing.dotslash.py │ ├── codesign_manifest_tree_postprocessor │ │ └── BUCK │ ├── signing_context_tree_postprocessor │ │ └── BUCK │ ├── code_signing │ │ ├── test_resources │ │ │ ├── test2.plist │ │ │ ├── test1.plist │ │ │ └── test3.plist │ │ └── dummy_binary_for_signing.c │ ├── re_compatibility_utils │ │ └── BUCK │ └── resource_broker │ │ ├── timeouts.py │ │ └── BUCK ├── apple_platforms.bzl ├── scene_kit_assets_types.bzl ├── apple_core_data_types.bzl ├── arch.bzl ├── apple_resource_dedupe_alias.bzl ├── user │ ├── apple_selected_debug_path_file.bzl │ ├── apple_macos_bundle.bzl │ └── apple_watchos_bundle.bzl ├── apple_swift_stdlib.bzl ├── apple_app_intents.bzl ├── apple_package_config.bzl ├── apple_sdk.bzl ├── apple_stripping.bzl ├── apple_modular_utility.bzl ├── apple_package_types.bzl ├── apple_resource_utility.bzl ├── swift │ └── swift_sdk_flags.bzl ├── apple_rules_impl.bzl └── apple_library_types.bzl ├── cxx ├── dist_lto │ └── tools │ │ ├── __init__.py │ │ └── dist_lto_copy.py ├── gcno.bzl └── platform.bzl ├── python ├── sourcedb │ └── tests │ │ └── test_files │ │ ├── my_extension.py │ │ ├── my_extension.cpp │ │ ├── my_extension.pyi │ │ ├── alias.py │ │ ├── lib.py │ │ ├── main.py │ │ └── subdir │ │ ├── util.py │ │ ├── util.pyi │ │ ├── __init__.py │ │ └── __init__.pyi ├── runtime │ └── BUCK └── tools │ ├── sourcedb_merger │ └── tests │ │ └── main.sh │ └── fail_with_message.py ├── CHANGELOG.md ├── go_bootstrap └── tools │ ├── go.mod │ ├── README.md │ └── BUCK ├── toolchains ├── android │ ├── src │ │ └── com │ │ │ └── facebook │ │ │ └── buck │ │ │ ├── jvm │ │ │ ├── java │ │ │ │ ├── plugin │ │ │ │ │ ├── javac-plugin.jar │ │ │ │ │ ├── api │ │ │ │ │ │ ├── BUCK │ │ │ │ │ │ ├── PluginClassLoaderFactory.java │ │ │ │ │ │ └── PluginClassLoader.java │ │ │ │ │ └── adapter │ │ │ │ │ │ └── BuckJavacPlugin.java │ │ │ │ ├── javax │ │ │ │ │ └── BUCK │ │ │ │ ├── abi │ │ │ │ │ └── source │ │ │ │ │ │ ├── api │ │ │ │ │ │ ├── StopCompilation.java │ │ │ │ │ │ ├── BUCK │ │ │ │ │ │ └── SourceCodeWillNotCompileException.java │ │ │ │ │ │ ├── ArtificialAnnotationValue.java │ │ │ │ │ │ ├── ArtificialQualifiedNameable.java │ │ │ │ │ │ ├── ArtificialAnnotationMirror.java │ │ │ │ │ │ ├── ArtificialPackageElement.java │ │ │ │ │ │ └── CompletedTypeKind.java │ │ │ │ ├── FileManagerListener.java │ │ │ │ ├── classes │ │ │ │ │ ├── ClasspathTraverser.java │ │ │ │ │ ├── AbstractFileLike.java │ │ │ │ │ └── DefaultClasspathTraverser.java │ │ │ │ ├── version │ │ │ │ │ └── utils │ │ │ │ │ │ └── BUCK │ │ │ │ ├── OptionsConsumer.java │ │ │ │ ├── JavacVersion.java │ │ │ │ └── stepsbuilder │ │ │ │ │ └── javacd │ │ │ │ │ └── worker │ │ │ │ │ └── BUCK │ │ │ ├── kotlin │ │ │ │ ├── plugin │ │ │ │ │ ├── dep-tracker.jar │ │ │ │ │ └── BUCK │ │ │ │ ├── compilerplugins │ │ │ │ │ ├── kosabi │ │ │ │ │ │ ├── k2-jvm-abi-gen │ │ │ │ │ │ │ └── resources │ │ │ │ │ │ │ │ └── META-INF │ │ │ │ │ │ │ │ └── services │ │ │ │ │ │ │ │ ├── org.jetbrains.kotlin.compiler.plugin.CommandLineProcessor │ │ │ │ │ │ │ │ └── org.jetbrains.kotlin.compiler.plugin.CompilerPluginRegistrar │ │ │ │ │ │ ├── stubsgen │ │ │ │ │ │ │ ├── plugin │ │ │ │ │ │ │ │ ├── stubsgen │ │ │ │ │ │ │ │ │ └── resources │ │ │ │ │ │ │ │ │ │ └── META-INF │ │ │ │ │ │ │ │ │ │ └── services │ │ │ │ │ │ │ │ │ │ ├── org.jetbrains.kotlin.compiler.plugin.ComponentRegistrar │ │ │ │ │ │ │ │ │ │ └── org.jetbrains.kotlin.compiler.plugin.CommandLineProcessor │ │ │ │ │ │ │ │ ├── stubsgen_k2 │ │ │ │ │ │ │ │ │ └── resources │ │ │ │ │ │ │ │ │ │ └── META-INF │ │ │ │ │ │ │ │ │ │ └── services │ │ │ │ │ │ │ │ │ │ ├── org.jetbrains.kotlin.compiler.plugin.CommandLineProcessor │ │ │ │ │ │ │ │ │ │ └── org.jetbrains.kotlin.compiler.plugin.CompilerPluginRegistrar │ │ │ │ │ │ │ │ └── source_modifier │ │ │ │ │ │ │ │ │ └── resources │ │ │ │ │ │ │ │ │ └── META-INF │ │ │ │ │ │ │ │ │ └── services │ │ │ │ │ │ │ │ │ ├── org.jetbrains.kotlin.compiler.plugin.ComponentRegistrar │ │ │ │ │ │ │ │ │ └── org.jetbrains.kotlin.compiler.plugin.CommandLineProcessor │ │ │ │ │ │ │ ├── standalone │ │ │ │ │ │ │ │ └── KosabiConfig.kt │ │ │ │ │ │ │ └── util │ │ │ │ │ │ │ │ └── FTQCollection.kt │ │ │ │ │ │ └── common │ │ │ │ │ │ │ ├── BUCK │ │ │ │ │ │ │ └── stub │ │ │ │ │ │ │ ├── model │ │ │ │ │ │ │ ├── Type.kt │ │ │ │ │ │ │ └── KPropertyStub.kt │ │ │ │ │ │ │ └── BUCK │ │ │ │ │ ├── usedclasses │ │ │ │ │ │ └── BUCK │ │ │ │ │ └── common │ │ │ │ │ │ └── BUCK │ │ │ │ ├── abtesting │ │ │ │ │ ├── noop │ │ │ │ │ │ ├── resources │ │ │ │ │ │ │ └── META-INF │ │ │ │ │ │ │ │ └── services │ │ │ │ │ │ │ │ └── com.facebook.buck.jvm.kotlin.abtesting.ExperimentConfigService │ │ │ │ │ │ ├── BUCK │ │ │ │ │ │ └── NoopExperimentConfigService.kt │ │ │ │ │ ├── ksic │ │ │ │ │ │ ├── BUCK │ │ │ │ │ │ └── KsicExperimentConstants.kt │ │ │ │ │ ├── BUCK │ │ │ │ │ └── ExperimentConfig.kt │ │ │ │ ├── cd │ │ │ │ │ └── analytics │ │ │ │ │ │ ├── logger │ │ │ │ │ │ ├── noop │ │ │ │ │ │ │ ├── resources │ │ │ │ │ │ │ │ └── META-INF │ │ │ │ │ │ │ │ │ └── services │ │ │ │ │ │ │ │ │ └── com.facebook.buck.jvm.kotlin.cd.analytics.logger.KotlinCDLogger │ │ │ │ │ │ │ └── BUCK │ │ │ │ │ │ └── model │ │ │ │ │ │ │ └── BUCK │ │ │ │ │ │ └── BUCK │ │ │ │ ├── ksp │ │ │ │ │ └── incremental │ │ │ │ │ │ ├── ReprocessReason.kt │ │ │ │ │ │ └── BUCK │ │ │ │ ├── kotlinc │ │ │ │ │ └── incremental │ │ │ │ │ │ └── BUCK │ │ │ │ └── buildtools │ │ │ │ │ └── SharedApiClassesClassLoaderProvider.kt │ │ │ └── cd │ │ │ │ ├── CompileStepsBuilder.java │ │ │ │ ├── BuildCommandStepsBuilder.java │ │ │ │ ├── serialization │ │ │ │ ├── SerializationUtil.java │ │ │ │ └── PathSerializer.java │ │ │ │ └── CompileStepsBuilderFactory.java │ │ │ ├── testrunner │ │ │ └── META-INF │ │ │ │ └── services │ │ │ │ └── org.junit.jupiter.api.extension.Extension │ │ │ ├── util │ │ │ ├── zip │ │ │ │ ├── CustomZipEntryWithPath.kt │ │ │ │ ├── ZipCompressionLevel.java │ │ │ │ ├── collect │ │ │ │ │ └── OnDuplicateEntry.java │ │ │ │ └── BestCompressionGZIPOutputStream.java │ │ │ ├── io │ │ │ │ └── BUCK │ │ │ ├── function │ │ │ │ └── BUCK │ │ │ ├── liteinfersupport │ │ │ │ ├── PropagatesNullable.java │ │ │ │ └── Nullable.java │ │ │ ├── unit │ │ │ │ └── BUCK │ │ │ ├── xml │ │ │ │ └── BUCK │ │ │ ├── relativepathmap │ │ │ │ └── BUCK │ │ │ ├── perf │ │ │ │ └── BUCK │ │ │ └── nio │ │ │ │ └── BUCK │ │ │ ├── android │ │ │ ├── device │ │ │ │ └── BUCK │ │ │ ├── zipalign │ │ │ │ └── BUCK │ │ │ ├── apk │ │ │ │ └── sdk │ │ │ │ │ └── BUCK │ │ │ ├── proguard │ │ │ │ └── BUCK │ │ │ ├── apkmodule │ │ │ │ ├── HasBuildTargetAndBuildDeps.java │ │ │ │ └── TargetGraphInterface.java │ │ │ └── AndroidInstallPrinter.java │ │ │ ├── io │ │ │ ├── windowsfs │ │ │ │ └── BUCK │ │ │ ├── pathformat │ │ │ │ └── BUCK │ │ │ ├── filesystem │ │ │ │ ├── BUCK │ │ │ │ └── impl │ │ │ │ │ └── BUCK │ │ │ └── file │ │ │ │ └── PathMatcher.java │ │ │ ├── installer │ │ │ ├── common │ │ │ │ └── BUCK │ │ │ ├── BUCK │ │ │ └── proto │ │ │ │ └── BUCK │ │ │ ├── core │ │ │ ├── util │ │ │ │ └── log │ │ │ │ │ ├── BUCK │ │ │ │ │ └── appendablelogrecord │ │ │ │ │ └── BUCK │ │ │ ├── filesystems │ │ │ │ ├── BUCK │ │ │ │ └── AbsPathImpl.java │ │ │ └── build │ │ │ │ └── execution │ │ │ │ └── context │ │ │ │ └── BUCK │ │ │ ├── step │ │ │ └── BUCK │ │ │ ├── workertool │ │ │ └── resources │ │ │ │ └── proto │ │ │ │ └── BUCK │ │ │ └── test │ │ │ ├── selectors │ │ │ ├── Nullable.java │ │ │ ├── TestSelectorParseException.java │ │ │ └── BUCK │ │ │ └── result │ │ │ └── type │ │ │ └── BUCK │ ├── test │ │ └── com │ │ │ └── facebook │ │ │ └── buck │ │ │ ├── util │ │ │ ├── zip │ │ │ │ ├── collect │ │ │ │ │ ├── testdata │ │ │ │ │ │ └── zip-collector │ │ │ │ │ │ │ ├── tree.txt │ │ │ │ │ │ │ ├── zip-1.zip │ │ │ │ │ │ │ └── zip-2.zip │ │ │ │ │ └── BUCK │ │ │ │ ├── aligned.4.zip │ │ │ │ ├── aligned.page.zip │ │ │ │ ├── sample-bytes.dat │ │ │ │ └── aligned.4.no_extra.zip │ │ │ ├── unarchive │ │ │ │ └── testdata │ │ │ │ │ ├── output.tar │ │ │ │ │ ├── output.tar.bz2 │ │ │ │ │ ├── output.tar.gz │ │ │ │ │ └── output.tar.xz │ │ │ ├── xml │ │ │ │ └── testdata │ │ │ │ │ └── sample.xml │ │ │ ├── json │ │ │ │ └── BUCK │ │ │ ├── unit │ │ │ │ └── BUCK │ │ │ ├── nio │ │ │ │ └── BUCK │ │ │ └── environment │ │ │ │ └── BUCK │ │ │ ├── android │ │ │ ├── aapt │ │ │ │ └── testdata │ │ │ │ │ └── android_project │ │ │ │ │ ├── sample_res │ │ │ │ │ ├── drawable │ │ │ │ │ │ └── icon.png │ │ │ │ │ ├── drawable-ldpi │ │ │ │ │ │ └── nine_patch.9.png │ │ │ │ │ └── transition-v19 │ │ │ │ │ │ └── some_transition.xml │ │ │ │ │ ├── sample_resources_invalid_item.xml │ │ │ │ │ ├── sample_resources_missing_name_attr.xml │ │ │ │ │ ├── sample_resources_invalid_resource_type.xml │ │ │ │ │ ├── sample_resources_4.xml │ │ │ │ │ ├── sample_resources_3.xml │ │ │ │ │ ├── sample_resources_invalid_node_id.xml │ │ │ │ │ ├── sample_resources_invalid_definition.xml │ │ │ │ │ ├── sample_resources_android_drawables.xml │ │ │ │ │ ├── sample_resources_invalid_reference.xml │ │ │ │ │ ├── sample_resources_custom_drawables.xml │ │ │ │ │ └── sample_resources_1.xml │ │ │ ├── resources │ │ │ │ ├── testdata │ │ │ │ │ └── aapt_dump │ │ │ │ │ │ ├── example.apk │ │ │ │ │ │ ├── row_with_button.xml │ │ │ │ │ │ └── example.apk.strings │ │ │ │ ├── strings │ │ │ │ │ └── BUCK │ │ │ │ └── filter │ │ │ │ │ └── BUCK │ │ │ ├── dex │ │ │ │ └── BUCK │ │ │ ├── apkmodule │ │ │ │ └── BUCK │ │ │ ├── manifest │ │ │ │ └── BUCK │ │ │ ├── proguard │ │ │ │ └── BUCK │ │ │ └── build_config │ │ │ │ └── BUCK │ │ │ ├── jvm │ │ │ ├── java │ │ │ │ ├── testdata │ │ │ │ │ └── prebuilt │ │ │ │ │ │ ├── tiny.jar │ │ │ │ │ │ ├── junit.jar │ │ │ │ │ │ └── PrebuiltJunitMain.java │ │ │ │ ├── abi │ │ │ │ │ ├── testdata │ │ │ │ │ │ ├── sample │ │ │ │ │ │ │ ├── junit.jar │ │ │ │ │ │ │ ├── unity.jar │ │ │ │ │ │ │ └── android.jar │ │ │ │ │ │ └── descriptor_and_signature_factories │ │ │ │ │ │ │ ├── DependencyInterface.java │ │ │ │ │ │ │ ├── DependencyException.java │ │ │ │ │ │ │ └── Dependency.java │ │ │ │ │ └── source │ │ │ │ │ │ └── AnnotationWithSingleClassForTreeBackedTest.java │ │ │ │ ├── plugin │ │ │ │ │ └── adapter │ │ │ │ │ │ └── TestTaskListener.java │ │ │ │ └── runner │ │ │ │ │ └── BUCK │ │ │ ├── cd │ │ │ │ └── BUCK │ │ │ └── kotlin │ │ │ │ └── compilerplugins │ │ │ │ └── usedclasses │ │ │ │ └── BUCK │ │ │ ├── ddplist │ │ │ ├── BUCK │ │ │ └── test-files │ │ │ │ └── test1.plist │ │ │ ├── core │ │ │ └── util │ │ │ │ └── graph │ │ │ │ └── BUCK │ │ │ ├── io │ │ │ └── pathformat │ │ │ │ └── BUCK │ │ │ ├── zip │ │ │ └── BUCK │ │ │ ├── testresultsoutput │ │ │ └── BUCK │ │ │ └── cli │ │ │ └── bootstrapper │ │ │ └── BUCK │ ├── BUCK │ ├── third-party │ │ └── aosp │ │ │ ├── METADATA.bzl │ │ │ ├── tools-targetApi.patch │ │ │ └── SignedJarBuilder.patch │ ├── android │ │ └── com │ │ │ └── facebook │ │ │ └── buck │ │ │ └── android │ │ │ └── support │ │ │ └── exopackage │ │ │ └── BUCK │ ├── tools │ │ └── build_rules │ │ │ └── fb_native.bzl │ └── meta_only │ │ └── src │ │ └── com │ │ └── facebook │ │ └── buck │ │ └── jvm │ │ └── kotlin │ │ └── abtesting │ │ └── BUCK ├── apple │ └── xcode_version_checker │ │ ├── .gitignore │ │ ├── xcode_version_checker │ │ ├── BUCK │ │ ├── README │ │ └── test │ │ └── Xcode_14.2.0_14C18_fb_version.plist ├── cxx │ └── clang │ │ └── BUCK ├── msvc │ └── BUCK ├── execution_host.bzl ├── no_toolchain.bzl └── genrule.bzl ├── .gitignore ├── haskell ├── ide │ ├── hie.yaml │ └── README.md ├── tools │ └── BUCK └── haskell_ide.bzl ├── ide_integrations ├── visual_studio │ ├── assets │ │ ├── demo.png │ │ └── how-it-works.png │ ├── msvs │ │ └── absolutize_path.exe │ └── BUCK ├── xcode │ └── scheme_settings.bzl └── apple │ └── build_index │ └── BUCK ├── third-party ├── hmaptool │ ├── METADATA.bzl │ ├── BUCK │ └── README.md └── tools │ └── BUCK ├── go ├── tags │ └── constraints │ │ └── BUCK └── tools │ ├── gopackagesdriver │ ├── BUCK │ ├── driver │ │ └── BUCK │ └── main.go │ ├── BUCK │ └── gobuckify │ └── BUCK ├── erlang ├── applications │ └── BUCK ├── common_test │ ├── common │ │ ├── include │ │ │ └── artifact_annotations.hrl │ │ └── BUCK │ ├── test_exec │ │ └── src │ │ │ └── test_exec.app.src │ └── test_binary │ │ └── BUCK ├── toolchain │ ├── erlc_trampoline.sh │ ├── escript_trampoline.sh │ └── dependency_utils.erl ├── shell │ └── BUCK └── erlang_ls.config ├── zip_file ├── tools │ └── BUCK └── zip_file_toolchain.bzl ├── rust ├── custom-targets │ ├── BUCK │ └── targets │ │ ├── riscv64imacf-unknown-none-elf.json │ │ └── riscv64imacfv-unknown-none-elf.json ├── rust_common.bzl ├── with_workspace.bzl └── tools │ ├── cd_run.py │ └── redirect_stdout.py ├── runtime ├── BUCK └── constraints │ └── BUCK ├── git └── tools │ └── BUCK ├── http_archive └── tools │ └── BUCK ├── julia ├── tools │ └── BUCK └── julia_toolchain.bzl ├── test └── tools │ └── BUCK ├── js └── worker_runner │ └── BUCK ├── pull_request_template.md ├── kotlin ├── tools │ ├── compile_kotlin │ │ └── BUCK │ └── kapt_base64_encoder │ │ └── BUCK └── kotlin_utils.bzl ├── is_buck2_internal.bzl ├── aosp └── aosp_providers.bzl ├── windows └── tools │ ├── BUCK │ └── msvc_hermetic_exec.bat ├── attributes.bzl ├── matlab ├── matlab_info.bzl ├── matlab_toolchain.bzl └── matlab.bzl ├── csharp └── toolchain.bzl ├── lua ├── lua_binary.bzl ├── lua_library.bzl └── cxx_lua_extension.bzl ├── is_buck2.bzl ├── is_full_meta_repo.bzl ├── playground └── test.bxl ├── android ├── tools │ └── com │ │ └── facebook │ │ └── buck_generated │ │ └── AppWithoutResourcesStub.java ├── build_only_native_code.bzl └── min_sdk_version.bzl ├── cache_mode.bzl ├── genrule_toolchain.bzl ├── utils ├── label_provider.bzl ├── actions.bzl ├── strings.bzl ├── source_listing.bzl └── arglike.bzl ├── abi ├── BUCK └── constraints │ └── BUCK ├── decls └── test_common.bzl ├── README.md ├── linking └── types.bzl ├── java ├── dex_toolchain.bzl └── utils │ └── java_more_utils.bzl ├── user └── rule_spec.bzl ├── tools └── audit_providers_universe.bxl └── platforms └── apple └── sdk.bzl /apple/tools/empty.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cxx/dist_lto/tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sourcedb/tests/test_files/my_extension.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sourcedb/tests/test_files/my_extension.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sourcedb/tests/test_files/my_extension.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Buck2 Prelude 2 | 3 | - Initial version. 4 | -------------------------------------------------------------------------------- /go_bootstrap/tools/go.mod: -------------------------------------------------------------------------------- 1 | module tools 2 | 3 | go 1.22.5 4 | -------------------------------------------------------------------------------- /apple/tools/bundling/test_resources/the.broken_json: -------------------------------------------------------------------------------- 1 | { 2 | "version": -------------------------------------------------------------------------------- /toolchains/android/src/com/facebook/buck/jvm/java/plugin/javac-plugin.jar: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Top-level files and directories used by buck. 2 | /buck-out 3 | /.lsp-buck-out 4 | -------------------------------------------------------------------------------- /toolchains/android/test/com/facebook/buck/util/zip/collect/testdata/zip-collector/tree.txt: -------------------------------------------------------------------------------- 1 | file 2 | -------------------------------------------------------------------------------- /toolchains/android/test/com/facebook/buck/android/aapt/testdata/android_project/sample_res/drawable/icon.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apple/tools/selective_debugging/test_resources/focused_targets_empty.json: -------------------------------------------------------------------------------- 1 | { 2 | "targets": [ 3 | ] 4 | } -------------------------------------------------------------------------------- /toolchains/android/test/com/facebook/buck/android/aapt/testdata/android_project/sample_res/drawable-ldpi/nine_patch.9.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /toolchains/android/test/com/facebook/buck/android/aapt/testdata/android_project/sample_res/transition-v19/some_transition.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /toolchains/android/BUCK: -------------------------------------------------------------------------------- 1 | load("@prelude//utils:source_listing.bzl", "source_listing") 2 | 3 | oncall("android_devxx") 4 | 5 | source_listing() 6 | -------------------------------------------------------------------------------- /apple/tools/bundling/test_resources/newer_version_action_metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": 2, 3 | "data": { 4 | "something": [] 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /apple/tools/bundling/test_resources/newer_version_incremental_state.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": 7, 3 | "data": { 4 | "something": [] 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /haskell/ide/hie.yaml: -------------------------------------------------------------------------------- 1 | cradle: 2 | bios: 3 | shell: buck2 bxl prelude//haskell/ide/ide.bxl --bios true --file $HIE_BIOS_ARG > $HIE_BIOS_OUTPUT 4 | -------------------------------------------------------------------------------- /ide_integrations/visual_studio/assets/demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/buck2-prelude/HEAD/ide_integrations/visual_studio/assets/demo.png -------------------------------------------------------------------------------- /toolchains/android/src/com/facebook/buck/testrunner/META-INF/services/org.junit.jupiter.api.extension.Extension: -------------------------------------------------------------------------------- 1 | com.facebook.buck.testrunner.SkipTestCondition 2 | -------------------------------------------------------------------------------- /toolchains/apple/xcode_version_checker/.gitignore: -------------------------------------------------------------------------------- 1 | xcode_version_checker.arm64 2 | xcode_version_checker.x86_64 3 | xcode_version_tester 4 | xcode_exec_tester 5 | -------------------------------------------------------------------------------- /apple/tools/selective_debugging/test_resources/focused_targets.json: -------------------------------------------------------------------------------- 1 | { 2 | "targets": [ 3 | "//fbobjc/buck2/samples/focused_debugging:Foo" 4 | ] 5 | } -------------------------------------------------------------------------------- /ide_integrations/visual_studio/assets/how-it-works.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/buck2-prelude/HEAD/ide_integrations/visual_studio/assets/how-it-works.png -------------------------------------------------------------------------------- /ide_integrations/visual_studio/msvs/absolutize_path.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/buck2-prelude/HEAD/ide_integrations/visual_studio/msvs/absolutize_path.exe -------------------------------------------------------------------------------- /apple/tools/selective_debugging/test_resources/HelloWorld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/buck2-prelude/HEAD/apple/tools/selective_debugging/test_resources/HelloWorld -------------------------------------------------------------------------------- /toolchains/apple/xcode_version_checker/xcode_version_checker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/buck2-prelude/HEAD/toolchains/apple/xcode_version_checker/xcode_version_checker -------------------------------------------------------------------------------- /third-party/hmaptool/METADATA.bzl: -------------------------------------------------------------------------------- 1 | METADATA = { 2 | "maintainers": [ 3 | "build_infra", 4 | ], 5 | "name": "hmaptool", 6 | "owner": "build_infra", 7 | } 8 | -------------------------------------------------------------------------------- /toolchains/android/test/com/facebook/buck/util/zip/aligned.4.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/buck2-prelude/HEAD/toolchains/android/test/com/facebook/buck/util/zip/aligned.4.zip -------------------------------------------------------------------------------- /toolchains/android/test/com/facebook/buck/util/zip/aligned.page.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/buck2-prelude/HEAD/toolchains/android/test/com/facebook/buck/util/zip/aligned.page.zip -------------------------------------------------------------------------------- /toolchains/android/test/com/facebook/buck/util/zip/sample-bytes.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/buck2-prelude/HEAD/toolchains/android/test/com/facebook/buck/util/zip/sample-bytes.dat -------------------------------------------------------------------------------- /toolchains/android/third-party/aosp/METADATA.bzl: -------------------------------------------------------------------------------- 1 | METADATA = { 2 | "maintainers": [ 3 | "build_infra", 4 | ], 5 | "name": "aosp", 6 | "owner": "build_infra", 7 | } 8 | -------------------------------------------------------------------------------- /toolchains/android/src/com/facebook/buck/jvm/kotlin/plugin/dep-tracker.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/buck2-prelude/HEAD/toolchains/android/src/com/facebook/buck/jvm/kotlin/plugin/dep-tracker.jar -------------------------------------------------------------------------------- /toolchains/android/test/com/facebook/buck/util/zip/aligned.4.no_extra.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/buck2-prelude/HEAD/toolchains/android/test/com/facebook/buck/util/zip/aligned.4.no_extra.zip -------------------------------------------------------------------------------- /toolchains/android/test/com/facebook/buck/jvm/java/testdata/prebuilt/tiny.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/buck2-prelude/HEAD/toolchains/android/test/com/facebook/buck/jvm/java/testdata/prebuilt/tiny.jar -------------------------------------------------------------------------------- /toolchains/android/test/com/facebook/buck/util/unarchive/testdata/output.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/buck2-prelude/HEAD/toolchains/android/test/com/facebook/buck/util/unarchive/testdata/output.tar -------------------------------------------------------------------------------- /toolchains/android/test/com/facebook/buck/jvm/java/abi/testdata/sample/junit.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/buck2-prelude/HEAD/toolchains/android/test/com/facebook/buck/jvm/java/abi/testdata/sample/junit.jar -------------------------------------------------------------------------------- /toolchains/android/test/com/facebook/buck/jvm/java/abi/testdata/sample/unity.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/buck2-prelude/HEAD/toolchains/android/test/com/facebook/buck/jvm/java/abi/testdata/sample/unity.jar -------------------------------------------------------------------------------- /toolchains/android/test/com/facebook/buck/jvm/java/testdata/prebuilt/junit.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/buck2-prelude/HEAD/toolchains/android/test/com/facebook/buck/jvm/java/testdata/prebuilt/junit.jar -------------------------------------------------------------------------------- /toolchains/android/test/com/facebook/buck/util/unarchive/testdata/output.tar.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/buck2-prelude/HEAD/toolchains/android/test/com/facebook/buck/util/unarchive/testdata/output.tar.bz2 -------------------------------------------------------------------------------- /toolchains/android/test/com/facebook/buck/util/unarchive/testdata/output.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/buck2-prelude/HEAD/toolchains/android/test/com/facebook/buck/util/unarchive/testdata/output.tar.gz -------------------------------------------------------------------------------- /toolchains/android/test/com/facebook/buck/util/unarchive/testdata/output.tar.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/buck2-prelude/HEAD/toolchains/android/test/com/facebook/buck/util/unarchive/testdata/output.tar.xz -------------------------------------------------------------------------------- /toolchains/android/src/com/facebook/buck/jvm/kotlin/compilerplugins/kosabi/k2-jvm-abi-gen/resources/META-INF/services/org.jetbrains.kotlin.compiler.plugin.CommandLineProcessor: -------------------------------------------------------------------------------- 1 | com.facebook.K2JvmAbiCommandLineProcessor 2 | -------------------------------------------------------------------------------- /toolchains/android/src/com/facebook/buck/jvm/kotlin/compilerplugins/kosabi/k2-jvm-abi-gen/resources/META-INF/services/org.jetbrains.kotlin.compiler.plugin.CompilerPluginRegistrar: -------------------------------------------------------------------------------- 1 | com.facebook.K2JvmAbiComponentRegistrar 2 | -------------------------------------------------------------------------------- /toolchains/android/test/com/facebook/buck/jvm/java/abi/testdata/sample/android.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/buck2-prelude/HEAD/toolchains/android/test/com/facebook/buck/jvm/java/abi/testdata/sample/android.jar -------------------------------------------------------------------------------- /go/tags/constraints/BUCK: -------------------------------------------------------------------------------- 1 | load("@prelude//utils:source_listing.bzl", "source_listing") 2 | load(":defs.bzl", "generate_tag_constraints") 3 | 4 | oncall("build_infra") 5 | 6 | source_listing() 7 | 8 | generate_tag_constraints() 9 | -------------------------------------------------------------------------------- /toolchains/android/src/com/facebook/buck/jvm/kotlin/abtesting/noop/resources/META-INF/services/com.facebook.buck.jvm.kotlin.abtesting.ExperimentConfigService: -------------------------------------------------------------------------------- 1 | com.facebook.buck.jvm.kotlin.abtesting.noop.NoopExperimentConfigService 2 | -------------------------------------------------------------------------------- /toolchains/android/test/com/facebook/buck/android/aapt/testdata/android_project/sample_resources_invalid_item.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 100 4 | 5 | -------------------------------------------------------------------------------- /toolchains/android/test/com/facebook/buck/android/resources/testdata/aapt_dump/example.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/buck2-prelude/HEAD/toolchains/android/test/com/facebook/buck/android/resources/testdata/aapt_dump/example.apk -------------------------------------------------------------------------------- /toolchains/android/test/com/facebook/buck/android/aapt/testdata/android_project/sample_resources_missing_name_attr.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Howdy! 4 | 5 | -------------------------------------------------------------------------------- /toolchains/android/test/com/facebook/buck/util/zip/collect/testdata/zip-collector/zip-1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/buck2-prelude/HEAD/toolchains/android/test/com/facebook/buck/util/zip/collect/testdata/zip-collector/zip-1.zip -------------------------------------------------------------------------------- /toolchains/android/test/com/facebook/buck/util/zip/collect/testdata/zip-collector/zip-2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/buck2-prelude/HEAD/toolchains/android/test/com/facebook/buck/util/zip/collect/testdata/zip-collector/zip-2.zip -------------------------------------------------------------------------------- /toolchains/android/src/com/facebook/buck/jvm/kotlin/cd/analytics/logger/noop/resources/META-INF/services/com.facebook.buck.jvm.kotlin.cd.analytics.logger.KotlinCDLogger: -------------------------------------------------------------------------------- 1 | com.facebook.buck.jvm.kotlin.cd.analytics.logger.noop.KotlinCDNoopLogger 2 | -------------------------------------------------------------------------------- /toolchains/android/test/com/facebook/buck/android/aapt/testdata/android_project/sample_resources_invalid_resource_type.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 100 4 | 5 | -------------------------------------------------------------------------------- /erlang/applications/BUCK: -------------------------------------------------------------------------------- 1 | load("@prelude//erlang:erlang_otp_application.bzl", "gen_otp_applications") 2 | load("@prelude//utils:source_listing.bzl", "source_listing") 3 | 4 | oncall("build_infra") 5 | 6 | source_listing() 7 | 8 | gen_otp_applications() 9 | -------------------------------------------------------------------------------- /toolchains/android/test/com/facebook/buck/android/resources/testdata/aapt_dump/row_with_button.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/buck2-prelude/HEAD/toolchains/android/test/com/facebook/buck/android/resources/testdata/aapt_dump/row_with_button.xml -------------------------------------------------------------------------------- /zip_file/tools/BUCK: -------------------------------------------------------------------------------- 1 | load("@prelude//utils:source_listing.bzl", "source_listing") 2 | 3 | oncall("build_infra") 4 | 5 | source_listing() 6 | 7 | python_bootstrap_binary( 8 | name = "unzip", 9 | main = "unzip.py", 10 | visibility = ["PUBLIC"], 11 | ) 12 | -------------------------------------------------------------------------------- /rust/custom-targets/BUCK: -------------------------------------------------------------------------------- 1 | load("@prelude//utils:source_listing.bzl", "source_listing") 2 | 3 | oncall("build_infra") 4 | 5 | source_listing() 6 | 7 | prelude = native 8 | 9 | prelude.export_file( 10 | name = "targets", 11 | visibility = ["PUBLIC"], 12 | ) 13 | -------------------------------------------------------------------------------- /toolchains/android/src/com/facebook/buck/jvm/kotlin/compilerplugins/kosabi/stubsgen/plugin/stubsgen/resources/META-INF/services/org.jetbrains.kotlin.compiler.plugin.ComponentRegistrar: -------------------------------------------------------------------------------- 1 | com.facebook.kotlin.compilerplugins.kosabi.stubsgen.plugin.stubsgen.StubsCodegenComponentRegistrar 2 | -------------------------------------------------------------------------------- /python/runtime/BUCK: -------------------------------------------------------------------------------- 1 | load("@prelude//utils:source_listing.bzl", "source_listing") 2 | 3 | oncall("plf_experience") 4 | 5 | source_listing() 6 | 7 | filegroup( 8 | name = "bootstrap_files", 9 | srcs = glob(["__par__/**/*.py"]), 10 | visibility = ["PUBLIC"], 11 | ) 12 | -------------------------------------------------------------------------------- /toolchains/android/src/com/facebook/buck/jvm/kotlin/compilerplugins/kosabi/stubsgen/plugin/stubsgen/resources/META-INF/services/org.jetbrains.kotlin.compiler.plugin.CommandLineProcessor: -------------------------------------------------------------------------------- 1 | com.facebook.kotlin.compilerplugins.kosabi.stubsgen.plugin.stubsgen.StubsCodegenCommandLineProcessor 2 | -------------------------------------------------------------------------------- /toolchains/android/test/com/facebook/buck/android/aapt/testdata/android_project/sample_resources_4.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Hello, %s! 4 | -------------------------------------------------------------------------------- /toolchains/android/src/com/facebook/buck/jvm/kotlin/compilerplugins/kosabi/stubsgen/plugin/stubsgen_k2/resources/META-INF/services/org.jetbrains.kotlin.compiler.plugin.CommandLineProcessor: -------------------------------------------------------------------------------- 1 | com.facebook.kotlin.compilerplugins.kosabi.stubsgen.plugin.stubsgen_k2.StubsCodegenCommandLineProcessor 2 | -------------------------------------------------------------------------------- /toolchains/android/test/com/facebook/buck/android/aapt/testdata/android_project/sample_resources_3.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Hello, %s! 4 | 5 | -------------------------------------------------------------------------------- /toolchains/android/test/com/facebook/buck/android/aapt/testdata/android_project/sample_resources_invalid_node_id.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 |