flutter/engine/scripts/rbe.gclient
Yegor afc68e3a10
gclient template file clarifications (#160882)
A few clarifications in the gclient file templates:

* Sort sections such that RBE and standard variants are consistent.
* Add web engine instructions in comments.
* Explain how to use SSH-based GitHub checkouts.
2024-12-27 19:36:20 +00:00

21 lines
576 B
Plaintext

# Copy this file to the root of your flutter checkout to bootstrap gclient
# or just run gclient sync in an empty directory with this file.
solutions = [
{
"deps_file": "DEPS",
"managed": False,
"name": ".",
"safesync_url": "",
# If you are using SSH to connect to GitHub, change the URL to:
# git@github.com:flutter/flutter.git
"url": "https://github.com/flutter/flutter.git",
"custom_vars": {
"use_rbe": True,
# Uncomment download_emsdk below if you plan to build the web engine.
# "download_emsdk": True,
},
},
]