blob: 74e47945172370f4f88ad162da37318953327b49 [file] [log] [blame]
Ryan Haining96ab63e2018-03-01 20:08:33 -08001//
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
Greg Hartman9bd77792018-03-16 18:40:49 -070017cc_defaults {
Greg Hartmane961f182019-01-09 10:55:23 -080018 name: "cuttlefish_recovery_available",
19 recovery_available : true
20}
21
22cc_defaults {
Greg Hartman9bd77792018-03-16 18:40:49 -070023 name: "enabled_on_p_and_later",
24 enabled: true
25}
Ryan Haining96ab63e2018-03-01 20:08:33 -080026
27cc_defaults {
Greg Hartmane961f182019-01-09 10:55:23 -080028 name: "enabled_on_q_and_later",
29 enabled: true
30}
31
32cc_defaults {
Ryan Haining96ab63e2018-03-01 20:08:33 -080033 name: "cuttlefish_host_config",
34 target: {
35 linux_glibc: {
36 static_libs: [
37 "libcuttlefish_host_config",
38 ],
39 },
40 },
41}
Greg Hartmand37bc142019-01-09 14:22:04 -080042
43cc_defaults {
44 name: "cuttlefish_libicuuc",
45 shared_libs: [
46 "libicuuc",
47 "libandroidicu",
48 ],
49}
Greg Hartmanbf8ae012019-01-09 14:38:05 -080050
51cc_defaults {
52 name: "cuttlefish_health_storage",
53 defaults: ["enabled_on_q_and_later"],
54 vintf_fragments: [
55 "manifest_android.hardware.health.storage@1.0.cuttlefish.xml",
56 ],
57}