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 | |
Steven Moreland | 26d0dcf | 2017-10-12 16:20:53 -0700 | [diff] [blame] | 16 | cc_library { |
Hridya Valsaraju | 8a70862 | 2017-03-06 14:10:42 -0800 | [diff] [blame] | 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", |
Devin Moore | 1b34d67 | 2020-07-08 09:31:08 -0700 | [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", |
Hridya Valsaraju | 8a70862 | 2017-03-06 14:10:42 -0800 | [diff] [blame] | 29 | "liblog", |
| 30 | "libutils", |
Hridya Valsaraju | 8a70862 | 2017-03-06 14:10:42 -0800 | [diff] [blame] | 31 | ], |
Steven Moreland | 26d0dcf | 2017-10-12 16:20:53 -0700 | [diff] [blame] | 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", |
Devin Moore | 1b34d67 | 2020-07-08 09:31:08 -0700 | [diff] [blame] | 37 | ], |
Hridya Valsaraju | 8a70862 | 2017-03-06 14:10:42 -0800 | [diff] [blame] | 38 | } |
Hridya Valsaraju | 171603e | 2017-03-07 20:25:08 -0800 | [diff] [blame] | 39 | |
| 40 | cc_test { |
| 41 | name: "android.hardware.tests.msgq@1.0-service-benchmark", |
Chih-Hung Hsieh | 3da5b01 | 2017-09-29 15:15:48 -0700 | [diff] [blame] | 42 | defaults: ["hidl_defaults"], |
Hridya Valsaraju | 171603e | 2017-03-07 20:25:08 -0800 | [diff] [blame] | 43 | srcs: ["mq_benchmark_service.cpp"], |
| 44 | gtest: false, |
| 45 | |
| 46 | shared_libs: [ |
| 47 | "libbase", |
| 48 | "libcutils", |
| 49 | "libhidlbase", |
Hridya Valsaraju | 171603e | 2017-03-07 20:25:08 -0800 | [diff] [blame] | 50 | "liblog", |
| 51 | "libutils", |
Devin Moore | 1b34d67 | 2020-07-08 09:31:08 -0700 | [diff] [blame] | 52 | "android.hardware.tests.msgq@1.0", |
Hridya Valsaraju | 171603e | 2017-03-07 20:25:08 -0800 | [diff] [blame] | 53 | ], |
Keun Soo YIM | 68ae05d | 2018-11-27 14:04:42 -0800 | [diff] [blame] | 54 | test_suites: ["general-tests"], |
Hridya Valsaraju | 171603e | 2017-03-07 20:25:08 -0800 | [diff] [blame] | 55 | } |
| 56 | |
| 57 | cc_test { |
| 58 | name: "android.hardware.tests.msgq@1.0-service-test", |
Chih-Hung Hsieh | 3da5b01 | 2017-09-29 15:15:48 -0700 | [diff] [blame] | 59 | defaults: ["hidl_defaults"], |
Hridya Valsaraju | 171603e | 2017-03-07 20:25:08 -0800 | [diff] [blame] | 60 | srcs: ["mq_test_service.cpp"], |
| 61 | gtest: false, |
| 62 | |
| 63 | shared_libs: [ |
| 64 | "libbase", |
| 65 | "libcutils", |
Steven Moreland | 26d0dcf | 2017-10-12 16:20:53 -0700 | [diff] [blame] | 66 | "libfmq", |
Hridya Valsaraju | 171603e | 2017-03-07 20:25:08 -0800 | [diff] [blame] | 67 | "libhidlbase", |
Hridya Valsaraju | 171603e | 2017-03-07 20:25:08 -0800 | [diff] [blame] | 68 | "liblog", |
| 69 | "libutils", |
Devin Moore | 1b34d67 | 2020-07-08 09:31:08 -0700 | [diff] [blame] | 70 | "libbinder_ndk", |
Hridya Valsaraju | 171603e | 2017-03-07 20:25:08 -0800 | [diff] [blame] | 71 | ], |
Steven Moreland | 26d0dcf | 2017-10-12 16:20:53 -0700 | [diff] [blame] | 72 | |
Steven Moreland | d4ed520 | 2020-05-16 02:08:24 +0000 | [diff] [blame^] | 73 | compile_multilib: "both", |
| 74 | multilib: { |
| 75 | lib32: { |
| 76 | suffix: "32", |
| 77 | }, |
| 78 | lib64: { |
| 79 | suffix: "64", |
| 80 | }, |
| 81 | }, |
| 82 | test_suites: ["device-tests"], |
| 83 | |
Steven Moreland | 26d0dcf | 2017-10-12 16:20:53 -0700 | [diff] [blame] | 84 | // Allow dlsym'ing self for statically linked passthrough implementations |
| 85 | ldflags: ["-rdynamic"], |
| 86 | |
| 87 | // These are static libs only for testing purposes and portability. Shared |
| 88 | // libs should be used on device. |
Devin Moore | 1b34d67 | 2020-07-08 09:31:08 -0700 | [diff] [blame] | 89 | static_libs: [ |
| 90 | "android.hardware.tests.msgq@1.0", |
| 91 | "android.fmq.test-ndk_platform", |
| 92 | "android.hardware.common-unstable-ndk_platform", |
| 93 | ], |
| 94 | whole_static_libs: [ |
| 95 | "android.hardware.tests.msgq@1.0-impl", |
| 96 | "android.fmq.test-impl", |
| 97 | ], |
Hridya Valsaraju | 171603e | 2017-03-07 20:25:08 -0800 | [diff] [blame] | 98 | } |