blob: 78c95031365c08efeb141718fa0d754c1e1c5321 [file] [log] [blame]
Steven Moreland81079f92018-07-06 16:15:53 -07001// 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
15package aidl
16
17type nameProperties struct {
18 Name *string
19}
20
21type ccProperties struct {
22 Name *string
23 Owner *string
24 Defaults []string
25 Vendor_available *bool
26 Generated_sources []string
27 Generated_headers []string
28 Shared_libs []string
29 Export_shared_lib_headers []string
30 Export_generated_headers []string
Steven Morelandc26d8142018-09-17 14:25:33 -070031 Sdk_version *string
32 Stl *string
Steven Moreland63492e62018-11-14 14:36:13 -080033 Cpp_std *string
Steven Moreland81079f92018-07-06 16:15:53 -070034}
35
36type javaProperties struct {
37 Name *string
38 Owner *string
39 Defaults []string
40 Installable *bool
41 No_framework_libs *bool
42 Sdk_version *string
43 Srcs []string
44 Static_libs []string
Steven Moreland81079f92018-07-06 16:15:53 -070045}
46
47type phonyProperties struct {
48 Name *string
49 Required []string
50}