From e69b2ade02a2e92c9281dcfcdae5f04a2106c870 Mon Sep 17 00:00:00 2001 From: Jon Janzen Date: Mon, 23 Jun 2025 14:18:17 -0700 Subject: [PATCH] Create build_file_migration.bzl --- build_defs/build_file_migration.bzl | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 build_defs/build_file_migration.bzl diff --git a/build_defs/build_file_migration.bzl b/build_defs/build_file_migration.bzl new file mode 100644 index 0000000..95bb691 --- /dev/null +++ b/build_defs/build_file_migration.bzl @@ -0,0 +1,12 @@ +# Copyright (c) Meta Platforms, Inc. and affiliates. +# +# This source code is licensed under both the MIT license found in the +# LICENSE-MIT file in the root directory of this source tree and the Apache +# License, Version 2.0 found in the LICENSE-APACHE file in the root directory +# of this source tree. + +def fbcode_target(*args, _kind, **kwargs): + return _kind(*args, **kwargs) + +def non_fbcode_target(*args, _kind, **kwargs): + return None