• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1/*
2 * Copyright (C) 2018 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 */
16package {
17    default_applicable_licenses: ["Android-Apache-2.0"],
18}
19
20cc_library_shared {
21    name: "android.hardware.health@2.1-impl-cuttlefish",
22    stem: "android.hardware.health@2.0-impl-2.1-cuttlefish",
23    proprietary: true,
24    recovery_available: true,
25
26    relative_install_path: "hw",
27
28    srcs: [
29        "health.cpp",
30    ],
31
32    cflags: [
33        "-Wall",
34        "-Werror",
35    ],
36
37    static_libs: [
38        "android.hardware.health@1.0-convert",
39        "libbatterymonitor",
40        "libhealthloop",
41        "libhealth2impl",
42    ],
43
44    shared_libs: [
45        "libbase",
46        "libcutils",
47        "libhidlbase",
48        "libutils",
49        "android.hardware.health@2.0",
50        "android.hardware.health@2.1",
51    ],
52
53    defaults: ["enabled_on_p_and_later"],
54}
55