aboutsummaryrefslogtreecommitdiff
path: root/bazel/standalone/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'bazel/standalone/README.md')
-rw-r--r--bazel/standalone/README.md25
1 files changed, 0 insertions, 25 deletions
diff --git a/bazel/standalone/README.md b/bazel/standalone/README.md
deleted file mode 100644
index 6b549b3fa..000000000
--- a/bazel/standalone/README.md
+++ /dev/null
@@ -1,25 +0,0 @@
-# Perfetto standalone Bazel config
-
-This directory is only used in standalone builds.
-The WORKSPACE aliases this directory to @perfetto_cfg.
-
-Bazel-based embedders are supposed to:
-
-### 1. Have a (modified) copy of perfetto_cfg.bzl in their repo
-
-```
-myproject/
- build/
- perfetto_overrides/
- perfetto_cfg.bzl
-```
-
-### 2. Have a repository rule that maps the directory to @perfetto_cfg
-
-E.g in myproject/WORKSPACE
-```
-local_repository(
- name = "perfetto_cfg",
- path = "build/perfetto_overrides",
-)
-```