Colin Cross | fc7ba9e | 2017-12-07 13:11:06 -0800 | [diff] [blame] | 1 | // |
| 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 Badour | 051ef78 | 2021-02-12 17:07:05 -0800 | [diff] [blame] | 19 | package { |
| 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 Ahn | e933ced | 2018-07-31 16:54:41 +0900 | [diff] [blame] | 28 | java_sdk_library { |
Colin Cross | fc7ba9e | 2017-12-07 13:11:06 -0800 | [diff] [blame] | 29 | name: "android.test.mock", |
| 30 | |
Jiyong Park | 00ea0b1 | 2019-10-31 20:38:47 +0900 | [diff] [blame] | 31 | srcs: [ |
Anton Hansson | 2e25fdc | 2021-05-10 12:40:05 +0100 | [diff] [blame] | 32 | ":android-test-mock-sources", |
Jiyong Park | 00ea0b1 | 2019-10-31 20:38:47 +0900 | [diff] [blame] | 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 |
Jiyong Park | 9b62bc8 | 2021-09-13 21:11:05 +0900 | [diff] [blame^] | 35 | // android.test.mock APIs references to. We need to have the classes in |
| 36 | // source code form to have access to the @hide comment which disappears |
| 37 | // when the classes are compiled into a Jar library. |
Jiyong Park | 00ea0b1 | 2019-10-31 20:38:47 +0900 | [diff] [blame] | 38 | ":framework-core-sources-for-test-mock", |
| 39 | ":framework_native_aidl", |
| 40 | ], |
atrost | 1a94550 | 2019-11-04 17:03:54 +0000 | [diff] [blame] | 41 | libs: [ |
Anton Hansson | 1d53c8c | 2019-12-17 18:34:59 +0000 | [diff] [blame] | 42 | "framework", |
Baligh Uddin | 3b92756 | 2021-05-01 18:28:28 +0000 | [diff] [blame] | 43 | "framework-annotations-lib", |
atrost | 1a94550 | 2019-11-04 17:03:54 +0000 | [diff] [blame] | 44 | "app-compat-annotations", |
Artur Satayev | 700e08b | 2019-12-11 13:03:32 +0000 | [diff] [blame] | 45 | "unsupportedappusage", |
atrost | 1a94550 | 2019-11-04 17:03:54 +0000 | [diff] [blame] | 46 | ], |
Colin Cross | fc7ba9e | 2017-12-07 13:11:06 -0800 | [diff] [blame] | 47 | |
Sundong Ahn | e933ced | 2018-07-31 16:54:41 +0900 | [diff] [blame] | 48 | api_packages: [ |
| 49 | "android.test.mock", |
Colin Cross | fc7ba9e | 2017-12-07 13:11:06 -0800 | [diff] [blame] | 50 | ], |
Jiyong Park | 9b62bc8 | 2021-09-13 21:11:05 +0900 | [diff] [blame^] | 51 | // Only include android.test.mock.* classes. Jarjar rules below removes |
| 52 | // classes in other packages like android.content. In order to keep the |
| 53 | // list up-to-date, permitted_packages ensures that the library contains |
| 54 | // clases under android.test.mock after the jarjar rules are applied. |
| 55 | jarjar_rules: "jarjar-rules.txt", |
| 56 | permitted_packages: [ |
| 57 | "android.test.mock", |
| 58 | ], |
David Brazdil | 89c6432 | 2018-06-28 10:23:50 +0100 | [diff] [blame] | 59 | compile_dex: true, |
Jiyong Park | 912db8d | 2020-05-29 10:51:18 +0900 | [diff] [blame] | 60 | default_to_stubs: true, |
Colin Cross | 5959ec0 | 2021-05-10 10:38:53 -0700 | [diff] [blame] | 61 | dist_group: "android", |
Jiyong Park | 6964add | 2018-03-13 16:06:03 +0900 | [diff] [blame] | 62 | } |
Paul Duffin | cd35de3 | 2019-05-30 15:12:47 +0100 | [diff] [blame] | 63 | |
| 64 | // Make the current.txt available for use by the cts/tests/signature tests. |
| 65 | // ======================================================================== |
| 66 | filegroup { |
| 67 | name: "android-test-mock-current.txt", |
| 68 | visibility: [ |
| 69 | "//cts/tests/signature/api", |
| 70 | ], |
| 71 | srcs: [ |
| 72 | "api/current.txt", |
| 73 | ], |
| 74 | } |
Anton Hansson | 2e25fdc | 2021-05-10 12:40:05 +0100 | [diff] [blame] | 75 | |
| 76 | filegroup { |
| 77 | name: "android-test-mock-sources", |
| 78 | srcs: ["src/**/*.java"], |
| 79 | path: "src", |
| 80 | } |