Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f8071670 authored by dimitry's avatar dimitry Committed by Dimitry Ivanov
Browse files

Make apex_key HostAndDeviceDefault

Since apex_key is used in number of apex_test host_supported modules it
is no longer a device only module.

Test: add new device target and check that the build does not fail
Change-Id: I6402e3b622d22ee0ca0e6af71dfd71a690938e49
parent 9dc186f1
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -55,8 +55,7 @@ type apexKeyProperties struct {
func apexKeyFactory() android.Module {
	module := &apexKey{}
	module.AddProperties(&module.properties)
	// This module is device-only
	android.InitAndroidArchModule(module, android.DeviceSupported, android.MultilibCommon)
	android.InitAndroidArchModule(module, android.HostAndDeviceDefault, android.MultilibCommon)
	return module
}