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/mojo/interfaces/media_types.mojom" | 5 mojom = "//media/mojo/interfaces/media_types.mojom" |
6 | 6 |
7 public_headers = [ | 7 public_headers = [ |
8 "//media/base/buffering_state.h", | 8 "//media/base/buffering_state.h", |
9 "//media/base/subsample_entry.h", | 9 "//media/base/subsample_entry.h", |
10 "//media/base/video_capture_types.h", | |
10 ] | 11 ] |
11 | 12 |
12 traits_headers = [ "//media/base/ipc/media_param_traits_macros.h" ] | 13 traits_headers = [ |
14 "//media/base/ipc/media_param_traits_macros.h", | |
15 "//media/mojo/interfaces/media_types_typemap_traits.h", | |
16 ] | |
17 | |
18 sources = [ | |
19 "//media/mojo/interfaces/media_types_typemap_traits.cc", | |
20 ] | |
13 | 21 |
14 deps = [ | 22 deps = [ |
15 "//media", | 23 "//media", |
16 "//media/base/ipc", | 24 "//media/base/ipc", |
25 "//media/capture", | |
xhwang
2016/10/12 18:22:37
drive-by comment: media/mojo shouldn't depend on m
Ken Rockot(use gerrit already)
2016/10/12 18:31:18
Does that mean the types being typemapped from med
xhwang
2016/10/12 18:47:25
I actually don't see any types in media/capture ar
chfremer
2016/10/12 20:07:42
I feel there is value in having the Mojo types and
chfremer
2016/10/26 23:07:13
Done.
| |
26 "//ui/gfx/geometry/mojo", | |
27 "//ui/gfx/geometry/mojo:struct_traits", | |
17 ] | 28 ] |
18 | 29 |
19 type_mappings = [ | 30 type_mappings = [ |
20 "media.mojom.BufferingState=media::BufferingState", | 31 "media.mojom.BufferingState=media::BufferingState", |
21 "media.mojom.SubsampleEntry=media::SubsampleEntry", | 32 "media.mojom.SubsampleEntry=media::SubsampleEntry", |
33 "media.mojom.ResolutionChangePolicy=media::ResolutionChangePolicy", | |
34 "media.mojom.PowerLineFrequency=media::PowerLineFrequency", | |
35 "media.mojom.VideoCaptureFormat=media::VideoCaptureFormat", | |
36 "media.mojom.VideoPixelStorage=media::VideoPixelStorage", | |
37 "media.mojom.VideoCaptureParams=media::VideoCaptureParams", | |
22 ] | 38 ] |
OLD | NEW |