mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 14:26:09 +03:00
23 lines
586 B
Plaintext
23 lines
586 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("//mojo/public/tools/bindings/mojom.gni")
|
||
|
|
||
|
mojom("mojom") {
|
||
|
sources = [
|
||
|
"chooser_service.mojom",
|
||
|
"device.mojom",
|
||
|
"device_manager.mojom",
|
||
|
]
|
||
|
|
||
|
deps = [
|
||
|
"//mojo/public/mojom/base",
|
||
|
]
|
||
|
|
||
|
# USB Mojom interfaces are exposed publicly to layout tests which use
|
||
|
# prepackaged redistributable JS bindings. It is therefore not desirable to
|
||
|
# scramble these messages.
|
||
|
scramble_message_ids = false
|
||
|
}
|