diff options
Diffstat (limited to 'cc/cc.go')
| -rw-r--r-- | cc/cc.go | 10 |
1 files changed, 0 insertions, 10 deletions
@@ -410,11 +410,6 @@ type BaseProperties struct { // variant to have a ".sdk" suffix. SdkAndPlatformVariantVisibleToMake bool `blueprint:"mutated"` - // List of APEXes that this module has private access to for testing purpose. The module - // can depend on libraries that are not exported by the APEXes and use private symbols - // from the exported libraries. - Test_for []string `android:"arch_variant"` - Target struct { Platform struct { // List of modules required by the core variant. @@ -965,7 +960,6 @@ func (c *Module) AddJSONData(d *map[string]interface{}) { "IsLlndk": c.IsLlndk(), "IsVendorPublicLibrary": c.IsVendorPublicLibrary(), "ApexSdkVersion": c.apexSdkVersion, - "TestFor": c.TestFor(), "AidlSrcs": c.hasAidl, "LexSrcs": c.hasLex, "ProtoSrcs": c.hasProto, @@ -3690,10 +3684,6 @@ func (c *Module) AvailableFor(what string) bool { } } -func (c *Module) TestFor() []string { - return c.Properties.Test_for -} - func (c *Module) EverInstallable() bool { return c.installer != nil && // Check to see whether the module is actually ever installable. |