mirror of
https://github.com/alibaba/higress.git
synced 2026-02-06 23:21:08 +08:00
71 lines
1.8 KiB
Python
71 lines
1.8 KiB
Python
# Copyright (c) 2022 Alibaba Group Holding Ltd.
|
|
#
|
|
# 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
|
|
#
|
|
# http://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("@proxy_wasm_cpp_sdk//bazel:defs.bzl", "proxy_wasm_cc_binary")
|
|
load("//bazel:wasm.bzl", "declare_wasm_image_targets")
|
|
|
|
proxy_wasm_cc_binary(
|
|
name = "request_block.wasm",
|
|
srcs = [
|
|
"plugin.cc",
|
|
"plugin.h",
|
|
],
|
|
deps = [
|
|
"@com_google_absl//absl/strings",
|
|
"@com_google_absl//absl/time",
|
|
"//common:json_util",
|
|
"//common:http_util",
|
|
"//common:regex_util",
|
|
"//common:rule_util",
|
|
],
|
|
)
|
|
|
|
cc_library(
|
|
name = "request_block_lib",
|
|
srcs = [
|
|
"plugin.cc",
|
|
],
|
|
hdrs = [
|
|
"plugin.h",
|
|
],
|
|
copts = ["-DNULL_PLUGIN"],
|
|
deps = [
|
|
"@com_google_absl//absl/strings",
|
|
"//common:json_util",
|
|
"@proxy_wasm_cpp_host//:lib",
|
|
"//common:http_util_nullvm",
|
|
"//common:regex_util",
|
|
"//common:rule_util_nullvm",
|
|
],
|
|
)
|
|
|
|
cc_test(
|
|
name = "request_block_test",
|
|
srcs = [
|
|
"plugin_test.cc",
|
|
],
|
|
copts = ["-DNULL_PLUGIN"],
|
|
deps = [
|
|
":request_block_lib",
|
|
"@com_google_googletest//:gtest",
|
|
"@com_google_googletest//:gtest_main",
|
|
"@proxy_wasm_cpp_host//:lib",
|
|
],
|
|
)
|
|
|
|
declare_wasm_image_targets(
|
|
name = "request_block",
|
|
wasm_file = ":request_block.wasm",
|
|
)
|