chromium/_/ansible
Sparticuz a4d7b52dce Fix build warning
WARNING at build arg file (use "gn args <out_dir>" to edit):10:27: Build argument has no effect.
enable_one_click_signin = false
                          ^----
The variable "enable_one_click_signin" was set as a build argument
but never appeared in a declare_args() block in any buildfile.

To view all possible args, run "gn args --list <out_dir>"

The build continued as if that argument was unspecified.

Done. Made 18000 targets from 3088 files in 3670ms
2023-01-24 09:23:52 -05:00
..
plays Fix build warning 2023-01-24 09:23:52 -05:00
Makefile Initial Fork from chrome-aws-lambda 2022-09-26 15:05:08 -04:00
README.md update compilation readme, increase ssh timeout in play 2022-10-26 13:18:47 -04:00
ansible.cfg Update readme 2022-09-27 09:57:47 -04:00
inventory.ini Add Chromium version HeadlessChrome/109.0.5412.0 2022-12-07 16:14:30 -05:00

README.md

Chromium Playbook

This Ansible playbook will launch an EC2 c6a.12xlarge Spot Instance and compile Chromium statically.

Once the compilation finishes, the binary will be compressed with Brotli and downloaded.

The whole process usually takes around 1 hour to on a c6a.12xlarge instance.

Chromium Version

To compile a specific version of Chromium, update the chromium_revision variable in the Ansible inventory, i.e.:

chromium_revision=1056772

Usage

AWS_REGION=us-east-1 \
AWS_ACCESS_KEY=XXXXXXXXXXXXXXXXXXXX \
AWS_SECRET_KEY=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX \
make chromium

Requirements

  • Ansible
  • AWS SDK for Python (boto and boto3)