18 lines
331 B
Python
18 lines
331 B
Python
load("//bazel:skia_rules.bzl", "exports_files_legacy", "split_srcs_and_hdrs")
|
|
|
|
licenses(["notice"])
|
|
|
|
exports_files_legacy()
|
|
|
|
TESTS_FILES = [
|
|
"SkParagraphTest.cpp",
|
|
"SkShaperJSONWriter.cpp",
|
|
"SkShaperJSONWriter.h",
|
|
"SkShaperJSONWriterTest.cpp",
|
|
]
|
|
|
|
split_srcs_and_hdrs(
|
|
name = "tests",
|
|
files = TESTS_FILES,
|
|
)
|