• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1// Copyright 2010 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
15cc_library_shared {
16    name: "libsensor",
17
18    clang: true,
19    cppflags: [
20        "-Weverything",
21        "-Werror",
22
23        // The static constructors and destructors in this library have not been noted to
24        // introduce significant overheads
25        "-Wno-exit-time-destructors",
26        "-Wno-global-constructors",
27
28        // We only care about compiling as C++14
29        "-Wno-c++98-compat-pedantic",
30
31        // android/sensors.h uses nested anonymous unions and anonymous structs
32        "-Wno-nested-anon-types",
33        "-Wno-gnu-anonymous-struct",
34
35        // Don't warn about struct padding
36        "-Wno-padded",
37    ],
38
39    srcs: [
40        "BitTube.cpp",
41        "ISensorEventConnection.cpp",
42        "ISensorServer.cpp",
43        "Sensor.cpp",
44        "SensorEventQueue.cpp",
45        "SensorManager.cpp",
46    ],
47
48    shared_libs: [
49        "libbinder",
50        "libcutils",
51        "libutils",
52        "liblog",
53        "libhardware",
54    ],
55
56    export_include_dirs: ["include"],
57
58    export_shared_lib_headers: ["libbinder", "libhardware"],
59}
60
61subdirs = ["tests"]
62