Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
Classes | Functions | Variables
tool_wrapper Namespace Reference

Classes

class  WinTool
 

Functions

 main (args)
 

Variables

 BASE_DIR = os.path.dirname(os.path.abspath(__file__))
 
 _LINK_EXE_OUT_ARG = re.compile('/OUT:(?P<out>.+)$', re.IGNORECASE)
 

Detailed Description

Utility functions for Windows builds.

This file is copied to the build directory as part of toolchain setup and
is used to set up calls to tools used by the build that need wrappers.

Function Documentation

◆ main()

tool_wrapper.main (   args)

Definition at line 25 of file tool_wrapper.py.

25def main(args):
26 executor = WinTool()
27 exit_code = executor.Dispatch(args)
28 if exit_code is not None:
29 sys.exit(exit_code)
30
31
Definition main.py:1

Variable Documentation

◆ _LINK_EXE_OUT_ARG

tool_wrapper._LINK_EXE_OUT_ARG = re.compile('/OUT:(?P<out>.+)$', re.IGNORECASE)
protected

Definition at line 22 of file tool_wrapper.py.

◆ BASE_DIR

tool_wrapper.BASE_DIR = os.path.dirname(os.path.abspath(__file__))

Definition at line 18 of file tool_wrapper.py.