Ryan Haining | 96ab63e | 2018-03-01 20:08:33 -0800 | [diff] [blame] | 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 | |
Greg Hartman | 9bd7779 | 2018-03-16 18:40:49 -0700 | [diff] [blame] | 17 | cc_defaults { |
Greg Hartman | e961f18 | 2019-01-09 10:55:23 -0800 | [diff] [blame] | 18 | name: "cuttlefish_recovery_available", |
| 19 | recovery_available : true |
| 20 | } |
| 21 | |
| 22 | cc_defaults { |
Greg Hartman | 9bd7779 | 2018-03-16 18:40:49 -0700 | [diff] [blame] | 23 | name: "enabled_on_p_and_later", |
| 24 | enabled: true |
| 25 | } |
Ryan Haining | 96ab63e | 2018-03-01 20:08:33 -0800 | [diff] [blame] | 26 | |
| 27 | cc_defaults { |
Greg Hartman | e961f18 | 2019-01-09 10:55:23 -0800 | [diff] [blame] | 28 | name: "enabled_on_q_and_later", |
| 29 | enabled: true |
| 30 | } |
| 31 | |
| 32 | cc_defaults { |
Greg Hartman | 337e3f5 | 2019-01-17 15:17:50 -0800 | [diff] [blame] | 33 | name: "enabled_on_q_internal_and_later", |
Greg Hartman | d52a8c7 | 2019-01-17 15:17:50 -0800 | [diff] [blame] | 34 | enabled: true |
Greg Hartman | 337e3f5 | 2019-01-17 15:17:50 -0800 | [diff] [blame] | 35 | } |
| 36 | |
| 37 | cc_defaults { |
Ryan Haining | 96ab63e | 2018-03-01 20:08:33 -0800 | [diff] [blame] | 38 | name: "cuttlefish_host_config", |
| 39 | target: { |
| 40 | linux_glibc: { |
| 41 | static_libs: [ |
| 42 | "libcuttlefish_host_config", |
| 43 | ], |
| 44 | }, |
| 45 | }, |
| 46 | } |
Greg Hartman | d37bc14 | 2019-01-09 14:22:04 -0800 | [diff] [blame] | 47 | |
| 48 | cc_defaults { |
| 49 | name: "cuttlefish_libicuuc", |
| 50 | shared_libs: [ |
| 51 | "libicuuc", |
| 52 | "libandroidicu", |
| 53 | ], |
| 54 | } |
Greg Hartman | bf8ae01 | 2019-01-09 14:38:05 -0800 | [diff] [blame] | 55 | |
| 56 | cc_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 Muthiah | 8fddac5 | 2019-05-30 19:00:32 -0700 | [diff] [blame] | 63 | |
| 64 | java_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 | } |