diff third_party/cef/cef_repository.bzl @ 282:6bd4a3990696 default tip

Add cross-platform canvas orchestration and typed composer Enable native ARM dependencies, macOS Copilot orchestration, portable service supervision, CPU dictation, and a shared N-key speak-or-type composer. Co-authored-by: Copilot <[email protected]> Copilot-Session: f68442b1-fa8f-46a0-9689-81710613bbd4
author MrJuneJune <me@mrjunejune.com>
date Thu, 20 Aug 2026 20:45:25 -0700
parents b55c22cff335
children
line wrap: on
line diff
--- a/third_party/cef/cef_repository.bzl	Tue Aug 18 22:18:15 2026 -0700
+++ b/third_party/cef/cef_repository.bzl	Thu Aug 20 20:45:25 2026 -0700
@@ -3,8 +3,12 @@
     arch = repository_ctx.os.arch.lower()
 
     if "windows" in os_name:
-        platform = "windows64"
-        sha256 = "47b08dfc9587e3c96fc2e51c1f15c07c85d2f28002eaf3c478941a0949be4da2"
+        if arch in ["aarch64", "arm64"]:
+            platform = "windowsarm64"
+            sha256 = "2bac35bcbaa555bcd99ef1a3bf4baf71e7c50e379a281e21e2fc39f41c6008b4"
+        else:
+            platform = "windows64"
+            sha256 = "47b08dfc9587e3c96fc2e51c1f15c07c85d2f28002eaf3c478941a0949be4da2"
     elif "mac" in os_name:
         if arch in ["aarch64", "arm64"]:
             platform = "macosarm64"