blob: e96a698611ed02e97dede9ed3baffc336620a082 [file] [log] [blame]
Tej Singhe20bdcf2020-01-15 16:12:07 -08001// Copyright (C) 2019 The Android Open Source Project
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7// http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
Bob Badour21c8a122021-02-03 18:34:19 -080015package {
16 default_applicable_licenses: ["Android-Apache-2.0"],
17}
18
Tej Singhe20bdcf2020-01-15 16:12:07 -080019android_test {
20 name: "LibStatsPullTests",
21 static_libs: [
22 "androidx.test.rules",
23 "platformprotoslite",
24 "statsdprotolite",
25 "truth-prebuilt",
26 ],
27 libs: [
28 "android.test.runner.stubs",
29 "android.test.base.stubs",
30 ],
31 jni_libs: [
32 "libstatspull_testhelper",
33 ],
34 srcs: [
35 "src/**/*.java",
36 "protos/**/*.proto",
37 ],
38 test_suites: [
Sundong Ahn6885d292020-04-08 09:28:25 +090039 "device-tests",
Jeffrey Huang323978d2020-04-22 17:41:15 -070040 "mts",
Tej Singhe20bdcf2020-01-15 16:12:07 -080041 ],
42 platform_apis: true,
43 privileged: true,
44 certificate: "platform",
45 compile_multilib: "both",
46}
47
48cc_library_shared {
49 name: "libstatspull_testhelper",
50 srcs: ["jni/stats_pull_helper.cpp"],
51 cflags: [
52 "-Wall",
53 "-Werror",
54 ],
55 shared_libs: [
Tej Singh6c50ab02020-01-29 15:59:35 -080056 "libbinder_ndk",
Jiyong Parkc510bf62021-08-09 09:08:00 +090057 "statsd-aidl-ndk",
Tej Singhe20bdcf2020-01-15 16:12:07 -080058 ],
Tej Singh6c50ab02020-01-29 15:59:35 -080059 static_libs: [
60 "libstatspull_private",
61 "libstatssocket_private",
Tej Singh6c50ab02020-01-29 15:59:35 -080062 "libcutils",
63 ],
64}