blob: d4823d68e7163b82a38a34d21faef1c85e21f9ba [file] [log] [blame]
# Copyright 2023 The Fuchsia Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
load(
"@fuchsia_infra//infra:infra.bzl",
"fuchsia_artifact_cipd_release",
"fuchsia_builder_group",
"fuchsia_debug_symbol_cipd_release",
"fuchsia_test_group",
"fuchsia_tests",
)
fuchsia_test_group(
name = "target_tests",
product_bundle = "core.x64-dfv2",
deps = ["//third_party/iwlwifi/test:iwlwifi_test_pkg"],
)
fuchsia_tests(
name = "tests",
deps = [
":target_tests",
],
)
fuchsia_artifact_cipd_release(
name = "artifact_cipd_release",
pkg_name = "fuchsia/drivers/wlan/intel/iwlwifi/x64",
deps = [
"//third_party/iwlwifi/platform:iwlwifi_pkg",
],
)
fuchsia_debug_symbol_cipd_release(
name = "debug_symbol_cipd_release",
pkg_name = "fuchsia/drivers/wlan/intel/iwlwifi/debug-symbols-x64",
deps = [
"//third_party/iwlwifi/platform:iwlwifi_pkg",
],
)
# buildifier: leave-alone
fuchsia_builder_group(
name = "infra",
build_only = [
"//third_party/iwlwifi/platform:iwlwifi_pkg",
],
test_groups = [
":tests",
],
cipd_uploads = [
":artifact_cipd_release",
":debug_symbol_cipd_release",
],
)