From 6e8d42ce9a06978e370842bf78f1cb5af5e94bc2 Mon Sep 17 00:00:00 2001 From: Googler Date: Fri, 26 Jun 2026 02:11:15 -0700 Subject: [PATCH] Internal change PiperOrigin-RevId: 938467422 --- pixel_bridge/build_defs.bzl | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 pixel_bridge/build_defs.bzl diff --git a/pixel_bridge/build_defs.bzl b/pixel_bridge/build_defs.bzl new file mode 100644 index 0000000..14fd0b6 --- /dev/null +++ b/pixel_bridge/build_defs.bzl @@ -0,0 +1,18 @@ +"""Build definitions for pixel bridge.""" + +# Platforms where Rust decoding is unavailable. +UNSUPPORTED_PLATFORMS_RUST = ( + "//tools/cc_target_os:chromiumos", + "//tools/cc_target_os:darwin", + "//tools/cc_target_os:fuchsia", + "//tools/cc_target_os:android", + "//tools/cc_target_os:wasm", + "//tools/cc_target_os:hercules_embedded", + "//tools/cc_target_os:platform_ios", + "//tools/cc_target_os:platform_tvos", + "//tools/cc_target_os:platform_visionos", + "//tools/cc_target_os:platform_watchos", + "//tools/cc_target_os:mpu64", + "//tools/cc_target_os:nestcam_ambarella", + "//tools/cc_target_os:windows", +)