Initial implement cel_agent, with support for root AD creation.

Change-Id: Ie65a22f612483daf7421a6c9a04668b34b1d38ed
Reviewed-on: https://chromium-review.googlesource.com/1074737
Reviewed-by: Asanka Herath <asanka@chromium.org>
19 files changed
tree: 4c8cd92c1ea9b656d871b72a295c3f9534b8adba
  1. build/
  2. docs/
  3. examples/
  4. go/
  5. resources/
  6. schema/
  7. scripts/
  8. .gitignore
  9. .gitmodules
  10. .style.yapf
  11. build.py
  12. CODE_OF_CONDUCT.md
  13. codereview.settings
  14. CONTRIBUTING.md
  15. Gopkg.lock
  16. Gopkg.toml
  17. LICENSE
  18. navbar.md
  19. OWNERS
  20. PRESUBMIT.py
  21. README.md
README.md

Chrome Enterprise Lab

Chrome Enterprise Lab is an inaccurately named set of tools for building enterprise labs quickly and easily. The labs so built can be used for system level end-to-end testing of Google Chrome/Chromium.

Have a peek at the Design document.

Also have a peek at the Code of Conduct.

Most of the code is in Go. See Guide to code to get a head start on the code in this repository.

Building

Prerequisites

  • Go: Download Go from the Go download page. This project requires Go 1.9.4 or later. The build will fail with prior versions.

  • Depot Tools: Used for managing the checkout and the contributor workflow.

  • Protocol Buffers Compiler: Protocol buffers are used extensively for wranging all the data that needs to be shuttled around. Can be installed automatically via ./build.py deps --install.

  • Dep : Used for Go depedency management. This can be installed automatically by running ./build.py deps --install from the root of the source tree.

  • Go support for Protocol Buffers : This can be installed automatically by running ./build.py deps --install from the root of the source tree.

Get The Source

There are two ways to get the source. One is to use managed deps, and the other is to use plain go get. The latter workflow doesn't quite work yet due to this repository not being integrated with go.chromium.org. So this page only mentions the managed dependency workflow.

  1. Clone this repository:

    Assumes that $GOPATH is a single path and not a : delimited list.

    mkdir -p ${GOPATH}/src/chromium.googlesource.com/enterprise
    cd ${GOPATH}/src/chromium.googlesource.com/enterprise
    git clone https://chromium.googlesource.com/enterprise/cel
    cd cel
    
  2. Get the dependencies:

    python build.py deps --install
    

Build It

  1. Use the build script:

    python build.py build
    
  2. Also make sure the tests pass.

    python build.py test
    

Contributing

See CONTRIBUTING.