Commit 0b8ef8e6 authored by Takuto Ikuta's avatar Takuto Ikuta Committed by Commit Bot

[libFuzzer] remove unnecessary json.proto copy

This copy was introduced in
https://chromium-review.googlesource.com/c/chromium/src/+/746990/

But seems not necessary, can we remove this?

Bug: 938011
Change-Id: Ie32bd7737abd1353f33fb4a52068539af4d06731
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1504481
Commit-Queue: Max Moroz <mmoroz@chromium.org>
Auto-Submit: Takuto Ikuta <tikuta@chromium.org>
Reviewed-by: default avatarMax Moroz <mmoroz@chromium.org>
Cr-Commit-Position: refs/heads/master@{#638110}
parent 2dc75ed4
...@@ -4,15 +4,6 @@ ...@@ -4,15 +4,6 @@
import("//third_party/protobuf/proto_library.gni") import("//third_party/protobuf/proto_library.gni")
copy("json_proto_copy") {
sources = [
"json.proto",
]
outputs = [
"$root_gen_dir" + "/testing/libfuzzer/proto/json.proto",
]
}
proto_library("json_proto") { proto_library("json_proto") {
sources = [ sources = [
"json.proto", "json.proto",
...@@ -21,9 +12,6 @@ proto_library("json_proto") { ...@@ -21,9 +12,6 @@ proto_library("json_proto") {
# This way json.pb.h header goes into "$root_gen_dir" directory precisely, # This way json.pb.h header goes into "$root_gen_dir" directory precisely,
# otherwise it goes into "$root_gen_dir" + "/testing/libfuzzer/proto/". # otherwise it goes into "$root_gen_dir" + "/testing/libfuzzer/proto/".
proto_out_dir = "" proto_out_dir = ""
deps = [
":json_proto_copy",
]
} }
source_set("json_proto_converter") { source_set("json_proto_converter") {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment