Victor Hsieh | e82b9fb | 2019-02-06 09:56:58 -0800 | [diff] [blame] | 1 | // 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 Badour | e539dba | 2021-02-12 17:07:05 -0800 | [diff] [blame] | 15 | package { |
| 16 | // See: http://go/android-license-faq |
| 17 | // A large-scale-change added 'default_applicable_licenses' to import |
| 18 | // all of the 'license_kinds' from "frameworks_base_license" |
| 19 | // to get the below license kinds: |
| 20 | // SPDX-license-identifier-Apache-2.0 |
| 21 | default_applicable_licenses: ["frameworks_base_license"], |
| 22 | } |
| 23 | |
Victor Hsieh | e82b9fb | 2019-02-06 09:56:58 -0800 | [diff] [blame] | 24 | java_test_host { |
Victor Hsieh | c953f35 | 2023-08-15 13:01:24 -0700 | [diff] [blame] | 25 | name: "FsVerityTest", |
Victor Hsieh | e82b9fb | 2019-02-06 09:56:58 -0800 | [diff] [blame] | 26 | srcs: ["src/**/*.java"], |
Victor Hsieh | 279bf21 | 2022-01-27 22:03:07 +0000 | [diff] [blame] | 27 | libs: [ |
| 28 | "tradefed", |
| 29 | "compatibility-tradefed", |
| 30 | "compatibility-host-util", |
| 31 | ], |
Kohsuke Yatoh | 45c6231 | 2021-02-04 15:17:42 -0800 | [diff] [blame] | 32 | static_libs: [ |
Victor Hsieh | c953f35 | 2023-08-15 13:01:24 -0700 | [diff] [blame] | 33 | "android.security.flags-aconfig-java-host", |
Kohsuke Yatoh | 45c6231 | 2021-02-04 15:17:42 -0800 | [diff] [blame] | 34 | "block_device_writer_jar", |
| 35 | "frameworks-base-hostutils", |
Victor Hsieh | c953f35 | 2023-08-15 13:01:24 -0700 | [diff] [blame] | 36 | "flag-junit-host", |
Kohsuke Yatoh | 45c6231 | 2021-02-04 15:17:42 -0800 | [diff] [blame] | 37 | ], |
Victor Hsieh | 279bf21 | 2022-01-27 22:03:07 +0000 | [diff] [blame] | 38 | test_suites: [ |
| 39 | "general-tests", |
| 40 | "vts", |
| 41 | ], |
Victor Hsieh | 3b6c701 | 2022-06-23 09:52:54 -0700 | [diff] [blame] | 42 | data_device_bins_both: [ |
| 43 | "block_device_writer", |
Victor Hsieh | e82b9fb | 2019-02-06 09:56:58 -0800 | [diff] [blame] | 44 | ], |
| 45 | data: [ |
Victor Hsieh | c953f35 | 2023-08-15 13:01:24 -0700 | [diff] [blame] | 46 | ":FsVerityTestApp", |
Victor Hsieh | e82b9fb | 2019-02-06 09:56:58 -0800 | [diff] [blame] | 47 | ], |
| 48 | } |