blob: 6c8be6cac14113a3babc19e96c06fef2ab4d3211 [file] [log] [blame]
Hridya Valsaraju171603e2017-03-07 20:25:08 -08001//
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
Steven Moreland26d0dcf2017-10-12 16:20:53 -070016cc_library {
Hridya Valsaraju8a708622017-03-06 14:10:42 -080017 name: "android.hardware.tests.msgq@1.0-impl",
Steven Moreland691a4552017-03-08 15:58:46 -080018 defaults: ["hidl_defaults"],
Hridya Valsaraju8a708622017-03-06 14:10:42 -080019 relative_install_path: "hw",
Hridya Valsaraju8a708622017-03-06 14:10:42 -080020 srcs: [
21 "TestMsgQ.cpp",
Hridya Valsaraju171603e2017-03-07 20:25:08 -080022 "BenchmarkMsgQ.cpp"
Hridya Valsaraju8a708622017-03-06 14:10:42 -080023 ],
24 shared_libs: [
25 "libbase",
26 "libcutils",
27 "libfmq",
28 "libhidlbase",
29 "libhidltransport",
Steven Moreland26d0dcf2017-10-12 16:20:53 -070030 "libhwbinder",
Hridya Valsaraju8a708622017-03-06 14:10:42 -080031 "liblog",
32 "libutils",
Hridya Valsaraju8a708622017-03-06 14:10:42 -080033 ],
Steven Moreland26d0dcf2017-10-12 16:20:53 -070034
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 ]
Hridya Valsaraju8a708622017-03-06 14:10:42 -080040}
Hridya Valsaraju171603e2017-03-07 20:25:08 -080041
42cc_test {
43 name: "android.hardware.tests.msgq@1.0-service-benchmark",
Chih-Hung Hsieh3da5b012017-09-29 15:15:48 -070044 defaults: ["hidl_defaults"],
Hridya Valsaraju171603e2017-03-07 20:25:08 -080045 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 ],
Keun Soo YIM68ae05d2018-11-27 14:04:42 -080057 test_suites: ["general-tests"],
Hridya Valsaraju171603e2017-03-07 20:25:08 -080058}
59
60cc_test {
61 name: "android.hardware.tests.msgq@1.0-service-test",
Chih-Hung Hsieh3da5b012017-09-29 15:15:48 -070062 defaults: ["hidl_defaults"],
Hridya Valsaraju171603e2017-03-07 20:25:08 -080063 srcs: ["mq_test_service.cpp"],
64 gtest: false,
65
66 shared_libs: [
67 "libbase",
68 "libcutils",
Steven Moreland26d0dcf2017-10-12 16:20:53 -070069 "libfmq",
Hridya Valsaraju171603e2017-03-07 20:25:08 -080070 "libhidlbase",
71 "libhidltransport",
Steven Moreland26d0dcf2017-10-12 16:20:53 -070072 "libhwbinder",
Hridya Valsaraju171603e2017-03-07 20:25:08 -080073 "liblog",
74 "libutils",
Hridya Valsaraju171603e2017-03-07 20:25:08 -080075 ],
Steven Moreland26d0dcf2017-10-12 16:20:53 -070076
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"],
Keun Soo YIM68ae05d2018-11-27 14:04:42 -080084 test_suites: ["general-tests"],
Hridya Valsaraju171603e2017-03-07 20:25:08 -080085}