blob: 3daac1d9ce7d57cf23e2aa7d25fc402ec607cf2b [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 {
Greg Hartman337e3f52019-01-17 15:17:50 -080033 name: "enabled_on_q_internal_and_later",
Greg Hartmand52a8c72019-01-17 15:17:50 -080034 enabled: true
Greg Hartman337e3f52019-01-17 15:17:50 -080035}
36
37cc_defaults {
Ryan Haining96ab63e2018-03-01 20:08:33 -080038 name: "cuttlefish_host_config",
39 target: {
40 linux_glibc: {
41 static_libs: [
42 "libcuttlefish_host_config",
43 ],
44 },
45 },
46}
Greg Hartmand37bc142019-01-09 14:22:04 -080047
48cc_defaults {
49 name: "cuttlefish_libicuuc",
50 shared_libs: [
51 "libicuuc",
52 "libandroidicu",
53 ],
54}
Greg Hartmanbf8ae012019-01-09 14:38:05 -080055
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}
Ram Muthiah8fddac52019-05-30 19:00:32 -070063
64java_test_host {
65 name: "tombstone_transmit_tests",
66
67 libs: ["tradefed"],
68
69 srcs: ["tests/src/**/TombstoneTransmitTest.java"],
70
71 test_config: "tests/tombstone-transmit-tests.xml",
72
73 test_suites: ["general-tests"],
74}