mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 22:36:09 +03:00
46 lines
862 B
Plaintext
46 lines
862 B
Plaintext
# 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 = [
|
|
"battery_monitor.mojom",
|
|
"battery_status.mojom",
|
|
"fingerprint.mojom",
|
|
"hid.mojom",
|
|
"input_service.mojom",
|
|
"nfc.mojom",
|
|
"nfc_provider.mojom",
|
|
"power_monitor.mojom",
|
|
"serial.mojom",
|
|
"time_zone_monitor.mojom",
|
|
"vibration_manager.mojom",
|
|
"wake_lock.mojom",
|
|
"wake_lock_context.mojom",
|
|
"wake_lock_provider.mojom",
|
|
]
|
|
|
|
public_deps = [
|
|
":constants",
|
|
]
|
|
}
|
|
|
|
mojom("generic_sensor") {
|
|
sources = [
|
|
"sensor.mojom",
|
|
"sensor_provider.mojom",
|
|
]
|
|
|
|
public_deps = [
|
|
":constants",
|
|
]
|
|
}
|
|
|
|
mojom("constants") {
|
|
sources = [
|
|
"constants.mojom",
|
|
]
|
|
}
|