blob: 7d3da329ce9ab46272340d78dfcb045814588229 [file] [log] [blame]
Lloyd Pique66ce40d2018-01-23 16:42:19 -08001// Copyright (C) 2018 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
15cc_test {
16 name: "SurfaceFlinger_test",
17 defaults: ["surfaceflinger_defaults"],
18 tags: ["test"],
19 test_suites: ["device-tests"],
20 srcs: [
21 "Stress_test.cpp",
22 "SurfaceInterceptor_test.cpp",
23 "Transaction_test.cpp",
24 ],
25 data: ["SurfaceFlinger_test.filter"],
26 static_libs: [
27 "libtrace_proto",
28 ],
29 shared_libs: [
30 "libandroid",
31 "libbinder",
32 "libcutils",
33 "libEGL",
34 "libGLESv2",
35 "libgui",
36 "liblog",
37 "libprotobuf-cpp-full",
38 "libui",
39 "libutils",
40 ]
41
42}
43
44subdirs = [
45 "fakehwc",
46 "hwc2",
Lloyd Piquef58625d2017-12-19 13:22:33 -080047 "unittests",
Lloyd Pique66ce40d2018-01-23 16:42:19 -080048 "vsync",
49 "waitforvsync",
50]