• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Copyright 2021 The Chromium Embedded Framework Authors. All rights reserved.
2# Use of this source code is governed by a BSD-style license that can be
3# found in the LICENSE file.
4
5import("//mojo/public/tools/bindings/mojom.gni")
6
7mojom("mojom") {
8  sources = [ "cef.mojom" ]
9
10  cpp_only = true
11  disable_variants = true
12
13  public_deps = [
14    "//content/public/common:interfaces",
15    "//mojo/public/mojom/base",
16    "//services/network/public/mojom:cookies_mojom",
17    "//services/network/public/mojom:url_loader_base",
18    "//third_party/blink/public/mojom:mojom_platform",
19    "//ui/gfx/geometry/mojom",
20    "//url/mojom:url_mojom_gurl",
21  ]
22
23  overridden_deps = [
24    "//content/public/common:interfaces",
25    "//third_party/blink/public/mojom:mojom_platform",
26  ]
27
28  component_deps = [ "//content/public/common" ]
29}
30