# 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/ios/rules.gni")
if (current_toolchain == default_toolchain) {
group("intents") {
public_deps = [ ":intents(${default_toolchain}_16_0)" ]
}
} else {
ios_app_bundle("intents") {
info_plist = "resources/Info.plist"
deps = [
"//ios/intents/src",
"//ios/intents/src:src_swift",
]
bundle_deps = [ "//ios/intents/app/resources" ]
intents_target = "//ios/intents/src:src_swift"
output_name = "ChromiumIntents"
extra_substitutions = [ "APP_DISPLAY_NAME=$output_name" ]
}
}