1// Copyright (C) 2017 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
15// see how_to_run.txt for instructions on running these tests
16
17package {
18    default_team: "trendy_team_android_text",
19    default_applicable_licenses: ["Android-Apache-2.0"],
20}
21
22cc_test {
23    name: "minikin_stress_tests",
24
25    header_libs: ["libminikin-headers-for-tests"],
26    data: [":minikin-test-data"],
27
28    static_libs: [
29        "libminikin-tests-util",
30        "libminikin",
31        "libxml2",
32        "aconfig_text_flags_c_lib",
33    ],
34
35    // Shared libraries which are dependencies of minikin; these are not automatically
36    // pulled in by the build system (and thus sadly must be repeated).
37    shared_libs: [
38
39        "libft2",
40        "libharfbuzz_ng",
41        "libicu",
42        "liblog",
43        "libutils",
44        "libz",
45        "libcutils",
46        "aconfig_text_flags_c_lib",
47        "server_configurable_flags",
48    ],
49
50    srcs: [
51        "FontFamilyTest.cpp",
52        "MultithreadTest.cpp",
53    ],
54
55    defaults: [
56        "aconfig_lib_cc_static_link.defaults",
57        "libminikin_defaults",
58    ],
59}
60