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

Commit 286dfb0c authored by Martin Brabham's avatar Martin Brabham
Browse files

SecurityModule: Add security module to gd_device

Bug: 144742237
Test: ./cert/run_cert_facade_only.sh
Change-Id: I9f2ff82b72559e62bce0a1be2f05c5d50ab4d23c
parent cdf585e0
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -20,6 +20,7 @@ from hal import facade_pb2_grpc as hal_facade_pb2_grpc
from hci import facade_pb2_grpc as hci_facade_pb2_grpc
from hci.facade import le_advertising_manager_facade_pb2_grpc
from l2cap.classic import facade_pb2_grpc as l2cap_facade_pb2_grpc
from security import facade_pb2_grpc as security_facade_pb2_grpc

ACTS_CONTROLLER_CONFIG_NAME = "GdDevice"
ACTS_CONTROLLER_REFERENCE_NAME = "gd_devices"
@@ -78,3 +79,5 @@ class GdDevice(GdDeviceBase):
            self.grpc_channel)
        self.hci_le_advertising_manager = le_advertising_manager_facade_pb2_grpc.LeAdvertisingManagerFacadeStub(
            self.grpc_channel)
        self.security = security_facade_pb2_grpc.SecurityModuleFacadeStub(
            self.grpc_channel)