20 lines
442 B
Plaintext
20 lines
442 B
Plaintext
|
|
# Copyright 2019 The Chromium Authors
|
||
|
|
# 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" ]
|
||
|
|
}
|