blob: 7180747ead2e7961a43ff0fa0c695b7972807842 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# 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",
"//ui/gfx/geometry/mojom",
"//url/mojom:url_mojom_origin",
]
}
proto_library("proto") {
sources = [ "media_feeds.proto" ]
}
|