# Copyright 2017 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("download_source_proto") {
proto_in_dir = "//"
sources = [ "download_source.proto" ]
}
proto_library("download_entry_proto") {
proto_in_dir = "//"
visibility = [ "//components/download/database:*" ]
sources = [ "download_entry.proto" ]
deps = [ ":download_source_proto" ]
}