summaryrefslogtreecommitdiff
path: root/chromium/components/autofill/content/public/interfaces/BUILD.gn
blob: 3a77091da0d76a13a7f803820defaba59409a173 (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
30
31
32
33
34
35
36
# Copyright 2016 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("interfaces") {
  sources = [
    "autofill_agent.mojom",
    "autofill_driver.mojom",
  ]

  public_deps = [
    ":types",
  ]
}

mojom("types") {
  sources = [
    "autofill_types.mojom",
  ]

  public_deps = [
    "//url/mojo:url_mojom_gurl",
  ]
}

mojom("test_types") {
  sources = [
    "test_autofill_types.mojom",
  ]

  public_deps = [
    ":types",
  ]
}