blob: c2dfa0fffb3b7300d37ae39b74a1160158b2e639 [file] [log] [blame]
Victor Hsiehe82b9fb2019-02-06 09:56:58 -08001// Copyright (C) 2019 The Android Open Source Project
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7// http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
Bob Badoure539dba2021-02-12 17:07:05 -080015package {
Ronish Kaliaf8913972024-02-14 14:30:14 +000016 default_team: "trendy_team_platform_security",
Bob Badoure539dba2021-02-12 17:07:05 -080017 // See: http://go/android-license-faq
18 // A large-scale-change added 'default_applicable_licenses' to import
19 // all of the 'license_kinds' from "frameworks_base_license"
20 // to get the below license kinds:
21 // SPDX-license-identifier-Apache-2.0
22 default_applicable_licenses: ["frameworks_base_license"],
23}
24
Victor Hsiehe82b9fb2019-02-06 09:56:58 -080025java_test_host {
Victor Hsiehc953f352023-08-15 13:01:24 -070026 name: "FsVerityTest",
Victor Hsiehe82b9fb2019-02-06 09:56:58 -080027 srcs: ["src/**/*.java"],
Victor Hsieh279bf212022-01-27 22:03:07 +000028 libs: [
29 "tradefed",
30 "compatibility-tradefed",
31 "compatibility-host-util",
32 ],
Kohsuke Yatoh45c62312021-02-04 15:17:42 -080033 static_libs: [
Victor Hsiehc953f352023-08-15 13:01:24 -070034 "android.security.flags-aconfig-java-host",
Kohsuke Yatoh45c62312021-02-04 15:17:42 -080035 "block_device_writer_jar",
36 "frameworks-base-hostutils",
Victor Hsiehc953f352023-08-15 13:01:24 -070037 "flag-junit-host",
Kohsuke Yatoh45c62312021-02-04 15:17:42 -080038 ],
Victor Hsieh279bf212022-01-27 22:03:07 +000039 test_suites: [
40 "general-tests",
41 "vts",
42 ],
Victor Hsieh3b6c7012022-06-23 09:52:54 -070043 data_device_bins_both: [
44 "block_device_writer",
Victor Hsiehe82b9fb2019-02-06 09:56:58 -080045 ],
Cole Faust5aeb9fd2024-10-22 16:30:57 -070046 device_common_data: [
Victor Hsiehc953f352023-08-15 13:01:24 -070047 ":FsVerityTestApp",
Victor Hsiehe82b9fb2019-02-06 09:56:58 -080048 ],
49}