blob: 67a6d2dc5d6e8fabd8ac132823fe6967619e22ed (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# 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")
group("proto_lite") {
public_deps = [
":proto",
"//third_party/protobuf:protobuf_lite",
]
}
proto_library("proto") {
sources = [
"click_to_call_message.proto",
"peer_connection_messages.proto",
"remote_copy_message.proto",
"shared_clipboard_message.proto",
"sharing_message.proto",
"sms_fetch_message.proto",
]
}
|