BUILD 457 B

1234567891011121314151617
  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. py_binary(
  5. name = "new_proposal",
  6. srcs = ["new_proposal.py"],
  7. python_version = "PY3",
  8. )
  9. py_test(
  10. name = "new_proposal_test",
  11. srcs = ["new_proposal_test.py"],
  12. data = ["template.md"],
  13. python_version = "PY3",
  14. deps = [":new_proposal"],
  15. )