Skip to content

Instantly share code, notes, and snippets.

@eighty4
Last active June 1, 2023 16:40
Show Gist options
  • Save eighty4/ffff4bcccf4272dae04675c37c3a3dfb to your computer and use it in GitHub Desktop.
Save eighty4/ffff4bcccf4272dae04675c37c3a3dfb to your computer and use it in GitHub Desktop.
For gclient syncing repos from googlesource.com. Install depot_tools, and run `gclient sync` from a directory with this .gclient file.
solutions = [
{
"name": "chromium",
"url": "https://chromium.googlesource.com/chromium/src.git",
"managed": False,
"custom_deps": {},
"custom_vars": {},
},
{ "name" : 'libyuv',
"url" : 'https://chromium.googlesource.com/libyuv/libyuv',
"deps_file" : 'DEPS',
"managed" : True,
"custom_deps" : {
},
"custom_vars": {},
},
{ "name" : 'webrtc',
"url" : 'https://webrtc.googlesource.com/src',
"deps_file" : 'DEPS',
"managed" : True,
"custom_deps" : {
},
"custom_vars": {},
},
{ "name" : 'libvpx',
"url" : 'https://chromium.googlesource.com/webm/libvpx',
"deps_file" : 'DEPS',
"managed" : True,
"custom_deps" : {
},
"custom_vars": {},
},
{ "name" : 'libwebp',
"url" : 'https://chromium.googlesource.com/webm/libwebp',
"deps_file" : 'DEPS',
"managed" : True,
"custom_deps" : {
},
"custom_vars": {},
},
{ "name" : 'skia',
"url" : 'https://chromium.googlesource.com/skia',
"deps_file" : 'DEPS',
"managed" : True,
"custom_deps" : {
},
"custom_vars": {},
},
{ "name" : 'libwebm',
"url" : 'https://chromium.googlesource.com/webm/libwebm',
"deps_file" : 'DEPS',
"managed" : True,
"custom_deps" : {
},
"custom_vars": {},
},
{ "name" : 'v8',
"url" : 'https://chromium.googlesource.com/v8/v8',
"deps_file" : 'DEPS',
"managed" : True,
"custom_deps" : {
},
"custom_vars": {},
},
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment