@@ -6,21 +6,31 @@ proxy_wasm_cc_binary(
66 name = "http_wasm_example.wasm" ,
77 srcs = ["http_wasm_example.cc" ],
88 copts = ["-std=c++17" ],
9+ )
10+
11+ proxy_wasm_cc_binary (
12+ name = "http_re_example.wasm" ,
13+ srcs = ["http_re_example.cc" ],
14+ copts = ["-std=c++17" ],
915 deps = ["@com_google_re2//:re2" ],
1016)
1117
1218proxy_wasm_cc_binary (
13- name = "http_wasm_example_with_protobuf_lite.wasm" ,
14- srcs = ["http_wasm_example.cc" ],
19+ name = "http_proto_example_none.wasm" ,
20+ srcs = ["http_proto_example.cc" ],
21+ copts = ["-std=c++17" ],
22+ )
23+
24+ proxy_wasm_cc_binary (
25+ name = "http_proto_example_lite.wasm" ,
26+ srcs = ["http_proto_example.cc" ],
1527 copts = ["-std=c++17" ],
1628 protobuf = "lite" ,
17- deps = ["@com_google_re2//:re2" ],
1829)
1930
2031proxy_wasm_cc_binary (
21- name = "http_wasm_example_with_protobuf_full .wasm" ,
22- srcs = ["http_wasm_example .cc" ],
32+ name = "http_proto_example_full .wasm" ,
33+ srcs = ["http_proto_example .cc" ],
2334 copts = ["-std=c++17" ],
2435 protobuf = "full" ,
25- deps = ["@com_google_re2//:re2" ],
2636)
0 commit comments