mirror of
https://github.com/carbon-language/carbon-lang.git
synced 2026-09-24 22:02:23 +01:00
* initial fuzzer proto * visibility change * use newer protocol buffer version which has the defs.bzl bug fixed * Adjusted fix_cc_deps to work with protobuf external repo * explicitly load rules_cc to avoid a frozenset bug in the version loaded by protobuf * use explit deps, use llvm's zlib * restored cxx settings * deps change * Cleaned up WORKSPACE and changed the test to read carbon sources from testdata * updated comment * adapted to new ErrorOr return value * proto buffer 3.19.2 -> 3.19.4 * changed comment * Apply suggestions from code review Co-authored-by: Jon Meow <jperkins@google.com> * Apply suggestions from code review Co-authored-by: Jon Meow <jperkins@google.com> * Update executable_semantics/fuzzing/BUILD Co-authored-by: Jon Meow <jperkins@google.com> * addressed review comments * updated Unimplemented error message * Addressed review comments * more review comments * switched to loading protobuf via rules_proto() * Ignore protobuf headers in fix_cc_deps.py until the script supports alias rules * renamed repeated proto fields to be plural * added @zlib to check_non_test_cc_deps * Update common/fuzzing/BUILD Co-authored-by: Jon Meow <jperkins@google.com> * review comments * set is_omitted_expression for return value Co-authored-by: Jon Meow <jperkins@google.com>
143 lines
3.5 KiB
Python
143 lines
3.5 KiB
Python
# Part of the Carbon Language project, under the Apache License v2.0 with LLVM
|
|
# Exceptions. See /LICENSE for license information.
|
|
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
|
|
load("@mypy_integration//:mypy.bzl", "mypy_test")
|
|
|
|
package(default_visibility = [
|
|
"//executable_semantics:__pkg__",
|
|
"//executable_semantics/fuzzing:__pkg__",
|
|
])
|
|
|
|
cc_library(
|
|
name = "bison_wrap",
|
|
hdrs = ["bison_wrap.h"],
|
|
deps = ["//common:check"],
|
|
)
|
|
|
|
cc_test(
|
|
name = "parse_test",
|
|
srcs = ["parse_test.cpp"],
|
|
deps = [
|
|
":syntax",
|
|
"//executable_semantics/common:arena",
|
|
"@com_google_googletest//:gtest_main",
|
|
],
|
|
)
|
|
|
|
cc_library(
|
|
name = "parse_test_matchers",
|
|
testonly = 1,
|
|
srcs = ["parse_test_matchers_internal.h"],
|
|
hdrs = ["parse_test_matchers.h"],
|
|
deps = [
|
|
":syntax",
|
|
"@com_google_googletest//:gtest",
|
|
"@llvm-project//llvm:Support",
|
|
],
|
|
)
|
|
|
|
cc_library(
|
|
name = "syntax",
|
|
srcs = [
|
|
"lexer.cpp",
|
|
"lexer.h",
|
|
"parse.cpp",
|
|
"parse_and_lex_context.cpp",
|
|
"parse_and_lex_context.h",
|
|
"parser.cpp",
|
|
"parser.h",
|
|
],
|
|
hdrs = [
|
|
"parse.h",
|
|
],
|
|
# Disable warnings for generated code.
|
|
copts = [
|
|
"-Wno-implicit-fallthrough", # Needed to make yyinput() code compile.
|
|
"-Wno-unneeded-internal-declaration",
|
|
"-Wno-unused-function",
|
|
"-Wno-writable-strings",
|
|
],
|
|
deps = [
|
|
":bison_wrap",
|
|
"//common:check",
|
|
"//common:error",
|
|
"//common:ostream",
|
|
"//common:string_helpers",
|
|
"//executable_semantics/ast",
|
|
"//executable_semantics/ast:declaration",
|
|
"//executable_semantics/ast:expression",
|
|
"//executable_semantics/ast:paren_contents",
|
|
"//executable_semantics/ast:pattern",
|
|
"//executable_semantics/ast:value_category",
|
|
"//executable_semantics/common:arena",
|
|
"//executable_semantics/common:error",
|
|
"//executable_semantics/common:nonnull",
|
|
"@llvm-project//llvm:Support",
|
|
],
|
|
)
|
|
|
|
genrule(
|
|
name = "syntax_bison_srcs",
|
|
srcs = ["parser.ypp"],
|
|
outs = [
|
|
"parser.cpp",
|
|
"parser.h",
|
|
"parser.output",
|
|
],
|
|
cmd = "M4=$(M4) $(BISON) " +
|
|
"--output=$(location parser.cpp) " +
|
|
"--report=state " +
|
|
"--defines=$(location parser.h) " +
|
|
"$(location parser.ypp)",
|
|
toolchains = [
|
|
"@rules_bison//bison:current_bison_toolchain",
|
|
"@rules_m4//m4:current_m4_toolchain",
|
|
],
|
|
)
|
|
|
|
genrule(
|
|
name = "syntax_flex_srcs",
|
|
srcs = ["lexer.lpp"],
|
|
outs = [
|
|
"lexer.cpp",
|
|
"lexer.h",
|
|
],
|
|
cmd = "M4=$(M4) $(FLEX) " +
|
|
"--outfile=$(location lexer.cpp) " +
|
|
"--header-file=$(location lexer.h) " +
|
|
"$(location lexer.lpp)",
|
|
toolchains = [
|
|
"@rules_flex//flex:current_flex_toolchain",
|
|
"@rules_m4//m4:current_m4_toolchain",
|
|
],
|
|
)
|
|
|
|
py_library(
|
|
name = "format_grammar_lib",
|
|
srcs = ["format_grammar.py"],
|
|
)
|
|
|
|
py_test(
|
|
name = "format_grammar_test",
|
|
srcs = ["format_grammar_test.py"],
|
|
deps = ["format_grammar_lib"],
|
|
)
|
|
|
|
mypy_test(
|
|
name = "format_grammar_mypy_test",
|
|
include_imports = True,
|
|
deps = [":format_grammar_lib"],
|
|
)
|
|
|
|
cc_test(
|
|
name = "unimplemented_example_test",
|
|
srcs = ["unimplemented_example_test.cpp"],
|
|
deps = [
|
|
":parse_test_matchers",
|
|
":syntax",
|
|
"//executable_semantics/ast:ast_test_matchers",
|
|
"@com_google_googletest//:gtest_main",
|
|
],
|
|
)
|