Kohsuke Yatoh | bc71822 | 2021-01-31 23:48:46 -0800 | [diff] [blame] | 1 | // Copyright (C) 2021 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 | d594958 | 2021-02-23 13:18:34 -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 | |
Kohsuke Yatoh | f74e3b6 | 2021-05-01 22:30:57 -0700 | [diff] [blame] | 24 | android_test { |
Kohsuke Yatoh | bc71822 | 2021-01-31 23:48:46 -0800 | [diff] [blame] | 25 | name: "UpdatableSystemFontTest", |
| 26 | srcs: ["src/**/*.java"], |
Kohsuke Yatoh | f74e3b6 | 2021-05-01 22:30:57 -0700 | [diff] [blame] | 27 | libs: ["android.test.runner"], |
Kohsuke Yatoh | 45c6231 | 2021-02-04 15:17:42 -0800 | [diff] [blame] | 28 | static_libs: [ |
Kohsuke Yatoh | f74e3b6 | 2021-05-01 22:30:57 -0700 | [diff] [blame] | 29 | "androidx.test.ext.junit", |
Kohsuke Yatoh | a3f5f22 | 2021-06-09 20:09:49 +0000 | [diff] [blame] | 30 | "androidx.test.uiautomator_uiautomator", |
Kohsuke Yatoh | f74e3b6 | 2021-05-01 22:30:57 -0700 | [diff] [blame] | 31 | "compatibility-device-util-axt", |
| 32 | "platform-test-annotations", |
| 33 | "truth-prebuilt", |
Kohsuke Yatoh | 45c6231 | 2021-02-04 15:17:42 -0800 | [diff] [blame] | 34 | ], |
Kohsuke Yatoh | bd636d8 | 2021-04-08 12:54:29 -0700 | [diff] [blame] | 35 | test_suites: [ |
| 36 | "general-tests", |
| 37 | "vts", |
| 38 | ], |
Kohsuke Yatoh | bc71822 | 2021-01-31 23:48:46 -0800 | [diff] [blame] | 39 | data: [ |
Yike | 5533e7f | 2022-07-25 16:43:38 +0800 | [diff] [blame^] | 40 | ":EmojiRenderingTestApp", |
Kohsuke Yatoh | bc71822 | 2021-01-31 23:48:46 -0800 | [diff] [blame] | 41 | ":UpdatableSystemFontTestCertDer", |
Kohsuke Yatoh | 5b1bac7 | 2021-07-22 18:54:46 +0000 | [diff] [blame] | 42 | ":UpdatableSystemFontTest_NotoColorEmoji.ttf", |
Kohsuke Yatoh | 865a9cb | 2021-05-19 11:36:23 -0700 | [diff] [blame] | 43 | ":UpdatableSystemFontTest_NotoColorEmoji.sig", |
| 44 | ":UpdatableSystemFontTest_NotoColorEmojiV0.ttf", |
| 45 | ":UpdatableSystemFontTest_NotoColorEmojiV0.sig", |
| 46 | ":UpdatableSystemFontTest_NotoColorEmojiVPlus1.ttf", |
| 47 | ":UpdatableSystemFontTest_NotoColorEmojiVPlus1.sig", |
| 48 | ":UpdatableSystemFontTest_NotoColorEmojiVPlus2.ttf", |
| 49 | ":UpdatableSystemFontTest_NotoColorEmojiVPlus2.sig", |
Kohsuke Yatoh | 5045660 | 2022-02-16 16:36:25 -0800 | [diff] [blame] | 50 | ":UpdatableSystemFontTest_NotoSerif-Regular.ttf", |
Kohsuke Yatoh | 865a9cb | 2021-05-19 11:36:23 -0700 | [diff] [blame] | 51 | ":UpdatableSystemFontTest_NotoSerif-Regular.sig", |
Kohsuke Yatoh | 5045660 | 2022-02-16 16:36:25 -0800 | [diff] [blame] | 52 | ":UpdatableSystemFontTest_NotoSerif-Bold.ttf", |
Kohsuke Yatoh | 865a9cb | 2021-05-19 11:36:23 -0700 | [diff] [blame] | 53 | ":UpdatableSystemFontTest_NotoSerif-Bold.sig", |
Kohsuke Yatoh | bc71822 | 2021-01-31 23:48:46 -0800 | [diff] [blame] | 54 | ], |
Kohsuke Yatoh | f74e3b6 | 2021-05-01 22:30:57 -0700 | [diff] [blame] | 55 | sdk_version: "test_current", |
Kohsuke Yatoh | bc71822 | 2021-01-31 23:48:46 -0800 | [diff] [blame] | 56 | } |