2018-05-04 01:44:29 +03:00
|
|
|
vars = {
|
2018-09-21 03:38:48 +03:00
|
|
|
'chromium_version':
|
|
|
|
'69.0.3497.106',
|
|
|
|
'node_version':
|
|
|
|
'18a9880b70039f5d41ee860a95fe84e5ef928973',
|
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
|
|
|
|
|
|
|
# Python interface to Amazon Web Services. Is used for releases only.
|
|
|
|
'checkout_boto': False,
|
|
|
|
|
2018-10-06 01:21:46 +03:00
|
|
|
'checkout_nacl': False,
|
|
|
|
'checkout_libaom': True,
|
|
|
|
'checkout_oculus_sdk': 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
|
|
|
|
|
|
|
# It is always needed for normal Electron builds,
|
|
|
|
# but might be impossible for custom in-house builds.
|
|
|
|
'download_external_binaries': True,
|
2018-05-04 01:44:29 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
deps = {
|
|
|
|
'src':
|
|
|
|
(Var("chromium_git")) + '/chromium/src.git@' + (Var("chromium_version")),
|
|
|
|
'src/third_party/electron_node':
|
|
|
|
(Var("electron_git")) + '/node.git@' + (Var("node_version")),
|
2018-09-14 08:02:16 +03:00
|
|
|
'src/electron/vendor/pyyaml':
|
|
|
|
(Var("yaml_git")) + '/pyyaml.git@' + (Var("pyyaml_version")),
|
2018-10-05 03:20:25 +03:00
|
|
|
'src/electron/vendor/boto': {
|
|
|
|
'url': Var('boto_git') + '/boto.git' + '@' + Var('boto_version'),
|
|
|
|
'condition': 'checkout_boto',
|
|
|
|
},
|
|
|
|
'src/electron/vendor/requests': {
|
|
|
|
'url': Var('requests_git') + '/requests.git' + '@' + Var('requests_version'),
|
|
|
|
'condition': 'checkout_requests',
|
|
|
|
},
|
2018-05-04 01:44:29 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
hooks = [
|
|
|
|
{
|
2018-10-06 01:21:46 +03:00
|
|
|
'name': 'patch_chromium',
|
|
|
|
'pattern': 'src/electron',
|
2018-05-04 01:44:29 +03:00
|
|
|
'action': [
|
2018-06-22 02:43:41 +03:00
|
|
|
'python',
|
2018-09-14 08:02:16 +03:00
|
|
|
'src/electron/script/apply-patches',
|
2018-08-17 02:29:19 +03:00
|
|
|
'--project-root=.',
|
2018-10-06 01:21:46 +03:00
|
|
|
'--commit',
|
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
|
|
|
'--root-url=http://github.com/electron/electron-frameworks/releases/download',
|
|
|
|
'--version=v1.4.0',
|
|
|
|
],
|
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',
|
2018-06-22 02:43:41 +03:00
|
|
|
'import os; os.chdir("src"); os.chdir("electron"); os.system("npm 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',
|
2018-10-05 03:20:25 +03:00
|
|
|
'condition': 'checkout_boto',
|
2018-09-27 10:17:42 +03:00
|
|
|
'action': [
|
|
|
|
'python',
|
|
|
|
'-c',
|
|
|
|
'import os; os.chdir("src"); os.chdir("electron"); os.chdir("vendor"); os.chdir("boto"); os.system("python setup.py build");',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
2018-10-05 03:20:25 +03:00
|
|
|
'name': 'setup_requests',
|
2018-10-06 01:21:46 +03:00
|
|
|
'pattern': 'src/electron',
|
2018-10-05 03:20:25 +03:00
|
|
|
'condition': 'checkout_requests',
|
2018-09-27 10:17:42 +03:00
|
|
|
'action': [
|
|
|
|
'python',
|
|
|
|
'-c',
|
|
|
|
'import os; os.chdir("src"); os.chdir("electron"); os.chdir("vendor"); os.chdir("requests"); os.system("python setup.py build");',
|
|
|
|
],
|
|
|
|
}
|
2018-05-04 01:44:29 +03:00
|
|
|
]
|
|
|
|
|
|
|
|
recursedeps = [
|
|
|
|
'src',
|
|
|
|
]
|
2018-06-20 22:50:43 +03:00
|
|
|
|
|
|
|
gclient_gn_args = [
|
|
|
|
'checkout_libaom',
|
|
|
|
'checkout_nacl',
|
2018-10-06 01:21:46 +03:00
|
|
|
'checkout_oculus_sdk',
|
2018-06-20 22:50:43 +03:00
|
|
|
]
|
|
|
|
gclient_gn_args_file = 'src/build/config/gclient_args.gni'
|