mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-25 06:46:09 +03:00
33 lines
742 B
Plaintext
33 lines
742 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("mojom") {
|
||
|
sources = [
|
||
|
"device.mojom",
|
||
|
"device_factory.mojom",
|
||
|
"device_factory_provider.mojom",
|
||
|
"producer.mojom",
|
||
|
"receiver.mojom",
|
||
|
"scoped_access_permission.mojom",
|
||
|
"testing_controls.mojom",
|
||
|
"virtual_device.mojom",
|
||
|
]
|
||
|
|
||
|
deps = [
|
||
|
"//media/capture/mojom:image_capture",
|
||
|
"//media/capture/mojom:video_capture",
|
||
|
"//media/mojo/interfaces",
|
||
|
"//services/ui/public/interfaces",
|
||
|
"//ui/gfx/geometry/mojo",
|
||
|
]
|
||
|
}
|
||
|
|
||
|
mojom("constants") {
|
||
|
sources = [
|
||
|
"constants.mojom",
|
||
|
]
|
||
|
}
|