blob: 1d3a58d2604db5b2c479cce29b41d5af8ca23147 [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") {
proto_in_dir = "//"
sources = [ "mach_message.proto" ]
}
source_set("converter") {
sources = [
"mach_message_converter.cc",
"mach_message_converter.h",
]
public_deps = [ ":proto" ]
deps = [ "//base" ]
}