BUILD 430 B

123456789101112131415
  1. # Part of the Carbon Language project, under the Apache License v2.0 with LLVM
  2. # Exceptions. See /LICENSE for license information.
  3. # SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
  4. load("@rules_python//python:defs.bzl", "py_binary")
  5. py_binary(
  6. name = "migrate_cpp",
  7. srcs = ["migrate_cpp.py"],
  8. data = [
  9. ":clang_tidy.yaml",
  10. "//migrate_cpp/cpp_refactoring",
  11. ],
  12. python_version = "PY3",
  13. )