• 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
16
17cc_defaults {
18  name: "cuttlefish_recovery_available",
19  recovery_available : true
20}
21
22cc_defaults {
23  name: "enabled_on_p_and_later",
24  enabled: true
25}
26
27cc_defaults {
28  name: "enabled_on_q_and_later",
29  enabled: true
30}
31
32cc_defaults {
33  name: "enabled_on_q_internal_and_later",
34  enabled: true
35}
36
37cc_defaults {
38    name: "cuttlefish_host_config",
39    target: {
40        linux_glibc: {
41            static_libs: [
42                 "libcuttlefish_host_config",
43            ],
44        },
45    },
46}
47
48cc_defaults {
49    name: "cuttlefish_libicuuc",
50    shared_libs: [
51        "libicuuc",
52        "libandroidicu",
53    ],
54}
55
56cc_defaults {
57    name: "cuttlefish_health_storage",
58    defaults: ["enabled_on_q_and_later"],
59    vintf_fragments: [
60        "manifest_android.hardware.health.storage@1.0.cuttlefish.xml",
61    ],
62}
63