15 lines
290 B
Python
15 lines
290 B
Python
|
|
load("//bazel:skia_rules.bzl", "exports_files_legacy", "skia_filegroup")
|
||
|
|
|
||
|
|
licenses(["notice"])
|
||
|
|
|
||
|
|
exports_files_legacy()
|
||
|
|
|
||
|
|
skia_filegroup(
|
||
|
|
name = "public_hdrs",
|
||
|
|
srcs = [
|
||
|
|
"SkAndroidFrameworkUtils.h",
|
||
|
|
"SkAnimatedImage.h",
|
||
|
|
],
|
||
|
|
visibility = ["//include:__pkg__"],
|
||
|
|
)
|