2018-10-03 01:34:23 +03:00
|
|
|
gclient_gn_args_file = 'src/build/config/gclient_args.gni'
|
|
|
|
gclient_gn_args = [
|
|
|
|
'build_with_chromium',
|
|
|
|
'checkout_android',
|
|
|
|
'checkout_android_native_support',
|
|
|
|
'checkout_libaom',
|
|
|
|
'checkout_nacl',
|
2020-05-26 23:06:26 +03:00
|
|
|
'checkout_pgo_profiles',
|
2019-09-18 22:58:00 +03:00
|
|
|
'checkout_oculus_sdk',
|
2020-01-17 21:41:52 +03:00
|
|
|
'checkout_openxr',
|
2020-07-14 04:13:34 +03:00
|
|
|
'checkout_google_benchmark',
|
|
|
|
'mac_xcode_version',
|
2018-10-03 01:34:23 +03:00
|
|
|
]
|
|
|
|
|
2018-05-04 01:44:29 +03:00
|
|
|
vars = {
|
2018-09-21 03:38:48 +03:00
|
|
|
'chromium_version':
|
2021-03-05 00:51:14 +03:00
|
|
|
'91.0.4435.3',
|
2018-09-21 03:38:48 +03:00
|
|
|
'node_version':
|
2021-02-25 20:52:57 +03:00
|
|
|
'v14.16.0',
|
2019-05-29 22:38:17 +03:00
|
|
|
'nan_version':
|
2020-03-04 00:35:05 +03:00
|
|
|
'2c4ee8a32a299eada3cd6e468bbd0a473bfea96d',
|
2020-07-03 05:42:40 +03:00
|
|
|
'squirrel.mac_version':
|
2020-11-24 11:38:22 +03:00
|
|
|
'cdc0729c8bf8576bfef18629186e1e9ecf1b0d9f',
|
2018-05-04 01:44:29 +03:00
|
|
|
|
2018-10-06 01:21:46 +03:00
|
|
|
'pyyaml_version': '3.12',
|
2018-10-05 03:20:25 +03:00
|
|
|
|
2018-10-06 01:21:46 +03:00
|
|
|
'chromium_git': 'https://chromium.googlesource.com',
|
|
|
|
'electron_git': 'https://github.com/electron',
|
2019-07-02 23:54:22 +03:00
|
|
|
'nodejs_git': 'https://github.com/nodejs',
|
2018-10-06 01:21:46 +03:00
|
|
|
'yaml_git': 'https://github.com/yaml',
|
2020-07-03 05:42:40 +03:00
|
|
|
'squirrel_git': 'https://github.com/Squirrel',
|
2018-10-05 03:20:25 +03:00
|
|
|
|
2019-05-29 22:38:17 +03:00
|
|
|
# KEEP IN SYNC WITH utils.js FILE
|
2019-04-30 23:59:47 +03:00
|
|
|
'yarn_version': '1.15.2',
|
|
|
|
|
2018-10-11 16:10:26 +03:00
|
|
|
# To be able to build clean Chromium from sources.
|
|
|
|
'apply_patches': True,
|
|
|
|
|
2020-10-20 21:49:57 +03:00
|
|
|
# To use an mtime cache for patched files to speed up builds.
|
|
|
|
'use_mtime_cache': True,
|
|
|
|
|
2018-10-24 20:50:36 +03:00
|
|
|
# To allow in-house builds to checkout those manually.
|
|
|
|
'checkout_chromium': True,
|
|
|
|
'checkout_node': True,
|
2019-05-29 22:38:17 +03:00
|
|
|
'checkout_nan': True,
|
2020-05-26 23:06:26 +03:00
|
|
|
'checkout_pgo_profiles': True,
|
2018-10-24 20:50:36 +03:00
|
|
|
|
2018-11-05 18:19:00 +03:00
|
|
|
# It's only needed to parse the native tests configurations.
|
|
|
|
'checkout_pyyaml': False,
|
|
|
|
|
2020-07-14 04:13:34 +03:00
|
|
|
'mac_xcode_version': 'default',
|
|
|
|
|
2019-04-23 01:36:59 +03:00
|
|
|
# To allow running hooks without parsing the DEPS tree
|
|
|
|
'process_deps': True,
|
|
|
|
|
2018-10-03 01:34:23 +03:00
|
|
|
'checkout_nacl':
|
|
|
|
False,
|
|
|
|
'checkout_libaom':
|
|
|
|
True,
|
|
|
|
'checkout_oculus_sdk':
|
|
|
|
False,
|
2019-09-18 22:58:00 +03:00
|
|
|
'checkout_openxr':
|
|
|
|
False,
|
2018-10-03 01:34:23 +03:00
|
|
|
'build_with_chromium':
|
|
|
|
True,
|
|
|
|
'checkout_android':
|
|
|
|
False,
|
|
|
|
'checkout_android_native_support':
|
|
|
|
False,
|
2020-01-17 21:41:52 +03:00
|
|
|
'checkout_google_benchmark':
|
|
|
|
False,
|
2020-11-05 04:24:17 +03:00
|
|
|
'checkout_clang_tidy':
|
|
|
|
True,
|
2018-05-04 01:44:29 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
deps = {
|
2018-10-24 20:50:36 +03:00
|
|
|
'src': {
|
|
|
|
'url': (Var("chromium_git")) + '/chromium/src.git@' + (Var("chromium_version")),
|
2019-04-23 01:36:59 +03:00
|
|
|
'condition': 'checkout_chromium and process_deps',
|
2018-10-24 20:50:36 +03:00
|
|
|
},
|
2019-05-29 22:38:17 +03:00
|
|
|
'src/third_party/nan': {
|
|
|
|
'url': (Var("nodejs_git")) + '/nan.git@' + (Var("nan_version")),
|
|
|
|
'condition': 'checkout_nan and process_deps',
|
|
|
|
},
|
2018-10-24 20:50:36 +03:00
|
|
|
'src/third_party/electron_node': {
|
2019-07-16 20:23:04 +03:00
|
|
|
'url': (Var("nodejs_git")) + '/node.git@' + (Var("node_version")),
|
2019-04-23 01:36:59 +03:00
|
|
|
'condition': 'checkout_node and process_deps',
|
2018-10-24 20:50:36 +03:00
|
|
|
},
|
2018-11-05 18:19:00 +03:00
|
|
|
'src/electron/vendor/pyyaml': {
|
|
|
|
'url': (Var("yaml_git")) + '/pyyaml.git@' + (Var("pyyaml_version")),
|
2019-04-23 01:36:59 +03:00
|
|
|
'condition': 'checkout_pyyaml and process_deps',
|
2018-11-05 18:19:00 +03:00
|
|
|
},
|
2020-07-03 05:42:40 +03:00
|
|
|
'src/third_party/squirrel.mac': {
|
|
|
|
'url': Var("squirrel_git") + '/Squirrel.Mac.git@' + Var("squirrel.mac_version"),
|
|
|
|
'condition': 'process_deps',
|
|
|
|
},
|
|
|
|
'src/third_party/squirrel.mac/vendor/ReactiveObjC': {
|
|
|
|
'url': 'https://github.com/ReactiveCocoa/ReactiveObjC.git@74ab5baccc6f7202c8ac69a8d1e152c29dc1ea76',
|
|
|
|
'condition': 'process_deps'
|
|
|
|
},
|
|
|
|
'src/third_party/squirrel.mac/vendor/Mantle': {
|
|
|
|
'url': 'https://github.com/Mantle/Mantle.git@78d3966b3c331292ea29ec38661b25df0a245948',
|
|
|
|
'condition': 'process_deps',
|
|
|
|
}
|
2018-05-04 01:44:29 +03:00
|
|
|
}
|
|
|
|
|
2020-10-20 21:49:57 +03:00
|
|
|
pre_deps_hooks = [
|
|
|
|
{
|
|
|
|
'name': 'generate_mtime_cache',
|
|
|
|
'condition': '(checkout_chromium and apply_patches and use_mtime_cache) and process_deps',
|
|
|
|
'pattern': 'src/electron',
|
|
|
|
'action': [
|
|
|
|
'python3',
|
|
|
|
'src/electron/script/patches-mtime-cache.py',
|
|
|
|
'generate',
|
|
|
|
'--cache-file',
|
|
|
|
'src/electron/patches/mtime-cache.json',
|
|
|
|
'--patches-config',
|
|
|
|
'src/electron/patches/config.json',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
]
|
|
|
|
|
2018-05-04 01:44:29 +03:00
|
|
|
hooks = [
|
|
|
|
{
|
2018-10-06 01:21:46 +03:00
|
|
|
'name': 'patch_chromium',
|
2019-04-23 01:36:59 +03:00
|
|
|
'condition': '(checkout_chromium and apply_patches) and process_deps',
|
2018-10-06 01:21:46 +03:00
|
|
|
'pattern': 'src/electron',
|
2018-05-04 01:44:29 +03:00
|
|
|
'action': [
|
2020-07-06 23:12:23 +03:00
|
|
|
'python3',
|
2018-10-24 21:24:11 +03:00
|
|
|
'src/electron/script/apply_all_patches.py',
|
2019-06-06 02:36:17 +03:00
|
|
|
'src/electron/patches/config.json',
|
2018-05-04 01:44:29 +03:00
|
|
|
],
|
|
|
|
},
|
2020-10-20 21:49:57 +03:00
|
|
|
{
|
|
|
|
'name': 'apply_mtime_cache',
|
|
|
|
'condition': '(checkout_chromium and apply_patches and use_mtime_cache) and process_deps',
|
|
|
|
'pattern': 'src/electron',
|
|
|
|
'action': [
|
|
|
|
'python3',
|
|
|
|
'src/electron/script/patches-mtime-cache.py',
|
|
|
|
'apply',
|
|
|
|
'--cache-file',
|
|
|
|
'src/electron/patches/mtime-cache.json',
|
|
|
|
],
|
|
|
|
},
|
2018-05-04 01:44:29 +03:00
|
|
|
{
|
2018-10-06 01:21:46 +03:00
|
|
|
'name': 'electron_npm_deps',
|
|
|
|
'pattern': 'src/electron/package.json',
|
2018-05-04 01:44:29 +03:00
|
|
|
'action': [
|
2020-07-06 23:12:23 +03:00
|
|
|
'python3',
|
2018-05-04 01:44:29 +03:00
|
|
|
'-c',
|
2020-12-07 21:57:41 +03:00
|
|
|
'import os, subprocess; os.chdir(os.path.join("src", "electron")); subprocess.check_call(["python3", "script/lib/npx.py", "yarn@' + (Var("yarn_version")) + '", "install", "--frozen-lockfile"]);',
|
2018-05-04 01:44:29 +03:00
|
|
|
],
|
|
|
|
},
|
|
|
|
]
|
|
|
|
|
|
|
|
recursedeps = [
|
|
|
|
'src',
|
2020-07-03 05:42:40 +03:00
|
|
|
'src/third_party/squirrel.mac',
|
2018-05-04 01:44:29 +03:00
|
|
|
]
|