Delete WORKSPACE

This allows it to work with alchemy.

Change-Id: Ic741a4431c63161e2c272becb6956e160ea0d3d2
Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/rules_cros/+/4190657
Reviewed-by: George Burgess <gbiv@chromium.org>
Tested-by: Matt Stark <msta@google.com>
1 file changed
tree: bd22c048f564e4977c820e9b935a30ec3ec499f8
  1. cros/
  2. test/
  3. third_party/
  4. toolchains/
  5. workspace_root/
  6. .bazelrc
  7. .gitignore
  8. common.bazelrc
  9. DIR_METADATA
  10. LICENSE
  11. OWNERS
  12. OWNERS.clover
  13. README.md
  14. run_tests.sh
  15. WORKSPACE.cros
README.md

Chrome OS Bazel Rules

Overview

This repository provides common rules and configuration for Bazel projects in Chrome OS.

Usage

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.

Documentation

The code is this directory is experimental and under active development. Stability and functionality is not guaranteed :)