Isaac 735b497a23 New address book implementation
(cherry picked from commit a16a3c393628a3e44a14b0c7196b24205f40c1e4)
2025-07-09 17:47:33 +04:00

23 lines
423 B
Python

objc_library(
name = "ContactsHelper",
enable_modules = True,
module_name = "ContactsHelper",
srcs = glob([
"Sources/**/*.m",
"Sources/**/*.h",
], allow_empty = True),
hdrs = glob([
"PublicHeaders/**/*.h",
]),
includes = [
"PublicHeaders",
],
sdk_frameworks = [
"Foundation",
],
visibility = [
"//visibility:public",
],
)