83cee23c98
buildifier --lint=fix -r . Change-Id: I6a41858270d20137978f8271c8f6160b51120777 Bug: skia:12541 Reviewed-on: https://skia-review.googlesource.com/c/skia/+/529751 Reviewed-by: Ben Wagner <bungeman@google.com>
27 lines
613 B
Python
27 lines
613 B
Python
load("//bazel:macros.bzl", "generated_cc_atom")
|
|
|
|
licenses(["notice"])
|
|
|
|
generated_cc_atom(
|
|
name = "DawnTestContext_hdr",
|
|
hdrs = ["DawnTestContext.h"],
|
|
visibility = ["//:__subpackages__"],
|
|
deps = [
|
|
"//third_party:dawn",
|
|
"//tools/gpu:TestContext_hdr",
|
|
],
|
|
)
|
|
|
|
generated_cc_atom(
|
|
name = "DawnTestContext_src",
|
|
srcs = ["DawnTestContext.cpp"],
|
|
visibility = ["//:__subpackages__"],
|
|
deps = [
|
|
":DawnTestContext_hdr",
|
|
"//GL:glx_hdr",
|
|
"//include/gpu:GrDirectContext_hdr",
|
|
"//third_party:dawn",
|
|
"//tools:AutoreleasePool_hdr",
|
|
],
|
|
)
|