Hridya Valsaraju | 171603e | 2017-03-07 20:25:08 -0800 | [diff] [blame] | 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 | |
Hridya Valsaraju | 8a70862 | 2017-03-06 14:10:42 -0800 | [diff] [blame] | 16 | cc_library_shared { |
| 17 | name: "android.hardware.tests.msgq@1.0-impl", |
Steven Moreland | 691a455 | 2017-03-08 15:58:46 -0800 | [diff] [blame] | 18 | defaults: ["hidl_defaults"], |
Hridya Valsaraju | 8a70862 | 2017-03-06 14:10:42 -0800 | [diff] [blame] | 19 | relative_install_path: "hw", |
Hridya Valsaraju | 8a70862 | 2017-03-06 14:10:42 -0800 | [diff] [blame] | 20 | srcs: [ |
| 21 | "TestMsgQ.cpp", |
Hridya Valsaraju | 171603e | 2017-03-07 20:25:08 -0800 | [diff] [blame] | 22 | "BenchmarkMsgQ.cpp" |
Hridya Valsaraju | 8a70862 | 2017-03-06 14:10:42 -0800 | [diff] [blame] | 23 | ], |
| 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 Valsaraju | 8a70862 | 2017-03-06 14:10:42 -0800 | [diff] [blame] | 33 | ], |
| 34 | } |
Hridya Valsaraju | 171603e | 2017-03-07 20:25:08 -0800 | [diff] [blame] | 35 | |
| 36 | cc_test { |
| 37 | name: "android.hardware.tests.msgq@1.0-service-benchmark", |
| 38 | srcs: ["mq_benchmark_service.cpp"], |
| 39 | gtest: false, |
| 40 | |
| 41 | shared_libs: [ |
| 42 | "libbase", |
| 43 | "libcutils", |
| 44 | "libhidlbase", |
| 45 | "libhidltransport", |
| 46 | "liblog", |
| 47 | "libutils", |
| 48 | "android.hardware.tests.msgq@1.0" |
| 49 | ], |
| 50 | } |
| 51 | |
| 52 | cc_test { |
| 53 | name: "android.hardware.tests.msgq@1.0-service-test", |
| 54 | srcs: ["mq_test_service.cpp"], |
| 55 | gtest: false, |
| 56 | |
| 57 | shared_libs: [ |
| 58 | "libbase", |
| 59 | "libcutils", |
| 60 | "libhidlbase", |
| 61 | "libhidltransport", |
| 62 | "liblog", |
| 63 | "libutils", |
| 64 | "android.hardware.tests.msgq@1.0" |
| 65 | ], |
| 66 | } |