# Copyright 2024 The Chromium Authors
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
import("//build/config/apple/swift_source_set.gni")
source_set("src") {
sources = [
"AppDelegate.h",
"AppDelegate.mm",
"SceneDelegate.h",
"SceneDelegate.mm",
"ViewController.h",
"ViewController.mm",
"main.mm",
]
frameworks = [
"Foundation.framework",
"UIKit.framework",
]
}
swift_source_set("src_swift") {
generate_intents = true
bridge_header = "intents_bridge_header.h"
sources = [
"Bar.swift",
"Foo.swift",
]
frameworks = [
"Foundation.framework",
"Intents.framework",
]
}