Roll DEPS.
1 file changed
tree: 9c6dad4dbe35f5d6782bd675d8fdf18779cc6b90
  1. base/
  2. build/
  3. buildtools/
  4. sandbox/
  5. testing/
  6. third_party/
  7. tools/
  8. .gn
  9. AUTHORS
  10. DEPS
  11. LICENSE
  12. README.md
README.md

Bauxite: a Linux sandbox toolkit

Bauxite is an extraction of the Chromium sandbox into its own separate repository. The effort currently focuses on making the Linux version available.

This early preview contains a lot of dependencies, most notably, Chromium's base/. We expect to reduce dependencies to a minimum in the future.

Get the source:

  • Install Chromium's depot_tools in your $PATH
  • Get the source:
gclient config --unmanaged --name=src <bauxite_repository_url>
gclient sync

gclient is used to synchronize the two subrepositories, third_party/lss and testing/gtest and also to run “hooks” that will automatically download the required “gn” (generate Ninja) and Clang binaries.

Build:

  • Generate the Ninja files (from the src directory):
gn gen out/Debug
  • Build sandbox_linux_unittests (from the src directory):
ninja -C out/Debug sandbox_linux_unittests