1// 2// Copyright (C) 2017 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 16cc_library { 17 name: "android.hardware.tests.msgq@1.0-impl", 18 defaults: ["hidl_defaults"], 19 relative_install_path: "hw", 20 srcs: [ 21 "TestMsgQ.cpp", 22 "BenchmarkMsgQ.cpp" 23 ], 24 shared_libs: [ 25 "libbase", 26 "libcutils", 27 "libfmq", 28 "libhidlbase", 29 "libhidltransport", 30 "libhwbinder", 31 "liblog", 32 "libutils", 33 ], 34 35 // These are static libs only for testing purposes and portability. Shared 36 // libs should be used on device. 37 static_libs: [ 38 "android.hardware.tests.msgq@1.0", 39 ] 40} 41 42cc_test { 43 name: "android.hardware.tests.msgq@1.0-service-benchmark", 44 defaults: ["hidl_defaults"], 45 srcs: ["mq_benchmark_service.cpp"], 46 gtest: false, 47 48 shared_libs: [ 49 "libbase", 50 "libcutils", 51 "libhidlbase", 52 "libhidltransport", 53 "liblog", 54 "libutils", 55 "android.hardware.tests.msgq@1.0" 56 ], 57 test_suites: ["general-tests"], 58} 59 60cc_test { 61 name: "android.hardware.tests.msgq@1.0-service-test", 62 defaults: ["hidl_defaults"], 63 srcs: ["mq_test_service.cpp"], 64 gtest: false, 65 66 shared_libs: [ 67 "libbase", 68 "libcutils", 69 "libfmq", 70 "libhidlbase", 71 "libhidltransport", 72 "libhwbinder", 73 "liblog", 74 "libutils", 75 ], 76 77 // Allow dlsym'ing self for statically linked passthrough implementations 78 ldflags: ["-rdynamic"], 79 80 // These are static libs only for testing purposes and portability. Shared 81 // libs should be used on device. 82 static_libs: ["android.hardware.tests.msgq@1.0"], 83 whole_static_libs: ["android.hardware.tests.msgq@1.0-impl"], 84 test_suites: ["general-tests"], 85} 86