b0fd26d5a8
1. Enables user to test all features of IPCLite. 2. Sends testing pings and receives replies to verify proper functionality. 3. Allows end user to configure test with various testing parameters. Change-Id: Id22ee40990cfe750301d1c03d6215f49a03bae47 Signed-off-by: Nagendra Jamadagni <quic_njamadag@quicinc.com>
17 lines
418 B
Python
17 lines
418 B
Python
load(":synx_modules.bzl", "synx_modules")
|
|
load(":synx_module_build.bzl", "define_consolidate_gki_modules")
|
|
|
|
def define_pineapple():
|
|
define_consolidate_gki_modules(
|
|
target = "pineapple",
|
|
registry = synx_modules,
|
|
modules = [
|
|
"synx-driver",
|
|
"ipclite",
|
|
"ipclite_test",
|
|
],
|
|
config_options = [
|
|
"TARGET_SYNX_ENABLE",
|
|
],
|
|
)
|