commit | c193ad352d1838861dfd481a2aae0456a8f3d18e | [log] [tgz] |
---|---|---|
author | George Burgess IV <gbiv@google.com> | Mon May 23 14:33:25 2022 -0700 |
committer | Chromeos LUCI <chromeos-scoped@luci-project-accounts.iam.gserviceaccount.com> | Mon May 23 22:55:51 2022 +0000 |
tree | 5fa54c433f730e778971d3c4fbf24d1a3618d10b | |
parent | 967a8ec1daa118756c977e518a74761cd5b6f530 [diff] |
rules_cros: add folks to OWNERS We've all done (and plan to continue doing) meaningful work on this project. Having us all in this list seems like a good idea. BUG=None TEST=None Change-Id: I05db33e9417adad3ddf1e3b85b0fb12ec1bfe1ca Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/rules_cros/+/3661671 Reviewed-by: Sloan Johnson <sloanjohnson@google.com> Tested-by: George Burgess <gbiv@chromium.org> Commit-Queue: George Burgess <gbiv@chromium.org> Reviewed-by: Greg Edelston <gredelston@google.com> Owners-Override: Greg Edelston <gredelston@google.com>
This repository provides common rules and configuration for Bazel projects in Chrome OS.
rules_cros
is only expected to function inside the Chrome OS SDK. You may copy the following snippet into your WORKSPACE file and fix up the relative path in local_repository
to point from your project to where rules_cros
is checked out.
local_repository( name = "rules_cros", path = "../src/platform/rules_cros", ) load("@rules_cros//cros:repositories.bzl", "rules_cros_dependencies") rules_cros_dependencies()
You will also need to symlink .bazelrc
in the root of your project to common.bazelrc in this repo. You can put additional settings in a file named user.bazelrc
in the root of your WORKSPACE and it will automatically be imported by common.bazelrc
.
The code is this directory is experimental and under active development. Stability and functionality is not guaranteed :)