aboutsummaryrefslogtreecommitdiff
path: root/example/BUILD
diff options
context:
space:
mode:
Diffstat (limited to 'example/BUILD')
-rw-r--r--example/BUILD10
1 files changed, 10 insertions, 0 deletions
diff --git a/example/BUILD b/example/BUILD
new file mode 100644
index 0000000..aa85701
--- /dev/null
+++ b/example/BUILD
@@ -0,0 +1,10 @@
+package(
+ licenses = ["notice"], # Apache 2.0
+)
+
+# Usage examples.
+cc_binary(
+ name = "example",
+ srcs = ["example.cc"],
+ deps = ["//ruy"],
+)