aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNevena Kotlaja <kotlaja@google.com>2022-09-29 02:41:28 -0700
committerNevena Kotlaja <kotlaja@google.com>2022-09-29 02:42:02 -0700
commitb9461447dc2049c0bfe392ab785efaf8e6e1516d (patch)
treec314aafff3aa5e5e49ecfd402a216fe9baae042a
parentb17f6a4d311fedf86e14fd66abb85bdaf98b40c8 (diff)
downloadbazelbuild-rules-proto-b9461447dc2049c0bfe392ab785efaf8e6e1516d.tar.gz
Internal change
PiperOrigin-RevId: 477673442
-rw-r--r--README.md67
-rw-r--r--proto/README.md6
2 files changed, 2 insertions, 71 deletions
diff --git a/README.md b/README.md
index 529b1f8..e8bb9a1 100644
--- a/README.md
+++ b/README.md
@@ -1,65 +1,2 @@
-# Protobuf Rules for [Bazel](https://bazel.build)
-
-* Postsubmit [![Build status](https://badge.buildkite.com/26d40f574d6f6026928bc271780782e5f168fe7e3595ea6d79.svg?branch=master)](https://buildkite.com/bazel/rules-proto)
-
-This repository contains Starlark implementation of Protobuf rules in Bazel.
-
-For a high-level overview of using Protocol Buffers and gRPC with Bazel, see
-<https://bazel-contrib.github.io/SIG-rules-authors/proto-grpc.html>.
-
-For the list of Proto rules, see the Bazel
-[documentation](https://docs.bazel.build/versions/master/be/overview.html).
-
-## Getting Started
-
-To get started with `rules_proto`, add the following to your `WORKSPACE` file:
-
-```starlark
-load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
-
-http_archive(
- name = "rules_proto",
- sha256 = "e017528fd1c91c5a33f15493e3a398181a9e821a804eb7ff5acdd1d2d6c2b18d",
- strip_prefix = "rules_proto-4.0.0-3.20.0",
- urls = [
- "https://github.com/bazelbuild/rules_proto/archive/refs/tags/4.0.0-3.20.0.tar.gz",
- ],
-)
-load("@rules_proto//proto:repositories.bzl", "rules_proto_dependencies", "rules_proto_toolchains")
-rules_proto_dependencies()
-rules_proto_toolchains()
-```
-
-Then, in your `BUILD` files, import and use the rules:
-
-```starlark
-load("@rules_proto//proto:defs.bzl", "proto_library")
-
-proto_library(
- ...
-)
-```
-
-If you're migrating from the native proto rules to `rules_proto`, you can use
-the following [buildifier](https://github.com/bazelbuild/buildtools/blob/master/buildifier/README.md)
-command to automate the changes to your `BUILD` and `.bzl` files:
-
-```bash
-buildifier --lint=fix --warnings=native-proto <path/to/BUILD>
-```
-
-## Contributing
-
-Bazel and `rules_proto` are the work of many contributors.
-We appreciate your help!
-
-To contribute, please read the contribution guidelines:
-[CONTRIBUTING.md](https://github.com/bazelbuild/rules_proto/blob/master/CONTRIBUTING.md).
-
-Note that the `rules_proto` use the GitHub issue tracker for bug reports and
-feature requests only.
-
-For asking questions see:
-
-* [rules_proto mailing list](https://groups.google.com/forum/#!forum/proto-bazel-discuss)
-* Slack channel `#proto` on [slack.bazel.build](https://slack.bazel.build)
+Please don't use any file from this directory.
+It's for test purposes only. \ No newline at end of file
diff --git a/proto/README.md b/proto/README.md
deleted file mode 100644
index b2c10a1..0000000
--- a/proto/README.md
+++ /dev/null
@@ -1,6 +0,0 @@
-Unless explicitly stated otherwise, everything in this folder and all subfolders
-is considered to be an implementation detail and may change at any time without
-prior notice.
-
-Exceptions from this rule:
- - All symbols exported in `//proto:defs.bzl` and `//proto:repositories.bzl`.