blob: 1d3a58d2604db5b2c479cce29b41d5af8ca23147 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# 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" ]
}
|