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
17cc_test {
18    name: "minikin_stress_tests",
19
20    header_libs: ["libminikin-headers-for-tests"],
21    data: [":minikin-test-data"],
22
23    static_libs: [
24        "libminikin-tests-util",
25        "libminikin",
26        "libxml2",
27    ],
28
29    // Shared libraries which are dependencies of minikin; these are not automatically
30    // pulled in by the build system (and thus sadly must be repeated).
31    shared_libs: [
32
33        "libft2",
34        "libharfbuzz_ng",
35        "libandroidicu",
36        "liblog",
37        "libutils",
38        "libz",
39    ],
40
41    srcs: [
42	"FontFamilyTest.cpp",
43        "MultithreadTest.cpp",
44    ],
45
46    cflags: [
47        "-Werror",
48        "-Wall",
49        "-Wextra",
50    ],
51}
52