summaryrefslogtreecommitdiff
path: root/chromium/services/content/public/mojom/BUILD.gn
blob: 58b7e0dabd634a646e646c46996e8308e1007352 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# Copyright 2018 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")

mojom_component("mojom") {
  # We don't want Blink variants of these bindings to be generated, because they
  # will end up having a dependency on KURL and thus be required to link into
  # the same Blink component target. This should be removed once it's possible
  # for a non-Blink target to depend on KURL.
  disable_variants = true

  sources = [
    "constants.mojom",
    "navigable_contents.mojom",
    "navigable_contents_factory.mojom",
  ]

  public_deps = [
    "//mojo/public/mojom/base",
    "//services/network/public/mojom:websocket_mojom",
    "//ui/gfx/geometry/mojo",
    "//url/mojom:url_mojom_gurl",
  ]

  output_prefix = "content_service_mojom"
  macro_prefix = "CONTENT_SERVICE_MOJOM"
}