1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549
|
load("@bazel_skylib//lib:collections.bzl", "collections")
load("@bazel_skylib//lib:paths.bzl", "paths")
load("@fbcode_macros//build_defs:native_rules.bzl", "buck_genrule")
load("@fbsource//tools/build_defs:default_platform_defs.bzl", "compose_platform_setting_list")
load("@fbsource//tools/build_defs:dict_defs.bzl", "dict_defs")
load("@fbsource//tools/build_defs:expect.bzl", "expect")
load("@fbsource//tools/build_defs:fb_xplat_cxx_library.bzl", "fb_xplat_cxx_library")
load("@fbsource//tools/build_defs:fbsource_utils.bzl", "is_arvr_mode")
load("@fbsource//tools/build_defs:platform_defs.bzl", "ANDROID", "APPLE", "CXX", "IOS", "MACOSX", "WINDOWS")
load("@fbsource//tools/build_defs/apple:build_mode_defs.bzl", "is_production_build")
load("@fbsource//tools/build_defs/apple:config_utils_defs.bzl", "STATIC_LIBRARY_IOS_CONFIG", "STATIC_LIBRARY_MAC_CONFIG", "fbobjc_configs")
load("@fbsource//tools/build_defs/apple:focus_config.bzl", "is_focus_enabled")
load("@fbsource//xplat/pfh/Msgr/Mobile/ProductInfra:DEFS.bzl", "Msgr_Mobile_ProductInfra")
def get_c2_expose_op_to_c10():
c2_op_to_c10 = native.read_config("caffe2", "expose_op_to_c10", "0")
expect(
c2_op_to_c10 in ("0", "1"),
c2_op_to_c10,
)
return bool(int(c2_op_to_c10))
def get_c2_mpscnn():
c2_mpscnn = native.read_config("caffe2", "enable_mpscnn", "1")
expect(
c2_mpscnn in ("0", "1"),
c2_mpscnn,
)
return bool(int(c2_mpscnn))
def get_c2_mpscnn_test():
c2_mpscnn_test = native.read_config("caffe2", "enable_mpscnn_test", "0")
expect(
c2_mpscnn_test in ("0", "1"),
c2_mpscnn_test,
)
return bool(int(c2_mpscnn_test))
def get_c2_nomnigraph():
c2_nomnigraph = native.read_config("caffe2", "enable_nomnigraph", "1")
expect(
c2_nomnigraph in ("0", "1"),
c2_nomnigraph,
)
return bool(int(c2_nomnigraph))
def get_c2_qpl():
c2_qpl = native.read_config("caffe2", "enable_qpl", "1")
expect(
c2_qpl in ("0", "1"),
c2_qpl,
)
return bool(int(c2_qpl))
def get_c2_strip_debug_info():
c2_strip_debug_info = native.read_config("caffe2", "strip_debug_info", "0")
expect(
c2_strip_debug_info in ("0", "1"),
c2_strip_debug_info,
)
return bool(int(c2_strip_debug_info))
def get_c2_strip_glog():
c2_strip_glog = native.read_config("caffe2", "strip_glog", "1")
expect(
c2_strip_glog in ("0", "1"),
c2_strip_glog,
)
return bool(int(c2_strip_glog))
def get_c2_tvm():
c2_tvm = native.read_config("caffe2", "enable_tvm", "1")
expect(
c2_tvm in ("0", "1"),
c2_tvm,
)
return bool(int(c2_tvm))
_C2_XPLAT_NO_HPTT_PREPROCESSOR_FLAGS = [
"-Icaffe2",
"-Imodules",
"-DEIGEN_NO_DEBUG",
"-DCAFFE2_USE_LITE_PROTO",
"-DCAFFE2_USE_GOOGLE_GLOG",
"-DCAFFE2_RNN_NO_TEXT_FORMAT",
"-DGEMMLOWP_ALLOW_SLOW_SCALAR_FALLBACK=1",
"-DCAFFE2_IS_XPLAT_BUILD",
"-DSTRIP_ERROR_MESSAGES",
"-DUSE_INTERNAL_PTHREADPOOL_IMPL",
]
def get_c2_xplat_no_hptt_preprocessor_flags():
flags = []
flags += _C2_XPLAT_NO_HPTT_PREPROCESSOR_FLAGS
if is_arvr_mode() and get_c2_strip_glog():
flags += ["-UGOOGLE_STRIP_LOG", "-DGOOGLE_STRIP_LOG=1"]
if get_c2_expose_op_to_c10():
flags += ["-DEXPOSE_C2_OPS", "-frtti"]
return flags
C2_XPLAT_SERVER_PREPROCESSOR_FLAGS = [
"-DCAFFE2_USE_EIGEN_FOR_BLAS",
"-DC10_DISABLE_SIGNAL_HANDLERS",
"-DCAFFE2_DISABLE_NUMA",
]
C2_XPLAT_HPTT_PREPROCESSOR_FLAGS = [
"-DCAFFE2_USE_HPTT",
]
def get_c2_xplat_preprocessor_flags():
flags = get_c2_xplat_no_hptt_preprocessor_flags() + C2_XPLAT_HPTT_PREPROCESSOR_FLAGS
if get_c2_nomnigraph():
flags.append("-DCAFFE2_OPTIMIZER")
return flags
def get_c2_xplat_no_hptt_compiler_flags():
return [
"-Os",
"-fexceptions",
"-frtti",
"-Wno-shadow",
"-Wno-unknown-pragmas",
"-Wno-unused-variable",
"-Wno-sign-compare",
]
def get_c2_xplat_compiler_flags():
return get_c2_xplat_no_hptt_compiler_flags() + C2_XPLAT_HPTT_PREPROCESSOR_FLAGS
def get_c2_fbobjc_xplat_compiler_flags():
flags = []
if is_production_build():
flags.append("-DCAFFE2_NO_OPERATOR_SCHEMA")
flags.append("-DCAFFE2_NO_GRADIENT_OPS")
# For iOS production builds (and all Android builds), strip GLOG logging to
# save size. We can disable by setting caffe2.strip_glog=0 in .buckconfig.local.
if is_production_build() or get_c2_strip_glog():
flags += ["-UGOOGLE_STRIP_LOG", "-DGOOGLE_STRIP_LOG=3"]
else:
flags.append("-UGOOGLE_STRIP_LOG")
return flags
def get_c2_fbandroid_xplat_compiler_flags():
flags = [
# T95767731 -- remove this once all builds are on at least llvm-13
"-Wno-unknown-warning-option",
"-Wno-unused-but-set-variable",
]
if get_c2_strip_glog():
flags += ["-UGOOGLE_STRIP_LOG", "-DGOOGLE_STRIP_LOG=1"]
if get_c2_strip_debug_info():
flags.append("-g0")
return flags
_C2_FBOBJC_COMPILER_FLAGS = [
"-Wno-missing-prototypes",
"-Wno-global-constructors",
"-Wno-unknown-pragmas",
"-Wno-invalid-partial-specialization",
"-Wno-missing-braces",
"-Wno-range-loop-analysis",
]
def get_c2_fbobjc_compiler_flags():
flags = list(_C2_FBOBJC_COMPILER_FLAGS)
# Avoid linking Accelerate on MacOS because we have
# inconsistent LAPACK headers (see problems in D19257077).
flags.append("-DCAFFE2_USE_ACCELERATE" if not is_arvr_mode() else "-DCAFFE2_USE_EIGEN_FOR_BLAS")
if get_c2_mpscnn():
flags.append(
# TODO(t19120552) - fix this. MPSCNNConvolutionDescriptor.strideInPixelsX
# is marked as iOS 11+, but it's been available since iOS 10.
"-Wno-unguarded-availability",
)
return flags
C2_FBOBJC_MACOSX_COMPILER_FLAGS = [
"-msse4.2",
]
C2_FBOBJC_IPHONE_COMPILER_FLAGS = [
"-mfpu=neon-fp16",
]
def get_c2_fbobjc_frameworks():
frameworks = []
if not is_arvr_mode():
frameworks.append(
# On iOS, presumably Accelerate is a faster BLAS
"$SDKROOT/System/Library/Frameworks/Accelerate.framework",
)
return frameworks
def get_c2_fbobjc_ios_frameworks():
frameworks = []
if get_c2_mpscnn():
frameworks.append(
"$SDKROOT/System/Library/Frameworks/Metal.framework",
)
return frameworks
def get_c2_fbobjc_linker_flags():
flags = []
if get_c2_mpscnn():
# Need linker flags as no platform_frameworks exist, and we can't
# use MPSCNN on x86_64.
# We use weak_framework as it's iOS 10
flags = [
"-L$SDKROOT/System/Library/Frameworks/MetalPerformanceShaders.framework",
"-weak_framework",
"MetalPerformanceShaders",
]
return flags
def get_c2_fbobjc_exported_preprocessor_flags():
flags = []
if get_c2_mpscnn():
flags.append("-DCAFFE2_USE_MPSCNN")
if get_c2_mpscnn_test():
flags.append("-DCAFFE2_USE_MPSCNN_TEST")
return flags
def get_c2_fbandroid_exported_preprocessor_flags():
flags = []
BUILD_MODE_DO_NOT_USE_WITHOUT_ASKING_SERIOUSLY = native.read_config(
"fbandroid",
"build_mode",
"dev",
)
if BUILD_MODE_DO_NOT_USE_WITHOUT_ASKING_SERIOUSLY == "opt":
flags.append("-DCAFFE2_NO_OPERATOR_SCHEMA")
flags.append("-DCAFFE2_NO_GRADIENT_OPS")
return flags
C2_FBANDROID_COMPILER_FLAGS = [
"-DCAFFE2_USE_EIGEN_FOR_BLAS",
"-Wno-unknown-pragmas",
"-Wno-deprecated-declarations",
"-Wno-invalid-partial-specialization",
"-Wno-missing-braces",
]
C2_FBANDROID_ARMV7_COMPILER_FLAGS = [
"-mfpu=neon-fp16",
]
C2_FBANDROID_X86_COMPILER_FLAGS = [
"-mssse3",
]
C2_FBANDROID_LINKER_FLAGS = []
C2_FBOBJC_EXTRA_TARGET_CONFIG = {
"MTL_LANGUAGE_REVISION": "Metal12",
}
def get_c2_default_cxx_args():
return dict(
header_namespace = "",
apple_sdks = (IOS, MACOSX),
compiler_flags = get_c2_xplat_compiler_flags(),
fbandroid_compiler_flags = C2_FBANDROID_COMPILER_FLAGS + get_c2_fbandroid_xplat_compiler_flags(),
fbandroid_exported_platform_preprocessor_flags = [
(
"android-armv7",
get_c2_fbandroid_exported_preprocessor_flags(),
),
],
fbandroid_linker_flags = C2_FBANDROID_LINKER_FLAGS,
fbandroid_platform_compiler_flags = [
("android-armv7", C2_FBANDROID_ARMV7_COMPILER_FLAGS),
(".*x86.*", C2_FBANDROID_X86_COMPILER_FLAGS),
],
fbobjc_compiler_flags = get_c2_fbobjc_compiler_flags() + get_c2_fbobjc_xplat_compiler_flags(),
fbobjc_configs = fbobjc_configs(
STATIC_LIBRARY_IOS_CONFIG,
extra_target_config = C2_FBOBJC_EXTRA_TARGET_CONFIG,
),
fbobjc_exported_platform_linker_flags = [
(
"iphoneos",
get_c2_fbobjc_linker_flags(),
),
],
fbobjc_exported_platform_preprocessor_flags = [
(
"iphoneos",
get_c2_fbobjc_exported_preprocessor_flags(),
),
],
fbobjc_frameworks = get_c2_fbobjc_frameworks() + get_c2_fbobjc_ios_frameworks(),
fbobjc_platform_compiler_flags = [
("iphoneos", C2_FBOBJC_IPHONE_COMPILER_FLAGS),
],
macosx_compiler_flags = C2_FBOBJC_MACOSX_COMPILER_FLAGS,
fbobjc_macosx_configs_override = fbobjc_configs(
STATIC_LIBRARY_MAC_CONFIG,
),
macosx_frameworks_override = get_c2_fbobjc_frameworks(),
preprocessor_flags = [
# Use the internal pthreadpool impl for all Caffe2 targets on all
# platforms but do not export the preprocessor flag downstream.
"-DUSE_INTERNAL_PTHREADPOOL_IMPL",
],
visibility = ["PUBLIC"],
windows_preferred_linkage = "static" if is_arvr_mode() else None,
xcode_public_headers_symlinks = True,
)
def get_c2_aten_cpu_fbobjc_macosx_deps():
if is_focus_enabled():
# focus2 is broken when using platform deps (T80070498) so in the case
# where it's focus2 we just add fbgemm as a standard dep. Otherwise we
# use platform deps to select correctly for arm64.
return [
"fbsource//xplat/deeplearning/fbgemm:fbgemm",
"fbsource//xplat/caffe2:cpukernel_avx2",
]
else:
return []
def get_c2_aten_cpu_fbobjc_macosx_platform_deps():
if is_focus_enabled():
# focus2 is broken when using platform deps (T80070498) so in the case
# where it's focus2 we just add fbgemm as a standard dep. Otherwise we
# use platform deps to select correctly for arm64.
return []
else:
return compose_platform_setting_list([
{
"cpu": "x86_64",
"flags": [
"fbsource//xplat/deeplearning/fbgemm:fbgemmAppleMac",
] + ([
"fbsource//xplat/caffe2:cpukernel_avx2AppleMac",
] if not is_arvr_mode() else []),
"os": "macosx",
},
{
"cpu": "arm64",
"flags": ["fbsource//xplat/third-party/XNNPACK:XNNPACKAppleMac"],
"os": "macosx",
},
])
def c2_cxx_library(**kwargs):
args = get_c2_default_cxx_args()
args.update(kwargs)
args.setdefault("platforms", (ANDROID, APPLE, CXX, WINDOWS))
fb_xplat_cxx_library(
labels = [
"supermodule:android/default/caffe2",
"supermodule:ios/default/public.caffe2",
],
feature = Msgr_Mobile_ProductInfra,
**args
)
def c2_protobuf_rule(protos):
cpps = []
headers = {}
raw_headers = {}
for p in protos:
proto = paths.basename(p)
if native.host_info().os.is_windows:
protocexe = "$(exe fbsource//third-party/protobuf:protoc-host)" if is_arvr_mode() else "$(location fbsource//xplat/third-party/protobuf:protoc.Windows)"
protocmd = "powershell.exe -file $(location fbsource//xplat/caffe2/scripts:proto)\\proto.ps1 -Protoc {} -Unprocessed $SRCDIR/{} -Processed $SRCDIR/{} -out $OUT -srcdir $SRCDIR".format(protocexe, p, proto)
else:
protocmd = ("cp $SRCDIR/{} $SRCDIR/{} && chmod +w $SRCDIR/{} && echo \"option optimize_for = LITE_RUNTIME;\" >> $SRCDIR/{} && ".format(p, proto, proto, proto) +
"cp $SRCDIR/caffe2/proto/caffe2.proto $SRCDIR/caffe2.proto && chmod +w $SRCDIR/caffe2.proto && echo \"option optimize_for = LITE_RUNTIME;\" >> $SRCDIR/caffe2.proto && " +
"sed -i -e 's/caffe2\\/proto\\/caffe2.proto/caffe2.proto/g' $SRCDIR/{} && ".format(proto) +
("$(exe fbsource//third-party/protobuf:protoc-host) " if is_arvr_mode() else "$(exe fbsource//xplat/third-party/protobuf:protoc) --osx $(location fbsource//xplat/third-party/protobuf:protoc.Darwin) --linux $(location fbsource//xplat/third-party/protobuf:protoc.Linux) ") +
"-I $SRCDIR --cpp_out=$OUT $SRCDIR/{}".format(proto))
buck_genrule(
name = proto,
srcs = sorted(collections.uniq([p, "caffe2/proto/caffe2.proto"])),
cmd_exe = protocmd,
bash = protocmd,
out = ".",
)
(name, _) = paths.split_extension(proto)
cpp = name + ".pb.cc"
h = name + ".pb.h"
buck_genrule(
name = h,
cmd_exe = "@powershell -Command \" & { " + "(Get-Content $(location :{})\\{}".format(proto, h) + ") -replace \\\"caffe2.pb.h\\\", \\\"caffe2/proto/caffe2.pb.h\\\" | Set-Content $OUT } \"",
bash = "cp -f $(location :{})/{} $OUT && ".format(proto, h) +
"sed -i -e 's/caffe2.pb.h/caffe2\\/proto\\/caffe2.pb.h/g' $OUT",
out = h,
)
headers["caffe2/proto/" + h] = ":{}".format(h)
raw_headers[h] = ":{}".format(h)
buck_genrule(
name = cpp,
cmd_exe = "@powershell -Command copy $(location :{})/{} $OUT".format(proto, cpp),
bash = "cp -f $(location :{})/{} $OUT".format(proto, cpp),
out = cpp,
)
cpps.append(":{}".format(cpp))
return (cpps, headers, raw_headers)
# C2 uses lite version of protobuf while torch/jit uses some method only exists
# in full protobuf. This is a temporary workaround to enable experiment build.
# DO NOT USE IT IN PRODUCTION BUILD!
def c2_full_protobuf_rule(protos):
prefix = "full_"
cpps = []
headers = {}
raw_headers = {}
for p in protos:
proto = paths.basename(p)
if native.host_info().os.is_windows:
protocexe = "$(exe fbsource//third-party/protobuf:protoc-host)" if is_arvr_mode() else "$(location fbsource//xplat/third-party/protobuf:protoc.Windows)"
protocmd = "powershell.exe -file $(location fbsource//xplat/caffe2/scripts:proto)\\proto.ps1 -Protoc {} -Unprocessed $SRCDIR/{} -Processed $SRCDIR/{} -out $OUT -srcdir $SRCDIR".format(protocexe, p, proto)
else:
protocmd = ("cp $SRCDIR/{} $SRCDIR/{} && ".format(p, proto) +
"cp $SRCDIR/caffe2/proto/caffe2.proto $SRCDIR/caffe2.proto && " +
"sed -i -e 's/caffe2\\/proto\\/caffe2.proto/caffe2.proto/g' $SRCDIR/{} && ".format(proto) +
("$(exe fbsource//third-party/protobuf:protoc-host) " if is_arvr_mode() else "$(exe fbsource//xplat/third-party/protobuf:protoc) --osx $(location fbsource//xplat/third-party/protobuf:protoc.Darwin) --linux $(location fbsource//xplat/third-party/protobuf:protoc.Linux) ") +
"-I $SRCDIR --cpp_out=$OUT $SRCDIR/{}".format(proto))
buck_genrule(
name = prefix + proto,
srcs = sorted(collections.uniq([p, "caffe2/proto/caffe2.proto"])),
cmd = protocmd,
out = ".",
)
(name, _) = paths.split_extension(proto)
cpp = name + ".pb.cc"
h = name + ".pb.h"
buck_genrule(
name = prefix + h,
cmd_exe = "@powershell -Command \" & { " + "(Get-Content $(location :{})\\{}".format(prefix + proto, h) + ") -replace \\\"caffe2.pb.h\\\", \\\"caffe2/proto/caffe2.pb.h\\\" | Set-Content $OUT } \"",
bash = "cp -f $(location :{})/{} $OUT && ".format(prefix + proto, h) +
"sed -i -e 's/caffe2.pb.h/caffe2\\/proto\\/caffe2.pb.h/g' $OUT",
out = h,
)
headers["caffe2/proto/" + h] = ":{}".format(prefix + h)
raw_headers[h] = ":{}".format(prefix + h)
buck_genrule(
name = prefix + cpp,
cmd_exe = "@powershell -Command copy $(location :{})/{} $OUT".format(prefix + proto, cpp),
bash = "cp -f $(location :{})/{} $OUT".format(prefix + proto, cpp),
out = cpp,
)
cpps.append(":{}".format(prefix + cpp))
return (cpps, headers, raw_headers)
def libcaffe2_cxx_library(name, use_hptt, **kwargs):
c2_cxx_library(
name = name,
exported_deps = [
"fbsource//xplat/caffe2/c10:c10",
"fbsource//third-party/protobuf:libprotobuf" if is_arvr_mode() else "fbsource//xplat/third-party/protobuf:fb-protobuf-lite",
":caffe2_protobuf_headers",
":pthreadpool",
":common_core",
":caffe2_proto_types",
],
compiler_flags = get_c2_xplat_compiler_flags() if use_hptt else get_c2_xplat_no_hptt_compiler_flags(),
exported_preprocessor_flags = get_c2_xplat_preprocessor_flags() if use_hptt else get_c2_xplat_no_hptt_preprocessor_flags(),
cxx_preprocessor_flags = C2_XPLAT_SERVER_PREPROCESSOR_FLAGS,
fbandroid_exported_preprocessor_flags = get_c2_fbandroid_xplat_compiler_flags(),
fbobjc_exported_preprocessor_flags = get_c2_fbobjc_xplat_compiler_flags(),
# Hack to work around lack of platform_srcs support in Xcode project generation.
macosx_extra_xcode_sources_override = [],
link_whole = True,
**kwargs
)
def c2_operator_library(name, **kwargs):
dict_defs.key_extend(
kwargs,
"deps",
[
"fbsource//xplat/folly:molly",
"fbsource//third-party/glog:glog",
":caffe2",
] + ([":aten_cpu"] if get_c2_expose_op_to_c10() else []),
)
# NOTE: Currently operators can "depend" on other operators, which is used
# so that loading one will implicitly load the dependencies. So, make sure
# that no `--as-needed` flags pulled in from dependencies cause these
# operator deps to get dropped.
linker_flags = [
"-Wl,--no-as-needed",
]
c2_cxx_library(
name = name,
soname = "lib" + name + ".$(ext)",
fbandroid_compiler_flags = get_c2_default_cxx_args()["fbandroid_compiler_flags"] + ["-Os"],
fbobjc_compiler_flags = get_c2_default_cxx_args()["fbobjc_compiler_flags"] + ["-Oz", "-DCOMPILING_FOR_MIN_SIZE=1"],
link_whole = True,
cxx_exported_linker_flags = linker_flags,
fbandroid_exported_linker_flags = linker_flags,
exported_deps = [
":caffe2",
],
**kwargs
)
def c2_genrule(genrule, genfiles, prefix = "", src_path = "", header_namespace = ""):
headers = {}
srcs = []
for generated_filename in genfiles:
buck_genrule(
name = prefix + generated_filename,
bash = "cp -f $(location :{})/{} $OUT".format(genrule, src_path + generated_filename),
cmd_exe = "@powershell -Command copy $(location :{})/{} $OUT".format(genrule, src_path + generated_filename),
out = generated_filename,
)
rule = ":{}{}".format(prefix, generated_filename)
headers[header_namespace + generated_filename] = rule
srcs.append(rule)
return {"headers": headers, "srcs": srcs}
|