Files
gstack/ios-qa/templates/Package.swift.template
T
Garry TanandClaude Fable 5 33a55562f7 fix(ios-qa): compile the private-API touch bridge out of Release builds
PR #2264 claimed DebugBridgeTouch.m (KIF-derived in-process touch synthesis
using private UIKit/IOKit symbols: _touchesEvent, IOHIDEventCreateDigitizer*,
_AXSSetAutomationEnabled) was "compiled out in Release," but the body was gated
only by TARGET_OS_IOS, so a Release iOS build carried the private symbols (App
Store rejection risk). The safety half of the fix (closed PR #2269) never
landed. Gate the body on `#if TARGET_OS_IOS && DEBUG` and add the cSettings
DEBUG define to the DebugBridgeTouch target so `#if DEBUG` is true in debug and
false in release (mirrors the Core/UI swiftSettings). A free static tripwire
pins both halves; the nm/strings symbol proof needs an iOS-SDK build and belongs
in the device/periodic tier.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-08-16 10:14:33 -07:00

70 lines
2.8 KiB
Plaintext

// swift-tools-version:5.9
// AUTO-GENERATED from gstack/ios-qa/templates/Package.swift.template
//
// Drop-in SPM package definition for the DebugBridge stack. Three targets:
//
// - DebugBridgeCore Swift, cross-platform (Foundation + Network).
// Hosts the StateServer + bridge protocols.
// - DebugBridgeTouch Objective-C, iOS-only. KIF-derived in-process touch
// synthesis (UITouch + IOHIDEvent + iOS 18
// _UIHitTestContext for SwiftUI Buttons).
// - DebugBridgeUI Swift, iOS-only. ScreenshotBridge, ElementsBridge,
// MutationBridge implementations. Depends on the other
// two.
//
// The structural Release-build guard is the `.when(configuration: .debug)`
// conditional on every consuming target's dependency. SwiftPM refuses to link
// DebugBridge* in Release config.
//
// CI invariant: `swift build -c release` + `nm -j build/Release/<binary>
// | grep -q DebugBridge && exit 1`.
import PackageDescription
let package = Package(
name: "DebugBridge",
platforms: [.iOS(.v16), .macOS(.v13)],
products: [
.library(name: "DebugBridgeCore", targets: ["DebugBridgeCore"]),
.library(name: "DebugBridgeUI", targets: ["DebugBridgeUI"]),
.library(name: "DebugBridgeTouch", targets: ["DebugBridgeTouch"]),
],
targets: [
.target(
name: "DebugBridgeCore",
dependencies: [],
path: "Sources/DebugBridgeCore",
swiftSettings: [
.define("DEBUG", .when(configuration: .debug)),
]
),
.target(
name: "DebugBridgeTouch",
dependencies: [],
path: "Sources/DebugBridgeTouch",
publicHeadersPath: "include",
cSettings: [
// Defines DEBUG for the ObjC translation unit in debug config
// only, so DebugBridgeTouch.m's `#if TARGET_OS_IOS && DEBUG`
// body compiles out of Release builds. Mirrors the swiftSettings
// DEBUG define on the Core/UI targets.
.define("DEBUG", .when(configuration: .debug)),
],
linkerSettings: [
// IOKit is loaded dynamically via dlopen at runtime (it's a
// private framework on iOS and can't be linked statically).
// UIKit links normally.
.linkedFramework("UIKit", .when(platforms: [.iOS])),
]
),
.target(
name: "DebugBridgeUI",
dependencies: ["DebugBridgeCore", "DebugBridgeTouch"],
path: "Sources/DebugBridgeUI",
swiftSettings: [
.define("DEBUG", .when(configuration: .debug)),
]
),
]
)