|
|
@ -50,6 +50,7 @@ from .interpreterobjects import ( |
|
|
|
NullSubprojectInterpreter, |
|
|
|
NullSubprojectInterpreter, |
|
|
|
) |
|
|
|
) |
|
|
|
from .type_checking import ( |
|
|
|
from .type_checking import ( |
|
|
|
|
|
|
|
DEPENDS_KW, |
|
|
|
DEPFILE_KW, |
|
|
|
DEPFILE_KW, |
|
|
|
ENV_KW, |
|
|
|
ENV_KW, |
|
|
|
INSTALL_MODE_KW, |
|
|
|
INSTALL_MODE_KW, |
|
|
@ -1676,12 +1677,7 @@ This will become a hard error in the future.''' % kwargs['input'], location=self |
|
|
|
listify=True, |
|
|
|
listify=True, |
|
|
|
default=[], |
|
|
|
default=[], |
|
|
|
), |
|
|
|
), |
|
|
|
KwargInfo( |
|
|
|
DEPENDS_KW, |
|
|
|
'depends', |
|
|
|
|
|
|
|
ContainerTypeInfo(list, (build.BuildTarget, build.CustomTarget)), |
|
|
|
|
|
|
|
listify=True, |
|
|
|
|
|
|
|
default=[], |
|
|
|
|
|
|
|
), |
|
|
|
|
|
|
|
ENV_KW.evolve(since='0.57.0'), |
|
|
|
ENV_KW.evolve(since='0.57.0'), |
|
|
|
) |
|
|
|
) |
|
|
|
def func_run_target(self, node: mparser.FunctionNode, args: T.Tuple[str], |
|
|
|
def func_run_target(self, node: mparser.FunctionNode, args: T.Tuple[str], |
|
|
|