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