blob: be4fe945433aedbe4a56d88419413e79ebc4d728 [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
Hridya Valsaraju8a708622017-03-06 14:10:42 -080016cc_library_shared {
17 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",
30 "liblog",
31 "libutils",
32 "android.hardware.tests.msgq@1.0",
Hridya Valsaraju8a708622017-03-06 14:10:42 -080033 ],
34}
Hridya Valsaraju171603e2017-03-07 20:25:08 -080035
36cc_test {
37 name: "android.hardware.tests.msgq@1.0-service-benchmark",
Chih-Hung Hsieh3da5b012017-09-29 15:15:48 -070038 defaults: ["hidl_defaults"],
Hridya Valsaraju171603e2017-03-07 20:25:08 -080039 srcs: ["mq_benchmark_service.cpp"],
40 gtest: false,
41
42 shared_libs: [
43 "libbase",
44 "libcutils",
45 "libhidlbase",
46 "libhidltransport",
47 "liblog",
48 "libutils",
49 "android.hardware.tests.msgq@1.0"
50 ],
51}
52
53cc_test {
54 name: "android.hardware.tests.msgq@1.0-service-test",
Chih-Hung Hsieh3da5b012017-09-29 15:15:48 -070055 defaults: ["hidl_defaults"],
Hridya Valsaraju171603e2017-03-07 20:25:08 -080056 srcs: ["mq_test_service.cpp"],
57 gtest: false,
58
59 shared_libs: [
60 "libbase",
61 "libcutils",
62 "libhidlbase",
63 "libhidltransport",
64 "liblog",
65 "libutils",
66 "android.hardware.tests.msgq@1.0"
67 ],
68}