blob: 3358e5bf9ff216b7db19f7fbd4a8268b23320eac [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
31}
32
33type javaProperties struct {
34 Name *string
35 Owner *string
36 Defaults []string
37 Installable *bool
38 No_framework_libs *bool
39 Sdk_version *string
40 Srcs []string
41 Static_libs []string
42}
43
44type phonyProperties struct {
45 Name *string
46 Required []string
47}