1 // 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 17 cc_library_static { 18 name: "libVtsHalGraphicsComposerTestUtils", 19 defaults: ["hidl_defaults"], 20 srcs: [ 21 "GraphicsComposerCallback.cpp", 22 "TestCommandReader.cpp", 23 "VtsHalGraphicsComposerTestUtils.cpp", 24 ], 25 shared_libs: [ 26 "android.hardware.graphics.composer (a] 2.1", 27 "libfmq", 28 "libsync", 29 ], 30 static_libs: [ 31 "libhwcomposer-command-buffer", 32 "VtsHalHidlTargetTestBase", 33 ], 34 cflags: [ 35 "-Wall", 36 "-Wextra", 37 "-Werror", 38 "-O0", 39 "-g", 40 "-DLOG_TAG=\"GraphicsComposerTestUtils\"", 41 ], 42 export_include_dirs: ["."], 43 } 44 45 cc_test { 46 name: "VtsHalGraphicsComposerV2_1TargetTest", 47 defaults: ["VtsHalTargetTestDefaults"], 48 srcs: ["VtsHalGraphicsComposerV2_1TargetTest.cpp"], 49 50 // TODO(b/64437680): Assume these libs are always available on the device. 51 shared_libs: [ 52 "libfmq", 53 "libsync", 54 ], 55 static_libs: [ 56 "android.hardware.graphics.allocator (a] 2.0", 57 "android.hardware.graphics.composer (a] 2.1", 58 "android.hardware.graphics.mapper (a] 2.0", 59 "libVtsHalGraphicsComposerTestUtils", 60 "libVtsHalGraphicsMapperTestUtils", 61 "libhwcomposer-command-buffer", 62 "libnativehelper", 63 ], 64 } 65