29 lines
609 B
Python
29 lines
609 B
Python
|
|
load("//bazel:skia_rules.bzl", "exports_files_legacy", "skia_filegroup")
|
||
|
|
|
||
|
|
licenses(["notice"])
|
||
|
|
|
||
|
|
exports_files_legacy()
|
||
|
|
|
||
|
|
skia_filegroup(
|
||
|
|
name = "public_hdrs",
|
||
|
|
srcs = [
|
||
|
|
"DSL.h",
|
||
|
|
"DSLBlock.h",
|
||
|
|
"DSLCase.h",
|
||
|
|
"DSLCore.h",
|
||
|
|
"DSLExpression.h",
|
||
|
|
"DSLFunction.h",
|
||
|
|
"DSLLayout.h",
|
||
|
|
"DSLModifiers.h",
|
||
|
|
"DSLStatement.h",
|
||
|
|
"DSLType.h",
|
||
|
|
"DSLVar.h",
|
||
|
|
"SkSLDebugTrace.h",
|
||
|
|
"SkSLErrorReporter.h",
|
||
|
|
"SkSLOperator.h",
|
||
|
|
"SkSLPosition.h",
|
||
|
|
"SkSLVersion.h",
|
||
|
|
],
|
||
|
|
visibility = ["//include:__pkg__"],
|
||
|
|
)
|