mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-28 08:16:09 +03:00
36 lines
665 B
Plaintext
36 lines
665 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("video_capture") {
|
||
|
sources = [
|
||
|
"video_capture.mojom",
|
||
|
"video_capture_types.mojom",
|
||
|
]
|
||
|
|
||
|
public_deps = [
|
||
|
"//gpu/ipc/common:interfaces",
|
||
|
"//mojo/public/mojom/base",
|
||
|
"//ui/gfx/geometry/mojo",
|
||
|
]
|
||
|
}
|
||
|
|
||
|
mojom("image_capture") {
|
||
|
sources = [
|
||
|
"image_capture.mojom",
|
||
|
]
|
||
|
}
|
||
|
|
||
|
source_set("image_capture_types") {
|
||
|
sources = [
|
||
|
"image_capture_types.cc",
|
||
|
"image_capture_types.h",
|
||
|
]
|
||
|
|
||
|
deps = [
|
||
|
":image_capture",
|
||
|
]
|
||
|
}
|