blob: 825bf0774b9041fdb0b4fdf85976fa2ebc1000bd [file] [log] [blame]
Chia-I Wufed07e82017-01-09 12:31:56 +08001//
2// Copyright (C) 2016 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
Chia-I Wu8cc5a152017-02-24 14:34:02 -080017cc_library_static {
18 name: "libVtsHalGraphicsComposerTestUtils",
19 srcs: ["VtsHalGraphicsComposerTestUtils.cpp"],
20 shared_libs: ["android.hardware.graphics.composer@2.1"],
21 static_libs: [
22 "VtsHalHidlTargetBaseTest",
23 ],
24 cflags: [
25 "-Wall",
26 "-Wextra",
27 "-Werror",
28 "-O0",
29 "-g",
30 ],
31 export_include_dirs: ["."],
32}
33
Chia-I Wufed07e82017-01-09 12:31:56 +080034cc_test {
Zhuoyao Zhang8422f6a2017-02-17 18:20:58 -080035 name: "VtsHalGraphicsComposerV2_1TargetTest",
Zhuoyao Zhang8422f6a2017-02-17 18:20:58 -080036 srcs: ["VtsHalGraphicsComposerV2_1TargetTest.cpp"],
Chia-I Wufed07e82017-01-09 12:31:56 +080037 shared_libs: [
38 "android.hardware.graphics.allocator@2.0",
39 "android.hardware.graphics.composer@2.1",
40 "android.hardware.graphics.mapper@2.0",
41 "libbase",
42 "libcutils",
43 "libfmq",
44 "libhidlbase",
45 "libhidltransport",
Chia-I Wufed07e82017-01-09 12:31:56 +080046 "liblog",
47 "libnativehelper",
48 "libsync",
49 "libutils",
50 ],
Chia-I Wu8cc5a152017-02-24 14:34:02 -080051 static_libs: [
52 "libhwcomposer-command-buffer",
53 "libVtsHalGraphicsAllocatorTestUtils",
54 "libVtsHalGraphicsComposerTestUtils",
55 "libVtsHalGraphicsMapperTestUtils",
56 "VtsHalHidlTargetBaseTest",
57 ],
Chia-I Wufed07e82017-01-09 12:31:56 +080058 cflags: [
Chia-I Wu8cc5a152017-02-24 14:34:02 -080059 "-Wall",
60 "-Wextra",
61 "-Werror",
Chia-I Wufed07e82017-01-09 12:31:56 +080062 "-O0",
63 "-g",
Ryan Campbell2caf0a62017-02-14 16:50:34 -080064 ]
Chia-I Wufed07e82017-01-09 12:31:56 +080065}