mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-28 16:26:10 +03:00
44 lines
818 B
Plaintext
44 lines
818 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",
|
|
"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",
|
|
]
|
|
}
|