blob: a2447d71c3bd6037a700a39bce3e2f9eaf5aaf46 [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 {
20 // See: http://go/android-license-faq
21 // A large-scale-change added 'default_applicable_licenses' to import
22 // all of the 'license_kinds' from "frameworks_base_license"
23 // to get the below license kinds:
24 // SPDX-license-identifier-Apache-2.0
25 default_applicable_licenses: ["frameworks_base_license"],
26}
27
Sundong Ahne933ced2018-07-31 16:54:41 +090028java_sdk_library {
Colin Crossfc7ba9e2017-12-07 13:11:06 -080029 name: "android.test.mock",
30
Jiyong Park00ea0b12019-10-31 20:38:47 +090031 srcs: [
32 "src/**/*.java",
33 // Note: Below are NOT APIs of this library. We only take APIs under
34 // the android.test.mock package. They however provide private APIs that
35 // android.test.mock APIs references to.
36 ":framework-core-sources-for-test-mock",
37 ":framework_native_aidl",
38 ],
atrost1a945502019-11-04 17:03:54 +000039 libs: [
Anton Hansson1d53c8c2019-12-17 18:34:59 +000040 "framework",
atrost1a945502019-11-04 17:03:54 +000041 "app-compat-annotations",
Artur Satayev700e08b2019-12-11 13:03:32 +000042 "unsupportedappusage",
atrost1a945502019-11-04 17:03:54 +000043 ],
Colin Crossfc7ba9e2017-12-07 13:11:06 -080044
Sundong Ahne933ced2018-07-31 16:54:41 +090045 api_packages: [
46 "android.test.mock",
Colin Crossfc7ba9e2017-12-07 13:11:06 -080047 ],
David Brazdil89c64322018-06-28 10:23:50 +010048 compile_dex: true,
Jiyong Park912db8d2020-05-29 10:51:18 +090049 default_to_stubs: true,
Jiyong Park6964add2018-03-13 16:06:03 +090050}
Paul Duffincd35de32019-05-30 15:12:47 +010051
52// Make the current.txt available for use by the cts/tests/signature tests.
53// ========================================================================
54filegroup {
55 name: "android-test-mock-current.txt",
56 visibility: [
57 "//cts/tests/signature/api",
58 ],
59 srcs: [
60 "api/current.txt",
61 ],
62}