diff options
| author | mosimchah <mosimchah@gmail.com> | 2025-12-02 09:27:38 -0500 |
|---|---|---|
| committer | mosimchah <mosimchah@gmail.com> | 2025-12-02 09:27:38 -0500 |
| commit | c7bade461dc55726f62997d13a48582f7c4b4655 (patch) | |
| tree | ea0588da76060a2038f54f67efd046ca77634b10 /android/module_proxy.go | |
| parent | 0f5414d19317805e8bbbe7c4db5f0fd78769bad5 (diff) | |
| parent | 89d78cff8b00d3b20a90074635c3fe5a2ee49474 (diff) | |
Merge branch 'lineage-23.1' of https://github.com/LineageOS/android_build_soong into HEADw16.1
* 'lineage-23.1' of https://github.com/LineageOS/android_build_soong: (528 commits)
Revert "install_symlink: Make symlink target configurable"
Reapply "Clear as much of cc.Module as possible after GenerateBuildActions"
Revert "rust: config: Fix missing CPU variant LD flags in Rust"
Rename build-flag in outdir
Revert^4 "cipd: Default CIPD proxy server to on, add opt-out"
Convert check-vintf-all to phony with actions
Create a partial implementation of check-vintf-all for soong-only
Configure RBE rust pool based on build variant
Revert^3 "Add sdk version check to arr"
Add jdk.internal.invoke to the allowlist
Make droid always depend on symbols zip
Import Device and Odm skus
Don't install gob_gen in Soong
Remove bazel reference from run_integration_tests.sh
Fix bootstrap_test.sh
Don't panic in aconfig libraries when AllowMissingDependencies is set
Avoid returning nil paths from PathForModuleSrc
Revert "Flag controled clang version"
Rework module target dependencies on required deps
Revert^2 "Add sdk version check to arr"
...
Change-Id: I6e9a63fa14fda917a42e426e5dcebbad7f67e1de
Diffstat (limited to 'android/module_proxy.go')
| -rw-r--r-- | android/module_proxy.go | 230 |
1 files changed, 3 insertions, 227 deletions
diff --git a/android/module_proxy.go b/android/module_proxy.go index 561c4770c..c442e08f3 100644 --- a/android/module_proxy.go +++ b/android/module_proxy.go @@ -2,236 +2,12 @@ package android import ( "github.com/google/blueprint" - "github.com/google/blueprint/proptools" ) type ModuleProxy struct { - module blueprint.ModuleProxy + blueprint.ModuleProxy } -var _ Module = (*ModuleProxy)(nil) - -func (m ModuleProxy) IsNil() bool { - return m.module.IsNil() -} - -func (m ModuleProxy) Name() string { - return m.module.Name() -} - -func (m ModuleProxy) GenerateBuildActions(context blueprint.ModuleContext) { - m.module.GenerateBuildActions(context) -} - -func (m ModuleProxy) GenerateAndroidBuildActions(context ModuleContext) { - panic("method is not implemented on ModuleProxy") -} - -func (m ModuleProxy) ComponentDepsMutator(ctx BottomUpMutatorContext) { - panic("method is not implemented on ModuleProxy") -} - -func (m ModuleProxy) DepsMutator(context BottomUpMutatorContext) { - panic("method is not implemented on ModuleProxy") -} - -func (m ModuleProxy) base() *ModuleBase { - panic("method is not implemented on ModuleProxy") -} - -func (m ModuleProxy) Disable() { - - panic("method is not implemented on ModuleProxy") -} - -func (m ModuleProxy) Enabled(ctx ConfigurableEvaluatorContext) bool { - panic("method is not implemented on ModuleProxy") -} - -func (m ModuleProxy) Target() Target { - panic("method is not implemented on ModuleProxy") -} - -func (m ModuleProxy) MultiTargets() []Target { - panic("method is not implemented on ModuleProxy") -} - -func (m ModuleProxy) ImageVariation() blueprint.Variation { - panic("method is not implemented on ModuleProxy") -} - -func (m ModuleProxy) Owner() string { - panic("method is not implemented on ModuleProxy") -} - -func (m ModuleProxy) InstallInData() bool { - panic("method is not implemented on ModuleProxy") -} - -func (m ModuleProxy) InstallInTestcases() bool { - panic("method is not implemented on ModuleProxy") -} - -func (m ModuleProxy) InstallInSanitizerDir() bool { - panic("method is not implemented on ModuleProxy") -} - -func (m ModuleProxy) InstallInRamdisk() bool { - panic("method is not implemented on ModuleProxy") -} - -func (m ModuleProxy) InstallInVendorRamdisk() bool { - panic("method is not implemented on ModuleProxy") -} - -func (m ModuleProxy) InstallInDebugRamdisk() bool { - panic("method is not implemented on ModuleProxy") -} - -func (m ModuleProxy) InstallInRecovery() bool { - panic("method is not implemented on ModuleProxy") -} - -func (m ModuleProxy) InstallInRoot() bool { - panic("method is not implemented on ModuleProxy") -} - -func (m ModuleProxy) InstallInOdm() bool { - panic("method is not implemented on ModuleProxy") -} - -func (m ModuleProxy) InstallInProduct() bool { - panic("method is not implemented on ModuleProxy") -} - -func (m ModuleProxy) InstallInVendor() bool { - panic("method is not implemented on ModuleProxy") -} - -func (m ModuleProxy) InstallInSystemExt() bool { - panic("method is not implemented on ModuleProxy") -} - -func (m ModuleProxy) InstallInSystemDlkm() bool { - panic("method is not implemented on ModuleProxy") -} - -func (m ModuleProxy) InstallInVendorDlkm() bool { - panic("method is not implemented on ModuleProxy") -} - -func (m ModuleProxy) InstallInOdmDlkm() bool { - panic("method is not implemented on ModuleProxy") -} - -func (m ModuleProxy) InstallForceOS() (*OsType, *ArchType) { - panic("method is not implemented on ModuleProxy") -} - -func (m ModuleProxy) PartitionTag(d DeviceConfig) string { - panic("method is not implemented on ModuleProxy") -} - -func (m ModuleProxy) HideFromMake() { - panic("method is not implemented on ModuleProxy") -} - -func (m ModuleProxy) IsHideFromMake() bool { - panic("method is not implemented on ModuleProxy") -} - -func (m ModuleProxy) SkipInstall() { - panic("method is not implemented on ModuleProxy") -} - -func (m ModuleProxy) IsSkipInstall() bool { - panic("method is not implemented on ModuleProxy") -} - -func (m ModuleProxy) MakeUninstallable() { - panic("method is not implemented on ModuleProxy") -} - -func (m ModuleProxy) ReplacedByPrebuilt() { - panic("method is not implemented on ModuleProxy") -} - -func (m ModuleProxy) IsReplacedByPrebuilt() bool { - panic("method is not implemented on ModuleProxy") -} - -func (m ModuleProxy) ExportedToMake() bool { - panic("method is not implemented on ModuleProxy") -} - -func (m ModuleProxy) EffectiveLicenseFiles() Paths { - panic("method is not implemented on ModuleProxy") -} - -func (m ModuleProxy) AddProperties(props ...interface{}) { - panic("method is not implemented on ModuleProxy") -} - -func (m ModuleProxy) GetProperties() []interface{} { - panic("method is not implemented on ModuleProxy") -} - -func (m ModuleProxy) BuildParamsForTests() []BuildParams { - panic("method is not implemented on ModuleProxy") -} - -func (m ModuleProxy) RuleParamsForTests() map[blueprint.Rule]blueprint.RuleParams { - panic("method is not implemented on ModuleProxy") -} - -func (m ModuleProxy) VariablesForTests() map[string]string { - panic("method is not implemented on ModuleProxy") -} - -func (m ModuleProxy) String() string { - return m.module.String() -} - -func (m ModuleProxy) qualifiedModuleId(ctx BaseModuleContext) qualifiedModuleName { - panic("method is not implemented on ModuleProxy") -} - -func (m ModuleProxy) visibilityProperties() []visibilityProperty { - panic("method is not implemented on ModuleProxy") -} - -func (m ModuleProxy) RequiredModuleNames(ctx ConfigurableEvaluatorContext) []string { - panic("method is not implemented on ModuleProxy") -} - -func (m ModuleProxy) HostRequiredModuleNames() []string { - panic("method is not implemented on ModuleProxy") -} - -func (m ModuleProxy) TargetRequiredModuleNames() []string { - panic("method is not implemented on ModuleProxy") -} - -func (m ModuleProxy) VintfFragmentModuleNames(ctx ConfigurableEvaluatorContext) []string { - panic("method is not implemented on ModuleProxy") -} - -func (m ModuleProxy) ConfigurableEvaluator(ctx ConfigurableEvaluatorContext) proptools.ConfigurableEvaluator { - panic("method is not implemented on ModuleProxy") -} - -func (m ModuleProxy) DecodeMultilib(ctx ConfigContext) (string, string) { - panic("method is not implemented on ModuleProxy") -} - -func (m ModuleProxy) Overrides() []string { - panic("method is not implemented on ModuleProxy") -} - -func (m ModuleProxy) VintfFragments(ctx ConfigurableEvaluatorContext) []string { - panic("method is not implemented on ModuleProxy") -} - -func (m ModuleProxy) UseGenericConfig() bool { - panic("method is not implemented on ModuleProxy") +type ModuleOrProxy interface { + blueprint.ModuleOrProxy } |
