mirror of
https://github.com/google/sandboxed-api.git
synced 2024-03-22 13:11:30 +08:00
4b2c730c5e
This change introduces an experimental `generator_version` attribute to the `sapi_library()` rule. Version `1` will select the current interface generator, which is based on libclang and Python. Setting the attribute to version `2`, will select the newer interface generator written in C++ that uses a full clang compiler frontend for parsing. Both emit equivalent header output, differences in parsing and/or edge cases notwithstanding. The default, as of now, is still the old version `1` generator. Note: CMake allows to select the new interface generator globally by setting `SAPI_ENABLE_GENERATOR`. PiperOrigin-RevId: 438765013 Change-Id: I69c49a6bcf1751724edb0bce5c3b2beea2097138
108 lines
3.3 KiB
Python
108 lines
3.3 KiB
Python
# Copyright 2022 Google LLC
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# https://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
load("//sandboxed_api/bazel:build_defs.bzl", "sapi_platform_copts")
|
|
|
|
licenses(["notice"])
|
|
|
|
cc_library(
|
|
name = "generator",
|
|
srcs = [
|
|
"diagnostics.cc",
|
|
"emitter.cc",
|
|
"generator.cc",
|
|
"types.cc",
|
|
],
|
|
hdrs = [
|
|
"diagnostics.h",
|
|
"emitter.h",
|
|
"generator.h",
|
|
"types.h",
|
|
],
|
|
copts = sapi_platform_copts(),
|
|
deps = [
|
|
"//sandboxed_api/util:fileops",
|
|
"//sandboxed_api/util:status",
|
|
"@com_google_absl//absl/container:btree",
|
|
"@com_google_absl//absl/container:flat_hash_set",
|
|
"@com_google_absl//absl/memory",
|
|
"@com_google_absl//absl/random",
|
|
"@com_google_absl//absl/status",
|
|
"@com_google_absl//absl/status:statusor",
|
|
"@com_google_absl//absl/strings",
|
|
"@com_google_absl//absl/strings:cord",
|
|
"@com_google_absl//absl/strings:str_format",
|
|
"@com_google_absl//absl/types:optional",
|
|
"@llvm-project//clang:ast",
|
|
"@llvm-project//clang:basic",
|
|
"@llvm-project//clang:format",
|
|
"@llvm-project//clang:frontend",
|
|
"@llvm-project//clang:lex",
|
|
"@llvm-project//clang:tooling",
|
|
"@llvm-project//llvm:Support",
|
|
],
|
|
)
|
|
|
|
cc_test(
|
|
name = "generator_test",
|
|
srcs = [
|
|
"emitter_test.cc",
|
|
"frontend_action_test_util.cc",
|
|
"frontend_action_test_util.h",
|
|
],
|
|
copts = sapi_platform_copts(),
|
|
deps = [
|
|
":generator",
|
|
"//sandboxed_api:testing",
|
|
"//sandboxed_api/util:status_matchers",
|
|
"@com_google_absl//absl/container:flat_hash_map",
|
|
"@com_google_absl//absl/memory",
|
|
"@com_google_absl//absl/status",
|
|
"@com_google_absl//absl/status:statusor",
|
|
"@com_google_absl//absl/strings",
|
|
"@com_google_googletest//:gtest_main",
|
|
"@llvm-project//clang:basic",
|
|
"@llvm-project//clang:frontend",
|
|
"@llvm-project//clang:tooling",
|
|
"@llvm-project//llvm:Support",
|
|
],
|
|
)
|
|
|
|
# Clang tool that generates Sandboxed API headers
|
|
cc_binary(
|
|
name = "generator_tool",
|
|
srcs = [
|
|
"compilation_database.cc",
|
|
"compilation_database.h",
|
|
"generator_tool.cc",
|
|
],
|
|
copts = sapi_platform_copts(),
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
":generator",
|
|
"//sandboxed_api/util:file_helpers",
|
|
"//sandboxed_api/util:fileops",
|
|
"//sandboxed_api/util:status",
|
|
"@com_google_absl//absl/memory",
|
|
"@com_google_absl//absl/status",
|
|
"@com_google_absl//absl/strings",
|
|
"@com_google_absl//absl/strings:str_format",
|
|
"@llvm-project//clang:ast",
|
|
"@llvm-project//clang:driver",
|
|
"@llvm-project//clang:frontend",
|
|
"@llvm-project//clang:tooling",
|
|
"@llvm-project//llvm:Support",
|
|
],
|
|
)
|