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 "liblog", 30 "libutils", 31 ], 32 33 // These are static libs only for testing purposes and portability. Shared 34 // libs should be used on device. 35 static_libs: [ 36 "android.hardware.tests.msgq@1.0", 37 ] 38} 39 40cc_test { 41 name: "android.hardware.tests.msgq@1.0-service-benchmark", 42 defaults: ["hidl_defaults"], 43 srcs: ["mq_benchmark_service.cpp"], 44 gtest: false, 45 46 shared_libs: [ 47 "libbase", 48 "libcutils", 49 "libhidlbase", 50 "liblog", 51 "libutils", 52 "android.hardware.tests.msgq@1.0" 53 ], 54 test_suites: ["general-tests"], 55} 56 57cc_test { 58 name: "android.hardware.tests.msgq@1.0-service-test", 59 defaults: ["hidl_defaults"], 60 srcs: ["mq_test_service.cpp"], 61 gtest: false, 62 63 shared_libs: [ 64 "libbase", 65 "libcutils", 66 "libfmq", 67 "libhidlbase", 68 "liblog", 69 "libutils", 70 ], 71 72 // Allow dlsym'ing self for statically linked passthrough implementations 73 ldflags: ["-rdynamic"], 74 75 // These are static libs only for testing purposes and portability. Shared 76 // libs should be used on device. 77 static_libs: ["android.hardware.tests.msgq@1.0"], 78 whole_static_libs: ["android.hardware.tests.msgq@1.0-impl"], 79 test_suites: ["general-tests"], 80} 81