| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 mojom = "//media/capture/mojo/video_capture_types.mojom" | 5 mojom = "//media/capture/mojo/video_capture_types.mojom" |
| 6 | 6 |
| 7 public_headers = [ "//media/capture/video_capture_types.h" ] | 7 public_headers = [ "//media/capture/video_capture_types.h" ] |
| 8 | 8 |
| 9 traits_headers = [ | 9 traits_headers = [ |
| 10 "//media/capture/ipc/capture_param_traits_macros.h", | 10 "//media/capture/ipc/capture_param_traits_macros.h", |
| 11 "//media/capture/ipc/capture_param_traits.h", | 11 "//media/capture/ipc/capture_param_traits.h", |
| 12 "//media/capture/mojo/video_capture_types_typemap_traits.h", | 12 "//media/capture/mojo/video_capture_types_typemap_traits.h", |
| 13 ] | 13 ] |
| 14 | 14 |
| 15 sources = [ | 15 sources = [ |
| 16 "//media/capture/mojo/video_capture_types_typemap_traits.cc", | 16 "//media/capture/mojo/video_capture_types_typemap_traits.cc", |
| 17 ] | 17 ] |
| 18 | 18 |
| 19 deps = [ | 19 deps = [ |
| 20 "//media", | 20 "//media", |
| 21 "//media/capture:capture_base", |
| 21 "//media/capture/ipc", | 22 "//media/capture/ipc", |
| 22 "//media/mojo/interfaces", | 23 "//media/mojo/interfaces", |
| 23 ] | 24 ] |
| 24 | 25 |
| 25 type_mappings = [ | 26 type_mappings = [ |
| 26 "media.mojom.ResolutionChangePolicy=media::ResolutionChangePolicy", | 27 "media.mojom.ResolutionChangePolicy=media::ResolutionChangePolicy", |
| 27 "media.mojom.PowerLineFrequency=media::PowerLineFrequency", | 28 "media.mojom.PowerLineFrequency=media::PowerLineFrequency", |
| 28 "media.mojom.VideoCaptureFormat=media::VideoCaptureFormat", | 29 "media.mojom.VideoCaptureFormat=media::VideoCaptureFormat", |
| 29 "media.mojom.VideoPixelStorage=media::VideoPixelStorage", | 30 "media.mojom.VideoPixelStorage=media::VideoPixelStorage", |
| 30 "media.mojom.VideoCaptureParams=media::VideoCaptureParams", | 31 "media.mojom.VideoCaptureParams=media::VideoCaptureParams", |
| 31 ] | 32 ] |
| OLD | NEW |