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',
|
|
|
|
'checkout_oculus_sdk'
|
|
|
|
]
|
|
|
|
|
2018-05-04 01:44:29 +03:00
|
|
|
vars = {
|
2018-09-21 03:38:48 +03:00
|
|
|
'chromium_version':
|
2019-04-20 20:20:37 +03:00
|
|
|
'1e9f9a24aa12bea9cf194a82a7e249bd1242ec4f',
|
2018-09-21 03:38:48 +03:00
|
|
|
'node_version':
|
2019-04-26 12:55:12 +03:00
|
|
|
'696d8fb66d6f65fc82869d390e0d2078970b1eb4',
|
2018-05-04 01:44:29 +03:00
|
|
|
|
2018-10-05 03:20:25 +03:00
|
|
|
'boto_version': 'f7574aa6cc2c819430c1f05e9a1a1a666ef8169b',
|
2018-10-06 01:21:46 +03:00
|
|
|
'pyyaml_version': '3.12',
|
2018-10-05 03:20:25 +03:00
|
|
|
'requests_version': 'e4d59bedfd3c7f4f254f4f5d036587bcd8152458',
|
|
|
|
|
|
|
|
'boto_git': 'https://github.com/boto',
|
2018-10-06 01:21:46 +03:00
|
|
|
'chromium_git': 'https://chromium.googlesource.com',
|
|
|
|
'electron_git': 'https://github.com/electron',
|
2018-10-05 03:20:25 +03:00
|
|
|
'requests_git': 'https://github.com/kennethreitz',
|
2018-10-06 01:21:46 +03:00
|
|
|
'yaml_git': 'https://github.com/yaml',
|
2018-10-05 03:20:25 +03:00
|
|
|
|
2018-10-11 16:10:26 +03:00
|
|
|
# To be able to build clean Chromium from sources.
|
|
|
|
'apply_patches': True,
|
|
|
|
|
2018-10-05 03:20:25 +03:00
|
|
|
# Python interface to Amazon Web Services. Is used for releases only.
|
|
|
|
'checkout_boto': False,
|
|
|
|
|
2018-10-24 20:50:36 +03:00
|
|
|
# To allow in-house builds to checkout those manually.
|
|
|
|
'checkout_chromium': True,
|
|
|
|
'checkout_node': True,
|
|
|
|
|
2018-11-05 18:19:00 +03:00
|
|
|
# It's only needed to parse the native tests configurations.
|
|
|
|
'checkout_pyyaml': False,
|
|
|
|
|
2018-10-05 03:20:25 +03:00
|
|
|
# Python "requests" module is used for releases only.
|
|
|
|
'checkout_requests': False,
|
2018-10-06 01:21:46 +03:00
|
|
|
|
2019-04-23 01:36:59 +03:00
|
|
|
# To allow running hooks without parsing the DEPS tree
|
|
|
|
'process_deps': True,
|
|
|
|
|
2018-10-06 01:21:46 +03:00
|
|
|
# It is always needed for normal Electron builds,
|
|
|
|
# but might be impossible for custom in-house builds.
|
|
|
|
'download_external_binaries': True,
|
2018-10-03 01:34:23 +03:00
|
|
|
|
|
|
|
'checkout_nacl':
|
|
|
|
False,
|
|
|
|
'checkout_libaom':
|
|
|
|
True,
|
|
|
|
'checkout_oculus_sdk':
|
|
|
|
False,
|
|
|
|
'build_with_chromium':
|
|
|
|
True,
|
|
|
|
'checkout_android':
|
|
|
|
False,
|
|
|
|
'checkout_android_native_support':
|
|
|
|
False,
|
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
|
|
|
},
|
|
|
|
'src/third_party/electron_node': {
|
|
|
|
'url': (Var("electron_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
|
|
|
},
|
2018-10-05 03:20:25 +03:00
|
|
|
'src/electron/vendor/boto': {
|
|
|
|
'url': Var('boto_git') + '/boto.git' + '@' + Var('boto_version'),
|
2019-04-23 01:36:59 +03:00
|
|
|
'condition': 'checkout_boto and process_deps',
|
2018-10-05 03:20:25 +03:00
|
|
|
},
|
|
|
|
'src/electron/vendor/requests': {
|
|
|
|
'url': Var('requests_git') + '/requests.git' + '@' + Var('requests_version'),
|
2019-04-23 01:36:59 +03:00
|
|
|
'condition': 'checkout_requests and process_deps',
|
2018-10-05 03:20:25 +03:00
|
|
|
},
|
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': [
|
2018-06-22 02:43:41 +03:00
|
|
|
'python',
|
2018-10-24 21:24:11 +03:00
|
|
|
'src/electron/script/apply_all_patches.py',
|
2018-11-05 19:31:28 +03:00
|
|
|
'src/electron/patches/common/config.json',
|
2018-05-04 01:44:29 +03:00
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
2018-10-06 01:21:46 +03:00
|
|
|
'name': 'electron_external_binaries',
|
|
|
|
'pattern': 'src/electron/script/update-external-binaries.py',
|
|
|
|
'condition': 'download_external_binaries',
|
2018-05-04 01:44:29 +03:00
|
|
|
'action': [
|
2018-06-22 02:43:41 +03:00
|
|
|
'python',
|
2018-05-04 01:44:29 +03:00
|
|
|
'src/electron/script/update-external-binaries.py',
|
2018-10-06 01:21:46 +03:00
|
|
|
],
|
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': [
|
2018-06-22 02:43:41 +03:00
|
|
|
'python',
|
2018-05-04 01:44:29 +03:00
|
|
|
'-c',
|
2019-01-23 13:31:14 +03:00
|
|
|
'import os, subprocess; os.chdir(os.path.join("src", "electron")); subprocess.check_call(["python", "script/lib/npm.py", "install"]);',
|
2018-05-04 01:44:29 +03:00
|
|
|
],
|
|
|
|
},
|
2018-09-27 10:17:42 +03:00
|
|
|
{
|
2018-10-05 03:20:25 +03:00
|
|
|
'name': 'setup_boto',
|
2018-10-06 01:21:46 +03:00
|
|
|
'pattern': 'src/electron',
|
2019-04-23 01:36:59 +03:00
|
|
|
'condition': 'checkout_boto and process_deps',
|
2018-09-27 10:17:42 +03:00
|
|
|
'action': [
|
|
|
|
'python',
|
|
|
|
'-c',
|
2019-01-23 13:31:14 +03:00
|
|
|
'import os, subprocess; os.chdir(os.path.join("src", "electron", "vendor", "boto")); subprocess.check_call(["python", "setup.py", "build"]);',
|
2018-09-27 10:17:42 +03:00
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
2018-10-05 03:20:25 +03:00
|
|
|
'name': 'setup_requests',
|
2018-10-06 01:21:46 +03:00
|
|
|
'pattern': 'src/electron',
|
2019-04-23 01:36:59 +03:00
|
|
|
'condition': 'checkout_requests and process_deps',
|
2018-09-27 10:17:42 +03:00
|
|
|
'action': [
|
|
|
|
'python',
|
|
|
|
'-c',
|
2019-01-23 13:31:14 +03:00
|
|
|
'import os, subprocess; os.chdir(os.path.join("src", "electron", "vendor", "requests")); subprocess.check_call(["python", "setup.py", "build"]);',
|
2018-09-27 10:17:42 +03:00
|
|
|
],
|
2019-01-23 13:31:14 +03:00
|
|
|
},
|
2018-05-04 01:44:29 +03:00
|
|
|
]
|
|
|
|
|
|
|
|
recursedeps = [
|
|
|
|
'src',
|
|
|
|
]
|