WARNING at build arg file (use "gn args <out_dir>" to edit):18:14: Build argument has no effect.
use_brlapi = 0
^
Did you mean "use_vaapi"?
The variable "use_brlapi" 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 3657ms
|
||
|---|---|---|
| .. | ||
| plays | ||
| Makefile | ||
| README.md | ||
| ansible.cfg | ||
| inventory.ini | ||
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 (
botoandboto3)