1# Copyright 2015 The Chromium 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("../../tools/bindings/mojom.gni")
6
7mojom_component("bindings") {
8  output_prefix = "mojo_mojom_bindings"
9  macro_prefix = "MOJO_MOJOM_BINDINGS"
10
11  visibility = [
12    "//mojo/public/cpp/bindings",
13    "//ipc:mojom",
14  ]
15
16  sources = [
17    "interface_control_messages.mojom",
18    "native_struct.mojom",
19    "pipe_control_messages.mojom",
20  ]
21
22  disallow_native_types = true
23  disallow_interfaces = true
24}
25