| Index: device/video/BUILD.gn
|
| diff --git a/device/video/BUILD.gn b/device/video/BUILD.gn
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..a8524a3e08569e265c2e0eda7bca306a4a4160fe
|
| --- /dev/null
|
| +++ b/device/video/BUILD.gn
|
| @@ -0,0 +1,31 @@
|
| +# 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")
|
| +
|
| +component("video_capture") {
|
| + output_name = "video_capture"
|
| +
|
| + sources = [
|
| + "video_capture_device_client_impl.cc",
|
| + "video_capture_device_client_impl.h",
|
| + "video_capture_device_factory_impl.cc",
|
| + "video_capture_device_factory_impl.h",
|
| + "video_capture_device_impl.cc",
|
| + "video_capture_device_impl.h",
|
| + ]
|
| +}
|
| +
|
| +mojom("mojo_bindings") {
|
| + sources = [
|
| + "video_capture_device.mojom",
|
| + "video_capture_device_client.mojom",
|
| + "video_capture_device_factory.mojom",
|
| + "video_capture_format.mojom",
|
| + ]
|
| +
|
| + deps = [
|
| + "//media/mojo/interfaces",
|
| + ]
|
| +}
|
|
|