blob: 92d3ceee185287201d8e2a2d30cf58969125f3b5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# Copyright 2020 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("//mojo/public/tools/bindings/mojom.gni")
import("//third_party/protobuf/proto_library.gni")
mojom("mojo_bindings") {
sources = [ "media_feeds_store.mojom" ]
public_deps = [
"//services/media_session/public/mojom",
"//url/mojom:url_mojom_origin",
]
}
proto_library("proto") {
sources = [ "media_feeds.proto" ]
}
|