blob: bbad527c6dd6e32a00d02fedcc8286f92174b83f [file] [log] [blame]
Tomasz Wasilczyk48377552017-06-22 10:45:33 -07001//
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
17cc_test {
Tomasz Wasilczykf679e8b2017-09-14 09:43:35 -070018 name: "android.hardware.broadcastradio@common-utils-tests",
Steven Morelandcfc836a2017-06-29 11:09:33 -070019 vendor: true,
Tomasz Wasilczyk48377552017-06-22 10:45:33 -070020 cflags: [
21 "-Wall",
22 "-Wextra",
23 "-Werror",
24 ],
25 srcs: [
26 "WorkerThread_test.cpp",
27 ],
Tomasz Wasilczykf679e8b2017-09-14 09:43:35 -070028 static_libs: ["android.hardware.broadcastradio@common-utils-lib"],
Tomasz Wasilczyk06100b32017-12-04 09:53:32 -080029}
30
31cc_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}