diff options
author | 2020-05-08 19:12:34 +0000 | |
---|---|---|
committer | 2020-05-08 19:12:34 +0000 | |
commit | e08e03fa965f6deac48f7ac164b3f9ff507f100d (patch) | |
tree | cbf288dcc4e266be091e10e7f92f9268794c6a63 /android/sdk.go | |
parent | ad913d56ac197b9f6ed4ec0874c901ebf4f198cb (diff) |
Revert "Adds support for 'ignored-on-host'"
Revert submission 1302576
Bug: 156054601
Reason for revert: Presumed root cause of build break.
Reverted Changes:
Ifc8116e11:Detect invalid arch specific properties in snapsho...
I7ebd33307:Adds support for 'ignored-on-host'
I167b47a13:Fix snapshot of a host/device cc_library with stub...
Change-Id: I2a7ac0ef0232177eefc26542c11dc675d6f4cab2
Diffstat (limited to 'android/sdk.go')
-rw-r--r-- | android/sdk.go | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/android/sdk.go b/android/sdk.go index e823106e8..36afc3df2 100644 --- a/android/sdk.go +++ b/android/sdk.go @@ -351,15 +351,6 @@ type SdkMemberType interface { // values that differ by arch, fields not tagged as such must have common values across // all variants. // - // * Additional field tags can be specified on a field that will ignore certain values - // for the purpose of common value optimization. A value that is ignored must have the - // default value for the property type. This is to ensure that significant value are not - // ignored by accident. The purpose of this is to allow the snapshot generation to reflect - // the behavior of the runtime. e.g. if a property is ignored on the host then a property - // that is common for android can be treated as if it was common for android and host as - // the setting for host is ignored anyway. - // * `sdk:"ignored-on-host" - this indicates the property is ignored on the host variant. - // // * The sdk module type populates the BpModule structure, creating the arch specific // structure and calls AddToPropertySet(...) on the properties struct to add the member // specific properties in the correct place in the structure. |