Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion go/cmd/compass-app/bridge_service_window_gtk3.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//go:build unix && gtk3
//go:build (linux && gtk3) || darwin

// The gtk3 build's binding of the bridge service's per-window frame routing
// (M3) to the real Wails window API. It is split out of bridge_service.go
Expand Down
2 changes: 1 addition & 1 deletion go/cmd/compass-app/bridge_service_window_nogtk3.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//go:build unix && !gtk3
//go:build linux && !gtk3

// The non-gtk3 build's stub for the bridge service's per-window frame routing
// (M3). The untagged module build (`go build ./...`) and the unix-tagged bridge
Expand Down
2 changes: 1 addition & 1 deletion go/cmd/compass-app/client.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//go:build unix && gtk3
//go:build (linux && gtk3) || darwin

// The native-client launch: the app dials a headless Compass stack over the
// authenticated TLS door (design §T5.6). Embedded mode — the in-process stack
Expand Down
2 changes: 1 addition & 1 deletion go/cmd/compass-app/main.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//go:build unix && gtk3
//go:build (linux && gtk3) || darwin

// Command compass-app is the Compass native desktop shell: a Wails v3
// application that opens one window loading the prebuilt SolidJS UI (apps/ui
Expand Down
2 changes: 1 addition & 1 deletion go/cmd/compass-app/main_nogtk3.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//go:build unix && !gtk3
//go:build linux && !gtk3

// The compass-app entrypoint for builds WITHOUT the gtk3 desktop stack.
//
Expand Down
2 changes: 1 addition & 1 deletion go/cmd/compass-app/window_set.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//go:build unix && gtk3
//go:build (linux && gtk3) || darwin

package main

Expand Down
Loading