• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1//
2// Copyright (C) 2019 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// ==========================================================
18// Native library to register a pull atom callback with statsd
19// ==========================================================
20package {
21    default_applicable_licenses: ["Android-Apache-2.0"],
22}
23
24cc_defaults {
25    name: "libstatspull_defaults",
26    srcs: [
27        "stats_subscription.cpp",
28        "stats_provider.cpp",
29        "stats_pull_atom_callback.cpp",
30    ],
31    cflags: [
32        "-Wall",
33        "-Werror",
34    ],
35    export_include_dirs: ["include"],
36    shared_libs: [
37        "libbinder_ndk",
38        "liblog",
39    ],
40    static_libs: [
41        "libutils",
42        "statsd-aidl-ndk",
43    ],
44    target: {
45        android: {
46            shared_libs: ["libstatssocket"],
47        },
48        host: {
49            static_libs: ["libstatssocket"],
50        },
51    },
52}
53
54cc_library {
55    name: "libstatspull",
56    defaults: [
57        "libstatspull_defaults",
58    ],
59    host_supported: true,
60    target: {
61        android: {
62            static: {
63                enabled: false,
64            },
65        },
66        host: {
67            shared: {
68                enabled: false,
69            },
70        },
71        darwin: {
72            enabled: false,
73        },
74    },
75    // enumerate stable entry points for APEX use
76    stubs: {
77        symbol_file: "libstatspull.map.txt",
78        versions: [
79            "30",
80        ],
81    },
82    apex_available: [
83        "com.android.os.statsd",
84        "test_com.android.os.statsd",
85    ],
86    min_sdk_version: "30",
87
88    stl: "libc++_static",
89}
90
91cc_library_headers {
92    name: "libstatspull_headers",
93    export_include_dirs: ["include"],
94}
95
96// ONLY USE IN TESTS.
97cc_library_static {
98    name: "libstatspull_private",
99    defaults: [
100        "libstatspull_defaults",
101    ],
102    cflags: [
103        "-DLIB_STATS_PULL_TESTS_FLAG",
104    ],
105    visibility: [
106        "//packages/modules/StatsD/apex/tests/libstatspull",
107    ],
108}
109
110// Note: These unit tests only test PullAtomMetadata and subscriptions
111// For full E2E tests of pullers, use LibStatsPullTests
112cc_test {
113    name: "libstatspull_test",
114    srcs: [
115        ":libprotobuf-internal-descriptor-proto",
116        ":libstats_log_protos",
117        ":libstats_subscription_protos",
118        "tests/pull_atom_metadata_test.cpp",
119        "tests/stats_subscription_test.cpp",
120    ],
121    proto: {
122        type: "lite",
123        include_dirs: [
124            "external/protobuf/src",
125        ],
126        static: true,
127    },
128    shared_libs: [
129        "libstatspull",
130        "libstatssocket",
131        "libbase",
132        "libbinder",
133        "libutils",
134        "liblog",
135    ],
136    static_libs: [
137        "libgmock",
138        "libstatsgtestmatchers",
139        "libstatslog_statsdtest",
140        "libprotobuf-cpp-lite",
141    ],
142    test_suites: [
143        "general-tests",
144        "mts-statsd",
145    ],
146    test_config: "libstatspull_test.xml",
147
148    //TODO(b/153588990): Remove when the build system properly separates
149    //32bit and 64bit architectures.
150    compile_multilib: "both",
151    multilib: {
152        lib64: {
153            suffix: "64",
154        },
155        lib32: {
156            suffix: "32",
157        },
158    },
159    cflags: [
160        "-Wall",
161        "-Werror",
162        "-Wno-missing-field-initializers",
163        "-Wno-unused-variable",
164        "-Wno-unused-function",
165        "-Wno-unused-parameter",
166        "-Wno-deprecated-declarations",
167    ],
168    require_root: true,
169    min_sdk_version: "30",
170}
171