blob: 71f303311047aa392e18c4b54988f5ae14fb625e [file] [log] [blame]
Colin Crossfc7ba9e2017-12-07 13:11:06 -08001//
2// Copyright (C) 2008 The Android Open Source Project
3//
4// Licensed under the Apache License, Version 2.0 (the "License");
5// you may not use this file except in compliance with the License.
6// You may obtain a copy of the License at
7//
8// http://www.apache.org/licenses/LICENSE-2.0
9//
10// Unless required by applicable law or agreed to in writing, software
11// distributed under the License is distributed on an "AS IS" BASIS,
12// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13// See the License for the specific language governing permissions and
14// limitations under the License.
15//
16
17// Build the android.test.mock library
18// ===================================
Bob Badour051ef782021-02-12 17:07:05 -080019package {
Wei Li4cf550d2024-03-07 21:27:35 -080020 default_applicable_licenses: ["Android-Apache-2.0"],
Bob Badour051ef782021-02-12 17:07:05 -080021}
22
Sundong Ahne933ced2018-07-31 16:54:41 +090023java_sdk_library {
Colin Crossfc7ba9e2017-12-07 13:11:06 -080024 name: "android.test.mock",
Anton Hansson7a4b9d92021-11-24 17:09:32 +000025 srcs: [":android-test-mock-sources"],
26 api_srcs: [
Jiyong Park00ea0b12019-10-31 20:38:47 +090027 // Note: Below are NOT APIs of this library. We only take APIs under
28 // the android.test.mock package. They however provide private APIs that
Jiyong Park9b62bc82021-09-13 21:11:05 +090029 // android.test.mock APIs references to. We need to have the classes in
30 // source code form to have access to the @hide comment which disappears
31 // when the classes are compiled into a Jar library.
Jiyong Park00ea0b12019-10-31 20:38:47 +090032 ":framework-core-sources-for-test-mock",
33 ":framework_native_aidl",
34 ],
atrost1a945502019-11-04 17:03:54 +000035 libs: [
Anton Hansson1d53c8c2019-12-17 18:34:59 +000036 "framework",
Baligh Uddin3b927562021-05-01 18:28:28 +000037 "framework-annotations-lib",
atrost1a945502019-11-04 17:03:54 +000038 "app-compat-annotations",
Artur Satayev700e08b2019-12-11 13:03:32 +000039 "unsupportedappusage",
atrost1a945502019-11-04 17:03:54 +000040 ],
Sundong Ahne933ced2018-07-31 16:54:41 +090041 api_packages: [
42 "android.test.mock",
Colin Crossfc7ba9e2017-12-07 13:11:06 -080043 ],
Jiyong Park9b62bc82021-09-13 21:11:05 +090044 permitted_packages: [
45 "android.test.mock",
46 ],
David Brazdil89c64322018-06-28 10:23:50 +010047 compile_dex: true,
Jiyong Park912db8d2020-05-29 10:51:18 +090048 default_to_stubs: true,
Colin Cross5959ec02021-05-10 10:38:53 -070049 dist_group: "android",
Jihoon Kangdc16c222024-08-06 00:15:25 +000050
51 // This module cannot generate stubs from the api signature files as stubs depends on the
52 // private APIs, which are not visible in the api signature files.
53 build_from_text_stub: false,
Jiyong Park6964add2018-03-13 16:06:03 +090054}
Paul Duffincd35de32019-05-30 15:12:47 +010055
Jeff Sharkeyde344712023-11-29 12:17:43 -070056java_library {
57 name: "android.test.mock.ravenwood",
Makoto Onukieb8bdf62024-05-23 10:49:31 -070058 defaults: ["ravenwood-internal-only-visibility-java"],
Jeff Sharkeyde344712023-11-29 12:17:43 -070059 srcs: [":android-test-mock-sources"],
Jeff Sharkeyde344712023-11-29 12:17:43 -070060}
61
62android_ravenwood_test {
63 name: "android.test.mock.ravenwood.tests",
64 libs: [
65 "android.test.mock.ravenwood",
66 ],
67 static_libs: [
68 "androidx.annotation_annotation",
69 "androidx.test.rules",
70 ],
71 srcs: [
72 "tests/**/*.java",
73 ],
74 auto_gen_config: true,
75}
76
Nelson Liaf35c292024-01-17 08:52:01 +000077// Make the current.txt available for use by the cts/tests/signature and /vendor tests.
Paul Duffincd35de32019-05-30 15:12:47 +010078// ========================================================================
79filegroup {
80 name: "android-test-mock-current.txt",
81 visibility: [
82 "//cts/tests/signature/api",
Nelson Liaf35c292024-01-17 08:52:01 +000083 "//vendor:__subpackages__",
Paul Duffincd35de32019-05-30 15:12:47 +010084 ],
85 srcs: [
86 "api/current.txt",
87 ],
88}
Anton Hansson2e25fdc2021-05-10 12:40:05 +010089
90filegroup {
91 name: "android-test-mock-sources",
92 srcs: ["src/**/*.java"],
93 path: "src",
94}