This is a reland of cd469a4ce5315fee62bb77b5e781a18a99da506d With vpython specified Original change's description: > Add support for launching webcam software for use in recipes > > * Copy ensure_webcam_is_running.py from recipes repo > * Turn it into a wrapper that can launch another script > (fix_python_path is copied from test_env.py as _ForcePythonInterpreter) > * Support it in mb.py > * Add it to video_capture_unittests > > No-Try: True > Bug: chromium:755660 > Change-Id: I376724a77e443620724add7818592e9368d02079 > Reviewed-on: https://webrtc-review.googlesource.com/77320 > Commit-Queue: Oleh Prypin <oprypin@webrtc.org> > Reviewed-by: Patrik Höglund <phoglund@webrtc.org> > Cr-Commit-Position: refs/heads/master@{#23275} No-Try: True Bug: chromium:755660 Change-Id: Ibf4fbe3fea4b003a23b12332b3a6078a2db99a8d Reviewed-on: https://webrtc-review.googlesource.com/77460 Reviewed-by: Patrik Höglund <phoglund@webrtc.org> Commit-Queue: Oleh Prypin <oprypin@webrtc.org> Cr-Commit-Position: refs/heads/master@{#23279}
MB - The Meta-Build wrapper
MB is a simple wrapper intended to provide a uniform interface to either GYP or GN, such that users and bots can call one script and not need to worry about whether a given bot is meant to use GN or GYP.
It supports two main functions:
-
"gen" - the main
gyp_chromium/gn geninvocation that generates the Ninja files needed for the build. -
"analyze" - the step that takes a list of modified files and a list of desired targets and reports which targets will need to be rebuilt.
We also use MB as a forcing function to collect all of the different
build configurations that we actually support for Chromium builds into
one place, in //tools/mb/mb_config.pyl.
For more information, see: