blob: 32402892cc39fd442645545a2bf2903ee6200e4e [file] [log] [blame]
Jan Tattermusch7897ae92017-06-07 22:57:36 +02001# Copyright 2017 gRPC authors.
yang-g43dc9ed2017-01-11 16:05:25 -08002#
Jan Tattermusch7897ae92017-06-07 22:57:36 +02003# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
yang-g43dc9ed2017-01-11 16:05:25 -08006#
Jan Tattermusch7897ae92017-06-07 22:57:36 +02007# http://www.apache.org/licenses/LICENSE-2.0
yang-g43dc9ed2017-01-11 16:05:25 -08008#
Jan Tattermusch7897ae92017-06-07 22:57:36 +02009# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
yang-g43dc9ed2017-01-11 16:05:25 -080014
Jan Tattermusch4d5c3102017-06-07 10:23:56 +020015licenses(["notice"]) # Apache v2
yang-g43dc9ed2017-01-11 16:05:25 -080016
Nicolas "Pixel" Noble799bd5e2016-10-21 01:54:32 +020017package(default_visibility = ["//:__subpackages__"])
18
19load(":cc_grpc_library.bzl", "cc_grpc_library")
20
Nicolas "Pixel" Noble24263c32017-01-11 01:03:09 +010021proto_library(
22 name = "well_known_protos_list",
Vijay Paif74eaa62017-04-14 17:19:52 -070023 srcs = ["@com_google_protobuf//:well_known_protos"],
Nicolas "Pixel" Noble24263c32017-01-11 01:03:09 +010024)
25
Nicolas "Pixel" Noble799bd5e2016-10-21 01:54:32 +020026cc_grpc_library(
27 name = "well_known_protos",
Nicolas "Pixel" Noble24263c32017-01-11 01:03:09 +010028 srcs = "well_known_protos_list",
Nicolas "Pixel" Noble799bd5e2016-10-21 01:54:32 +020029 proto_only = True,
Vijay Paif74eaa62017-04-14 17:19:52 -070030 deps = [],
Nicolas "Pixel" Noble799bd5e2016-10-21 01:54:32 +020031)