Tomasz Wasilczyk | 4837755 | 2017-06-22 10:45:33 -0700 | [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 | // |
| 16 | |
| 17 | cc_test { |
Tomasz Wasilczyk | f679e8b | 2017-09-14 09:43:35 -0700 | [diff] [blame] | 18 | name: "android.hardware.broadcastradio@common-utils-tests", |
Steven Moreland | cfc836a | 2017-06-29 11:09:33 -0700 | [diff] [blame] | 19 | vendor: true, |
Tomasz Wasilczyk | 4837755 | 2017-06-22 10:45:33 -0700 | [diff] [blame] | 20 | cflags: [ |
| 21 | "-Wall", |
| 22 | "-Wextra", |
| 23 | "-Werror", |
| 24 | ], |
| 25 | srcs: [ |
| 26 | "WorkerThread_test.cpp", |
| 27 | ], |
Tomasz Wasilczyk | f679e8b | 2017-09-14 09:43:35 -0700 | [diff] [blame] | 28 | static_libs: ["android.hardware.broadcastradio@common-utils-lib"], |
Tomasz Wasilczyk | 06100b3 | 2017-12-04 09:53:32 -0800 | [diff] [blame] | 29 | } |
| 30 | |
| 31 | cc_test { |
| 32 | name: "android.hardware.broadcastradio@common-utils-xx-tests", |
| 33 | vendor: true, |
| 34 | cflags: [ |
| 35 | "-Wall", |
| 36 | "-Wextra", |
| 37 | "-Werror", |
| 38 | ], |
| 39 | srcs: [ |
| 40 | "CommonXX_test.cpp", |
| 41 | ], |
| 42 | static_libs: [ |
| 43 | "android.hardware.broadcastradio@common-utils-1x-lib", |
| 44 | "android.hardware.broadcastradio@common-utils-2x-lib", |
| 45 | ], |
| 46 | shared_libs: [ |
| 47 | "android.hardware.broadcastradio@1.2", |
| 48 | "android.hardware.broadcastradio@2.0", |
| 49 | ], |
| 50 | } |