xref: /aosp_15_r20/external/cronet/testing/libfuzzer/fuzzers/mach/BUILD.gn (revision 6777b5387eb2ff775bb5750e3f5d96f37fb7352b)
1# Copyright 2019 The Chromium Authors
2# Use of this source code is governed by a BSD-style license that can be
3# found in the LICENSE file.
4
5import("//third_party/protobuf/proto_library.gni")
6
7proto_library("proto") {
8  proto_in_dir = "//"
9  sources = [ "mach_message.proto" ]
10}
11
12source_set("converter") {
13  sources = [
14    "mach_message_converter.cc",
15    "mach_message_converter.h",
16  ]
17  public_deps = [ ":proto" ]
18  deps = [ "//base" ]
19}
20