123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154 |
- 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'
- ]
- vars = {
- 'chromium_version':
- '76.0.3809.135',
- 'node_version':
- 'v12.4.0',
- 'boto_version': 'f7574aa6cc2c819430c1f05e9a1a1a666ef8169b',
- 'pyyaml_version': '3.12',
- 'requests_version': 'e4d59bedfd3c7f4f254f4f5d036587bcd8152458',
- 'boto_git': 'https://github.com/boto',
- 'chromium_git': 'https://chromium.googlesource.com',
- 'electron_git': 'https://github.com/electron',
- 'nodejs_git': 'https://github.com/nodejs',
- 'requests_git': 'https://github.com/kennethreitz',
- 'yaml_git': 'https://github.com/yaml',
- # KEEP IN SYNC WITH spec-runner FILE
- 'yarn_version': '1.15.2',
- # To be able to build clean Chromium from sources.
- 'apply_patches': True,
- # Apply the patches specific to windows on arm64
- 'apply_win_arm64_patches': False,
- # Python interface to Amazon Web Services. Is used for releases only.
- 'checkout_boto': False,
- # To allow in-house builds to checkout those manually.
- 'checkout_chromium': True,
- 'checkout_node': True,
- # It's only needed to parse the native tests configurations.
- 'checkout_pyyaml': False,
- # Python "requests" module is used for releases only.
- 'checkout_requests': False,
- # It is always needed for normal Electron builds,
- # but might be impossible for custom in-house builds.
- 'download_external_binaries': True,
- 'checkout_nacl':
- False,
- 'checkout_libaom':
- True,
- 'checkout_oculus_sdk':
- False,
- 'build_with_chromium':
- True,
- 'checkout_android':
- False,
- 'checkout_android_native_support':
- False,
- }
- deps = {
- 'src': {
- 'url': (Var("chromium_git")) + '/chromium/src.git@' + (Var("chromium_version")),
- 'condition': 'checkout_chromium',
- },
- 'src/third_party/electron_node': {
- 'url': (Var("nodejs_git")) + '/node.git@' + (Var("node_version")),
- 'condition': 'checkout_node',
- },
- 'src/electron/vendor/pyyaml': {
- 'url': (Var("yaml_git")) + '/pyyaml.git@' + (Var("pyyaml_version")),
- 'condition': 'checkout_pyyaml',
- },
- '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',
- },
- }
- hooks = [
- {
- 'name': 'patch_chromium',
- 'condition': 'checkout_chromium and apply_patches',
- 'pattern': 'src/electron',
- 'action': [
- 'python',
- 'src/electron/script/apply_all_patches.py',
- 'src/electron/patches/common/config.json',
- ],
- },
- {
- 'name': 'patch_chromium',
- 'condition': '(checkout_chromium and apply_patches) and apply_win_arm64_patches',
- 'pattern': 'src/electron',
- 'action': [
- 'python',
- 'src/electron/script/apply_all_patches.py',
- 'src/electron/patches/win_arm64/config.json',
- ],
- },
- {
- 'name': 'electron_external_binaries',
- 'pattern': 'src/electron/script/update-external-binaries.py',
- 'condition': 'download_external_binaries',
- 'action': [
- 'python',
- 'src/electron/script/update-external-binaries.py',
- ],
- },
- {
- 'name': 'electron_npm_deps',
- 'pattern': 'src/electron/package.json',
- 'action': [
- 'python',
- '-c',
- 'import os, subprocess; os.chdir(os.path.join("src", "electron")); subprocess.check_call(["python", "script/lib/npx.py", "yarn@' + (Var("yarn_version")) + '", "install", "--frozen-lockfile"]);',
- ],
- },
- {
- 'name': 'setup_boto',
- 'pattern': 'src/electron',
- 'condition': 'checkout_boto',
- 'action': [
- 'python',
- '-c',
- 'import os, subprocess; os.chdir(os.path.join("src", "electron", "vendor", "boto")); subprocess.check_call(["python", "setup.py", "build"]);',
- ],
- },
- {
- 'name': 'setup_requests',
- 'pattern': 'src/electron',
- 'condition': 'checkout_requests',
- 'action': [
- 'python',
- '-c',
- 'import os, subprocess; os.chdir(os.path.join("src", "electron", "vendor", "requests")); subprocess.check_call(["python", "setup.py", "build"]);',
- ],
- },
- ]
- recursedeps = [
- 'src',
- ]
|