diff --git a/container/BUILD b/container/BUILD index d56f022a0..c9511211f 100644 --- a/container/BUILD +++ b/container/BUILD @@ -4,6 +4,8 @@ load("@rules_pkg//pkg:mappings.bzl", "pkg_attributes", "pkg_files") load("//:jvm_flags.bzl", "server_jvm_flags", "worker_jvm_flags") load("//container:defs.bzl", "multiarch_oci_image", "oci_image_env") +package(default_visibility = ["//visibility:public"]) + # == Docker Image Creation == # When deploying buildfarm, you may want to include additional dependencies within your deployment. # These dependencies can enable features related to the observability and runtime of the system. diff --git a/third_party/BUILD.skip_sleep b/third_party/BUILD.skip_sleep index 2b6db5e30..6bf3632bd 100644 --- a/third_party/BUILD.skip_sleep +++ b/third_party/BUILD.skip_sleep @@ -2,10 +2,7 @@ package(default_visibility = ["//visibility:public"]) cc_binary( name = "skip_sleep", - srcs = select({ - "@//config:windows": ["tardis-windows.c"], - "@//conditions:default": ["tardis.c"], - }), + srcs = ["tardis.c"], target_compatible_with = [ "@platforms//cpu:x86_64", # Avoid ARM/aarch64 ], @@ -16,10 +13,7 @@ cc_binary( cc_binary( name = "skip_sleep_preload", - srcs = select({ - "@//config:windows": ["novdso-windows.c"], - "@//conditions:default": ["novdso.c"], - }), + srcs = ["novdso.c"], target_compatible_with = [ "@platforms//cpu:x86_64", # Avoid ARM/aarch64 ],