c3a448ec61
G3 prefers license() first. This was done mechanically with a big find/replace Change-Id: I8c33c7bc10a6bec42e966cad81c259954e841811 Bug: skia:13211 Reviewed-on: https://skia-review.googlesource.com/c/skia/+/535898 Reviewed-by: Ben Wagner <bungeman@google.com>
25 lines
521 B
Python
25 lines
521 B
Python
load("//bazel:macros.bzl", "exports_files_legacy", "generated_cc_atom")
|
|
|
|
licenses(["notice"])
|
|
|
|
exports_files_legacy()
|
|
|
|
generated_cc_atom(
|
|
name = "InputState_hdr",
|
|
hdrs = ["InputState.h"],
|
|
visibility = ["//:__subpackages__"],
|
|
)
|
|
|
|
generated_cc_atom(
|
|
name = "Key_hdr",
|
|
hdrs = ["Key.h"],
|
|
visibility = ["//:__subpackages__"],
|
|
)
|
|
|
|
generated_cc_atom(
|
|
name = "ModifierKey_hdr",
|
|
hdrs = ["ModifierKey.h"],
|
|
visibility = ["//:__subpackages__"],
|
|
deps = ["//include/private:SkBitmaskEnum_hdr"],
|
|
)
|