20 lines
394 B
Python
20 lines
394 B
Python
load("//bazel:skia_rules.bzl", "exports_files_legacy", "skia_filegroup")
|
|
|
|
licenses(["notice"])
|
|
|
|
exports_files_legacy()
|
|
|
|
skia_filegroup(
|
|
name = "flags",
|
|
testonly = True,
|
|
srcs = [
|
|
"CommandLineFlags.cpp",
|
|
"CommandLineFlags.h",
|
|
],
|
|
visibility = [
|
|
"//modules/skottie:__pkg__",
|
|
"//tests:__subpackages__",
|
|
"//tools:__subpackages__",
|
|
],
|
|
)
|