• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1package aidl
2
3import (
4	"android/soong/android"
5)
6
7func init() {
8	android.RegisterModuleType("aidl_interface_defaults", AidlInterfaceDefaultsFactory)
9}
10
11type Defaults struct {
12	android.ModuleBase
13	android.DefaultsModuleBase
14}
15
16func (d *Defaults) GenerateAndroidBuildActions(ctx android.ModuleContext) {
17}
18
19func (d *Defaults) DepsMutator(ctx android.BottomUpMutatorContext) {
20}
21
22func AidlInterfaceDefaultsFactory() android.Module {
23	module := &Defaults{}
24
25	module.AddProperties(
26		&aidlInterfaceProperties{},
27	)
28
29	android.InitDefaultsModule(module)
30
31	return module
32}
33