| # Copyright 2021 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. |
| |
| import("//build/packages/prebuilt_test_manifest.gni") |
| |
| group("tests") { |
| testonly = true |
| deps = [ |
| ":abi", |
| ":api", |
| ] |
| } |
| |
| # API test target root |
| group("api") { |
| testonly = true |
| |
| deps = [ |
| # TODO(jcecil): uncomment the next line after the next CTS release. |
| # "//prebuilt/cts/canary/$host_platform/cts" |
| ] |
| } |
| |
| # Generates prebuilt test targets for the current canary CTS release. |
| prebuilt_test_manifest("abi") { |
| archive_dir = rebase_path("//prebuilt/cts/canary/$host_platform/cts") |
| } |