f59bdfb286
Currently, the only rules that can be defined in msm_kernel_extensions.bzl are invoked for each target. If a rule just needs to be declared once at the top level, there's no way to do that. Add and invoke a new macro from the top-level to enable this functionality. Change-Id: I239c0e44f6938dee7dda4c0cb1434f9bf925b13c Signed-off-by: John Moon <quic_johmoo@quicinc.com>
21 lines
337 B
Python
21 lines
337 B
Python
def define_top_level_rules():
|
|
return
|
|
|
|
def define_extras(target, flavor = None):
|
|
return
|
|
|
|
def get_build_config_fragments(target):
|
|
return []
|
|
|
|
def get_dtb_list(target):
|
|
return None
|
|
|
|
def get_dtbo_list(target):
|
|
return None
|
|
|
|
def get_dtstree(target):
|
|
return None
|
|
|
|
def get_vendor_ramdisk_binaries(target):
|
|
return None
|