Steven Moreland | 81079f9 | 2018-07-06 16:15:53 -0700 | [diff] [blame] | 1 | // Copyright (C) 2017 The Android Open Source Project |
| 2 | // |
| 3 | // Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | // you may not use this file except in compliance with the License. |
| 5 | // You may obtain a copy of the License at |
| 6 | // |
| 7 | // http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | // |
| 9 | // Unless required by applicable law or agreed to in writing, software |
| 10 | // distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | // See the License for the specific language governing permissions and |
| 13 | // limitations under the License. |
| 14 | |
| 15 | package aidl |
| 16 | |
| 17 | type nameProperties struct { |
| 18 | Name *string |
| 19 | } |
Jeongik Cha | e072e6c | 2019-02-22 18:36:33 +0900 | [diff] [blame] | 20 | type staticLib struct { |
| 21 | Whole_static_libs []string |
| 22 | } |
Steven Moreland | 81079f9 | 2018-07-06 16:15:53 -0700 | [diff] [blame] | 23 | |
Jeongik Cha | e072e6c | 2019-02-22 18:36:33 +0900 | [diff] [blame] | 24 | type sharedLib struct { |
| 25 | Shared_libs []string |
| 26 | Export_shared_lib_headers []string |
| 27 | } |
Steven Moreland | 81079f9 | 2018-07-06 16:15:53 -0700 | [diff] [blame] | 28 | type ccProperties struct { |
| 29 | Name *string |
| 30 | Owner *string |
| 31 | Defaults []string |
| 32 | Vendor_available *bool |
Steven Moreland | dca9d4b | 2019-09-20 18:42:24 +0000 | [diff] [blame] | 33 | Host_supported *bool |
Steven Moreland | 81079f9 | 2018-07-06 16:15:53 -0700 | [diff] [blame] | 34 | Generated_sources []string |
| 35 | Generated_headers []string |
Jeongik Cha | e072e6c | 2019-02-22 18:36:33 +0900 | [diff] [blame] | 36 | Shared sharedLib |
| 37 | Static staticLib |
Jeongik Cha | 37e2ad5 | 2019-04-18 13:44:26 +0900 | [diff] [blame] | 38 | Static_libs []string |
Steven Moreland | 81079f9 | 2018-07-06 16:15:53 -0700 | [diff] [blame] | 39 | Shared_libs []string |
| 40 | Export_shared_lib_headers []string |
| 41 | Export_generated_headers []string |
Steven Moreland | c26d814 | 2018-09-17 14:25:33 -0700 | [diff] [blame] | 42 | Sdk_version *string |
| 43 | Stl *string |
Steven Moreland | 63492e6 | 2018-11-14 14:36:13 -0800 | [diff] [blame] | 44 | Cpp_std *string |
Steven Moreland | 92b3a85 | 2018-12-12 13:08:49 -0800 | [diff] [blame] | 45 | Cflags []string |
Jeongik Cha | 2aa389a | 2019-10-18 15:57:38 +0900 | [diff] [blame^] | 46 | Stem *string |
Steven Moreland | 81079f9 | 2018-07-06 16:15:53 -0700 | [diff] [blame] | 47 | } |
| 48 | |
| 49 | type javaProperties struct { |
Paul Duffin | 4bcc0dc | 2019-06-12 10:53:09 +0100 | [diff] [blame] | 50 | Name *string |
| 51 | Owner *string |
| 52 | Defaults []string |
| 53 | Installable *bool |
| 54 | Sdk_version *string |
| 55 | Srcs []string |
| 56 | Static_libs []string |
Steven Moreland | 81079f9 | 2018-07-06 16:15:53 -0700 | [diff] [blame] | 57 | } |
| 58 | |
| 59 | type phonyProperties struct { |
| 60 | Name *string |
| 61 | Required []string |
| 62 | } |