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
|
package(default_visibility = ["//visibility:public"])
cc_library(
name = "libjsonnet",
srcs = [
"desugarer.cpp",
"formatter.cpp",
"lexer.cpp",
"libjsonnet.cpp",
"parser.cpp",
"pass.cpp",
"static_analysis.cpp",
"string_utils.cpp",
"vm.cpp",
],
hdrs = [
"ast.h",
"desugarer.h",
"formatter.h",
"json.h",
"lexer.h",
"parser.h",
"pass.h",
"state.h",
"static_analysis.h",
"static_error.h",
"string_utils.h",
"unicode.h",
"vm.h",
],
includes = ["."],
linkopts = ["-lm"],
deps = [
"//include:libjsonnet",
"//include:libjsonnet_fmt",
"//stdlib:std",
"//third_party/json",
"//third_party/md5:libmd5",
"//third_party/rapidyaml:ryml",
],
)
cc_test(
name = "lexer_test",
srcs = ["lexer_test.cpp"],
deps = [
":libjsonnet",
# Note: On Ubuntu, apt-get install libgtest-dev google-mock
"@com_google_googletest//:gtest_main",
],
)
cc_test(
name = "parser_test",
srcs = ["parser_test.cpp"],
deps = [
":libjsonnet",
"@com_google_googletest//:gtest_main",
],
)
cc_test(
name = "libjsonnet_test",
srcs = ["libjsonnet_test.cpp"],
deps = [
":libjsonnet",
"@com_google_googletest//:gtest_main",
],
)
|