Yu Liu | dd9ccb4 | 2024-10-07 17:07:44 +0000 | [diff] [blame^] | 1 | package android |
| 2 | |
| 3 | import ( |
| 4 | "github.com/google/blueprint" |
| 5 | "github.com/google/blueprint/proptools" |
| 6 | ) |
| 7 | |
| 8 | type ModuleProxy struct { |
| 9 | module blueprint.ModuleProxy |
| 10 | } |
| 11 | |
| 12 | func (m ModuleProxy) Name() string { |
| 13 | return m.module.Name() |
| 14 | } |
| 15 | |
| 16 | func (m ModuleProxy) GenerateBuildActions(context blueprint.ModuleContext) { |
| 17 | m.module.GenerateBuildActions(context) |
| 18 | } |
| 19 | |
| 20 | func (m ModuleProxy) GenerateAndroidBuildActions(context ModuleContext) { |
| 21 | panic("method is not implemented on ModuleProxy") |
| 22 | } |
| 23 | |
| 24 | func (m ModuleProxy) ComponentDepsMutator(ctx BottomUpMutatorContext) { |
| 25 | panic("method is not implemented on ModuleProxy") |
| 26 | } |
| 27 | |
| 28 | func (m ModuleProxy) DepsMutator(context BottomUpMutatorContext) { |
| 29 | panic("method is not implemented on ModuleProxy") |
| 30 | } |
| 31 | |
| 32 | func (m ModuleProxy) base() *ModuleBase { |
| 33 | panic("method is not implemented on ModuleProxy") |
| 34 | } |
| 35 | |
| 36 | func (m ModuleProxy) Disable() { |
| 37 | |
| 38 | panic("method is not implemented on ModuleProxy") |
| 39 | } |
| 40 | |
| 41 | func (m ModuleProxy) Enabled(ctx ConfigurableEvaluatorContext) bool { |
| 42 | panic("method is not implemented on ModuleProxy") |
| 43 | } |
| 44 | |
| 45 | func (m ModuleProxy) Target() Target { |
| 46 | panic("method is not implemented on ModuleProxy") |
| 47 | } |
| 48 | |
| 49 | func (m ModuleProxy) MultiTargets() []Target { |
| 50 | panic("method is not implemented on ModuleProxy") |
| 51 | } |
| 52 | |
| 53 | func (m ModuleProxy) ImageVariation() blueprint.Variation { |
| 54 | panic("method is not implemented on ModuleProxy") |
| 55 | } |
| 56 | |
| 57 | func (m ModuleProxy) Owner() string { |
| 58 | panic("method is not implemented on ModuleProxy") |
| 59 | } |
| 60 | |
| 61 | func (m ModuleProxy) InstallInData() bool { |
| 62 | panic("method is not implemented on ModuleProxy") |
| 63 | } |
| 64 | |
| 65 | func (m ModuleProxy) InstallInTestcases() bool { |
| 66 | panic("method is not implemented on ModuleProxy") |
| 67 | } |
| 68 | |
| 69 | func (m ModuleProxy) InstallInSanitizerDir() bool { |
| 70 | panic("method is not implemented on ModuleProxy") |
| 71 | } |
| 72 | |
| 73 | func (m ModuleProxy) InstallInRamdisk() bool { |
| 74 | panic("method is not implemented on ModuleProxy") |
| 75 | } |
| 76 | |
| 77 | func (m ModuleProxy) InstallInVendorRamdisk() bool { |
| 78 | panic("method is not implemented on ModuleProxy") |
| 79 | } |
| 80 | |
| 81 | func (m ModuleProxy) InstallInDebugRamdisk() bool { |
| 82 | panic("method is not implemented on ModuleProxy") |
| 83 | } |
| 84 | |
| 85 | func (m ModuleProxy) InstallInRecovery() bool { |
| 86 | panic("method is not implemented on ModuleProxy") |
| 87 | } |
| 88 | |
| 89 | func (m ModuleProxy) InstallInRoot() bool { |
| 90 | panic("method is not implemented on ModuleProxy") |
| 91 | } |
| 92 | |
| 93 | func (m ModuleProxy) InstallInOdm() bool { |
| 94 | panic("method is not implemented on ModuleProxy") |
| 95 | } |
| 96 | |
| 97 | func (m ModuleProxy) InstallInProduct() bool { |
| 98 | panic("method is not implemented on ModuleProxy") |
| 99 | } |
| 100 | |
| 101 | func (m ModuleProxy) InstallInVendor() bool { |
| 102 | panic("method is not implemented on ModuleProxy") |
| 103 | } |
| 104 | |
| 105 | func (m ModuleProxy) InstallInSystemExt() bool { |
| 106 | panic("method is not implemented on ModuleProxy") |
| 107 | } |
| 108 | |
| 109 | func (m ModuleProxy) InstallForceOS() (*OsType, *ArchType) { |
| 110 | panic("method is not implemented on ModuleProxy") |
| 111 | } |
| 112 | |
| 113 | func (m ModuleProxy) PartitionTag(d DeviceConfig) string { |
| 114 | panic("method is not implemented on ModuleProxy") |
| 115 | } |
| 116 | |
| 117 | func (m ModuleProxy) HideFromMake() { |
| 118 | panic("method is not implemented on ModuleProxy") |
| 119 | } |
| 120 | |
| 121 | func (m ModuleProxy) IsHideFromMake() bool { |
| 122 | panic("method is not implemented on ModuleProxy") |
| 123 | } |
| 124 | |
| 125 | func (m ModuleProxy) IsSkipInstall() bool { |
| 126 | panic("method is not implemented on ModuleProxy") |
| 127 | } |
| 128 | |
| 129 | func (m ModuleProxy) MakeUninstallable() { |
| 130 | panic("method is not implemented on ModuleProxy") |
| 131 | } |
| 132 | |
| 133 | func (m ModuleProxy) ReplacedByPrebuilt() { |
| 134 | panic("method is not implemented on ModuleProxy") |
| 135 | } |
| 136 | |
| 137 | func (m ModuleProxy) IsReplacedByPrebuilt() bool { |
| 138 | panic("method is not implemented on ModuleProxy") |
| 139 | } |
| 140 | |
| 141 | func (m ModuleProxy) ExportedToMake() bool { |
| 142 | panic("method is not implemented on ModuleProxy") |
| 143 | } |
| 144 | |
| 145 | func (m ModuleProxy) EffectiveLicenseKinds() []string { |
| 146 | panic("method is not implemented on ModuleProxy") |
| 147 | } |
| 148 | |
| 149 | func (m ModuleProxy) EffectiveLicenseFiles() Paths { |
| 150 | panic("method is not implemented on ModuleProxy") |
| 151 | } |
| 152 | |
| 153 | func (m ModuleProxy) AddProperties(props ...interface{}) { |
| 154 | panic("method is not implemented on ModuleProxy") |
| 155 | } |
| 156 | |
| 157 | func (m ModuleProxy) GetProperties() []interface{} { |
| 158 | panic("method is not implemented on ModuleProxy") |
| 159 | } |
| 160 | |
| 161 | func (m ModuleProxy) BuildParamsForTests() []BuildParams { |
| 162 | panic("method is not implemented on ModuleProxy") |
| 163 | } |
| 164 | |
| 165 | func (m ModuleProxy) RuleParamsForTests() map[blueprint.Rule]blueprint.RuleParams { |
| 166 | panic("method is not implemented on ModuleProxy") |
| 167 | } |
| 168 | |
| 169 | func (m ModuleProxy) VariablesForTests() map[string]string { |
| 170 | panic("method is not implemented on ModuleProxy") |
| 171 | } |
| 172 | |
| 173 | func (m ModuleProxy) String() string { |
| 174 | return m.module.Name() |
| 175 | } |
| 176 | |
| 177 | func (m ModuleProxy) qualifiedModuleId(ctx BaseModuleContext) qualifiedModuleName { |
| 178 | panic("method is not implemented on ModuleProxy") |
| 179 | } |
| 180 | |
| 181 | func (m ModuleProxy) visibilityProperties() []visibilityProperty { |
| 182 | panic("method is not implemented on ModuleProxy") |
| 183 | } |
| 184 | |
| 185 | func (m ModuleProxy) RequiredModuleNames(ctx ConfigurableEvaluatorContext) []string { |
| 186 | panic("method is not implemented on ModuleProxy") |
| 187 | } |
| 188 | |
| 189 | func (m ModuleProxy) HostRequiredModuleNames() []string { |
| 190 | panic("method is not implemented on ModuleProxy") |
| 191 | } |
| 192 | |
| 193 | func (m ModuleProxy) TargetRequiredModuleNames() []string { |
| 194 | panic("method is not implemented on ModuleProxy") |
| 195 | } |
| 196 | |
| 197 | func (m ModuleProxy) VintfFragmentModuleNames(ctx ConfigurableEvaluatorContext) []string { |
| 198 | panic("method is not implemented on ModuleProxy") |
| 199 | } |
| 200 | |
| 201 | func (m ModuleProxy) ConfigurableEvaluator(ctx ConfigurableEvaluatorContext) proptools.ConfigurableEvaluator { |
| 202 | panic("method is not implemented on ModuleProxy") |
| 203 | } |