├── .clang-format ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── launcher.c ├── launcher_test.c ├── minunit.h └── testdata ├── chromium-flags.conf └── etc └── chromium-flags.conf /.clang-format: -------------------------------------------------------------------------------- 1 | BasedOnStyle: LLVM 2 | -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foutrelis/chromium-launcher/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foutrelis/chromium-launcher/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foutrelis/chromium-launcher/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foutrelis/chromium-launcher/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foutrelis/chromium-launcher/HEAD/README.md -------------------------------------------------------------------------------- /launcher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foutrelis/chromium-launcher/HEAD/launcher.c -------------------------------------------------------------------------------- /launcher_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foutrelis/chromium-launcher/HEAD/launcher_test.c -------------------------------------------------------------------------------- /minunit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foutrelis/chromium-launcher/HEAD/minunit.h -------------------------------------------------------------------------------- /testdata/chromium-flags.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foutrelis/chromium-launcher/HEAD/testdata/chromium-flags.conf -------------------------------------------------------------------------------- /testdata/etc/chromium-flags.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foutrelis/chromium-launcher/HEAD/testdata/etc/chromium-flags.conf --------------------------------------------------------------------------------