blob: 238cf11539ae95be772480871005b774c455e8f1 [file] [log] [blame]
# Copyright 2019 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
import("//third_party/protobuf/proto_library.gni")
proto_library("proto") {
sources = [
"mach_message.proto",
]
}
source_set("converter") {
sources = [
"mach_message_converter.cc",
"mach_message_converter.h",
]
public_deps = [
":proto",
]
deps = [
"//base",
]
}