You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
package(
|
|
licenses = ["notice"], # Apache 2.0
|
|
)
|
|
|
|
# Usage examples.
|
|
cc_binary(
|
|
name = "example",
|
|
srcs = ["example.cc"],
|
|
deps = ["//ruy"],
|
|
)
|
|
|
|
cc_binary(
|
|
name = "parametrized_example",
|
|
srcs = ["parametrized_example.cc"],
|
|
deps = ["//ruy"],
|
|
)
|