mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 22:36:09 +03:00
25 lines
573 B
Plaintext
25 lines
573 B
Plaintext
|
# Copyright 2015 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("../../tools/bindings/mojom.gni")
|
||
|
|
||
|
mojom_component("bindings") {
|
||
|
output_prefix = "mojo_mojom_bindings"
|
||
|
macro_prefix = "MOJO_MOJOM_BINDINGS"
|
||
|
|
||
|
visibility = [
|
||
|
"//mojo/public/cpp/bindings",
|
||
|
"//ipc:mojom",
|
||
|
]
|
||
|
|
||
|
sources = [
|
||
|
"interface_control_messages.mojom",
|
||
|
"native_struct.mojom",
|
||
|
"pipe_control_messages.mojom",
|
||
|
]
|
||
|
|
||
|
disallow_native_types = true
|
||
|
disallow_interfaces = true
|
||
|
}
|